Ok I found two errors - (like I said, I made this manually) -
line 104 - 107 are
#: comments.php:86
#, php-format
msgid "You must be <a href='%s'>logged in</a> to post a comment."
msgstr ""
but it should be
HTML Code:
#: comments.php:86
#, php-format
msgid "You must be <a href=\"%s\">logged in</a> to post a comment."
msgstr ""
line 115 - 118 are
HTML Code:
#: comments.php:118
#, php-format
msgid "Logged in as <a href='%1$s'>%2$s</a>. <a href='%3$s' title='Log out of this account'>Log out?</a>"
msgstr ""
but should be
HTML Code:
#: comments.php:118
#, php-format
msgid "Logged in as <a href=\"%1$s\">%2$s</a>. <a href=\"%3$s\" title=\"Log out of this account\">Log out?</a>"
msgstr ""
Both of these change a single quote to a backslash double quote