]> git.ipfire.org Git - oddments/collecty.git/blobdiff - src/collecty/daemon.py
Add code to localise graph templates
[oddments/collecty.git] / src / collecty / daemon.py
index eb64571c4b9a9c171ffac00409ec6a21de019f70..27c587f04547816772af511378017a6ff0f48cfb 100644 (file)
@@ -29,6 +29,7 @@ import threading
 import time
 
 from . import bus
+from . import locales
 from . import plugins
 
 from .constants import *
@@ -80,6 +81,8 @@ class Collecty(object):
                log.debug(_("Collecty successfully initialized with %s plugins") \
                        % len(self.plugins))
 
+               log.debug(_("Supported locales: %s") % ", ".join(locales.get_supported_locales()))
+
        def add_plugin(self, plugin_class):
                # Try initialising a new plugin. If that fails, we will log the
                # error and try to go on.