i18n.py :  » Business-Application » hylaPEx » hylapex » library » Python Open Source

Home
Python Open Source
1.3.1.2 Python
2.Ajax
3.Aspect Oriented
4.Blog
5.Build
6.Business Application
7.Chart Report
8.Content Management Systems
9.Cryptographic
10.Database
11.Development
12.Editor
13.Email
14.ERP
15.Game 2D 3D
16.GIS
17.GUI
18.IDE
19.Installer
20.IRC
21.Issue Tracker
22.Language Interface
23.Log
24.Math
25.Media Sound Audio
26.Mobile
27.Network
28.Parser
29.PDF
30.Project Management
31.RSS
32.Search
33.Security
34.Template Engines
35.Test
36.UML
37.USB Serial
38.Web Frameworks
39.Web Server
40.Web Services
41.Web Unit
42.Wiki
43.Windows
44.XML
Python Open Source » Business Application » hylaPEx 
hylaPEx » hylapex » library » i18n.py
#!/usr/bin/env python
# -*- coding: utf-8 -*-

import locale,os,sys

class i18n(object):
    """ Internationalization class
    """
    __instance = None
    __loaded = None

    def __new__(cls, *args, **kwargs):
        if cls.__instance is None:
            cls.__instance = object.__new__(cls)
        return cls.__instance

    def __init__(self, fileName=None, dir_path=None, listLang=None, default=None):
        """ Load the file and set the dict
        """
        
        if self.__loaded:
           return
        self.__loaded = True

        #List of possibles languages
        if not listLang: listLang = ("en", "it", "fr", "de")
        self.__listLang = listLang
        self.__default = default or "en"

        suffix = self.getLangCodeFirstTwo()

        self.dictTranlaste = dict()
        if not dir_path: dir_path = os.getcwd()
        if not fileName: fileName = os.path.normpath(os.path.join(dir_path, "language_"))
        
        if default is not None and default in listLang:
            fileName += default
        else:
            fileName += suffix
        
        self.fileName = fileName
        
        for i in open(fileName, 'r').readlines():
            i = i.strip()
            #no comments
            if i.startswith("#"): continue
            values = i.split("=", 1)
            if len(values) < 2: continue
            key, value = values
            value = value.strip().replace("\\t", "\t" ).replace("\\n", "\n" )
            self.dictTranlaste[key.strip()] = value

    def getList(self, key, separator=","):
        """ Return a list of values, split by separator
        """
        return [ x.strip() for x in self.getValue(key).split(separator) ]
        
    def getValue(self, key):
        """ Return the value for the key
        """
        if key in self.dictTranlaste:
            return self.dictTranlaste[key]
        else:
            return "No key"
    
    def getLangCodeFirstTwo(self):
        """ Return the lenguage code
        """
        l = locale.getdefaultlocale()[0][:2]

        if l in self.__listLang: return l
        else: return self.__default
    
    def getLangCode(self,):
        """ Return the lenguage code
        """
        return locale.getdefaultlocale()
        
    def __call__(self, key):
        """ Simple method for retrive the values
        """
        return self.getValue(key)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.