From 23476404c4ffa3f37f104d6ec24e8b691ecf90b1 Mon Sep 17 00:00:00 2001 From: liusheng Date: Thu, 24 Mar 2016 10:01:17 +0800 Subject: [PATCH] Fix the wrong i18n domain definition Change-Id: Ie139524a843f0751defb3a0783d61348f3e0a41e --- terracotta/i18n.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terracotta/i18n.py b/terracotta/i18n.py index b9b5de9..35cbaa9 100644 --- a/terracotta/i18n.py +++ b/terracotta/i18n.py @@ -20,7 +20,7 @@ See http://docs.openstack.org/developer/oslo.i18n/usage.html import oslo_i18n -DOMAIN = 'aodh' +DOMAIN = 'terracotta' _translators = oslo_i18n.TranslatorFactory(domain=DOMAIN)