xmpp.chapril.org-conversejs/trans/util.py
2012-02-27 17:54:14 +01:00

16 lines
267 B
Python

PLURAL_SEPARATOR = '\x00\x00'
def is_plural(s):
'''
Checks whether string is plural form.
'''
return s.find(PLURAL_SEPARATOR) != -1
def split_plural(s):
return s.split(PLURAL_SEPARATOR)
def join_plural(s):
return PLURAL_SEPARATOR.join(s)