summaryrefslogtreecommitdiff
path: root/repoze/bfg/interfaces.py
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2010-04-21 10:35:07 +0000
committerChris McDonough <chrism@agendaless.com>2010-04-21 10:35:07 +0000
commit51981a128c7ed05e51938a3f358c0970dcc33a6f (patch)
tree60b8b1cde60e28ea2d1bc6139dab47de444b0ed6 /repoze/bfg/interfaces.py
parent1c7039e337401ceb7eb16040234dcf9da8335f55 (diff)
downloadpyramid-51981a128c7ed05e51938a3f358c0970dcc33a6f.tar.gz
pyramid-51981a128c7ed05e51938a3f358c0970dcc33a6f.tar.bz2
pyramid-51981a128c7ed05e51938a3f358c0970dcc33a6f.zip
Moved i18n work to a branch and revert to pre-i18n-feature state via svn merge -r9054:9030 svn+ssh://repoze@svn.repoze.org/svn/repoze.bfg/trunk
Diffstat (limited to 'repoze/bfg/interfaces.py')
-rw-r--r--repoze/bfg/interfaces.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/repoze/bfg/interfaces.py b/repoze/bfg/interfaces.py
index f09ad7e36..40d29348c 100644
--- a/repoze/bfg/interfaces.py
+++ b/repoze/bfg/interfaces.py
@@ -229,19 +229,3 @@ class IPackageOverrides(Interface):
# VH_ROOT_KEY is an interface; its imported from other packages (e.g.
# traversalwrapper)
VH_ROOT_KEY = 'HTTP_X_VHM_ROOT'
-
-class ITranslatorFactory(Interface):
- """ Internal interface representing an i18n translator factory """
- def __call__(request):
- """ Return a translator """
-
-class ITranslator(Interface):
- def __call__(tstr):
- """ Return a translation based on the translation string tstr """
-
-class IChameleonTranslate(Interface):
- """ Internal interface representing a chameleon translate function """
- def __call__(msgid, domain=None, mapping=None, context=None,
- target_language=None, default=None):
- """ Translate a mess of arguments to a Unicode object """
-