From 7b944462fc2727b2cdb4ed8debace453034cd49b Mon Sep 17 00:00:00 2001 From: Moritz Venn Date: Fri, 25 Sep 2009 17:40:18 +0000 Subject: [PATCH] remove annoying "fallback" message --- autotimer/src/__init__.py | 1 - epgrefresh/src/__init__.py | 1 - epgsearch/src/__init__.py | 1 - ftpbrowser/src/__init__.py | 1 - simplerss/src/__init__.py | 1 - 5 files changed, 5 deletions(-) diff --git a/autotimer/src/__init__.py b/autotimer/src/__init__.py index ba933ad..8ba89d1 100644 --- a/autotimer/src/__init__.py +++ b/autotimer/src/__init__.py @@ -12,7 +12,6 @@ def localeInit(): def _(txt): t = gettext.dgettext("AutoTimer", txt) if t == txt: - print "[AutoTimer] fallback to default translation for", txt t = gettext.gettext(txt) return t diff --git a/epgrefresh/src/__init__.py b/epgrefresh/src/__init__.py index 4573556..533efe0 100644 --- a/epgrefresh/src/__init__.py +++ b/epgrefresh/src/__init__.py @@ -12,7 +12,6 @@ def localeInit(): def _(txt): t = gettext.dgettext("EPGRefresh", txt) if t == txt: - print "[EPGRefresh] fallback to default translation for", txt t = gettext.gettext(txt) return t diff --git a/epgsearch/src/__init__.py b/epgsearch/src/__init__.py index 2107762..a02ac4e 100644 --- a/epgsearch/src/__init__.py +++ b/epgsearch/src/__init__.py @@ -12,7 +12,6 @@ def localeInit(): def _(txt): t = gettext.dgettext("EPGSearch", txt) if t == txt: - print "[EPGSearch] fallback to default translation for", txt t = gettext.gettext(txt) return t diff --git a/ftpbrowser/src/__init__.py b/ftpbrowser/src/__init__.py index 17c0c36..08514ec 100644 --- a/ftpbrowser/src/__init__.py +++ b/ftpbrowser/src/__init__.py @@ -12,7 +12,6 @@ def localeInit(): def _(txt): t = gettext.dgettext("FTPBrowser", txt) if t == txt: - print "[FTPBrowser] fallback to default translation for", txt t = gettext.gettext(txt) return t diff --git a/simplerss/src/__init__.py b/simplerss/src/__init__.py index 6f30629..02533b0 100644 --- a/simplerss/src/__init__.py +++ b/simplerss/src/__init__.py @@ -12,7 +12,6 @@ def localeInit(): def _(txt): t = gettext.dgettext("SimpleRSS", txt) if t == txt: - print "[SimpleRSS] fallback to default translation for", txt t = gettext.gettext(txt) return t -- 2.7.4