暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

mlstring.py 167B

1234567
  1. # -*- coding: utf-8 -*-
  2. class MlString(object):
  3. """ Handle string with translations """
  4. def __init__(self, default_str, translations = dict()):
  5. pass