summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2006-04-04 14:46:14 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2006-04-04 14:46:14 +0200
commit4b46ffefe03f0ca2964767bfc02a59288eb56ffa (patch)
tree29aa5e7234197692452603f1d5269fcf5a2e2e19
parentde12422fe0c52d11a9bec73aea2f92621302c6ae (diff)
downloadpython-apt-4b46ffefe03f0ca2964767bfc02a59288eb56ffa.tar.gz
* marked some missing strings with _()
-rw-r--r--UpdateManager/DistUpgradeFetcher.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/UpdateManager/DistUpgradeFetcher.py b/UpdateManager/DistUpgradeFetcher.py
index bfc51f44..d81bab11 100644
--- a/UpdateManager/DistUpgradeFetcher.py
+++ b/UpdateManager/DistUpgradeFetcher.py
@@ -196,26 +196,26 @@ class DistUpgradeFetcher(object):
if not self.showReleaseNotes():
return
if not self.fetchDistUpgrader():
- error("Failed to fetch",
- "Fetching the upgrade failed. There may be a network "
- "problem. ")
+ error(_("Failed to fetch"),
+ _("Fetching the upgrade failed. There may be a network "
+ "problem. "))
return
if not self.extractDistUpgrader():
- error("Failed to extract",
- "Extracting the upgrade failed. There may be a problem "
- "with the network or with the server. ")
+ error(_("Failed to extract"),
+ _("Extracting the upgrade failed. There may be a problem "
+ "with the network or with the server. "))
return
if not self.verifyDistUprader():
- error("Verfication failed",
+ error(_("Verfication failed"),
"Verfing the upgrade failed. There may be a problem "
- "with the network or with the server. ")
+ "with the network or with the server. "))
self.cleanup()
return
if not self.authenticate():
- error("Authentication failed",
+ error(_("Authentication failed"),
"Authenticating the upgrade failed. There may be a problem "
- "with the network or with the server. ")
+ "with the network or with the server. "))
self.cleanup()
return
self.runDistUpgrader()