DEVTOOLS: Increase buffer sizes for create_translations
The new Android startup explanations are bigger than 2kb in UTF8
This commit is contained in:
parent
1f13f5f3f8
commit
f53d88d150
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue