Преглед изворни кода

Show text and category in translation warning

habeebweeb пре 4 година
родитељ
комит
31ac4d671c
1 измењених фајлова са 5 додато и 2 уклоњено
  1. 5 2
      COM3D2.MeidoPhotoStudio.Plugin/MeidoPhotoStudio/Translation.cs

+ 5 - 2
COM3D2.MeidoPhotoStudio.Plugin/MeidoPhotoStudio/Translation.cs

@@ -82,13 +82,16 @@ namespace COM3D2.MeidoPhotoStudio.Plugin
         {
             if (!Translations.ContainsKey(category))
             {
-                if (warn) Debug.LogWarning($"Could not find translation category '{category}'");
+                if (warn) Debug.LogWarning($"Could not translate '{text}': category '{category}' was not found");
                 return false;
             }
 
             if (!Translations[category].ContainsKey(text))
             {
-                if (warn) Debug.LogWarning($"Could not find translation for '{text}' in '{category}'");
+                if (warn)
+                {
+                    Debug.LogWarning($"Could not translate '{text}': '{text}' was not found in category '{category}'");
+                }
                 return false;
             }