From 3a6bf77f6b6dbdf00b4edf039743b34c8a7ca4f8 Mon Sep 17 00:00:00 2001 From: Lubos Date: Mon, 5 Aug 2024 12:45:42 +0200 Subject: [PATCH] OpenXR - Texts review --- Common/VR/PPSSPPVR.cpp | 7 ++++--- Core/Config.cpp | 2 +- Core/Config.h | 2 +- GPU/Common/FramebufferManagerCommon.cpp | 4 ++-- GPU/GLES/ShaderManagerGLES.cpp | 2 +- UI/GameSettingsScreen.cpp | 6 ++---- assets/lang/ar_AE.ini | 3 ++- assets/lang/az_AZ.ini | 3 ++- assets/lang/bg_BG.ini | 3 ++- assets/lang/ca_ES.ini | 3 ++- assets/lang/cz_CZ.ini | 3 ++- assets/lang/da_DK.ini | 3 ++- assets/lang/de_DE.ini | 3 ++- assets/lang/dr_ID.ini | 3 ++- assets/lang/en_US.ini | 7 ++++--- assets/lang/es_ES.ini | 3 ++- assets/lang/es_LA.ini | 3 ++- assets/lang/fa_IR.ini | 3 ++- assets/lang/fi_FI.ini | 3 ++- assets/lang/fr_FR.ini | 3 ++- assets/lang/gl_ES.ini | 3 ++- assets/lang/gr_EL.ini | 3 ++- assets/lang/he_IL.ini | 3 ++- assets/lang/he_IL_invert.ini | 3 ++- assets/lang/hr_HR.ini | 3 ++- assets/lang/hu_HU.ini | 3 ++- assets/lang/id_ID.ini | 3 ++- assets/lang/it_IT.ini | 3 ++- assets/lang/ja_JP.ini | 3 ++- assets/lang/jv_ID.ini | 3 ++- assets/lang/ko_KR.ini | 3 ++- assets/lang/ku_SO.ini | 3 ++- assets/lang/lo_LA.ini | 3 ++- assets/lang/lt-LT.ini | 3 ++- assets/lang/ms_MY.ini | 3 ++- assets/lang/nl_NL.ini | 3 ++- assets/lang/no_NO.ini | 3 ++- assets/lang/pl_PL.ini | 3 ++- assets/lang/pt_BR.ini | 7 ++++--- assets/lang/pt_PT.ini | 3 ++- assets/lang/ro_RO.ini | 3 ++- assets/lang/ru_RU.ini | 3 ++- assets/lang/sv_SE.ini | 3 ++- assets/lang/tg_PH.ini | 3 ++- assets/lang/th_TH.ini | 2 +- assets/lang/tr_TR.ini | 3 ++- assets/lang/uk_UA.ini | 3 ++- assets/lang/vi_VN.ini | 3 ++- assets/lang/zh_CN.ini | 3 ++- assets/lang/zh_TW.ini | 3 ++- 50 files changed, 102 insertions(+), 60 deletions(-) diff --git a/Common/VR/PPSSPPVR.cpp b/Common/VR/PPSSPPVR.cpp index dc0d6006da..fe4f120861 100644 --- a/Common/VR/PPSSPPVR.cpp +++ b/Common/VR/PPSSPPVR.cpp @@ -629,6 +629,7 @@ bool StartVRRender() { // VR flags bool vrIncompatibleGame = PSP_CoreParameter().compat.vrCompat().ForceFlatScreen; + bool vrMode = (g_Config.bEnableVR || g_Config.bEnableImmersiveVR) && !vrIncompatibleGame; bool vrScene = !vrFlatForced && (g_Config.bManualForceVR || (vr3DGeometryCount > 15)); bool vrStereo = !PSP_CoreParameter().compat.vrCompat().ForceMono && g_Config.bEnableStereo; @@ -660,16 +661,16 @@ bool StartVRRender() { M[10] = -1; M[11] = -(fovHack + fovHack); M[14] = -(nearZ + nearZ); - if (g_Config.bAntiFlickeringFlow) { + if (g_Config.bEnableImmersiveVR) { M[0] /= 2.0f; } memcpy(vrMatrix[VR_PROJECTION_MATRIX], M, sizeof(float) * 16); // Decide if the scene is 3D or not VR_SetConfigFloat(VR_CONFIG_CANVAS_ASPECT, 480.0f / 272.0f); - if (g_Config.bEnableVR && !vrIncompatibleGame && (appMode == VR_GAME_MODE) && vrScene) { + if (vrMode && vrScene && (appMode == VR_GAME_MODE)) { VR_SetConfig(VR_CONFIG_MODE, vrStereo ? VR_MODE_STEREO_6DOF : VR_MODE_MONO_6DOF); - VR_SetConfig(VR_CONFIG_REPROJECTION, g_Config.bAntiFlickeringFlow ? 0 : 1); + VR_SetConfig(VR_CONFIG_REPROJECTION, g_Config.bEnableImmersiveVR ? 0 : 1); vrFlatGame = false; } else if (appMode == VR_GAME_MODE) { VR_SetConfig(VR_CONFIG_MODE, vrStereo ? VR_MODE_STEREO_SCREEN : VR_MODE_MONO_SCREEN); diff --git a/Core/Config.cpp b/Core/Config.cpp index 20a12f3b59..72c0ea17b5 100644 --- a/Core/Config.cpp +++ b/Core/Config.cpp @@ -958,7 +958,7 @@ static const ConfigSetting vrSettings[] = { ConfigSetting("VREnableStereo", &g_Config.bEnableStereo, false, CfgFlag::PER_GAME), ConfigSetting("VREnableMotions", &g_Config.bEnableMotions, true, CfgFlag::PER_GAME), ConfigSetting("VRForce72Hz", &g_Config.bForce72Hz, true, CfgFlag::PER_GAME), - ConfigSetting("VRAntiFlickeringFlow", &g_Config.bAntiFlickeringFlow, true, CfgFlag::PER_GAME), + ConfigSetting("VRImmersiveMode", &g_Config.bEnableImmersiveVR, true, CfgFlag::PER_GAME), ConfigSetting("VRManualForceVR", &g_Config.bManualForceVR, false, CfgFlag::PER_GAME), ConfigSetting("VRPassthrough", &g_Config.bPassthrough, false, CfgFlag::PER_GAME), ConfigSetting("VRRescaleHUD", &g_Config.bRescaleHUD, true, CfgFlag::PER_GAME), diff --git a/Core/Config.h b/Core/Config.h index 90804c1f99..bb100ff885 100644 --- a/Core/Config.h +++ b/Core/Config.h @@ -482,7 +482,7 @@ public: bool bEnable6DoF; bool bEnableStereo; bool bEnableMotions; - bool bAntiFlickeringFlow; + bool bEnableImmersiveVR; bool bForce72Hz; bool bManualForceVR; bool bPassthrough; diff --git a/GPU/Common/FramebufferManagerCommon.cpp b/GPU/Common/FramebufferManagerCommon.cpp index 5b3aacbbce..edc8a5bcfc 100644 --- a/GPU/Common/FramebufferManagerCommon.cpp +++ b/GPU/Common/FramebufferManagerCommon.cpp @@ -1664,13 +1664,13 @@ void FramebufferManagerCommon::CopyDisplayToOutput(bool reallyDirty) { //clip the VR framebuffer to keep the aspect ratio if (IsVREnabled() && !IsFlatVRGame() && !IsGameVRScene()) { - float aspect = 272.0f / 480.0f * (g_Config.bAntiFlickeringFlow ? 2.0f : 1.0f); + float aspect = 272.0f / 480.0f * (g_Config.bEnableImmersiveVR ? 2.0f : 1.0f); float clipY = 272.0f * (1.0f - aspect) / 2.0f; v0 = (clipY + offsetY) / (float)vfb->bufferHeight; v1 = (272.0f - clipY + offsetY) / (float)vfb->bufferHeight; //zoom inside - float zoom = g_Config.bAntiFlickeringFlow ? 0.4f : 0.1f; + float zoom = g_Config.bEnableImmersiveVR ? 0.4f : 0.1f; u0 += zoom / aspect; u1 -= zoom / aspect; v0 += zoom; diff --git a/GPU/GLES/ShaderManagerGLES.cpp b/GPU/GLES/ShaderManagerGLES.cpp index cbdc170333..71fbf31a75 100644 --- a/GPU/GLES/ShaderManagerGLES.cpp +++ b/GPU/GLES/ShaderManagerGLES.cpp @@ -412,7 +412,7 @@ void LinkedShader::UpdateUniforms(const ShaderID &vsid, bool useBufferedRenderin // Set HUD mode if (gstate_c.Use(GPU_USE_VIRTUAL_REALITY)) { if (GuessVRDrawingHUD(is2D, flatScreen)) { - float aspect = 480.0f / 272.0f * (g_Config.bAntiFlickeringFlow ? 0.5f : 1.0f); + float aspect = 480.0f / 272.0f * (g_Config.bEnableImmersiveVR ? 0.5f : 1.0f); render_->SetUniformF1(&u_scaleX, g_Config.fHeadUpDisplayScale * aspect); render_->SetUniformF1(&u_scaleY, g_Config.fHeadUpDisplayScale); } else { diff --git a/UI/GameSettingsScreen.cpp b/UI/GameSettingsScreen.cpp index f75e610de6..e70b5f4d44 100644 --- a/UI/GameSettingsScreen.cpp +++ b/UI/GameSettingsScreen.cpp @@ -1285,13 +1285,11 @@ void GameSettingsScreen::CreateVRSettings(UI::ViewGroup *vrSettings) { vrSettings->Add(new CheckBox(&g_Config.bEnableVR, vr->T("Virtual reality"))); vrSettings->Add(new CheckBox(&g_Config.bEnable6DoF, vr->T("6DoF movement"))); vrSettings->Add(new CheckBox(&g_Config.bEnableStereo, vr->T("Stereoscopic vision (Experimental)"))); - CheckBox* antiFlickering = new CheckBox(&g_Config.bAntiFlickeringFlow, vr->T("Anti-flickering flow")); - antiFlickering->SetEnabledPtr(&g_Config.bEnableVR); - vrSettings->Add(antiFlickering); - vrSettings->Add(new CheckBox(&g_Config.bForce72Hz, vr->T("Force 72Hz update"))); + vrSettings->Add(new CheckBox(&g_Config.bEnableImmersiveVR, vr->T("Enable immersive mode"))); if (IsPassthroughSupported()) { vrSettings->Add(new CheckBox(&g_Config.bPassthrough, vr->T("Enable passthrough"))); } + vrSettings->Add(new CheckBox(&g_Config.bForce72Hz, vr->T("Force 72Hz update"))); vrSettings->Add(new ItemHeader(vr->T("VR camera"))); vrSettings->Add(new PopupSliderChoiceFloat(&g_Config.fCanvasDistance, 1.0f, 15.0f, 12.0f, vr->T("Distance to 2D menus and scenes"), 1.0f, screenManager(), "")); diff --git a/assets/lang/ar_AE.ini b/assets/lang/ar_AE.ini index 64dbb04b07..baf73b4ce6 100644 --- a/assets/lang/ar_AE.ini +++ b/assets/lang/ar_AE.ini @@ -1418,9 +1418,10 @@ New version of PPSSPP available = ‎تتوفر نسخة جديدة من الب [VR] % of native FoV = % of native FoV 6DoF movement = 6DoF movement -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = Distance to 2D menus and scenes Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Experts only Field of view scale = Field of view scale Force 72Hz update = Force 72Hz update diff --git a/assets/lang/az_AZ.ini b/assets/lang/az_AZ.ini index 06917124d4..2101504c86 100644 --- a/assets/lang/az_AZ.ini +++ b/assets/lang/az_AZ.ini @@ -1410,9 +1410,10 @@ New version of PPSSPP available = New version of PPSSPP available [VR] % of native FoV = % of native FoV 6DoF movement = 6DoF movement -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = Distance to 2D menus and scenes Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Experts only Field of view scale = Field of view scale Force 72Hz update = Force 72Hz update diff --git a/assets/lang/bg_BG.ini b/assets/lang/bg_BG.ini index a511c12878..f87a90f009 100644 --- a/assets/lang/bg_BG.ini +++ b/assets/lang/bg_BG.ini @@ -1410,9 +1410,10 @@ New version of PPSSPP available = Налична е нова версия на P [VR] % of native FoV = % of native FoV 6DoF movement = 6DoF movement -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = Distance to 2D menus and scenes Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Experts only Field of view scale = Field of view scale Force 72Hz update = Force 72Hz update diff --git a/assets/lang/ca_ES.ini b/assets/lang/ca_ES.ini index 04b0e44f01..3ec6e56693 100644 --- a/assets/lang/ca_ES.ini +++ b/assets/lang/ca_ES.ini @@ -1410,9 +1410,10 @@ New version of PPSSPP available = Nova versió de PPSSPP disponible [VR] % of native FoV = % of native FoV 6DoF movement = 6DoF movement -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = Distance to 2D menus and scenes Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Experts only Field of view scale = Field of view scale Force 72Hz update = Force 72Hz update diff --git a/assets/lang/cz_CZ.ini b/assets/lang/cz_CZ.ini index cb7ab0d07c..e67fbd0342 100644 --- a/assets/lang/cz_CZ.ini +++ b/assets/lang/cz_CZ.ini @@ -1410,10 +1410,11 @@ New version of PPSSPP available = Je dostupná nová verze PPSSPP [VR] % of native FoV = % výchozího FoV 6DoF movement = 6DoF movement -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = Distance to 2D menus and scenes Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled Experts only = Experts only +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Field of view scale = Poměr zorného pole Force 72Hz update = Force 72Hz update Game camera rotation step per frame = Game camera rotation step per frame diff --git a/assets/lang/da_DK.ini b/assets/lang/da_DK.ini index de7dde1d9a..edfe4fc39d 100644 --- a/assets/lang/da_DK.ini +++ b/assets/lang/da_DK.ini @@ -1410,9 +1410,10 @@ New version of PPSSPP available = Ny version af PPSSPP tilgængelig [VR] % of native FoV = % of native FoV 6DoF movement = 6DoF movement -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = Distance to 2D menus and scenes Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Experts only Field of view scale = Field of view scale Force 72Hz update = Force 72Hz update diff --git a/assets/lang/de_DE.ini b/assets/lang/de_DE.ini index 8df0181d98..be43ae52e9 100644 --- a/assets/lang/de_DE.ini +++ b/assets/lang/de_DE.ini @@ -1410,9 +1410,10 @@ New version of PPSSPP available = Neue PPSSPP Version verfügbar [VR] % of native FoV = % of native FoV 6DoF movement = 6DoF movement -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = Distance to 2D menus and scenes Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Experts only Field of view scale = Field of view scale Force 72Hz update = Force 72Hz update diff --git a/assets/lang/dr_ID.ini b/assets/lang/dr_ID.ini index 575081a0c0..83e1afb9ab 100644 --- a/assets/lang/dr_ID.ini +++ b/assets/lang/dr_ID.ini @@ -1410,9 +1410,10 @@ New version of PPSSPP available = New version of PPSSPP available [VR] % of native FoV = % of native FoV 6DoF movement = 6DoF movement -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = Distance to 2D menus and scenes Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Experts only Field of view scale = Field of view scale Force 72Hz update = Force 72Hz update diff --git a/assets/lang/en_US.ini b/assets/lang/en_US.ini index 1fc72831a3..5fed9f4c1c 100644 --- a/assets/lang/en_US.ini +++ b/assets/lang/en_US.ini @@ -1435,14 +1435,15 @@ Screen representation = Screen representation [VR] % of native FoV = % of native FoV 6DoF movement = 6DoF movement -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = Distance to 2D menus and scenes Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Experts only -Game camera rotation step per frame = Game camera rotation step per frame -Game camera uses rotation smoothing = Game camera uses rotation smoothing Field of view scale = Field of view scale Force 72Hz update = Force 72Hz update +Game camera rotation step per frame = Game camera rotation step per frame +Game camera uses rotation smoothing = Game camera uses rotation smoothing Heads-up display scale = Heads-up display scale Heads-up display detection = Heads-up display detection Map controller movements to keys = Map controller movements to keys diff --git a/assets/lang/es_ES.ini b/assets/lang/es_ES.ini index 8aaf460468..a6aba29e60 100644 --- a/assets/lang/es_ES.ini +++ b/assets/lang/es_ES.ini @@ -1412,9 +1412,10 @@ New version of PPSSPP available = Nueva versión de PPSSPP disponible [VR] % of native FoV = % de campo de visión nativo 6DoF movement = Movimiento 6DoF -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = Distancia de los menús y escenas 2D Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Experts only Field of view scale = Escala de campo de visión Force 72Hz update = Forzar actualizar a 72Hz diff --git a/assets/lang/es_LA.ini b/assets/lang/es_LA.ini index c01e62d445..ef2abf8713 100644 --- a/assets/lang/es_LA.ini +++ b/assets/lang/es_LA.ini @@ -1412,9 +1412,10 @@ New version of PPSSPP available = Nueva versión de PPSSPP disponible [VR] % of native FoV = % of native FoV 6DoF movement = movimiento 6DoF -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = Distancia a menús y escenas 2D Distance to 3D scenes when VR disabled = Distancia a escenas 3D cuando la realidad virtual está desactivada +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Solo expertos Field of view scale = Field of view scale Force 72Hz update = Forzar actualización de 72 Hz diff --git a/assets/lang/fa_IR.ini b/assets/lang/fa_IR.ini index 0641f3a7ea..cefdcd7a20 100644 --- a/assets/lang/fa_IR.ini +++ b/assets/lang/fa_IR.ini @@ -1410,9 +1410,10 @@ New version of PPSSPP available = ورژن جدیدی از ppsspp موجود ا [VR] % of native FoV = % of native FoV 6DoF movement = 6DoF movement -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = Distance to 2D menus and scenes Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Experts only Field of view scale = Field of view scale Force 72Hz update = Force 72Hz update diff --git a/assets/lang/fi_FI.ini b/assets/lang/fi_FI.ini index ff54e578e4..52d019423d 100644 --- a/assets/lang/fi_FI.ini +++ b/assets/lang/fi_FI.ini @@ -1410,9 +1410,10 @@ New version of PPSSPP available = Uusi PPSSPP-versio saatavilla [VR] % of native FoV = % of native FoV 6DoF movement = 6DoF-liike (kuusi vapausastetta) -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = Etäisyys 2D-valikkoihin ja kohtauksiin Distance to 3D scenes when VR disabled = Etäisyys 3D-kohtauksiin, kun VR on poistettu käytöstä +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Vain asiantuntijoille Field of view scale = Field of view scale Force 72Hz update = Pakota 72Hz päivitys diff --git a/assets/lang/fr_FR.ini b/assets/lang/fr_FR.ini index 486b9d6ed1..da618ad85f 100644 --- a/assets/lang/fr_FR.ini +++ b/assets/lang/fr_FR.ini @@ -1401,9 +1401,10 @@ New version of PPSSPP available = Nouvelle version de PPSSPP disponible [VR] % of native FoV = % of native FoV 6DoF movement = 6DoF movement -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = Distance to 2D menus and scenes Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Experts only Field of view scale = Field of view scale Force 72Hz update = Force 72Hz update diff --git a/assets/lang/gl_ES.ini b/assets/lang/gl_ES.ini index cfdeadf655..bae92b069b 100644 --- a/assets/lang/gl_ES.ini +++ b/assets/lang/gl_ES.ini @@ -1410,9 +1410,10 @@ New version of PPSSPP available = Nova versión de PPSSPP dispoñible [VR] % of native FoV = % of native FoV 6DoF movement = 6DoF movement -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = Distance to 2D menus and scenes Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Experts only Field of view scale = Field of view scale Force 72Hz update = Force 72Hz update diff --git a/assets/lang/gr_EL.ini b/assets/lang/gr_EL.ini index b2c040a44a..c2cc96f4ab 100644 --- a/assets/lang/gr_EL.ini +++ b/assets/lang/gr_EL.ini @@ -1410,9 +1410,10 @@ New version of PPSSPP available = Νέα διαθέσιμη έκδοση PPSSPP [VR] % of native FoV = % of native FoV 6DoF movement = 6DoF movement -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = Distance to 2D menus and scenes Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Experts only Field of view scale = Field of view scale Force 72Hz update = Force 72Hz update diff --git a/assets/lang/he_IL.ini b/assets/lang/he_IL.ini index d41d93f0d4..987d6671a6 100644 --- a/assets/lang/he_IL.ini +++ b/assets/lang/he_IL.ini @@ -1410,9 +1410,10 @@ New version of PPSSPP available = New version of PPSSPP available [VR] % of native FoV = % of native FoV 6DoF movement = 6DoF movement -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = Distance to 2D menus and scenes Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Experts only Field of view scale = Field of view scale Force 72Hz update = Force 72Hz update diff --git a/assets/lang/he_IL_invert.ini b/assets/lang/he_IL_invert.ini index 3062bd5e46..59d512d20c 100644 --- a/assets/lang/he_IL_invert.ini +++ b/assets/lang/he_IL_invert.ini @@ -1410,9 +1410,10 @@ New version of PPSSPP available = New version of PPSSPP available [VR] % of native FoV = % of native FoV 6DoF movement = 6DoF movement -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = Distance to 2D menus and scenes Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Experts only Field of view scale = Field of view scale Force 72Hz update = Force 72Hz update diff --git a/assets/lang/hr_HR.ini b/assets/lang/hr_HR.ini index b39fafecbc..e38bb8011e 100644 --- a/assets/lang/hr_HR.ini +++ b/assets/lang/hr_HR.ini @@ -1410,9 +1410,10 @@ New version of PPSSPP available = Nova verzija PPSSPP-a je dostupna [VR] % of native FoV = % of native FoV 6DoF movement = 6DoF movement -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = Distance to 2D menus and scenes Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Experts only Field of view scale = Field of view scale Force 72Hz update = Force 72Hz update diff --git a/assets/lang/hu_HU.ini b/assets/lang/hu_HU.ini index dff4f54ec1..a38b604705 100644 --- a/assets/lang/hu_HU.ini +++ b/assets/lang/hu_HU.ini @@ -1410,9 +1410,10 @@ New version of PPSSPP available = Elérhető a PPSSPP egy újabb verziója [VR] % of native FoV = % of native FoV 6DoF movement = 6DoF movement -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = Distance to 2D menus and scenes Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Experts only Field of view scale = Field of view scale Force 72Hz update = Force 72Hz update diff --git a/assets/lang/id_ID.ini b/assets/lang/id_ID.ini index 7f8b5b72d0..f84a122239 100644 --- a/assets/lang/id_ID.ini +++ b/assets/lang/id_ID.ini @@ -1410,9 +1410,10 @@ New version of PPSSPP available = Versi baru PPSSPP tersedia [VR] % of native FoV = % of native FoV 6DoF movement = 6DoF movement -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = Distance to 2D menus and scenes Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Experts only Field of view scale = Field of view scale Force 72Hz update = Force 72Hz update diff --git a/assets/lang/it_IT.ini b/assets/lang/it_IT.ini index 9c7eec56dd..9d10a6dc5c 100644 --- a/assets/lang/it_IT.ini +++ b/assets/lang/it_IT.ini @@ -1412,9 +1412,10 @@ New version of PPSSPP available = È disponibile una nuova versione di PPSSPP [VR] % of native FoV = % del FoV nativo 6DoF movement = Movimento 6DoF -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = Distanza dai menu e dalle scene 2D Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Solo per esperti Field of view scale = Scalatura "Field of view" Force 72Hz update = Forza aggiornamento a 72Hz diff --git a/assets/lang/ja_JP.ini b/assets/lang/ja_JP.ini index 1c52dc5017..b7a8d092ce 100644 --- a/assets/lang/ja_JP.ini +++ b/assets/lang/ja_JP.ini @@ -1410,9 +1410,10 @@ New version of PPSSPP available = 新しいバージョンのPPSSPPを利用で [VR] % of native FoV = ネイティブ視野角(FoV)の % 6DoF movement = 6DoF動作 -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = 2Dメニューと空間までの距離 Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Experts only Field of view scale = 視野角のスケール Force 72Hz update = 72Hzに強制的に更新 diff --git a/assets/lang/jv_ID.ini b/assets/lang/jv_ID.ini index 64e4962368..3f874851f5 100644 --- a/assets/lang/jv_ID.ini +++ b/assets/lang/jv_ID.ini @@ -1410,9 +1410,10 @@ New version of PPSSPP available = Versi anyar PPSSPP mpun ono monggo di comot [VR] % of native FoV = % of native FoV 6DoF movement = 6DoF movement -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = Distance to 2D menus and scenes Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Experts only Field of view scale = Field of view scale Force 72Hz update = Force 72Hz update diff --git a/assets/lang/ko_KR.ini b/assets/lang/ko_KR.ini index 2bca58f5d8..50e2960d51 100644 --- a/assets/lang/ko_KR.ini +++ b/assets/lang/ko_KR.ini @@ -1411,9 +1411,10 @@ Screen representation = 화면 표현 [VR] % of native FoV = 실제 시야의 % 6DoF movement = 6DoF 이동 -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = 2D 메뉴 및 장면까지의 거리 Distance to 3D scenes when VR disabled = VR 비활성화 시 3D 장면까지의 거리 +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = 전문가 전용 Game camera rotation step per frame = 프레임당 게임 카메라 회전 단계 Game camera uses rotation smoothing = 회전 스무딩을 사용하는 게임 카메라 diff --git a/assets/lang/ku_SO.ini b/assets/lang/ku_SO.ini index 8345d1c487..d924fd4ea5 100644 --- a/assets/lang/ku_SO.ini +++ b/assets/lang/ku_SO.ini @@ -1425,9 +1425,10 @@ Screen representation = Screen representation [VR] % of native FoV = % of native FoV 6DoF movement = 6DoF movement -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = Distance to 2D menus and scenes Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Experts only Field of view scale = Field of view scale Game camera rotation step per frame = Game camera rotation step per frame diff --git a/assets/lang/lo_LA.ini b/assets/lang/lo_LA.ini index 9546e8a2ba..82b99d80a8 100644 --- a/assets/lang/lo_LA.ini +++ b/assets/lang/lo_LA.ini @@ -1410,9 +1410,10 @@ New version of PPSSPP available = ເວີຊັ່ນໃໝ່ຂອງ PPSSPP [VR] % of native FoV = % of native FoV 6DoF movement = 6DoF movement -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = Distance to 2D menus and scenes Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Experts only Field of view scale = Field of view scale Force 72Hz update = Force 72Hz update diff --git a/assets/lang/lt-LT.ini b/assets/lang/lt-LT.ini index 44120b9f61..c33f244035 100644 --- a/assets/lang/lt-LT.ini +++ b/assets/lang/lt-LT.ini @@ -1410,9 +1410,10 @@ New version of PPSSPP available = Galima nauja "PPSSPP" versija [VR] % of native FoV = % of native FoV 6DoF movement = 6DoF movement -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = Distance to 2D menus and scenes Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Experts only Field of view scale = Field of view scale Force 72Hz update = Force 72Hz update diff --git a/assets/lang/ms_MY.ini b/assets/lang/ms_MY.ini index 90edc776d0..51ebd966ac 100644 --- a/assets/lang/ms_MY.ini +++ b/assets/lang/ms_MY.ini @@ -1410,9 +1410,10 @@ New version of PPSSPP available = Versi terbaru PPSSPP tersedia [VR] % of native FoV = % of native FoV 6DoF movement = 6DoF movement -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = Distance to 2D menus and scenes Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Experts only Field of view scale = Field of view scale Force 72Hz update = Force 72Hz update diff --git a/assets/lang/nl_NL.ini b/assets/lang/nl_NL.ini index 6dfa9be5df..c45af8cd55 100644 --- a/assets/lang/nl_NL.ini +++ b/assets/lang/nl_NL.ini @@ -1410,9 +1410,10 @@ New version of PPSSPP available = Er is een nieuwe versie van PPSSPP beschikbaar [VR] % of native FoV = % of native FoV 6DoF movement = 6DoF movement -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = Distance to 2D menus and scenes Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Experts only Field of view scale = Field of view scale Force 72Hz update = Force 72Hz update diff --git a/assets/lang/no_NO.ini b/assets/lang/no_NO.ini index f687f0a246..d55058d07b 100644 --- a/assets/lang/no_NO.ini +++ b/assets/lang/no_NO.ini @@ -1410,9 +1410,10 @@ New version of PPSSPP available = New version of PPSSPP available [VR] % of native FoV = % of native FoV 6DoF movement = 6DoF movement -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = Distance to 2D menus and scenes Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Experts only Field of view scale = Field of view scale Force 72Hz update = Force 72Hz update diff --git a/assets/lang/pl_PL.ini b/assets/lang/pl_PL.ini index e23fe88f00..a303160649 100644 --- a/assets/lang/pl_PL.ini +++ b/assets/lang/pl_PL.ini @@ -1415,9 +1415,10 @@ New version of PPSSPP available = Dostępna jest nowa wersja PPSSPP! [VR] % of native FoV = % natywnego FoV 6DoF movement = 6DoF movement -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = Dystans do elementów 2D Distance to 3D scenes when VR disabled = Dystans do scen 3D przy wyłączonym VR +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Tylko dla ekspertów Field of view scale = Skala pola widzenia Force 72Hz update = Wymuś odświeżanie w 72Hz diff --git a/assets/lang/pt_BR.ini b/assets/lang/pt_BR.ini index 106d0ee026..83762cefec 100644 --- a/assets/lang/pt_BR.ini +++ b/assets/lang/pt_BR.ini @@ -1435,14 +1435,15 @@ Screen representation = Representação da tela [VR] % of native FoV = % do campo de visão nativo 6DoF movement = Movimentação do 6DoF -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = Distância até os menus e cenas 2D Distance to 3D scenes when VR disabled = Distância nas cenas em 3D quando a realidade virtual está desativada +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Só pra experts -Game camera rotation step per frame = Passo da rotação da câmera do jogo por frame -Game camera uses rotation smoothing = A câmera do jogo usa suavização da rotação Field of view scale = Escala do campo de visão Force 72Hz update = Forçar atualização em 72 Hz +Game camera rotation step per frame = Passo da rotação da câmera do jogo por frame +Game camera uses rotation smoothing = A câmera do jogo usa suavização da rotação Heads-up display scale = Escala do aviso antecipado da exibição Heads-up display detection = Detecção do aviso antecipado da exibição Map controller movements to keys = Mapear os movimentos do controle nas teclas diff --git a/assets/lang/pt_PT.ini b/assets/lang/pt_PT.ini index 2c80428c3f..8e632b0eb4 100644 --- a/assets/lang/pt_PT.ini +++ b/assets/lang/pt_PT.ini @@ -1437,9 +1437,10 @@ Screen representation = Representação da tela [VR] % of native FoV = % do campo de visão (FoV) nativo 6DoF movement = Movimento 6DoF -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = Distância aos menus e cenas 2D Distance to 3D scenes when VR disabled = Distância às cenas 3D quando a realidade virtual estiver desativada +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Apenas programadores Field of view scale = Escala do campo de visão (FoV) Force 72Hz update = Forçar taxa de atualização de 72Hz diff --git a/assets/lang/ro_RO.ini b/assets/lang/ro_RO.ini index d26921018e..d64576a8dc 100644 --- a/assets/lang/ro_RO.ini +++ b/assets/lang/ro_RO.ini @@ -1411,9 +1411,10 @@ New version of PPSSPP available = Nouă versiune de PPSSPP disponibilă. [VR] % of native FoV = % of native FoV 6DoF movement = 6DoF movement -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = Distance to 2D menus and scenes Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Experts only Field of view scale = Field of view scale Force 72Hz update = Force 72Hz update diff --git a/assets/lang/ru_RU.ini b/assets/lang/ru_RU.ini index 0a5868db70..817e7f78c1 100644 --- a/assets/lang/ru_RU.ini +++ b/assets/lang/ru_RU.ini @@ -1410,9 +1410,10 @@ New version of PPSSPP available = Доступна новая версия PPSSP [VR] % of native FoV = % стандартного угла обзора 6DoF movement = Движение 6DoF -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = Расстояние до 2D-меню и сцен Distance to 3D scenes when VR disabled = Расстояние до 3D-сцен при отключенной ВР +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Только для экспертов Field of view scale = Масштаб угла обзора Force 72Hz update = Принудительная частота обновления 72 Гц diff --git a/assets/lang/sv_SE.ini b/assets/lang/sv_SE.ini index 60b22a1cc9..e585add2d4 100644 --- a/assets/lang/sv_SE.ini +++ b/assets/lang/sv_SE.ini @@ -1411,9 +1411,10 @@ New version of PPSSPP available = Ny version av PPSSPP tillgänglig [VR] % of native FoV = % of native FoV 6DoF movement = 6DoF rörelse -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = Avstånd till 2D-menyer och scener Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Experts only Field of view scale = Field of view-skala Force 72Hz update = Tvinga 72Hz uppdateringsfrekvens diff --git a/assets/lang/tg_PH.ini b/assets/lang/tg_PH.ini index 35e170a1ce..1d5435d6d9 100644 --- a/assets/lang/tg_PH.ini +++ b/assets/lang/tg_PH.ini @@ -1414,9 +1414,10 @@ New version of PPSSPP available = Meron nang bagong bersiyon ang PPSSPP [VR] % of native FoV = % of native FoV 6DoF movement = 6DoF movement -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = Distansya sa mga 2D na menu at mga eksena Distance to 3D scenes when VR disabled = Distansya sa mga 3D na eksena noong hindi pinagana ang VR +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Mga eksperto lamang Field of view scale = Field of view scale Force 72Hz update = Force 72Hz update diff --git a/assets/lang/th_TH.ini b/assets/lang/th_TH.ini index c49af8430e..f414d122ae 100644 --- a/assets/lang/th_TH.ini +++ b/assets/lang/th_TH.ini @@ -1437,9 +1437,9 @@ New version of PPSSPP available = PPSSPP เวอร์ชั่นใหม่ [VR] % of native FoV = % ของค่า FoV ดั้งเดิม 6DoF movement = การเคลื่อนไหวแบบ 6DoF -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = ระยะห่างจากเมนูสองมิติ และฉาก Distance to 3D scenes when VR disabled = ระยะห่างจากฉากสามมิติ เมื่อ VR ถูกปิดใช้งาน +Enable immersive mode = Enable immersive mode Enable passthrough = เปิดใช้งานการส่งผ่าน Experts only = สำหรับผู้เชี่ยวชาญเท่านั้น Field of view scale = สเกลของมุมมองพื้นที่รอบตัว diff --git a/assets/lang/tr_TR.ini b/assets/lang/tr_TR.ini index 096d54e316..eb01c63eea 100644 --- a/assets/lang/tr_TR.ini +++ b/assets/lang/tr_TR.ini @@ -1411,9 +1411,10 @@ New version of PPSSPP available = PPSSPP'nin yeni sürümü mevcut [VR] % of native FoV = % of native FoV 6DoF movement = 6DoF hareketi -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = 2D menülere ve sahnelere olan mesafe Distance to 3D scenes when VR disabled = VR devre dışı bırakıldığında 3D sahnelere olan mesafe +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Yalnızca uzmanlar Field of view scale = Field of view scale Force 72Hz update = 72Hz güncellemeyi zorla diff --git a/assets/lang/uk_UA.ini b/assets/lang/uk_UA.ini index 2283e7489a..6b047d8512 100644 --- a/assets/lang/uk_UA.ini +++ b/assets/lang/uk_UA.ini @@ -1410,9 +1410,10 @@ New version of PPSSPP available = Доступна нова версія PPSSPP [VR] % of native FoV = % of native FoV 6DoF movement = 6DoF movement -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = Distance to 2D menus and scenes Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Experts only Field of view scale = Field of view scale Force 72Hz update = Force 72Hz update diff --git a/assets/lang/vi_VN.ini b/assets/lang/vi_VN.ini index e810f24979..2c26b35237 100644 --- a/assets/lang/vi_VN.ini +++ b/assets/lang/vi_VN.ini @@ -1410,9 +1410,10 @@ New version of PPSSPP available = Đã có phiên bản mới của PPSSPP [VR] % of native FoV = % of native FoV 6DoF movement = 6DoF movement -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = Distance to 2D menus and scenes Distance to 3D scenes when VR disabled = Distance to 3D scenes when VR disabled +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = Experts only Field of view scale = Field of view scale Force 72Hz update = Force 72Hz update diff --git a/assets/lang/zh_CN.ini b/assets/lang/zh_CN.ini index e7b0b0b7eb..63c6f90f69 100644 --- a/assets/lang/zh_CN.ini +++ b/assets/lang/zh_CN.ini @@ -1413,9 +1413,10 @@ Search term = 搜索关键词 [VR] % of native FoV = 原生视角的% 6DoF movement = 6自由度移动 -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = 2D菜单和场景的距离 Distance to 3D scenes when VR disabled = 3D场景的距离 (VR关闭时) +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = 专家模式 Field of view scale = 视角比例 Force 72Hz update = 强制72Hz刷新 diff --git a/assets/lang/zh_TW.ini b/assets/lang/zh_TW.ini index 106ecf498c..5e0d539960 100644 --- a/assets/lang/zh_TW.ini +++ b/assets/lang/zh_TW.ini @@ -1411,9 +1411,10 @@ Screen representation = 螢幕呈現 [VR] % of native FoV = % 於原生視野 6DoF movement = 六自由度移動 -Anti-flickering flow = Anti-flickering flow Distance to 2D menus and scenes = 2D 選單及場景距離 Distance to 3D scenes when VR disabled = VR 停用時的 3D 場景距離 +Enable immersive mode = Enable immersive mode +Enable passthrough = Enable passthrough Experts only = 僅限專家 Field of view scale = 視野縮放 Force 72Hz update = 強制 72Hz 更新