[MonoDevelop] build error + fix
Mike Morano
mmorano at mikeandwan.us
Sat May 31 13:37:15 EDT 2008
Hello,
I was running into an error building monodevelop from svn. The error message I was receiving was:
msgfmt 'de.po' -o '../build/locale/de/LC_MESSAGES/monodevelop.mo'
de.po:7574: `msgid' and `msgstr' entries do not both begin with '\n'
de.po:7615: `msgid' and `msgstr' entries do not both begin with '\n'
msgfmt: found 2 fatal errors
Here is a patch that addressed this for me (just added a space before \n):
Index: main/po/de.po
===================================================================
--- main/po/de.po (revision 104593)
+++ main/po/de.po (working copy)
@@ -7572,7 +7572,7 @@
msgid ""
"Required for ASP.NET controls.\n"
msgstr ""
-"\n"
+" \n"
#: ../src/addins/AspNetAddIn/MonoDevelop.AspNet.Gui/AspNetEditorExtension.cs:272
msgid ""
@@ -7613,7 +7613,7 @@
msgid ""
"A suggested event handler method name.\n"
msgstr ""
-"\n"
+" \n"
#: ../src/addins/AspNetAddIn/MonoDevelop.AspNet.Parser/SuggestedHandlerCompletionData.cs:71
msgid ""
Thanks,
Mike
More information about the Monodevelop-list
mailing list