Commit 5e2176b9 authored by Michal Čihař's avatar Michal Čihař

Add support for utf-8 OS X strings

This needs https://github.com/translate/translate/pull/132 to work.

Fixes #491
Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent 87696ea4
......@@ -713,6 +713,14 @@ class StringsFormat(FileFormat):
register_fileformat(StringsFormat)
class StringsUtf8Format(FileFormat):
name = _('OS X Strings (UTF-8)')
format_id = 'strings-utf8'
loader = ('properties', 'stringsutf8file')
register_fileformat(StringsUtf8Format)
class PropertiesFormat(FileFormat):
name = _('Java Properties')
format_id = 'properties'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment