diff --git a/devtools/create_translations/po_parser.cpp b/devtools/create_translations/po_parser.cpp index 8791bdcc204..6b451f57388 100644 --- a/devtools/create_translations/po_parser.cpp +++ b/devtools/create_translations/po_parser.cpp @@ -259,8 +259,8 @@ PoMessageEntryList *parsePoFile(const char *file, PoMessageList& messages) { if (!inFile) return nullptr; - char msgidBuf[2048], msgctxtBuf[2048], msgstrBuf[2048]; - char line[2048], *currentBuf = msgstrBuf; + char msgidBuf[20480], msgctxtBuf[20480], msgstrBuf[20480]; + char line[20480], *currentBuf = msgstrBuf; // Get language from file name and create PoMessageEntryList int index = 0, start_index = strlen(file) - 1;