Index: grit/format/chrome_messages_json.py |
=================================================================== |
--- grit/format/chrome_messages_json.py (revision 147) |
+++ grit/format/chrome_messages_json.py (working copy) |
@@ -25,7 +25,7 @@ |
for child in root.ActiveDescendants(): |
if isinstance(child, message.MessageNode): |
id = child.attrs['name'] |
- if id.startswith('IDR_'): |
+ if id.startswith('IDR_') or id.startswith('IDS_'): |
id = id[4:] |
loc_message = encoder.encode(child.Translate(lang)) |