diff --git a/Editor/Importers/YarnProjectImporter.cs b/Editor/Importers/YarnProjectImporter.cs index cf8bee2c..80fc9797 100644 --- a/Editor/Importers/YarnProjectImporter.cs +++ b/Editor/Importers/YarnProjectImporter.cs @@ -560,8 +560,12 @@ private void AddStringTableEntries(CompilationResult compilationResult, StringTa var defaultCulture = new System.Globalization.CultureInfo(project.BaseLanguage); + Debug.LogWarning($"Looking for \"{project.BaseLanguage}\""); + Debug.LogWarning($"Will be checking {unityLocalisationStringTableCollection.StringTables.Count()} tables"); + foreach (var table in unityLocalisationStringTableCollection.StringTables) { + Debug.LogWarning($"Table is \"{table.LocaleIdentifier.CultureInfo}\""); if (table.LocaleIdentifier.CultureInfo != defaultCulture) { var neutralTable = table.LocaleIdentifier.CultureInfo.IsNeutralCulture