Skip to content

Commit

Permalink
converter: don't report duplicates, just remove them silently
Browse files Browse the repository at this point in the history
  • Loading branch information
10110111 committed Jan 31, 2025
1 parent e8ef175 commit fc2605b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions util/skyculture-converter/DescriptionOldLoader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -739,11 +739,13 @@ void DescriptionOldLoader::loadTranslationsOfNames(const QString& poBaseDir, con
}
if(insertedNames.find(msgid) != insertedNames.end())
{
#if 0
qWarning().nospace() << "msgid \"" << msgid
<< "\" already exists, skipping entry:"
<< "\n - comments: " << comments
<< "\n - extracted comments: " << xcomments
<< "\n - msgstr: \"" << msgstr << "\"";
#endif
continue;
}
insertedNames.insert(msgid);
Expand Down

0 comments on commit fc2605b

Please sign in to comment.