From 2913fce8608b3fdaa84fe93a94092e3a4d69c6a0 Mon Sep 17 00:00:00 2001 From: "claytonc.sousa@gmail.com" Date: Thu, 21 Sep 2017 23:02:44 -0300 Subject: [PATCH] - remove i18n --- sc/social/like/vocabularies.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/sc/social/like/vocabularies.py b/sc/social/like/vocabularies.py index 0acfddc7..f24531e9 100644 --- a/sc/social/like/vocabularies.py +++ b/sc/social/like/vocabularies.py @@ -58,10 +58,5 @@ def image_scales_vocabulary(object): terms = [] for scale, (width, height) in getAllowedSizes().iteritems(): if width >= OG_LEAD_IMAGE_MIN_WIDTH and height >= OG_LEAD_IMAGE_MIN_HEIGHT: - translated = _( - 'imagescale_{0:s}'.format(scale), - default='{0:s} ${{width}}x${{height}}'.format(scale), - mapping={'width': str(width), 'height': str(height)}) - terms.append(SimpleTerm(scale, scale, translated)) - + terms.append(SimpleTerm(scale, scale)) return SimpleVocabulary(terms)