From 4b46ffefe03f0ca2964767bfc02a59288eb56ffa Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 4 Apr 2006 14:46:14 +0200 Subject: * marked some missing strings with _() --- UpdateManager/DistUpgradeFetcher.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'UpdateManager/DistUpgradeFetcher.py') 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() -- cgit v1.2.3