Commit 8f9a09d6 authored by Michal Čihař's avatar Michal Čihař

Merge pull request #692 from mysms/fix-resx-templates

Fixed resx file format with templates
parents ef0e66f6 71d27167
......@@ -362,7 +362,10 @@ class RESXUnit(FileUnit):
return ''
def get_context(self):
return self.unit.getid()
if self.template is not None:
return self.template.getid()
else:
return self.unit.getid()
def get_source(self):
if self.template is None:
......
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