Pārlūkot izejas kodu

Fixing small typos in comments

Mateus Vendramini 8 gadi atpakaļ
vecāks
revīzija
78b77ed48f

+ 1 - 1
Source/Samples/40_Localization/L10n.cpp

@@ -71,7 +71,7 @@ void L10n::InitLocalizationSystem()
 {
     Localization* l10n = GetSubsystem<Localization>();
     // JSON files must be in UTF8 encoding without BOM
-    // The first founded language will be set as current
+    // The first found language will be set as current
     l10n->LoadJSONFile("StringsEnRu.json");
     // You can load multiple files
     l10n->LoadJSONFile("StringsDe.json");

+ 1 - 1
bin/Data/LuaScripts/40_Localization.lua

@@ -28,7 +28,7 @@ end
 
 function InitLocalizationSystem()
     -- JSON files must be in UTF8 encoding without BOM
-    -- The first founded language will be set as current
+    -- The first found language will be set as current
     localization:LoadJSONFile("StringsEnRu.json")
     -- You can load multiple files
     localization:LoadJSONFile("StringsDe.json")

+ 1 - 1
bin/Data/Scripts/40_Localization.as

@@ -30,7 +30,7 @@ void Start()
 void InitLocalizationSystem()
 {
     // JSON files must be in UTF8 encoding without BOM
-    // The first founded language will be set as current
+    // The first found language will be set as current
     localization.LoadJSONFile("StringsEnRu.json");
     // You can load multiple files
     localization.LoadJSONFile("StringsDe.json");