Resolve "Add export for Godot projects" #89

Merged
thorsten merged 2 commits from 39-add-export-for-godot-projects into main 2023-02-13 19:48:40 +00:00
Showing only changes of commit 8904712c2e - Show all commits

View File

@ -20,12 +20,14 @@ public static class TranslationProcessor
TranslateManual = false,
Culture = cultureInfo.Code,
Text = string.Empty,
TextElement = textElement,
});
}
if(missedTranslations.Count > 0)
{
textElement.Translations.AddRange(missedTranslations);
db.Translations.AddRange(missedTranslations);
db.TextElements.Update(textElement);
await db.SaveChangesAsync();
}