diff --git a/resource/common/locale/English.json b/resource/common/locale/English.json index 877a811..5da1f86 100644 --- a/resource/common/locale/English.json +++ b/resource/common/locale/English.json @@ -67,7 +67,7 @@ "KeepStuff": "Keep stuff", "KeepStuffText": "Keep stuff after arrest/death", "Minute": "Minute", - "MissionLoaderTip": "Mission loader may cause,\n\n1. Game crashes\n\n2. Break save games\n\n3. Break game progression\n\n4. Random bugs & glitches\n\n\nIt's recommanded not to save after using the mission loader. Use it at your own risk!", + "MissionLoaderTip": "Mission loader may cause,\n\n1. Game crashes\n2. Break save games\n3. Break game progression\n4. Random bugs & glitches\n\nIt's recommanded not to save after using the mission loader. Use it at your own risk!", "Missions": "Missions", "MissionStartFailed": "Can't start mission now", "MovementSpeed": "Movement speed", @@ -549,6 +549,8 @@ "WantedStarBorder": "Wanted star border", "Water": "Water", "WaterFogAlpha": "Water fog alpha", + "WeaponAmmoPosX": "Weapon icon posX", + "WeaponAmmoPosY": "Weapon icon posY", "WeaponIconPosX": "Weapon icon posX", "WeaponIconPosY": "Weapon icon posY", "WhiteScanlines": "White scanlines" diff --git a/src/game.cpp b/src/game.cpp index c390778..3f913c8 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -589,7 +589,7 @@ void Game::ShowPage() } #endif Ui::EditAddress(TEXT("Game.DaysPassed"), BY_GAME(0xB79038, 0x97F1F4, 0x8F2BB8), 0, 9999); - Ui::EditReference(("Game.FPSLimit"), BY_GAME(RsGlobal.frameLimit, RsGlobal.maxFPS, RsGlobal.maxFPS), 1, 30, 60); + Ui::EditReference(TEXT("Game.FPSLimit"), BY_GAME(RsGlobal.frameLimit, RsGlobal.maxFPS, RsGlobal.maxFPS), 1, 30, 60); #ifdef GTASA if (ImGui::CollapsingHeader(TEXT("Game.Freecam"))) { diff --git a/src/menu.cpp b/src/menu.cpp index 8d02a14..9db9590 100644 --- a/src/menu.cpp +++ b/src/menu.cpp @@ -486,7 +486,7 @@ void Menu::ShowPage() gConfig.SetValue("hotkey.quick_screenshot.key1", quickSceenShot.m_key1); gConfig.SetValue("hotkey.quick_screenshot.key2", quickSceenShot.m_key2); } - if (freeCam.DrawUI(TEXT("Menu.Freecam"))) + if (freeCam.DrawUI(TEXT("Menu.FreecamKey"))) { gConfig.SetValue("hotkey.freecam.key1", freeCam.m_key1); gConfig.SetValue("hotkey.freecam.key2", freeCam.m_key2); @@ -674,9 +674,9 @@ void Menu::ShowPage() ImGui::TableNextRow(); ImGui::TableNextColumn(); - ImGui::Text(TEXT("Menu.TranslatorName")); + ImGui::Text(TEXT("Main.TranslatorName")); ImGui::TableNextColumn(); - ImGui::Text(TEXT("Menu.Translator")); + ImGui::Text(TEXT("Main.Translator")); ImGui::EndTable(); } diff --git a/src/vehicle.cpp b/src/vehicle.cpp index a016cfc..33f99b6 100644 --- a/src/vehicle.cpp +++ b/src/vehicle.cpp @@ -513,7 +513,7 @@ void Vehicle::ShowPage() ImGui::SameLine(); - if (ImGui::Button(TEXT("Vehcile.FixCar"), ImVec2(Ui::GetSize(3))) && Util::IsInVehicle()) + if (ImGui::Button(TEXT("Vehicle.FixCar"), ImVec2(Ui::GetSize(3))) && Util::IsInVehicle()) { Util::FixVehicle(pVeh); } diff --git a/src/visual.cpp b/src/visual.cpp index b919b40..b2dcbeb 100644 --- a/src/visual.cpp +++ b/src/visual.cpp @@ -437,7 +437,7 @@ void Visual::ShowPage() } Ui::CheckboxAddress(TEXT("Visual.ShowHud"), 0xBA6769); - Ui::CheckboxAddressEx(TEXT("Visual.UnfogMap"), 0xBA372C, 0x50, 0x0, TEXT("Visual.UnforMapText")); + Ui::CheckboxAddressEx(TEXT("Visual.UnfogMap"), 0xBA372C, 0x50, 0x0, TEXT("Visual.UnfogMapText")); #elif GTAVC Ui::CheckboxAddress(TEXT("Visual.HideRadar"), 0xA10AB6); Ui::CheckboxWithHint(TEXT("Visual.Lockweather"), &m_bLockWeather);