mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-05-02 14:42:41 +08:00
27 lines
561 B
Python
27 lines
561 B
Python
import hashlib
|
|
|
|
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)
|
|
|
|
def msg_checksum(source, context):
|
|
'''
|
|
Returns checksum of source string, used for quick lookup.
|
|
|
|
We use MD5 as it is faster than SHA1.
|
|
'''
|
|
m = hashlib.md5()
|
|
m.update(source.encode('utf-8'))
|
|
m.update(context.encode('utf-8'))
|
|
return m.hexdigest()
|
|
|