소스 검색

Merge pull request #1799 from mvendra/master

Fixing small typos in comments
Lasse Öörni 9 년 전
부모
커밋
af243bb98c
3개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 1 1
      Source/Samples/40_Localization/L10n.cpp
  2. 1 1
      bin/Data/LuaScripts/40_Localization.lua
  3. 1 1
      bin/Data/Scripts/40_Localization.as

+ 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");