Fixed msgid_plural error

This commit is contained in:
Mike Holly
2012-01-15 11:31:07 -08:00
parent 899c948784
commit 3eab1ece05
2 changed files with 3 additions and 67 deletions

View File

@@ -66,6 +66,7 @@ PO.parse = function(data) {
'POT-Creation-Date': '',
'PO-Revision-Date': '',
'Last-Translator': '',
'Language': '',
'Language-Team': '',
'Content-Type': '',
'Content-Transfer-Encoding': '',
@@ -152,7 +153,7 @@ PO.parse = function(data) {
PO.Item = function() {
this.msgid = '';
this.references = [];
this.msgid_plural = '';
this.msgid_plural = null;
this.msgstr = [];
this.comments = [];
};