Merge pull request #16432 from hrydgard/cleanup-graphics-settings

Cleanup graphics settings list
This commit is contained in:
Henrik Rydgård 2022-11-24 23:49:16 +01:00 committed by GitHub
commit 9eb97830c5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
49 changed files with 241 additions and 476 deletions

View file

@ -106,7 +106,8 @@ void DevMenuScreen::CreatePopupContents(UI::ViewGroup *parent) {
items->Add(new CheckBox(&g_Config.bShowGpuProfile, dev->T("GPU Profile")));
}
items->Add(new Choice(dev->T("Toggle Freeze")))->OnClick.Handle(this, &DevMenuScreen::OnFreezeFrame);
items->Add(new Choice(dev->T("Dump Frame GPU Commands")))->OnClick.Handle(this, &DevMenuScreen::OnDumpFrame);
items->Add(new Choice(dev->T("Dump next frame to log")))->OnClick.Handle(this, &DevMenuScreen::OnDumpFrame);
items->Add(new Choice(dev->T("Toggle Audio Debug")))->OnClick.Handle(this, &DevMenuScreen::OnToggleAudioDebug);
#ifdef USE_PROFILER
items->Add(new CheckBox(&g_Config.bShowFrameProfiler, dev->T("Frame Profiler"), ""));

View file

@ -270,6 +270,9 @@ void DisplayLayoutScreen::CreateViews() {
});
rightColumn->Add(rotation);
static const char *bufFilters[] = { "Linear", "Nearest", };
rightColumn->Add(new PopupMultiChoice(&g_Config.iBufFilter, gr->T("Screen Scaling Filter"), bufFilters, 1, ARRAY_SIZE(bufFilters), gr->GetName(), screenManager()));
rightColumn->Add(new ItemHeader(gr->T("Postprocessing effect")));
Draw::DrawContext *draw = screenManager()->getDrawContext();

View file

@ -136,10 +136,10 @@ static bool UsingHardwareTextureScaling() {
}
static std::string TextureTranslateName(const char *value) {
auto ps = GetI18NCategory("TextureShaders");
auto ts = GetI18NCategory("TextureShaders");
const TextureShaderInfo *info = GetTextureShaderInfo(value);
if (info) {
return ps->T(value, info ? info->name.c_str() : value);
return ts->T(value, info ? info->name.c_str() : value);
} else {
return value;
}
@ -298,11 +298,74 @@ void GameSettingsScreen::CreateViews() {
}
}
static const char *internalResolutions[] = { "Auto (1:1)", "1x PSP", "2x PSP", "3x PSP", "4x PSP", "5x PSP", "6x PSP", "7x PSP", "8x PSP", "9x PSP", "10x PSP" };
resolutionChoice_ = graphicsSettings->Add(new PopupMultiChoice(&g_Config.iInternalResolution, gr->T("Rendering Resolution"), internalResolutions, 0, ARRAY_SIZE(internalResolutions), gr->GetName(), screenManager()));
resolutionChoice_->OnChoice.Handle(this, &GameSettingsScreen::OnResolutionChange);
resolutionChoice_->SetEnabledFunc([] {
return !g_Config.bSoftwareRendering && !g_Config.bSkipBufferEffects;
});
#if PPSSPP_PLATFORM(ANDROID)
if ((deviceType != DEVICE_TYPE_TV) && (deviceType != DEVICE_TYPE_VR)) {
static const char *deviceResolutions[] = { "Native device resolution", "Auto (same as Rendering)", "1x PSP", "2x PSP", "3x PSP", "4x PSP", "5x PSP" };
int max_res_temp = std::max(System_GetPropertyInt(SYSPROP_DISPLAY_XRES), System_GetPropertyInt(SYSPROP_DISPLAY_YRES)) / 480 + 2;
if (max_res_temp == 3)
max_res_temp = 4; // At least allow 2x
int max_res = std::min(max_res_temp, (int)ARRAY_SIZE(deviceResolutions));
UI::PopupMultiChoice *hwscale = graphicsSettings->Add(new PopupMultiChoice(&g_Config.iAndroidHwScale, gr->T("Display Resolution (HW scaler)"), deviceResolutions, 0, max_res, gr->GetName(), screenManager()));
hwscale->OnChoice.Handle(this, &GameSettingsScreen::OnHwScaleChange); // To refresh the display mode
}
#endif
if (deviceType != DEVICE_TYPE_VR) {
CheckBox *softwareGPU = graphicsSettings->Add(new CheckBox(&g_Config.bSoftwareRendering, gr->T("Software Rendering", "Software Rendering (slow)")));
softwareGPU->SetEnabled(!PSP_IsInited());
}
if (deviceType != DEVICE_TYPE_VR) {
#if !defined(MOBILE_DEVICE)
graphicsSettings->Add(new CheckBox(&g_Config.bFullScreen, gr->T("FullScreen", "Full Screen")))->OnClick.Handle(this, &GameSettingsScreen::OnFullscreenChange);
if (System_GetPropertyInt(SYSPROP_DISPLAY_COUNT) > 1) {
CheckBox *fullscreenMulti = new CheckBox(&g_Config.bFullScreenMulti, gr->T("Use all displays"));
fullscreenMulti->SetEnabledFunc([] {
return g_Config.UseFullScreen();
});
graphicsSettings->Add(fullscreenMulti)->OnClick.Handle(this, &GameSettingsScreen::OnFullscreenMultiChange);
}
#endif
#if !(PPSSPP_PLATFORM(ANDROID) || defined(USING_QT_UI) || PPSSPP_PLATFORM(UWP) || PPSSPP_PLATFORM(IOS))
CheckBox *vSync = graphicsSettings->Add(new CheckBox(&g_Config.bVSync, gr->T("VSync")));
vSync->OnClick.Add([=](EventParams &e) {
NativeResized();
return UI::EVENT_CONTINUE;
});
#endif
#if PPSSPP_PLATFORM(ANDROID)
// Hide insets option if no insets, or OS too old.
if (System_GetPropertyInt(SYSPROP_SYSTEMVERSION) >= 28 &&
(System_GetPropertyFloat(SYSPROP_DISPLAY_SAFE_INSET_LEFT) != 0.0f ||
System_GetPropertyFloat(SYSPROP_DISPLAY_SAFE_INSET_TOP) != 0.0f ||
System_GetPropertyFloat(SYSPROP_DISPLAY_SAFE_INSET_RIGHT) != 0.0f ||
System_GetPropertyFloat(SYSPROP_DISPLAY_SAFE_INSET_BOTTOM) != 0.0f)) {
graphicsSettings->Add(new CheckBox(&g_Config.bIgnoreScreenInsets, gr->T("Ignore camera notch when centering")));
}
// Hide Immersive Mode on pre-kitkat Android
if (System_GetPropertyInt(SYSPROP_SYSTEMVERSION) >= 19) {
// Let's reuse the Fullscreen translation string from desktop.
graphicsSettings->Add(new CheckBox(&g_Config.bImmersiveMode, gr->T("FullScreen", "Full Screen")))->OnClick.Handle(this, &GameSettingsScreen::OnImmersiveModeChange);
}
#endif
// Display Layout Editor: To avoid overlapping touch controls on large tablets, meet geeky demands for integer zoom/unstretched image etc.
displayEditor_ = graphicsSettings->Add(new Choice(gr->T("Display Layout && Effects")));
displayEditor_->OnClick.Add([&](UI::EventParams &) -> UI::EventReturn {
screenManager()->push(new DisplayLayoutScreen(gamePath_));
return UI::EVENT_DONE;
});
}
graphicsSettings->Add(new ItemHeader(gr->T("Frame Rate Control")));
static const char *frameSkip[] = {"Off", "1", "2", "3", "4", "5", "6", "7", "8"};
graphicsSettings->Add(new PopupMultiChoice(&g_Config.iFrameSkip, gr->T("Frame Skipping"), frameSkip, 0, ARRAY_SIZE(frameSkip), gr->GetName(), screenManager()));
@ -366,108 +429,7 @@ void GameSettingsScreen::CreateViews() {
return UI::EVENT_CONTINUE;
});
graphicsSettings->Add(new ItemHeader(gr->T("Stereo rendering")));
bool multiViewSupported = draw->GetDeviceCaps().multiViewSupported;
auto enableStereo = [=]() -> bool {
return g_Config.bStereoRendering && multiViewSupported;
};
if (draw->GetDeviceCaps().multiViewSupported) {
graphicsSettings->Add(new CheckBox(&g_Config.bStereoRendering, gr->T("Stereo rendering")));
std::vector<std::string> stereoShaderNames;
ChoiceWithValueDisplay *stereoShaderChoice = graphicsSettings->Add(new ChoiceWithValueDisplay(&g_Config.sStereoToMonoShader, "Stereo display shader", &PostShaderTranslateName));
stereoShaderChoice->SetEnabledFunc(enableStereo);
stereoShaderChoice->OnClick.Add([=](EventParams &e) {
auto gr = GetI18NCategory("Graphics");
auto procScreen = new PostProcScreen(gr->T("Stereo display shader"), 0, true);
if (e.v)
procScreen->SetPopupOrigin(e.v);
screenManager()->push(procScreen);
return UI::EVENT_DONE;
});
const ShaderInfo *shaderInfo = GetPostShaderInfo(g_Config.sStereoToMonoShader);
if (shaderInfo) {
for (size_t i = 0; i < ARRAY_SIZE(shaderInfo->settings); ++i) {
auto &setting = shaderInfo->settings[i];
if (!setting.name.empty()) {
auto &value = g_Config.mPostShaderSetting[StringFromFormat("%sSettingValue%d", shaderInfo->section.c_str(), i + 1)];
PopupSliderChoiceFloat *settingValue = graphicsSettings->Add(new PopupSliderChoiceFloat(&value, setting.minValue, setting.maxValue, ps->T(setting.name), setting.step, screenManager()));
settingValue->SetEnabledFunc([=] {
return !g_Config.bSkipBufferEffects && enableStereo();
});
}
}
}
}
if (deviceType != DEVICE_TYPE_VR) {
graphicsSettings->Add(new ItemHeader(gr->T("Screen layout")));
#if !defined(MOBILE_DEVICE)
graphicsSettings->Add(new CheckBox(&g_Config.bFullScreen, gr->T("FullScreen", "Full Screen")))->OnClick.Handle(this, &GameSettingsScreen::OnFullscreenChange);
if (System_GetPropertyInt(SYSPROP_DISPLAY_COUNT) > 1) {
CheckBox *fullscreenMulti = new CheckBox(&g_Config.bFullScreenMulti, gr->T("Use all displays"));
fullscreenMulti->SetEnabledFunc([] {
return g_Config.UseFullScreen();
});
graphicsSettings->Add(fullscreenMulti)->OnClick.Handle(this, &GameSettingsScreen::OnFullscreenMultiChange);
}
#endif
// Display Layout Editor: To avoid overlapping touch controls on large tablets, meet geeky demands for integer zoom/unstretched image etc.
displayEditor_ = graphicsSettings->Add(new Choice(gr->T("Display layout editor")));
displayEditor_->OnClick.Add([&](UI::EventParams &) -> UI::EventReturn {
screenManager()->push(new DisplayLayoutScreen(gamePath_));
return UI::EVENT_DONE;
});
#if PPSSPP_PLATFORM(ANDROID)
// Hide insets option if no insets, or OS too old.
if (System_GetPropertyInt(SYSPROP_SYSTEMVERSION) >= 28 &&
(System_GetPropertyFloat(SYSPROP_DISPLAY_SAFE_INSET_LEFT) != 0.0f ||
System_GetPropertyFloat(SYSPROP_DISPLAY_SAFE_INSET_TOP) != 0.0f ||
System_GetPropertyFloat(SYSPROP_DISPLAY_SAFE_INSET_RIGHT) != 0.0f ||
System_GetPropertyFloat(SYSPROP_DISPLAY_SAFE_INSET_BOTTOM) != 0.0f)) {
graphicsSettings->Add(new CheckBox(&g_Config.bIgnoreScreenInsets, gr->T("Ignore camera notch when centering")));
}
// Hide Immersive Mode on pre-kitkat Android
if (System_GetPropertyInt(SYSPROP_SYSTEMVERSION) >= 19) {
// Let's reuse the Fullscreen translation string from desktop.
graphicsSettings->Add(new CheckBox(&g_Config.bImmersiveMode, gr->T("FullScreen", "Full Screen")))->OnClick.Handle(this, &GameSettingsScreen::OnImmersiveModeChange);
}
#endif
}
graphicsSettings->Add(new ItemHeader(gr->T("Performance")));
static const char *internalResolutions[] = { "Auto (1:1)", "1x PSP", "2x PSP", "3x PSP", "4x PSP", "5x PSP", "6x PSP", "7x PSP", "8x PSP", "9x PSP", "10x PSP" };
resolutionChoice_ = graphicsSettings->Add(new PopupMultiChoice(&g_Config.iInternalResolution, gr->T("Rendering Resolution"), internalResolutions, 0, ARRAY_SIZE(internalResolutions), gr->GetName(), screenManager()));
resolutionChoice_->OnChoice.Handle(this, &GameSettingsScreen::OnResolutionChange);
resolutionChoice_->SetEnabledFunc([] {
return !g_Config.bSoftwareRendering && !g_Config.bSkipBufferEffects;
});
#if PPSSPP_PLATFORM(ANDROID)
if ((deviceType != DEVICE_TYPE_TV) && (deviceType != DEVICE_TYPE_VR)) {
static const char *deviceResolutions[] = { "Native device resolution", "Auto (same as Rendering)", "1x PSP", "2x PSP", "3x PSP", "4x PSP", "5x PSP" };
int max_res_temp = std::max(System_GetPropertyInt(SYSPROP_DISPLAY_XRES), System_GetPropertyInt(SYSPROP_DISPLAY_YRES)) / 480 + 2;
if (max_res_temp == 3)
max_res_temp = 4; // At least allow 2x
int max_res = std::min(max_res_temp, (int)ARRAY_SIZE(deviceResolutions));
UI::PopupMultiChoice *hwscale = graphicsSettings->Add(new PopupMultiChoice(&g_Config.iAndroidHwScale, gr->T("Display Resolution (HW scaler)"), deviceResolutions, 0, max_res, gr->GetName(), screenManager()));
hwscale->OnChoice.Handle(this, &GameSettingsScreen::OnHwScaleChange); // To refresh the display mode
}
#endif
#if !(PPSSPP_PLATFORM(ANDROID) || defined(USING_QT_UI) || PPSSPP_PLATFORM(UWP) || PPSSPP_PLATFORM(IOS))
CheckBox *vSync = graphicsSettings->Add(new CheckBox(&g_Config.bVSync, gr->T("VSync")));
vSync->OnClick.Add([=](EventParams &e) {
NativeResized();
return UI::EVENT_CONTINUE;
});
#endif
CheckBox *frameDuplication = graphicsSettings->Add(new CheckBox(&g_Config.bRenderDuplicateFrames, gr->T("Render duplicate frames to 60hz")));
frameDuplication->OnClick.Add([=](EventParams &e) {
settingInfo_->Show(gr->T("RenderDuplicateFrames Tip", "Can make framerate smoother in games that run at lower framerates"), e.v);
@ -569,9 +531,6 @@ void GameSettingsScreen::CreateViews() {
static const char *texFilters[] = { "Auto", "Nearest", "Linear", "Auto Max Quality"};
graphicsSettings->Add(new PopupMultiChoice(&g_Config.iTexFiltering, gr->T("Texture Filter"), texFilters, 1, ARRAY_SIZE(texFilters), gr->GetName(), screenManager()));
static const char *bufFilters[] = { "Linear", "Nearest", };
graphicsSettings->Add(new PopupMultiChoice(&g_Config.iBufFilter, gr->T("Screen Scaling Filter"), bufFilters, 1, ARRAY_SIZE(bufFilters), gr->GetName(), screenManager()));
#if PPSSPP_PLATFORM(ANDROID) || PPSSPP_PLATFORM(IOS)
bool showCardboardSettings = deviceType != DEVICE_TYPE_VR;
#else
@ -609,13 +568,6 @@ void GameSettingsScreen::CreateViews() {
graphicsSettings->Add(new PopupMultiChoice(&g_Config.iShowFPSCounter, gr->T("Show FPS Counter"), fpsChoices, 0, ARRAY_SIZE(fpsChoices), gr->GetName(), screenManager()));
graphicsSettings->Add(new CheckBox(&g_Config.bShowDebugStats, gr->T("Show Debug Statistics")))->OnClick.Handle(this, &GameSettingsScreen::OnJitAffectingSetting);
// Developer tools are not accessible ingame, so it goes here.
graphicsSettings->Add(new ItemHeader(gr->T("Debugging")));
Choice *dump = graphicsSettings->Add(new Choice(gr->T("Dump next frame to log")));
dump->OnClick.Handle(this, &GameSettingsScreen::OnDumpNextFrameToLog);
if (!PSP_IsInited())
dump->SetEnabled(false);
// Audio
LinearLayout *audioSettings = AddTab("GameSettingsAudio", ms->T("Audio"));
@ -1302,13 +1254,6 @@ UI::EventReturn GameSettingsScreen::OnHwScaleChange(UI::EventParams &e) {
return UI::EVENT_DONE;
}
UI::EventReturn GameSettingsScreen::OnDumpNextFrameToLog(UI::EventParams &e) {
if (gpu) {
gpu->DumpNextFrame();
}
return UI::EVENT_DONE;
}
void GameSettingsScreen::update() {
UIScreen::update();
@ -1759,6 +1704,7 @@ void DeveloperToolsScreen::CreateViews() {
auto gr = GetI18NCategory("Graphics");
auto a = GetI18NCategory("Audio");
auto sy = GetI18NCategory("System");
auto ps = GetI18NCategory("PostShaders");
AddStandardBack(root_);
@ -1809,13 +1755,50 @@ void DeveloperToolsScreen::CreateViews() {
if (GetGPUBackend() == GPUBackend::VULKAN) {
list->Add(new CheckBox(&g_Config.bGpuLogProfiler, gr->T("GPU log profiler")));
}
list->Add(new ItemHeader(dev->T("Language")));
list->Add(new Choice(dev->T("Load language ini")))->OnClick.Handle(this, &DeveloperToolsScreen::OnLoadLanguageIni);
list->Add(new Choice(dev->T("Save language ini")))->OnClick.Handle(this, &DeveloperToolsScreen::OnSaveLanguageIni);
list->Add(new ItemHeader(dev->T("Texture Replacement")));
list->Add(new CheckBox(&g_Config.bSaveNewTextures, dev->T("Save new textures")));
list->Add(new CheckBox(&g_Config.bReplaceTextures, dev->T("Replace textures")));
Draw::DrawContext *draw = screenManager()->getDrawContext();
// Experimental, will move to main graphics settings later.
list->Add(new ItemHeader(gr->T("Stereo rendering")));
bool multiViewSupported = draw->GetDeviceCaps().multiViewSupported;
auto enableStereo = [=]() -> bool {
return g_Config.bStereoRendering && multiViewSupported;
};
if (draw->GetDeviceCaps().multiViewSupported) {
list->Add(new CheckBox(&g_Config.bStereoRendering, gr->T("Stereo rendering")));
std::vector<std::string> stereoShaderNames;
ChoiceWithValueDisplay *stereoShaderChoice = list->Add(new ChoiceWithValueDisplay(&g_Config.sStereoToMonoShader, "Stereo display shader", &PostShaderTranslateName));
stereoShaderChoice->SetEnabledFunc(enableStereo);
stereoShaderChoice->OnClick.Add([=](EventParams &e) {
auto gr = GetI18NCategory("Graphics");
auto procScreen = new PostProcScreen(gr->T("Stereo display shader"), 0, true);
if (e.v)
procScreen->SetPopupOrigin(e.v);
screenManager()->push(procScreen);
return UI::EVENT_DONE;
});
const ShaderInfo *shaderInfo = GetPostShaderInfo(g_Config.sStereoToMonoShader);
if (shaderInfo) {
for (size_t i = 0; i < ARRAY_SIZE(shaderInfo->settings); ++i) {
auto &setting = shaderInfo->settings[i];
if (!setting.name.empty()) {
auto &value = g_Config.mPostShaderSetting[StringFromFormat("%sSettingValue%d", shaderInfo->section.c_str(), i + 1)];
PopupSliderChoiceFloat *settingValue = list->Add(new PopupSliderChoiceFloat(&value, setting.minValue, setting.maxValue, ps->T(setting.name), setting.step, screenManager()));
settingValue->SetEnabledFunc([=] {
return !g_Config.bSkipBufferEffects && enableStereo();
});
}
}
}
}
// Makes it easy to get savestates out of an iOS device. The file listing shown in MacOS doesn't allow
// you to descend into directories.
#if PPSSPP_PLATFORM(IOS)
@ -1883,16 +1866,6 @@ UI::EventReturn DeveloperToolsScreen::OnRunCPUTests(UI::EventParams &e) {
return UI::EVENT_DONE;
}
UI::EventReturn DeveloperToolsScreen::OnSaveLanguageIni(UI::EventParams &e) {
i18nrepo.SaveIni(g_Config.sLanguageIni);
return UI::EVENT_DONE;
}
UI::EventReturn DeveloperToolsScreen::OnLoadLanguageIni(UI::EventParams &e) {
i18nrepo.LoadIni(g_Config.sLanguageIni);
return UI::EVENT_DONE;
}
UI::EventReturn DeveloperToolsScreen::OnOpenTexturesIniFile(UI::EventParams &e) {
std::string gameID = g_paramSFO.GetDiscID();
Path generatedFilename;

View file

@ -168,8 +168,6 @@ protected:
private:
UI::EventReturn OnRunCPUTests(UI::EventParams &e);
UI::EventReturn OnLoggingChanged(UI::EventParams &e);
UI::EventReturn OnLoadLanguageIni(UI::EventParams &e);
UI::EventReturn OnSaveLanguageIni(UI::EventParams &e);
UI::EventReturn OnOpenTexturesIniFile(UI::EventParams &e);
UI::EventReturn OnLogConfig(UI::EventParams &e);
UI::EventReturn OnJitAffectingSetting(UI::EventParams &e);

View file

@ -326,7 +326,7 @@ void GamePauseScreen::CreateViews() {
rightColumnItems->Add(new Choice(pa->T("Settings")))->OnClick.Handle(this, &GamePauseScreen::OnGameSettings);
rightColumnItems->Add(new Choice(pa->T("Create Game Config")))->OnClick.Handle(this, &GamePauseScreen::OnCreateConfig);
}
UI::Choice *displayEditor_ = rightColumnItems->Add(new Choice(gr->T("Display layout editor")));
UI::Choice *displayEditor_ = rightColumnItems->Add(new Choice(gr->T("Display Layout && Effects")));
displayEditor_->OnClick.Add([&](UI::EventParams &) -> UI::EventReturn {
screenManager()->push(new DisplayLayoutScreen(gamePath_));
return UI::EVENT_DONE;

View file

@ -547,7 +547,7 @@ BEGIN
MENUITEM "Ignore Windows Key", ID_OPTIONS_IGNOREWINKEY
MENUITEM "Language...", ID_OPTIONS_LANGUAGE
MENUITEM "Control Mapping...", ID_OPTIONS_CONTROLS
MENUITEM "Display Layout Editor", ID_OPTIONS_DISPLAY_LAYOUT
MENUITEM "Display Layout && Effects", ID_OPTIONS_DISPLAY_LAYOUT
MENUITEM "More Settings...", ID_OPTIONS_MORE_SETTINGS
MENUITEM "", 0, MFT_SEPARATOR
MENUITEM "Fullscreen", ID_OPTIONS_FULLSCREEN

View file

@ -145,7 +145,7 @@ Direct3D9 = Direct3D &9
Direct3D11 = Direct3D &11
Disassembly = &التفكيك...
Discord = Discord
Display Layout Editor = ‎أظهر مُعدل النسق...
Display Layout && Effects = ‎أظهر مُعدل النسق...
Display Rotation = ‎تدوير العرض
Dump Next Frame to Log = ‎تصحيح الفريم التالي إلي سجل
Emulation = &محاكاة
@ -240,7 +240,7 @@ DevMenu = DevMenu
Disabled JIT functionality = Disabled JIT functionality
Draw Frametimes Graph = Draw frametimes graph
Dump Decrypted Eboot = Dump decrypted EBOOT.BIN on game boot
Dump Frame GPU Commands = Dump frame GPU commands
Dump next frame to log = Dump next frame to log
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = ‎تفعيل سجل التصحيح
Enter address = ‎أدخل العنوان
@ -252,8 +252,6 @@ GPU Log Profiler = GPU Log Profiler
GPU Profile = GPU profile
Jit Compare = Jit compare
JIT debug tools = JIT debug tools
Language = ‎اللغة
Load language ini = ‎تحميل ملف اللغة
Log Dropped Frame Statistics = ‎سجل التفاصيل للفريمات المتدنية
Log Level = ‎مستوي السجل
Log View = ‎أظهر السجل
@ -269,7 +267,6 @@ RestoreDefaultSettings = Are you sure you want to restore all settings back to t
RestoreGameDefaultSettings = Are you sure you want to restore the game-specific settings\nback to the PPSSPP defaults?
Resume = Resume
Run CPU Tests = ‎شغل فحوص المعالج
Save language ini = ‎إحفظ ملف اللغة
Save new textures = ‎حفظ الرسم الجديد
Shader Viewer = ‎مستعرض الرسوميات
Show Developer Menu = ‎أظهر قائمة المطور
@ -495,9 +492,8 @@ Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = Disabled
Display layout editor = Display layout editor
Display Layout && Effects = ‎أظهر مُعدل النسق
Display Resolution (HW scaler) = Display resolution (HW scaler)
Dump next frame to log = Dump next frame to log
Enable Cardboard VR = Enable Cardboard VR
FPS = FPS
Frame Rate Control = ‎التحكم في معدل الإطارات
@ -549,7 +545,6 @@ Rendering Resolution = ‎حجم التصيير
RenderingMode NonBuffered Tip = ‎أسرع, لكن يمكن أن لا يظهر أي شئ في بعض الألعاب
Rotation = ‎الدوران
Safe = ‎أمن
Screen layout = Screen layout
Screen Scaling Filter = ‎فلتر تكبير حجم الشاشة
Show Debug Statistics = ‎أظهر معلومات التصحيح
Show FPS Counter = ‎أظهر عداد الـFPS

View file

@ -137,7 +137,7 @@ Direct3D9 = &Direct3D9
Direct3D11 = Direct3D &11
Disassembly = &Disassembly...
Discord = Discord
Display Layout Editor = Display layout editor...
Display Layout && Effects = Display layout && effects...
Display Rotation = Display rotation
Dump Next Frame to Log = D&ump Next Frame to Log
Emulation = &Emulation
@ -232,7 +232,7 @@ DevMenu = DevMenu
Disabled JIT functionality = Disabled JIT functionality
Draw Frametimes Graph = Draw frametimes graph
Dump Decrypted Eboot = Dump decrypted EBOOT.BIN on game boot
Dump Frame GPU Commands = Dump frame GPU commands
Dump next frame to log = Dump next frame to log
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Enable debug logging
Enter address = Enter address
@ -244,8 +244,6 @@ GPU Log Profiler = GPU Log Profiler
GPU Profile = GPU profile
Jit Compare = Jit compare
JIT debug tools = JIT debug tools
Language = Language
Load language ini = Dil faylı yüklə(.ini)
Log Dropped Frame Statistics = Log dropped frame statistics
Log Level = Log level
Log View = Log view
@ -261,7 +259,6 @@ RestoreDefaultSettings = Are you sure you want to restore all settings back to t
RestoreGameDefaultSettings = Are you sure you want to restore the game-specific settings\nback to the PPSSPP defaults?
Resume = Resume
Run CPU Tests = Run CPU tests
Save language ini = Dil faylını qeyd et (.ini)
Save new textures = Save new textures
Shader Viewer = Shader viewer
Show Developer Menu = Show developer menu
@ -487,9 +484,8 @@ Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = Disabled
Display layout editor = Display layout editor
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Display resolution (HW scaler)
Dump next frame to log = Dump next frame to log
Enable Cardboard VR = Enable Cardboard VR
FPS = FPS
Frame Rate Control = Framerate control
@ -541,7 +537,6 @@ Rendering Resolution = Rendering resolution
RenderingMode NonBuffered Tip = Faster, but nothing may draw in some games
Rotation = Rotation
Safe = Safe
Screen layout = Screen layout
Screen Scaling Filter = Screen scaling filter
Show Debug Statistics = Show debug statistics
Show FPS Counter = Show FPS counter

View file

@ -137,7 +137,7 @@ Direct3D9 = &Direct3D9
Direct3D11 = Direct3D &11
Disassembly = &Disassembly...
Discord = Discord
Display Layout Editor = Display layout editor...
Display Layout && Effects = Display layout && effects...
Display Rotation = Display rotation
Dump Next Frame to Log = D&ump Next Frame to Log
Emulation = &Емулация
@ -232,7 +232,7 @@ DevMenu = DevMenu
Disabled JIT functionality = Disabled JIT functionality
Draw Frametimes Graph = Draw frametimes graph
Dump Decrypted Eboot = Dump decrypted EBOOT.BIN on game boot
Dump Frame GPU Commands = Dump frame GPU commands
Dump next frame to log = Dump next frame to log
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Enable debug logging
Enter address = Enter address
@ -244,8 +244,6 @@ GPU Log Profiler = GPU Log Profiler
GPU Profile = GPU profile
Jit Compare = Jit compare
JIT debug tools = JIT debug tools
Language = Език
Load language ini = Зареди езиков ini
Log Dropped Frame Statistics = Log dropped frame statistics
Log Level = Log level
Log View = Log view
@ -261,7 +259,6 @@ RestoreDefaultSettings = Сигурни ли сте, че искате да въ
RestoreGameDefaultSettings = Are you sure you want to restore the game-specific settings\nback to the PPSSPP defaults?
Resume = Resume
Run CPU Tests = Run CPU tests
Save language ini = Запази езиков ini
Save new textures = Save new textures
Shader Viewer = Shader viewer
Show Developer Menu = Покажи developer меню
@ -487,9 +484,8 @@ Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = Disabled
Display layout editor = Display layout editor
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Display resolution (HW scaler)
Dump next frame to log = Dump next frame to log
Enable Cardboard VR = Enable Cardboard VR
FPS = Кадри в сек.
Frame Rate Control = Framerate control
@ -541,7 +537,6 @@ Rendering Resolution = Rendering resolution
RenderingMode NonBuffered Tip = Faster, but nothing may draw in some games
Rotation = Rotation
Safe = Safe
Screen layout = Screen layout
Screen Scaling Filter = Screen scaling filter
Show Debug Statistics = Покажи debug инфо
Show FPS Counter = Покажи брояча за кадри в сек.

View file

@ -137,7 +137,7 @@ Direct3D9 = &Direct3D9
Direct3D11 = Direct3D11
Disassembly = &Desensamblador...
Discord = Discord
Display Layout Editor = Editeu la posició dels botons...
Display Layout && Effects = Editeu la posició dels botons...
Display Rotation = Rotació de la pantalla
Dump Next Frame to Log = Aboca el següent marc al registre
Emulation = &Emulació
@ -232,7 +232,7 @@ DevMenu = DevMenu
Disabled JIT functionality = Disabled JIT functionality
Draw Frametimes Graph = Draw frametimes graph
Dump Decrypted Eboot = Aboca «EBOOT.BIN» desxifrat quan s'iniciï el joc
Dump Frame GPU Commands = Aboca ordres del marc GPU
Dump next frame to log = Dump next frame to log
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Activa el registre
Enter address = Inseriu adreça
@ -244,8 +244,6 @@ GPU Log Profiler = GPU Log Profiler
GPU Profile = GPU profile
Jit Compare = Comparació Jit
JIT debug tools = JIT debug tools
Language = Llengua
Load language ini = Carrega INI d'idioma
Log Dropped Frame Statistics = Registra estadístiques de caigudes de marcs
Log Level = Nivell del registre
Log View = Vegeu el registre
@ -261,7 +259,6 @@ RestoreDefaultSettings = Esteu segur que voleu restablir els ajustaments de fàb
RestoreGameDefaultSettings = Esteu segur que voleu restablir els paràmetres de joc\na els paràmetres per defecte de PPSSPP?
Resume = Resume
Run CPU Tests = Proves de CPU
Save language ini = Desa l'INI de l'idioma
Save new textures = Desa les noves textures
Shader Viewer = Visualitzador de shader
Show Developer Menu = Mostra el menú de desenvolupament
@ -487,9 +484,8 @@ Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = Disabled
Display layout editor = Display layout editor
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Display resolution (HW scaler)
Dump next frame to log = Dump next frame to log
Enable Cardboard VR = Enable Cardboard VR
FPS = FPS
Frame Rate Control = Framerate control
@ -541,7 +537,6 @@ Rendering Resolution = Rendering resolution
RenderingMode NonBuffered Tip = Faster, but nothing may draw in some games
Rotation = Rotation
Safe = Safe
Screen layout = Screen layout
Screen Scaling Filter = Screen scaling filter
Show Debug Statistics = Show debug statistics
Show FPS Counter = Show FPS counter

View file

@ -137,7 +137,7 @@ Direct3D9 = &Direct3D9
Direct3D11 = Direct3D &11
Disassembly = R&ozebrání strojového kódu...
Discord = Discord
Display Layout Editor = Zobrazit editor rozvržení...
Display Layout && Effects = Zobrazit editor rozvržení...
Display Rotation = Otočení obrazovky
Dump Next Frame to Log = &Vypsat příští snímek do záznamu
Emulation = &Emulace
@ -232,7 +232,7 @@ DevMenu = DevMenu
Disabled JIT functionality = Disabled JIT functionality
Draw Frametimes Graph = Draw frametimes graph
Dump Decrypted Eboot = Vypsat dešifrovaný EBOOT.BIN při načtení hry
Dump Frame GPU Commands = Vypsat příkazy snímku pro grafický procesor
Dump next frame to log = Vypsat příští snímek do záznamu
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Povolit záznam při ladění
Enter address = Zadejte adresu
@ -244,8 +244,6 @@ GPU Log Profiler = GPU Log Profiler
GPU Profile = GPU profile
Jit Compare = Porovnání JIT
JIT debug tools = JIT debug tools
Language = Jazyk
Load language ini = Načíst ini s jazykem
Log Dropped Frame Statistics = Log dropped frame statistics
Log Level = Úroveň záznamu
Log View = Zobrazení záznamu
@ -261,7 +259,6 @@ RestoreDefaultSettings = Jste si jisti obnovou všech nastavení zpět na jejich
RestoreGameDefaultSettings = Jste si jisti obnovou nastavení hry\nzpět na výchozí hodnoty PPSSPP?
Resume = Resume
Run CPU Tests = Spustit zkoušky CPU
Save language ini = Uložit ini s jazykem
Save new textures = Save new textures
Shader Viewer = Prohlížeč shaderů
Show Developer Menu = Zobrazit nabídku pro vývojáře
@ -487,9 +484,8 @@ Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = Disabled
Display layout editor = Zobrazit editor rozvržení
Display Layout && Effects = Zobrazit editor rozvržení
Display Resolution (HW scaler) = Rozlišení obrazovky (Hardwarové zvětšení)
Dump next frame to log = Vypsat příští snímek do záznamu
Enable Cardboard VR = Enable Cardboard VR
FPS = FPS
Frame Rate Control = Kontrola frekvence snímků
@ -541,7 +537,6 @@ Rendering Resolution = Rozlišení vykreslování
RenderingMode NonBuffered Tip = Faster, but nothing may draw in some games
Rotation = Otočení
Safe = Bezpečné
Screen layout = Screen layout
Screen Scaling Filter = Filtr změny velikosti obrazovky
Show Debug Statistics = Zobrazit statistiky ladění
Show FPS Counter = Zobrazit počítadlo

View file

@ -137,7 +137,7 @@ Direct3D9 = &Direct3D9
Direct3D11 = Direct3D11
Disassembly = &Disassembly...
Discord = Discord
Display Layout Editor = Display layout editor...
Display Layout && Effects = Display layout && effects...
Display Rotation = Display rotation
Dump Next Frame to Log = G&em næste frame i loggen
Emulation = &Emulation
@ -232,7 +232,7 @@ DevMenu = DevMenu
Disabled JIT functionality = Disabled JIT functionality
Draw Frametimes Graph = Draw frametimes graph
Dump Decrypted Eboot = Dump dekrypteret EBOOT.BIN ved spil boot
Dump Frame GPU Commands = Drop frame GPU kommandoer
Dump next frame to log = Gem næste frame i loggen
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Aktiver fejlfindingslogning
Enter address = Indtast adresse
@ -244,8 +244,6 @@ GPU Log Profiler = GPU Log Profiler
GPU Profile = GPU profile
Jit Compare = Jit sammenlign
JIT debug tools = JIT debug tools
Language = Sprog
Load language ini = Hent sprog ini
Log Dropped Frame Statistics = Log Droppede Frames Statistik
Log Level = Logniveau
Log View = Log visning
@ -261,7 +259,6 @@ RestoreDefaultSettings = Er du sikker på at du vil sætte indstillinger tilbage
RestoreGameDefaultSettings = Er du sikker på at du vil nustille de spilspecifikke\nindstillinger tilbage til standard?
Resume = Resume
Run CPU Tests = Kør CPU test
Save language ini = Gem sprog ini
Save new textures = Gem nye textures
Shader Viewer = Shader viewer
Show Developer Menu = Vis udviklermenu
@ -487,9 +484,8 @@ Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = Disabled
Display layout editor = Display layout editor
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Skærmopløsning (HW scaler)
Dump next frame to log = Gem næste frame i loggen
Enable Cardboard VR = Enable Cardboard VR
FPS = FPS
Frame Rate Control = Frameratekontrol
@ -541,7 +537,6 @@ Rendering Resolution = Render opløsning
RenderingMode NonBuffered Tip = Hurtigere, men intet vises i nogle spil
Rotation = Rotation
Safe = Sikker
Screen layout = Screen layout
Screen Scaling Filter = Skærmskaleringsfilter
Show Debug Statistics = Vis debugstatistik
Show FPS Counter = Vis FPS

View file

@ -137,7 +137,7 @@ Direct3D9 = Direct3D9
Direct3D11 = Direct3D11
Disassembly = Disassembler...
Discord = Discord
Display Layout Editor = Bildschirmlayout Editor...
Display Layout && Effects = Bildschirmlayout Editor...
Display Rotation = Bildschirmdrehung
Dump Next Frame to Log = Nächsten Frame im Log speichern
Emulation = Emulation
@ -232,7 +232,7 @@ DevMenu = Entwicklermenü
Disabled JIT functionality = Deaktivierte JIT Funktionalität
Draw Frametimes Graph = Zeichne frametimes Graphen
Dump Decrypted Eboot = Entschlüsselte EBOOT.BIN abspeichern (falls verschlüsselt)
Dump Frame GPU Commands = GPU Befehle des Frames ausgeben
Dump next frame to log = Nächsten Frame im Log speichern
Enable driver bug workarounds = Aktiviere Driver-Fehler workarounds
Enable Logging = Aktiviere Logging
Enter address = Adresse eingeben
@ -244,8 +244,6 @@ GPU Log Profiler = GPU Log Profiler
GPU Profile = GPU Profil
Jit Compare = JIT-Vergleich
JIT debug tools = JIT Debug Werkzeuge
Language = Sprache
Load language ini = Sprachdatei laden
Log Dropped Frame Statistics = Statistik für fehlende Einzelbilder loggen
Log Level = Loglevel
Log View = Logbuch
@ -261,7 +259,6 @@ RestoreDefaultSettings = Sind Sie sicher, dass Sie alle Standardeinstellungen\n(
RestoreGameDefaultSettings = Wollen Sie wirklich die spielspezifischen Einstellungen\nauf die Werkseinstellungen von PPSSPP zurücksetzen?
Resume = Resume
Run CPU Tests = CPU Test starten
Save language ini = Sprachdatei speichern
Save new textures = Speichere neue Texturen
Shader Viewer = Shader-Anzeige
Show Developer Menu = Zeige Entwicklermenü
@ -487,9 +484,8 @@ Device = Gerät
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = Deaktiviert
Display layout editor = Bildschirmlayout Editor
Display Layout && Effects = Bildschirmlayout Editor
Display Resolution (HW scaler) = Bildschirmauflösung (HW Skalierung)
Dump next frame to log = Nächsten Frame im Log speichern
Enable Cardboard VR = Cardboard VR aktivieren
FPS = FPS
Frame Rate Control = Frameratenkontrolle
@ -541,7 +537,6 @@ Rendering Resolution = Renderauflösung
RenderingMode NonBuffered Tip = Schneller, aber keine Anzeige in einigen Spielen
Rotation = Drehung
Safe = Sicher
Screen layout = Screen layout
Screen Scaling Filter = Filter für Bildskalierung
Show Debug Statistics = Debugstatistiken anzeigen
Show FPS Counter = FPS anzeigen

View file

@ -137,7 +137,7 @@ Direct3D9 = &Direct3D9
Direct3D11 = Direct3D &11
Disassembly = &Disassembly...
Discord = Discord
Display Layout Editor = Display layout editor...
Display Layout && Effects = Display layout && effects...
Display Rotation = Display rotation
Dump Next Frame to Log = Ca'b&eranni lako log
Emulation = &Emulasi
@ -232,7 +232,7 @@ DevMenu = DevMenu
Disabled JIT functionality = Disabled JIT functionality
Draw Frametimes Graph = Draw frametimes graph
Dump Decrypted Eboot = Dump decrypted EBOOT.BIN on game boot
Dump Frame GPU Commands = Dump frame GPU commands
Dump next frame to log = Palakoi log to gambara' undipa
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Padenni Log
Enter address = Enter address
@ -244,8 +244,6 @@ GPU Log Profiler = GPU Log Profiler
GPU Profile = GPU profile
Jit Compare = Jit compare
JIT debug tools = JIT debug tools
Language = Bahasa
Load language ini = Bukka' filena to bahasa
Log Dropped Frame Statistics = Log dropped frame statistics
Log Level = Log level
Log View = Log view
@ -261,7 +259,6 @@ RestoreDefaultSettings = Are you sure you want to restore all settings back to t
RestoreGameDefaultSettings = Are you sure you want to restore the game-specific settings\nback to the PPSSPP defaults?
Resume = Resume
Run CPU Tests = Pajalanni tes CPU
Save language ini = Annai filena to bahasa
Save new textures = Save new textures
Shader Viewer = Shader viewer
Show Developer Menu = Show developer menu
@ -487,9 +484,8 @@ Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = Disabled
Display layout editor = Display layout editor
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Display resolution (HW scaler)
Dump next frame to log = Palakoi log to gambara' undipa
Enable Cardboard VR = Enable Cardboard VR
FPS = FPS
Frame Rate Control = Atoro'i FRna
@ -541,7 +537,6 @@ Rendering Resolution = Rendering resolution
RenderingMode NonBuffered Tip = Faster, but nothing may draw in some games
Rotation = Rotation
Safe = Safe
Screen layout = Screen layout
Screen Scaling Filter = Screen scaling filter
Show Debug Statistics = Padenni Debugna
Show FPS Counter = Padenni FPSna

View file

@ -161,7 +161,7 @@ Direct3D9 = Direct3D &9
Direct3D11 = Direct3D &11
Disassembly = &Disassembly...
Discord = Discord
Display Layout Editor = Display layout editor...
Display Layout && Effects = Display layout && effects...
Display Rotation = Display rotation
Dump Next Frame to Log = D&ump next frame to log
Emulation = &Emulation
@ -512,7 +512,7 @@ Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = Disabled
Display layout editor = Display layout editor
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Display resolution (HW scaler)
Dump next frame to log = Dump next frame to log
Enable Cardboard VR = Enable Cardboard VR

View file

@ -137,7 +137,7 @@ Direct3D9 = &Direct3D9
Direct3D11 = Direct3D &11
Disassembly = &Desensamblador...
Discord = Discord
Display Layout Editor = Editar posición de botones...
Display Layout && Effects = Editar posición de botones...
Display Rotation = Rotación de pantalla
Dump Next Frame to Log = &Volcar siguiente cuadro a registro
Emulation = &Emulación
@ -232,7 +232,7 @@ DevMenu = DevMenu
Disabled JIT functionality = Desactivar funcionalidad JIT
Draw Frametimes Graph = Dibujar gráfico de cuadros
Dump Decrypted Eboot = Volcar "EBOOT.BIN" descifrado al iniciar el juego
Dump Frame GPU Commands = Volcar comandos GPU del cuadro
Dump next frame to log = Volcar siguiente cuadro al registro
Enable driver bug workarounds = Activar arreglos alternativos para fallos de drivers
Enable Logging = Activar registro
Enter address = Insertar dirección
@ -244,8 +244,6 @@ GPU Log Profiler = GPU Log Profiler
GPU Profile = Perfil GPU
Jit Compare = Comparación JIT
JIT debug tools = Herramientas de depuración JIT
Language = Idioma
Load language ini = Cargar INI de idioma
Log Dropped Frame Statistics = Registrar estadísticas de caídas de fotogramas
Log Level = Nivel de registro
Log View = Ver el registro
@ -261,7 +259,6 @@ RestoreDefaultSettings = ¿Seguro que quieres volver a los ajustes de fábrica?\
RestoreGameDefaultSettings = ¿Seguro que quieres reestablecer los ajustes del juego\na los ajustes por defecto de PPSSPP?
Resume = Reanudar
Run CPU Tests = Pruebas de CPU
Save language ini = Guardar INI de idioma
Save new textures = Guardar texturas nuevas
Shader Viewer = Visor de shader
Show Developer Menu = Mostrar menú de desarrollo
@ -487,9 +484,8 @@ Device = Dispositivo
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = Desactivado
Display layout editor = Editor del área de pantalla
Display Layout && Effects = Editor del área de pantalla
Display Resolution (HW scaler) = Resolución de pantalla (escalado por hardware)
Dump next frame to log = Volcar siguiente cuadro al registro
Enable Cardboard VR = Activar Cardboard VR
FPS = FPS
Frame Rate Control = Control de tasa de cuadros (FPS)
@ -541,7 +537,6 @@ Rendering Resolution = Resolución de renderizado
RenderingMode NonBuffered Tip = Rápido, pero no se verá nada en algunos juegos.
Rotation = Rotación
Safe = Seguro
Screen layout = Diseño de pantalla
Screen Scaling Filter = Filtro de escalado de pantalla
Show Debug Statistics = Mostrar estadísticas de depuración
Show FPS Counter = Mostrar contador de FPS

View file

@ -137,7 +137,7 @@ Direct3D9 = &Direct3D 9
Direct3D11 = Direct3D &11
Disassembly = &Desensamblador...
Discord = Discord
Display Layout Editor = Editar posición de botones...
Display Layout && Effects = Editar posición de botones...
Display Rotation = Rotación de pantalla
Dump Next Frame to Log = &Volcar siguiente cuadro a registro
Emulation = &Emulación
@ -232,7 +232,7 @@ DevMenu = Menú Depuración
Disabled JIT functionality = Apagar funcionalidad de JIT
Draw Frametimes Graph = Mostrar gráfica de tiempos de frames
Dump Decrypted Eboot = Volcar EBOOT.BIN descifrado al iniciar el juego
Dump Frame GPU Commands = Volcar comandos GPU del cuadro
Dump next frame to log = Volcar siguiente cuadro al registro
Enable driver bug workarounds = Activar arreglos alternativos para fallos de drivers
Enable Logging = Activar registro
Enter address = Insertar dirección
@ -244,8 +244,6 @@ GPU Log Profiler = GPU Log Profiler
GPU Profile = Perfil de GPU
Jit Compare = Comparar JIT
JIT debug tools = Herr. de depuración de JIT
Language = Idioma
Load language ini = Cargar INI de idioma
Log Dropped Frame Statistics = Registrar estadísticas de frames caídos
Log Level = Nivel de registro
Log View = Ver el registro
@ -261,7 +259,6 @@ RestoreDefaultSettings = ¿Seguro que quieres volver a los ajustes de fábrica?\
RestoreGameDefaultSettings = ¿Seguro que quieres reestablecer los ajustes del juego\na los ajustes por defecto de PPSSPP?
Resume = Reanudar
Run CPU Tests = Ejecutando pruebas de CPU
Save language ini = Guardar INI de idioma
Save new textures = Guardar nuevas texturas
Shader Viewer = Visor de shader
Show Developer Menu = Mostrar menú de desarrollador
@ -487,9 +484,8 @@ Device = Dispositivo
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = Apagado
Display layout editor = Editor del área de pantalla
Display Layout && Effects = Editor del área de pantalla
Display Resolution (HW scaler) = Resolución de pantalla (escalado por HW)
Dump next frame to log = Volcar siguiente cuadro al registro
Enable Cardboard VR = Activar Cardboard VR
FPS = FPS
Frame Rate Control = Control de Framerate
@ -541,7 +537,6 @@ Rendering Resolution = Resolución de renderizado
RenderingMode NonBuffered Tip = Acelera, pero no podrá generar gráficos en algunos juegos.
Rotation = Rotación
Safe = Seguro
Screen layout = Disposición de pantalla
Screen Scaling Filter = Filtro de escalado de pantalla
Show Debug Statistics = Mostrar estadísticas de depuración
Show FPS Counter = Mostrar contador de FPS

View file

@ -137,7 +137,7 @@ Direct3D9 = &Direct3D9
Direct3D11 = Direct3D &11
Disassembly = ...جداسازی قطعات
Discord = Discord
Display Layout Editor = ‎ویرایشگر چیدمان صفحه
Display Layout && Effects = ‎ویرایشگر چیدمان صفحه
Display Rotation = ‎چرخش صفحه
Dump Next Frame to Log = ‎تخلیه فریم بعدی به فایل لاگ
Emulation = ‎شبیه سازی
@ -232,7 +232,7 @@ DevMenu = DevMenu
Disabled JIT functionality = Disabled JIT functionality
Draw Frametimes Graph = Draw frametimes graph
Dump Decrypted Eboot = Dump decrypted EBOOT.BIN on game boot
Dump Frame GPU Commands = Dump frame GPU commands
Dump next frame to log = ‎ریختن فریم بعدی به فایل لاگ
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = ‎روشن کردن لاگ باگ ها
Enter address = Enter address
@ -244,8 +244,6 @@ GPU Log Profiler = GPU Log Profiler
GPU Profile = GPU profile
Jit Compare = Jit compare
JIT debug tools = JIT debug tools
Language = ‎زبان
Load language ini = ini بارگیری فایل زبان با فرمت
Log Dropped Frame Statistics = Log dropped frame statistics
Log Level = Log level
Log View = Log view
@ -261,7 +259,6 @@ RestoreDefaultSettings = ‎آیا شما می خواهید که تمامی تن
RestoreGameDefaultSettings = Are you sure you want to restore the game-specific settings\nback to the PPSSPP defaults?
Resume = Resume
Run CPU Tests = CPU اجرای تست
Save language ini = ini ذخیره فایل زبان با فرمت
Save new textures = Save new textures
Shader Viewer = Shader viewer
Show Developer Menu = Show developer menu
@ -487,9 +484,8 @@ Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = Disabled
Display layout editor = ‎ویرایشگر چیدمان صفحه
Display Layout && Effects = ‎ویرایشگر چیدمان صفحه
Display Resolution (HW scaler) = ‎رزولوشن صفحه
Dump next frame to log = ‎ریختن فریم بعدی به فایل لاگ
Enable Cardboard VR = Enable Cardboard VR
FPS = ‎فریم بر ثانیه
Frame Rate Control = ‎کنترل سرعت فریم
@ -541,7 +537,6 @@ Rendering Resolution = ‎رزولوشن رندرینگ
RenderingMode NonBuffered Tip = ‎سریع تر، اما در بعضی بازی ها ممکن است چیزی نشان ندهد
Rotation = ‎چرخش
Safe = ‎امن
Screen layout = Screen layout
Screen Scaling Filter = ‎فیلتر تغییر ساز صفحه
Show Debug Statistics = ‎نمایش اطلاعات دیباگ
Show FPS Counter = ‎نمایش شمارنده فریم بر ثانیه

View file

@ -137,7 +137,7 @@ Direct3D9 = &Direct3D9
Direct3D11 = Direct3D &11
Disassembly = &Disassembly...
Discord = Discord
Display Layout Editor = Display layout editor...
Display Layout && Effects = Display layout && effects...
Display Rotation = Display rotation
Dump Next Frame to Log = D&ump Next Frame to Log
Emulation = &Emulation
@ -232,7 +232,7 @@ DevMenu = DevMenu
Disabled JIT functionality = Disabled JIT functionality
Draw Frametimes Graph = Draw frametimes graph
Dump Decrypted Eboot = Dump decrypted EBOOT.BIN on game boot
Dump Frame GPU Commands = Dump frame GPU commands
Dump next frame to log = Dump next frame to log
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Ota virheenkorjauksen kirjaaminen käyttöön
Enter address = Enter address
@ -244,8 +244,6 @@ GPU Log Profiler = GPU Log Profiler
GPU Profile = GPU profile
Jit Compare = Jit compare
JIT debug tools = JIT debug tools
Language = Language
Load language ini = Lataa kielipaketti
Log Dropped Frame Statistics = Log dropped frame statistics
Log Level = Log level
Log View = Log view
@ -261,7 +259,6 @@ RestoreDefaultSettings = Are you sure you want to restore all settings back to t
RestoreGameDefaultSettings = Are you sure you want to restore the game-specific settings\nback to the PPSSPP defaults?
Resume = Resume
Run CPU Tests = Suorita suoritin testi
Save language ini = Tallenna kielipaketti
Save new textures = Save new textures
Shader Viewer = Shader viewer
Show Developer Menu = Show developer menu
@ -487,9 +484,8 @@ Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = Disabled
Display layout editor = Display layout editor
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Display resolution (HW scaler)
Dump next frame to log = Dump next frame to log
Enable Cardboard VR = Enable Cardboard VR
FPS = FPS
Frame Rate Control = Framerate control
@ -541,7 +537,6 @@ Rendering Resolution = Rendering resolution
RenderingMode NonBuffered Tip = Faster, but nothing may draw in some games
Rotation = Rotation
Safe = Safe
Screen layout = Screen layout
Screen Scaling Filter = Screen scaling filter
Show Debug Statistics = Näytä virheenkorjaustilastot
Show FPS Counter = Näytä FPS-laskuri

View file

@ -137,7 +137,7 @@ Direct3D9 = Direct3D &9
Direct3D11 = Direct3D &11
Disassembly = Dés&assembleur
Discord = Discord
Display Layout Editor = Éditeur d'affichage...
Display Layout && Effects = Éditeur d'affichage...
Display Rotation = Rotation de l'affichage
Dump Next Frame to Log = &Dump de l'image suivante dans le journal
Emulation = &Émulation
@ -232,7 +232,7 @@ DevMenu = MenuDev
Disabled JIT functionality = Fonctionnalité JIT désactivée
Draw Frametimes Graph = Dessiner le graphique des temps d'image
Dump Decrypted Eboot = Créer un EBOOT.BIN déchiffré au lancement du jeu
Dump Frame GPU Commands = Dump des commandes GPU de l'image
Dump next frame to log = Dump de l'image suivante dans le journal
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Activer le journal de débogage
Enter address = Entrer une adresse
@ -244,8 +244,6 @@ GPU Log Profiler = GPU Log Profiler
GPU Profile = Profilage du GPU
Jit Compare = Comparaison JIT
JIT debug tools = Outils de débogage JIT
Language = Langue
Load language ini = Charger fichier de langue
Log Dropped Frame Statistics = Enregistrer les statistiques sur les pertes d'images
Log Level = Niveau du journal
Log View = Voir le journal
@ -261,7 +259,6 @@ RestoreDefaultSettings = Êtes-vous sûr de vouloir restaurer tous les paramètr
RestoreGameDefaultSettings = Êtes-vous sûr de vouloir restaurer tous les paramètres\nspécifiques au jeu à leur valeur par défaut de PPSSPP ?
Resume = Reprendre
Run CPU Tests = Exécuter des tests CPU
Save language ini = Sauvegarder fichier de langue
Save new textures = Sauvegarder les nouvelles textures
Shader Viewer = Visionneur de shader
Show Developer Menu = Montrer le menu développeur "MenuDev"
@ -487,9 +484,8 @@ Device = Appareil
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = Désactivé
Display layout editor = Éditeur d'affichage
Display Layout && Effects = Éditeur d'affichage
Display Resolution (HW scaler) = Définition d'affichage (mise à l'échelle matérielle)
Dump next frame to log = Dump de l'image suivante dans le journal
Enable Cardboard VR = Activer Cardboard VR
FPS = FPS
Frame Rate Control = Contrôle de la fréquence de rafraîchissement des images
@ -541,7 +537,6 @@ Rendering Resolution = Définition du rendu
RenderingMode NonBuffered Tip = Plus rapide, mais pour certains jeux rien ne s'affichera
Rotation = Rotation
Safe = Prudent
Screen layout = Disposition de l'écran
Screen Scaling Filter = Filtre de mise à l'échelle de l'écran
Show Debug Statistics = Montrer les statistiques de débogage
Show FPS Counter = Montrer les compteurs

View file

@ -137,7 +137,7 @@ Direct3D9 = &Direct3D9
Direct3D11 = Direct3D &11
Disassembly = &Desensamblador...
Discord = Discord
Display Layout Editor = Display layout editor...
Display Layout && Effects = Display layout && effects...
Display Rotation = Display rotation
Dump Next Frame to Log = &Volcar seguinte cadro a rexistro
Emulation = &Emulación
@ -232,7 +232,7 @@ DevMenu = DevMenu
Disabled JIT functionality = Disabled JIT functionality
Draw Frametimes Graph = Draw frametimes graph
Dump Decrypted Eboot = Volcar EBOOT.BIN descifrado ó iniciar o xogo
Dump Frame GPU Commands = Volcar comandos GPU do cadro
Dump next frame to log = Volcar seguinte cadro ó rexistro
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Activar rexistro
Enter address = Insertar dirección
@ -244,8 +244,6 @@ GPU Log Profiler = GPU Log Profiler
GPU Profile = GPU profile
Jit Compare = Comparación JIT
JIT debug tools = JIT debug tools
Language = Idioma
Load language ini = Cargar INI de idioma
Log Dropped Frame Statistics = Log dropped frame statistics
Log Level = Nivel de rexistro
Log View = Ver o rexistro
@ -261,7 +259,6 @@ RestoreDefaultSettings = Seguro que queres volver ós axustes de fábrica?\nOs c
RestoreGameDefaultSettings = Seguro que queres reestablecer os axustes do xogo\nós axustes por defecto de PPSSPP?
Resume = Resume
Run CPU Tests = Probas de CPU
Save language ini = Gardar INI de idioma
Save new textures = Save new textures
Shader Viewer = Shader viewer
Show Developer Menu = Mostrar menú de desenrolo
@ -487,9 +484,8 @@ Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = Disabled
Display layout editor = Display layout editor
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Resolución de pantalla (escalado por hardware)
Dump next frame to log = Volcar seguinte cadro ó rexistro
Enable Cardboard VR = Enable Cardboard VR
FPS = FPS
Frame Rate Control = Control de tasa de cadros (FPS)
@ -541,7 +537,6 @@ Rendering Resolution = Resolución de renderizado
RenderingMode NonBuffered Tip = Faster, but nothing may draw in some games
Rotation = Rotation
Safe = Seguro
Screen layout = Screen layout
Screen Scaling Filter = Filtro de escalado de pantalla
Show Debug Statistics = Mostrar estadísticas de depuración
Show FPS Counter = Mostrar contador de FPS

View file

@ -137,7 +137,7 @@ Direct3D9 = &Direct3D9
Direct3D11 = Direct3D11
Disassembly = Αποσυναρμολόγηση...
Discord = Discord
Display Layout Editor = Επεξεργασία διάταξης οθόνης...
Display Layout && Effects = Επεξεργασία διάταξης οθόνης...
Display Rotation = Περιστροφή Οθόνης
Dump Next Frame to Log = Αποτύπωση πλαισίου σε καταγραφέα
Emulation = Εξομοίωση
@ -232,7 +232,7 @@ DevMenu = DevMenu
Disabled JIT functionality = Disabled JIT functionality
Draw Frametimes Graph = Draw frametimes graph
Dump Decrypted Eboot = Εξαγωγή αποκρυπτογραφημένου EBOOT.BIN κατά την έναρξη
Dump Frame GPU Commands = Εξαγωγή εντολών frame GPU
Dump next frame to log = Αποτύπωση πλαισίου σε καταγραφέα
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Ενεργοποίηση καταγραφής αποσφαλμάτωσης
Enter address = Διεύθυνση Enter
@ -244,8 +244,6 @@ GPU Log Profiler = GPU Log Profiler
GPU Profile = GPU profile
Jit Compare = Σύγκριση Jit
JIT debug tools = JIT debug tools
Language = Γλώσσα
Load language ini = Φόρτωση ini γλώσσας
Log Dropped Frame Statistics = Καταγραφή Στατιστικών για Dropped Frames
Log Level = Επίπεδο καταγραφής
Log View = Εμφάνιση καταγραφέα
@ -261,7 +259,6 @@ RestoreDefaultSettings = Είστε σίγουροι ότι θέλετε να ε
RestoreGameDefaultSettings = Είστε σίγουροι ότι θέλετε να επαναφέρετε τις ρυθμίσεις παιχνιδιού\nστις προεπιλεγμένες του PPSSPP;
Resume = Resume
Run CPU Tests = Εκκίνηση τέστ CPU
Save language ini = Αποθήκευση ini γλώσσας
Save new textures = Αποθήκευση νέων υφών
Shader Viewer = Προβολέας Shader
Show Developer Menu = Εμφάνιση μενού προγραμματιστών
@ -487,9 +484,8 @@ Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = Απενεργοποιημένο
Display layout editor = Επεξεργασία διάταξης οθόνης
Display Layout && Effects = Επεξεργασία διάταξης οθόνης
Display Resolution (HW scaler) = Ανάλυση οθόνης (Κλιμακοτής hardware)
Dump next frame to log = Αποτύπωση πλαισίου σε καταγραφέα
Enable Cardboard VR = Ενεργοποίηση Cardboard VR
FPS = FPS
Frame Rate Control = Ρυθμίσεις Ρυθμού Καρέ
@ -541,7 +537,6 @@ Rendering Resolution = Ανάλυση Απεικόνισης
RenderingMode NonBuffered Tip = Γρηγορότερο, αλλά σε μερικά αιχνίδια μπορεί να μην εμφανίζει τίποτα
Rotation = Περιστροφή
Safe = Ασφαλής
Screen layout = Screen layout
Screen Scaling Filter = Φίλτο κλιμάκωσης οθόνης
Show Debug Statistics = Εμφάνιση στατιστικών αποσφαλμάτωσης
Show FPS Counter = Εμφάνιση μετρητή FPS

View file

@ -137,7 +137,7 @@ Direct3D9 = &Direct3D9
Direct3D11 = Direct3D &11
Disassembly = &פירוק...
Discord = Discord
Display Layout Editor = Display layout editor...
Display Layout && Effects = Display layout && effects...
Display Rotation = Display rotation
Dump Next Frame to Log = D&ump Next Frame to Log
Emulation = &סימולציה
@ -232,7 +232,7 @@ DevMenu = DevMenu
Disabled JIT functionality = Disabled JIT functionality
Draw Frametimes Graph = Draw frametimes graph
Dump Decrypted Eboot = Dump decrypted EBOOT.BIN on game boot
Dump Frame GPU Commands = Dump frame GPU commands
Dump next frame to log = בחר את הפריים הבא כדי לדווח
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = אפשר דיווח באגים
Enter address = Enter address
@ -244,8 +244,6 @@ GPU Log Profiler = GPU Log Profiler
GPU Profile = GPU profile
Jit Compare = Jit compare
JIT debug tools = JIT debug tools
Language = שפה
Load language ini = טען קובץ שפה
Log Dropped Frame Statistics = Log dropped frame statistics
Log Level = Log level
Log View = Log view
@ -261,7 +259,6 @@ RestoreDefaultSettings = Are you sure you want to restore all settings back to t
RestoreGameDefaultSettings = Are you sure you want to restore the game-specific settings\nback to the PPSSPP defaults?
Resume = Resume
Run CPU Tests = הרץ בדיקות מעבד
Save language ini = שמור קובץ שפה
Save new textures = Save new textures
Shader Viewer = Shader viewer
Show Developer Menu = Show developer menu
@ -487,9 +484,8 @@ Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = Disabled
Display layout editor = Display layout editor
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Display resolution (HW scaler)
Dump next frame to log = בחר את הפריים הבא כדי לדווח
Enable Cardboard VR = Enable Cardboard VR
FPS = כמות פריימים לשנייה
Frame Rate Control = שליטה על קצב פריימים
@ -541,7 +537,6 @@ Rendering Resolution = Rendering resolution
RenderingMode NonBuffered Tip = Faster, but nothing may draw in some games
Rotation = Rotation
Safe = Safe
Screen layout = Screen layout
Screen Scaling Filter = Screen scaling filter
Show Debug Statistics = הצג סטטיסטיקת באגים
Show FPS Counter = הצג מונה

View file

@ -137,7 +137,7 @@ Direct3D9 = &Direct3D9
Direct3D11 = Direct3D &11
Disassembly = &Disassembly...
Discord = Discord
Display Layout Editor = Display layout editor...
Display Layout && Effects = Display layout && effects...
Display Rotation = Display rotation
Dump Next Frame to Log = D&ump Next Frame to Log
Emulation = &Emulation
@ -232,7 +232,7 @@ DevMenu = DevMenu
Disabled JIT functionality = Disabled JIT functionality
Draw Frametimes Graph = Draw frametimes graph
Dump Decrypted Eboot = Dump decrypted EBOOT.BIN on game boot
Dump Frame GPU Commands = Dump frame GPU commands
Dump next frame to log = חוודל ידכ אבה םיירפה תא רחב
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = םיגאב חוויד רשפא
Enter address = Enter address
@ -244,8 +244,6 @@ GPU Log Profiler = GPU Log Profiler
GPU Profile = GPU profile
Jit Compare = Jit compare
JIT debug tools = JIT debug tools
Language = הפש
Load language ini = הפש ץבוק ןעט
Log Dropped Frame Statistics = Log dropped frame statistics
Log Level = Log level
Log View = Log view
@ -261,7 +259,6 @@ RestoreDefaultSettings = Are you sure you want to restore all settings back to t
RestoreGameDefaultSettings = Are you sure you want to restore the game-specific settings\nback to the PPSSPP defaults?
Resume = Resume
Run CPU Tests = דבעמ תוקידב ץרה
Save language ini = הפש ץבוק רומש
Save new textures = Save new textures
Shader Viewer = Shader viewer
Show Developer Menu = Show developer menu
@ -487,9 +484,8 @@ Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = Disabled
Display layout editor = Display layout editor
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Display resolution (HW scaler)
Dump next frame to log = חוודל ידכ אבה םיירפה תא רחב
Enable Cardboard VR = Enable Cardboard VR
FPS = היינשל םימיירפ תומכ
Frame Rate Control = םימיירפ בצק לע הטילש
@ -541,7 +537,6 @@ Rendering Resolution = Rendering resolution
RenderingMode NonBuffered Tip = Faster, but nothing may draw in some games
Rotation = Rotation
Safe = Safe
Screen layout = Screen layout
Screen Scaling Filter = Screen scaling filter
Show Debug Statistics = םיגאב תקיטסיטטס גצה
Show FPS Counter = הנומ גצה

View file

@ -137,7 +137,7 @@ Direct3D9 = Direct3D &9
Direct3D11 = Direct3D &11
Disassembly = &Disassembly...
Discord = Discord
Display Layout Editor = Prikaži uređivanje kontroli...
Display Layout && Effects = Prikaži uređivanje kontroli...
Display Rotation = Rotacija prikaza
Dump Next Frame to Log = O&dloži sljedeći frame na log
Emulation = &Emulacija
@ -232,7 +232,7 @@ DevMenu = DevMenu
Disabled JIT functionality = Isključena JIT funkcionalnost
Draw Frametimes Graph = Draw frametimes graph
Dump Decrypted Eboot = Dump decrypted EBOOT.BIN on game boot
Dump Frame GPU Commands = Dump frame GPU commands
Dump next frame to log = Odbaci sljedeći frame u log
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Uključi debug logging
Enter address = Upiši adresu
@ -244,8 +244,6 @@ GPU Log Profiler = GPU Log Profiler
GPU Profile = GPU profil
Jit Compare = JIT uspoređivanje
JIT debug tools = JIT debug alati
Language = Jezik
Load language ini = Učitaj language ini
Log Dropped Frame Statistics = Log dropped frame statistics
Log Level = Log level
Log View = Log pregled
@ -261,7 +259,6 @@ RestoreDefaultSettings = Jesi li siguran da želiš vratiti sve postavke na zada
RestoreGameDefaultSettings = Jesi li siguran da želiš vratiti igrom-specifične postavke \nna PPSSPP zadane postavke?
Resume = Resume
Run CPU Tests = Pokreni CPU testove
Save language ini = Spremi language ini
Save new textures = Spremi nove teksture
Shader Viewer = Pregled sjenčanja
Show Developer Menu = Prikaži developer izbornik
@ -487,9 +484,8 @@ Device = Uređaj
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = Isključeno
Display layout editor = Prikaz layout uređivača
Display Layout && Effects = Prikaz layout uređivača
Display Resolution (HW scaler) = Prikaz rezolucije (HW mjeritelj)
Dump next frame to log = Odbaci sljedeći frame u log
Enable Cardboard VR = Enable Cardboard VR
FPS = FPS
Frame Rate Control = Framerate kontrole
@ -541,7 +537,6 @@ Rendering Resolution = Rezolucija prikaza
RenderingMode NonBuffered Tip = Brže, ali ništa može uvući neke igre
Rotation = Rotacija
Safe = Sigurno
Screen layout = Screen layout
Screen Scaling Filter = Mjerenje filtriranje zaslona
Show Debug Statistics = Pokaži statistike otklanjanja grešaka
Show FPS Counter = Pokaži FPS counter

View file

@ -137,7 +137,7 @@ Direct3D9 = Direct3D &9
Direct3D11 = Direct3D 1&1
Disassembly = &Disassembly…
Discord = &Discord
Display Layout Editor = Elrendezés szerkesztő…
Display Layout && Effects = Elrendezés szerkesztő…
Display Rotation = Megjelenítés forgatása
Dump Next Frame to Log = Kö&vetkező képkocka kiírása naplófájlba
Emulation = &Emuláció
@ -232,7 +232,7 @@ DevMenu = DevMenu
Disabled JIT functionality = Kikapcsolt JIT funkcionalitások
Draw Frametimes Graph = Draw frametimes graph
Dump Decrypted Eboot = Visszafejtett EBOOT.BIN írása játék indításakor
Dump Frame GPU Commands = Képkocka GPU parancsok írása
Dump next frame to log = Következő képkocka kiírása naplófájlba
Enable Logging = Naplózás engedélyezése
Enable driver bug workarounds = Enable driver bug workarounds
Enter address = Cím megadása
@ -244,8 +244,6 @@ GPU Log Profiler = GPU Log Profiler
GPU Profile = GPU profil
Jit Compare = JIT összehasonlítás
JIT debug tools = JIT hibakereső eszközök
Language = Nyelv
Load language ini = Nyelvi .ini betöltése
Log Dropped Frame Statistics = Eldobott képkockák statisztikáinak naplózása
Log Level = Naplózási szint
Log View = Nápló megtekintése
@ -261,7 +259,6 @@ RestoreDefaultSettings = Biztos vagy benne, hogy mindent az alapértelmezettre
RestoreGameDefaultSettings = Biztos vagy benne, hogy minden játék-specifikus beállítást\nvisszaállítáasz a PPSSPP alapértelmezettre?
Resume = Resume
Run CPU Tests = CPU tesztek futtatása
Save language ini = Nyelvi .ini mentése
Save new textures = Új textúrák mentése
Shader Viewer = Shader megjelenítő
Show Developer Menu = Fejlesztői menü megjelenítése
@ -487,9 +484,8 @@ Device = Eszköz
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = Letiltva
Display layout editor = Elrendezés szerkesztő
Display Layout && Effects = Elrendezés szerkesztő
Display Resolution (HW scaler) = Megjelenítési felbontás (HW skálázó)
Dump next frame to log = Következő képkocka kiírása naplófájlba
Enable Cardboard VR = Cardboard VR engedélyezése
FPS = FPS
Frame Rate Control = Képkocka sebesség szabályozása
@ -541,7 +537,6 @@ Rendering Resolution = Renderelés felbontása
RenderingMode NonBuffered Tip = Gyorsabb, de egyes játékokban nem rajzol ki semmit.
Rotation = Forgatás
Safe = Biztonságos
Screen layout = Screen layout
Screen Scaling Filter = Képernyő skálázási szűrő
Show Debug Statistics = Hibakeresési statisztikák mutatása
Show FPS Counter = FPS számláló mutatása

View file

@ -137,7 +137,7 @@ Direct3D9 = &Direct3D9
Direct3D11 = Direct3D11
Disassembly = &Pembongkaran...
Discord = Discord
Display Layout Editor = Penyunting tata letak tampilan...
Display Layout && Effects = Penyunting tata letak tampilan...
Display Rotation = Rotasi tampilan
Dump Next Frame to Log = B&uang laju bingkai berikutnya untuk masuk
Emulation = &Emulasi
@ -232,7 +232,7 @@ DevMenu = Menu pengembang
Disabled JIT functionality = Fungsi JIT dinonaktifkan
Draw Frametimes Graph = Gambar grafis sketsa waktu
Dump Decrypted Eboot = Buang EBOOT.BIN yang didekripsi pada pengaktifan ulang permainan
Dump Frame GPU Commands = Buang perintah laju bingkai GPU
Dump next frame to log = Buang laju bingkai selanjutnya untuk masuk
Enable driver bug workarounds = Aktifkan solusi masalah driver
Enable Logging = Hidupkan pencatat awakutu
Enter address = Masukkan alamat
@ -244,8 +244,6 @@ GPU Log Profiler = GPU Log Profiler
GPU Profile = Profil GPU
Jit Compare = Bandingkan Jit
JIT debug tools = Alat awakutu JIT
Language = Bahasa
Load language ini = Muat *.ini bahasa
Log Dropped Frame Statistics = Log statistik laju bingkai yang jatuh
Log Level = Tingkatan pencatat
Log View = Tampilan pencatat
@ -261,7 +259,6 @@ RestoreDefaultSettings = Apakah Anda yakin ingin mengembalikan semua pengaturan
RestoreGameDefaultSettings = Apakah Anda yakin ingin mengembalikan pengaturan permainan\nkembali ke pengaturan awal PPSSPP?
Resume = Lanjutkan
Run CPU Tests = Jalankan pengujian CPU
Save language ini = Simpan *.ini bahasa
Save new textures = Simpan tekstur baru
Shader Viewer = Penampil shader
Show Developer Menu = Tampilkan menu pengembang
@ -487,9 +484,8 @@ Device = Perangkat
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = Nonaktif
Display layout editor = Penyesuaian tata letak tampilan
Display Layout && Effects = Penyesuaian tata letak tampilan
Display Resolution (HW scaler) = Resolusi tampilan (penskala HW)
Dump next frame to log = Buang laju bingkai selanjutnya untuk masuk
Enable Cardboard VR = Aktifkan Cardboard VR
FPS = FPS
Frame Rate Control = Kontrol laju bingkai
@ -541,7 +537,6 @@ Rendering Resolution = Resolusi pelukisan
RenderingMode NonBuffered Tip = Lebih cepat, namun mungkin tidak ada gambar di beberapa permainan
Rotation = Rotasi
Safe = Aman
Screen layout = Tata letak layar
Screen Scaling Filter = Pemfilteran penskala layar
Show Debug Statistics = Tampilkan statistik awakutu
Show FPS Counter = Tampilkan penghitung FPS

View file

@ -137,7 +137,7 @@ Direct3D9 = Direct3D9
Direct3D11 = Direct3D &11
Disassembly = Disassemblatore...
Discord = Discord
Display Layout Editor = Editor visualizzazione layout...
Display Layout && Effects = Editor visualizzazione layout...
Display Rotation = Rotazione display
Dump Next Frame to Log = Salva Log Frame Successivo
Emulation = Emulazione
@ -232,7 +232,7 @@ DevMenu = DevMenu
Disabled JIT functionality = Disattivata Funzionalità JIT
Draw Frametimes Graph = Disegna grafica dei frametimes
Dump Decrypted Eboot = Crea EBOOT.BIN decriptato all'avvio del gioco
Dump Frame GPU Commands = Comandi GPU Dump frame
Dump next frame to log = Crea Log del Frame Successivo
Enable driver bug workarounds = Abilita espediente per superare i bug dei driver
Enable Logging = Attiva Log del Debug
Enter address = Inserire indirizzo
@ -244,8 +244,6 @@ GPU Log Profiler = GPU Log Profiler
GPU Profile = Profilo GPU
Jit Compare = Confronto Jit
JIT debug tools = Strumenti di debug JIT
Language = Lingua
Load language ini = Carica *.ini della lingua
Log Dropped Frame Statistics = Statistiche dei Frame persi
Log Level = Livello del Log
Log View = Visualizza Log
@ -261,7 +259,6 @@ RestoreDefaultSettings = Si desidera davvero ripristinare le impostazioni?\nImpo
RestoreGameDefaultSettings = Si desidera davvero ripristinare le impostazioni specifiche per il gioco\nai valori predefiniti?
Resume = Ripristina
Run CPU Tests = Fai Test CPU
Save language ini = Salva *.ini della lingua
Save new textures = Salva nuove texture
Shader Viewer = Visualizzatore shader
Show Developer Menu = Mostra Menu Sviluppatore
@ -488,9 +485,8 @@ Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
#Disable slower effects (speedup) = Disattiva gli effetti più lenti (veloce)
Disabled = Disabilitato
Display layout editor = Editor Display
Display Layout && Effects = Editor Display
Display Resolution (HW scaler) = Risoluzione Display (scaler HW)
Dump next frame to log = Crea Log del Frame Successivo
Enable Cardboard VR = Attiva Cardboard VR
FPS = FPS
Frame Rate Control = Controllo Framerate
@ -542,7 +538,6 @@ Rendering Resolution = Rendering della Risoluzione
RenderingMode NonBuffered Tip = Veloce, ma potrebbe generare dei glitch in alcuni giochi
Rotation = Rotazione
Safe = Sicuro
Screen layout = Disposizione dello schermo
Screen Scaling Filter = Filtro Scalatura Schermo
Show Debug Statistics = Mostra Statistiche Debug
Show FPS Counter = Mostra FPS

View file

@ -137,7 +137,7 @@ Direct3D9 = Direct3D &9
Direct3D11 = Direct3D &11
Disassembly = 逆アセンブル(&D)...
Discord = Discord
Display Layout Editor = 画面のレイアウトを編集する...
Display Layout && Effects = 画面のレイアウトを編集する...
Display Rotation = 画面の向き
Dump Next Frame to Log = 次のフレームをログにダンプする(&U)
Emulation = エミュレーション(&E)
@ -232,7 +232,7 @@ DevMenu = 開発者用メニュー
Disabled JIT functionality = 無効されたJIT機能
Draw Frametimes Graph = フレームタイムグラフを描く
Dump Decrypted Eboot = 復号したEBOOT.BINを起動時にダンプする
Dump Frame GPU Commands = フレームGPUコマンドをダンプする
Dump next frame to log = 次のフレームをログにダンプする
Enable driver bug workarounds = ドライバーバグの回避の有効化
Enable Logging = デバッグログを有効にする
Enter address = アドレスを入力する
@ -244,8 +244,6 @@ GPU Profile = GPUプロファイル
GPU Log Profiler = GPUログプロファイラ
Jit Compare = JIT 比較
JIT debug tools = JITデバッグツール
Language = 言語
Load language ini = 言語のiniファイルをロードする
Log Dropped Frame Statistics = ドロップしたフレームの統計を記録する
Log Level = ログレベル
Log View = ログビュー
@ -261,7 +259,6 @@ RestoreDefaultSettings = 全ての設定 (キーの設定は除く) をデフォ
RestoreGameDefaultSettings = ゲームの設定をPPSSPPのデフォルトに\n戻しますか
Resume = Resume
Run CPU Tests = CPUテストを実行する
Save language ini = 言語のiniファイルをセーブする
Save new textures = 新しいテクスチャを保存する
Shader Viewer = シェーダビューワ
Show Developer Menu = 開発者向けメニューを表示する
@ -487,9 +484,8 @@ Device = デバイス
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = 無効
Display layout editor = 画面のレイアウトを編集する
Display Layout && Effects = 画面のレイアウトを編集する
Display Resolution (HW scaler) = 画面解像度 (HWスケーラー)
Dump next frame to log = 次のフレームをログにダンプする
Enable Cardboard VR = Cardboard VRを有効にする
FPS = FPS
Frame Rate Control = フレームレートのコントロール
@ -541,7 +537,6 @@ Rendering Resolution = レンダリング解像度
RenderingMode NonBuffered Tip = 高速ですが何も表示されなくなるゲームがあるかもしれません
Rotation = 向き
Safe = セーフ
Screen layout = 画面のレイアウト
Screen Scaling Filter = 画像スケーリングのフィルタ
Show Debug Statistics = デバッグ情報を表示する
Show FPS Counter = FPSを表示する

View file

@ -137,7 +137,7 @@ Direct3D9 = &Direct3D9
Direct3D11 = Direct3D &11
Disassembly = &Disassembly...
Discord = Discord
Display Layout Editor = Display layout editor...
Display Layout && Effects = Display layout && effects...
Display Rotation = Display rotation
Dump Next Frame to Log = Mbucal Frame Sabanjure kanggo Mlebu
Emulation = &Emulasi
@ -232,7 +232,7 @@ DevMenu = DevMenu
Disabled JIT functionality = Disabled JIT functionality
Draw Frametimes Graph = Draw frametimes graph
Dump Decrypted Eboot = Mbucal EBOOT.BIN decrypted ing boot dolanan
Dump Frame GPU Commands = Mbucal printah pigura GPU
Dump next frame to log = Mbucal pigura jejere log
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Ngatifke ngangkut barang
Enter address = Ketik alamat
@ -244,8 +244,6 @@ GPU Log Profiler = GPU Log Profiler
GPU Profile = GPU profile
Jit Compare = Jit mbandhingake
JIT debug tools = JIT debug tools
Language = Basa
Load language ini = Mbukak file basa
Log Dropped Frame Statistics = Log dropped frame statistics
Log Level = Tingkat Log
Log View = Tampilan Log
@ -261,7 +259,6 @@ RestoreDefaultSettings = Apa panjenengan yakin arep mulihake kabeh setelan bali
RestoreGameDefaultSettings = Apa panjenengan yakin arep mulihake setelan-game tartamtu back kanggo awal PPSSPP?
Resume = Resume
Run CPU Tests = Mbukak Tes CPU
Save language ini = Simpen berkas basa
Save new textures = Save new textures
Shader Viewer = Tampilan shader
Show Developer Menu = Tampilno menu pengembang
@ -487,9 +484,8 @@ Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = Disabled
Display layout editor = Tata letak Tampilan editor
Display Layout && Effects = Tata letak Tampilan editor
Display Resolution (HW scaler) = Resolusi tampilan (HW scaler)
Dump next frame to log = Mbucal pigura jejere log
Enable Cardboard VR = Enable Cardboard VR
FPS = FPS
Frame Rate Control = Kontrol Frame-rate
@ -541,7 +537,6 @@ Rendering Resolution = Rendering résolusi
RenderingMode NonBuffered Tip = Faster, but nothing may draw in some games
Rotation = Rotasi
Safe = Aman
Screen layout = Screen layout
Screen Scaling Filter = Layar njongko Filter
Show Debug Statistics = Tampilno statistik debug
Show FPS Counter = Tampilno penghitung FPS

View file

@ -137,7 +137,7 @@ Direct3D9 = Direct3D 9(&9)
Direct3D11 = Direct3D 11(&1)
Disassembly = 역어셈블리(&D)...
Discord = 디스코드
Display Layout Editor = 레이아웃 편집기 표시...
Display Layout && Effects = 레이아웃 편집기 표시...
Display Rotation = 화면 회전
Dump Next Frame to Log = 로그에 다음 프레임 덤프(&U)
Emulation = 에뮬레이션(&E)
@ -232,7 +232,7 @@ DevMenu = 개발메뉴
Disabled JIT functionality = 비활성화된 JIT 기능
Draw Frametimes Graph = 프레임 시간 그래프 그리기
Dump Decrypted Eboot = 게임 부팅 시 해독된 EBOOT.BIN 덤프
Dump Frame GPU Commands = 덤프 프레임 GPU 명령
Dump next frame to log = 다음 프레임을 로그로 덤프
Enable driver bug workarounds = 드라이버 버그 해결 방법 활성화
Enable Logging = 디버그 로깅 활성화
Enter address = 주소 입력
@ -244,8 +244,6 @@ GPU Profile = GPU 프로파일
GPU Log Profiler = GPU 로그 프로파일러
Jit Compare = JIT 비교
JIT debug tools = JIT 디버그 도구
Language = 언어
Load language ini = 언어 ini 불러오기
Log Dropped Frame Statistics = 삭제된 프레임 통계 기록
Log Level = 로그 레벨
Log View = 로그 보기
@ -261,7 +259,6 @@ RestoreDefaultSettings = 모든 설정을 기본값으로 되돌리겠습니까?
RestoreGameDefaultSettings = 게임별 설정을\nPPSSPP 기본값으로 복원하겠습니까?
Resume = 다시 시작
Run CPU Tests = CPU 테스트 실행
Save language ini = 언어 ini 저장
Save new textures = 새로운 텍스처 저장
Shader Viewer = 셰이더 뷰어
Show Developer Menu = 개발자 메뉴 표시
@ -487,9 +484,8 @@ Device = 장치
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = 비활성화
Display layout editor = 화면 레이아웃 편집기
Display Layout && Effects = 화면 레이아웃 편집기
Display Resolution (HW scaler) = 화면 해상도(HW 스케일러)
Dump next frame to log = 다음 프레임을 로그로 덤프
Enable Cardboard VR = 카드보드 VR 활성화
FPS = FPS
Frame Rate Control = 프레임속도 제어
@ -540,7 +536,6 @@ Rendering Resolution = 렌더링 해상도
RenderingMode NonBuffered Tip = 더 빠르지만 일부 게임에서는 아무 것도 표현되지 않을 수 있습니다.
Rotation = 회전
Safe = 안전
Screen layout = 화면 레이아웃
Screen Scaling Filter = 화면 크기 조정 필터
Show Debug Statistics = 디버그 통계 표시
Show FPS Counter = FPS 카운터 표시

View file

@ -137,7 +137,7 @@ Direct3D9 = &Direct3D9
Direct3D11 = &Direct3D11
Disassembly = &ການແຍກອົງປະກອບ...
Discord = Discord
Display Layout Editor = ແກ້ໄຂຮູບແບບສະແດງຜົນ...
Display Layout && Effects = ແກ້ໄຂຮູບແບບສະແດງຜົນ...
Display Rotation = ການໝຸນໜ້າຈໍ
Dump Next Frame to Log = &ດຶງຂໍ້ມູນຂອງເຟຣມຕໍ່ໄປເພື່ອເກັບບັນທຶກຄ່າ
Emulation = &ການຈຳລອງ
@ -232,7 +232,7 @@ DevMenu = DevMenu
Disabled JIT functionality = Disabled JIT functionality
Draw Frametimes Graph = Draw frametimes graph
Dump Decrypted Eboot = ດຶງໄຟລ໌ EBOOT.BIN ອອກມາເກັບໄວ້ເມື່ອເລີ່ມເກມ
Dump Frame GPU Commands = ດຶງຄ່າເຟຣມຄຳສັ່ງຂອງ GPU
Dump next frame to log = ດຶງຂໍ້ມູນຂອງເຟຣມຕໍ່ໄປເພື່ອເກັບບັນທຶກຄ່າ
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = ເປີດໃຊ້ງານ logging
Enter address = ໃສ່ຄ່າທີ່ຢູ່
@ -244,8 +244,6 @@ GPU Log Profiler = GPU Log Profiler
GPU Profile = GPU profile
Jit Compare = Jit compare
JIT debug tools = JIT debug tools
Language = ພາສາ
Load language ini = ໂຫຼດໄຟລ໌ພາສາ (.ini)
Log Dropped Frame Statistics = ເກັບຄ່າສະຖິຕິເຟຣມເຣດຕົກ
Log Level = ເກັບຄ່າລະດັບ
Log View = ເກັບຄ່າມຸມມອງ
@ -261,7 +259,6 @@ RestoreDefaultSettings = ເຈົ້າແນ່ໃຈຫຼືບໍ່ວ່
RestoreGameDefaultSettings = ເຈົ້າແນ່ໃຈຫຼືບໍ່ວ່າຕ້ອງການຄືນຄ່າການຕັ້ງຄ່າເກມໂດຍສະເພາະ\nກັບສູ່ຄ່າເລີ່ມຕົ້ນ PPSSPP ຫຼືບໍ່?
Resume = Resume
Run CPU Tests = ເອີ້ນໃຊ້ການທົດສອບ CPU
Save language ini = ບັນທຶກພາສາຂອງ ini
Save new textures = ບັນທຶກພື້ນຜິວໃໝ່
Shader Viewer = ມຸມມອງການປັບໄລ່ເສດສີ
Show Developer Menu = ສະແດງເມນູສຳລັບນັກພັດທະນາ
@ -487,9 +484,8 @@ Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = Disabled
Display layout editor = ແກ້ໄຂຮູບແບບໜ້າຈໍ
Display Layout && Effects = ແກ້ໄຂຮູບແບບໜ້າຈໍ
Display Resolution (HW scaler) = ຄວາມລະອຽດໜ້າຈໍ (ຕາມຮາດແວຣ໌)
Dump next frame to log = ດຶງຂໍ້ມູນຂອງເຟຣມຕໍ່ໄປເພື່ອເກັບບັນທຶກຄ່າ
Enable Cardboard VR = Enable Cardboard VR
FPS = FPS
Frame Rate Control = ຄວບຄຸມເຟຣມເຣດ
@ -541,7 +537,6 @@ Rendering Resolution = ຄວາມລະອຽດຂອງການສະແດ
RenderingMode NonBuffered Tip = ໄວຂຶ້ນແທ້, ແຕ່ອາດມີອາການຈໍດຳໃນບາງເກມ
Rotation = ໝຸນຈໍ
Safe = ປອດໄພ
Screen layout = Screen layout
Screen Scaling Filter = ໂຕຕອງປັບສເກລໜ້າຈໍ
Show Debug Statistics = ສະແດງຄ່າທາງສະຖິຕິການແກ້ໄຂຈຸດບົກພ່ອງ
Show FPS Counter = ສະແດງຄ່າເຟຣມເຣດ ແລະ ຄວາມໄວ/ວິນາທີ

View file

@ -137,7 +137,7 @@ Direct3D9 = &Direct3D9
Direct3D11 = Direct3D &11
Disassembly = "&Ardyti..."
Discord = Discord
Display Layout Editor = Display layout editor...
Display Layout && Effects = Display layout && effects...
Display Rotation = Display rotation
Dump Next Frame to Log = "R&ašyti" kitą kadrą į "statusą"
Emulation = &Emulation
@ -232,7 +232,7 @@ DevMenu = DevMenu
Disabled JIT functionality = Disabled JIT functionality
Draw Frametimes Graph = Draw frametimes graph
Dump Decrypted Eboot = "Rašyti" atrakintą "EBOOT.BIN" failą žaidimui kraunantis
Dump Frame GPU Commands = Dump frame GPU commands
Dump next frame to log = "Rašyti" kitą kadrą į statusą
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Įjungti testinio režimo statuso rašymą į failus
Enter address = Enter address
@ -244,8 +244,6 @@ GPU Log Profiler = GPU Log Profiler
GPU Profile = GPU profile
Jit Compare = Jit compare
JIT debug tools = JIT debug tools
Language = Kalba
Load language ini = Krauti kalbos .ini failą
Log Dropped Frame Statistics = Log dropped frame statistics
Log Level = Log level
Log View = Log view
@ -261,7 +259,6 @@ RestoreDefaultSettings = Ar atstatyti "PPSSPP" parametrus į numatytuosius?\nVal
RestoreGameDefaultSettings = Are you sure you want to restore the game-specific settings\nback to the PPSSPP defaults?
Resume = Resume
Run CPU Tests = Atidaryti pagrindinio procesoriaus testus
Save language ini = Išsaugoti kalbos .ini failą
Save new textures = Save new textures
Shader Viewer = Shader viewer
Show Developer Menu = Rodyti kūrėjų meniu
@ -487,9 +484,8 @@ Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = Disabled
Display layout editor = Display layout editor
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Ekrano rezoliucija ("HW" ištiesinimas)
Dump next frame to log = "Rašyti" kitą kadrą į statusą
Enable Cardboard VR = Enable Cardboard VR
FPS = Kadrai per sekundę
Frame Rate Control = Kadrų kontrolė
@ -541,7 +537,6 @@ Rendering Resolution = Rodymo rezoliucija
RenderingMode NonBuffered Tip = Faster, but nothing may draw in some games
Rotation = Rotation
Safe = Safe
Screen layout = Screen layout
Screen Scaling Filter = Screen scaling filter
Show Debug Statistics = Rodyti testinio režimo statistikas
Show FPS Counter = Rodyti kadrų per sekundę rodmenis

View file

@ -137,7 +137,7 @@ Direct3D9 = &Direct3D9
Direct3D11 = Direct3D &11
Disassembly = &Pasangkan...
Discord = Discord
Display Layout Editor = Display layout editor...
Display Layout && Effects = Display layout && effects...
Display Rotation = Putaran skrin
Dump Next Frame to Log = L&etak frame berikutnya ke log
Emulation = &Emulasi
@ -232,7 +232,7 @@ DevMenu = DevMenu
Disabled JIT functionality = Fungsi JIT yang dilumpuhkan
Draw Frametimes Graph = Draw frametimes graph
Dump Decrypted Eboot = Dump decrypted EBOOT.BIN on game boot
Dump Frame GPU Commands = Dump frame GPU commands
Dump next frame to log = Letak frame berikutnya ke log
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Upayakan log pepijat
Enter address = Enter address
@ -244,8 +244,6 @@ GPU Log Profiler = GPU Log Profiler
GPU Profile = GPU profile
Jit Compare = Jit compare
JIT debug tools = Alat pepijat JIT
Language = Bahasa
Load language ini = Muatkan bahasa ini
Log Dropped Frame Statistics = Log dropped frame statistics
Log Level = Log level
Log View = Log view
@ -261,7 +259,6 @@ RestoreDefaultSettings = Anda pasti menetapkan semua tetapan kecuali pemetaan ka
RestoreGameDefaultSettings = Are you sure you want to restore the game-specific settings\nback to the PPSSPP defaults?
Resume = Resume
Run CPU Tests = Jalankan percubaan CPU
Save language ini = Simpan bahasa .ini
Save new textures = Save new textures
Shader Viewer = Shader viewer
Show Developer Menu = Papar menu pembangun
@ -487,9 +484,8 @@ Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = Disabled
Display layout editor = Display layout editor
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Display resolution (HW scaler)
Dump next frame to log = Letak frame berikutnya ke log
Enable Cardboard VR = Enable Cardboard VR
FPS = FPS
Frame Rate Control = Kawalan kadar Frame
@ -541,7 +537,6 @@ Rendering Resolution = Resolusi rendering
RenderingMode NonBuffered Tip = Faster, but nothing may draw in some games
Rotation = Rotation
Safe = Safe
Screen layout = Screen layout
Screen Scaling Filter = Screen scaling filter
Show Debug Statistics = Papar statistik pepijat
Show FPS Counter = Papar penghitung FPS

View file

@ -137,7 +137,7 @@ Direct3D9 = &Direct3D9
Direct3D11 = Direct3D &11
Disassembly = &Demonteren...
Discord = Discord
Display Layout Editor = Schermweergave aanpassen...
Display Layout && Effects = Schermweergave aanpassen...
Display Rotation = Schermrotatie
Dump Next Frame to Log = &Volgende frame in logboek plaatsen
Emulation = &Emulatie
@ -232,7 +232,7 @@ DevMenu = Ontwikkelaarsmenu
Disabled JIT functionality = Disabled JIT functionality
Draw Frametimes Graph = Draw frametimes graph
Dump Decrypted Eboot = Gedecodeerde EBOOT.BIN opslaan tijdens starten
Dump Frame GPU Commands = FPU-commando's van frame opslaan
Dump next frame to log = Volgende frame in logboek plaatsen
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Foutlogboek inschakelen
Enter address = Adres invoeren
@ -244,8 +244,6 @@ GPU Log Profiler = GPU Log Profiler
GPU Profile = GPU profile
Jit Compare = Jit vergelijken
JIT debug tools = JIT debug tools
Language = Taal
Load language ini = Taal-ini laden
Log Dropped Frame Statistics = Overgeslagen framestatistieken vastleggen
Log Level = Logniveau
Log View = Logboekoverzicht
@ -261,7 +259,6 @@ RestoreDefaultSettings = Weet u zeker dat u alle instellingen wilt herstellen\nn
RestoreGameDefaultSettings = Weet u zeker dat u de game-specifieke instellingen wilt\nherstellen naar de standaardwaarden van PPSSPP?
Resume = Resume
Run CPU Tests = CPU-controles uitvoeren
Save language ini = Taal-ini opslaan
Save new textures = Nieuwe textures opslaan
Shader Viewer = Shader weergeven
Show Developer Menu = Ontwikkelaarsmenu weergeven
@ -487,9 +484,8 @@ Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = Disabled
Display layout editor = Schermweergave bewerken
Display Layout && Effects = Schermweergave bewerken
Display Resolution (HW scaler) = Schermresolutie (hardware)
Dump next frame to log = Volgende frame in logboek plaatsen
Enable Cardboard VR = Enable Cardboard VR
FPS = FPS
Frame Rate Control = Framerateinstellingen
@ -541,7 +537,6 @@ Rendering Resolution = Renderresolutie
RenderingMode NonBuffered Tip = Sneller, maar mogelijk wordt in sommige games niets gerenderd
Rotation = Rotatie
Safe = Veilig
Screen layout = Screen layout
Screen Scaling Filter = Beeldschalingsfilter
Show Debug Statistics = Foutopsporingsstatistieken weergeven
Show FPS Counter = FPS-teller weergeven

View file

@ -137,7 +137,7 @@ Direct3D9 = &Direct3D9
Direct3D11 = Direct3D &11
Disassembly = &Disassembly...
Discord = Discord
Display Layout Editor = Display layout editor...
Display Layout && Effects = Display layout && effects...
Display Rotation = Display rotation
Dump Next Frame to Log = D&ump Next Frame to Log
Emulation = &Emulation
@ -232,7 +232,7 @@ DevMenu = DevMenu
Disabled JIT functionality = Disabled JIT functionality
Draw Frametimes Graph = Draw frametimes graph
Dump Decrypted Eboot = Dump decrypted EBOOT.BIN on game boot
Dump Frame GPU Commands = Dump frame GPU commands
Dump next frame to log = Dump next frame to log
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Debugloggning
Enter address = Enter address
@ -244,8 +244,6 @@ GPU Log Profiler = GPU Log Profiler
GPU Profile = GPU profile
Jit Compare = Jit compare
JIT debug tools = JIT debug tools
Language = Language
Load language ini = Åpne språk-ini
Log Dropped Frame Statistics = Log dropped frame statistics
Log Level = Log level
Log View = Log view
@ -261,7 +259,6 @@ RestoreDefaultSettings = Are you sure you want to restore all settings back to t
RestoreGameDefaultSettings = Are you sure you want to restore the game-specific settings\nback to the PPSSPP defaults?
Resume = Resume
Run CPU Tests = Kjør CPU-test
Save language ini = Lagre språk-ini
Save new textures = Save new textures
Shader Viewer = Shader viewer
Show Developer Menu = Show developer menu
@ -487,9 +484,8 @@ Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = Disabled
Display layout editor = Display layout editor
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Display resolution (HW scaler)
Dump next frame to log = Dump next frame to log
Enable Cardboard VR = Enable Cardboard VR
FPS = FPS
Frame Rate Control = Framerate control
@ -541,7 +537,6 @@ Rendering Resolution = Rendering resolution
RenderingMode NonBuffered Tip = Faster, but nothing may draw in some games
Rotation = Rotation
Safe = Safe
Screen layout = Screen layout
Screen Scaling Filter = Screen scaling filter
Show Debug Statistics = Vis debugstatistik
Show FPS Counter = Vis FPS-teller

View file

@ -137,7 +137,7 @@ Direct3D9 = &Direct3D9
Direct3D11 = Direct3D &11
Disassembly = Dezasembluj...
Discord = Discord
Display Layout Editor = Edytor położenia obrazu...
Display Layout && Effects = Edytor położenia obrazu...
Display Rotation = Obracanie ekranu
Dump Next Frame to Log = Zrzuć następną klatkę do dziennika zdarzeń
Emulation = &Emulacja
@ -232,7 +232,7 @@ DevMenu = DevMenu
Disabled JIT functionality = Wyłącz funkcje JIT
Draw Frametimes Graph = Draw frametimes graph
Dump Decrypted Eboot = Zachowuj odszyfrowany EBOOT.BIN przy starcie
Dump Frame GPU Commands = Zrzuć klatkę komend GPU
Dump next frame to log = Zrzuć następną klatkę do dziennika zdarzeń
Enable driver bug workarounds = Uruchom obejścia błędów sterownika
Enable Logging = Włącz dziennik zdarzeń debugera
Enter address = Wprowadź adres
@ -244,8 +244,6 @@ GPU Log Profiler = Profilowanie logów GPU
GPU Profile = Profil GPU
Jit Compare = Porównywanie JIT
JIT debug tools = Narzędzia debugowania JIT
Language = Język
Load language ini = Wczytaj plik ini języka
Log Dropped Frame Statistics = Loguj statystyki pominiętych klatek
Log Level = Poziom dziennika zdarzeń
Log View = Pokaż dziennik zdarzeń
@ -261,7 +259,6 @@ RestoreDefaultSettings = Czy na pewno chcesz przywrócić domyślne ustawienia?\
RestoreGameDefaultSettings = Czy na pewno chcesz przywrócić ustawienia specyficzne dla danych gier\npowrót do ustawień domyślnych PPSSPP?
Resume = Wznów
Run CPU Tests = Uruchom testy CPU
Save language ini = Zapisz plik ini języka
Save new textures = Zapisz nową teksturę
Shader Viewer = Podgląd Shaderów
Show Developer Menu = Pokaż przycisk menu dewelopera
@ -487,9 +484,8 @@ Device = Urządzenie
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = Wył.
Display layout editor = Edytor położenia obrazu
Display Layout && Effects = Edytor położenia obrazu
Display Resolution (HW scaler) = Rozdzielczość ekranu (skaler sprz.)
Dump next frame to log = Zrzuć następną klatkę do dziennika zdarzeń
Enable Cardboard VR = Enable Cardboard VR
FPS = Tylko FPS
Frame Rate Control = Kontrola klatek na sekundę
@ -541,7 +537,6 @@ Rendering Resolution = Rozdzielczość renderowania
RenderingMode NonBuffered Tip = Szybsze, ale niektóre gry mogą się nie wyświetlać
Rotation = Obrót
Safe = Bezpieczne
Screen layout = Screen layout
Screen Scaling Filter = Filtrowanie skalowania ekranu
Show Debug Statistics = Pokaż statystyki debugowania
Show FPS Counter = Pokaż licznik FPS

View file

@ -161,7 +161,7 @@ Direct3D9 = Direct3D &9
Direct3D11 = Direct3D &11
Disassembly = &Disassembly...
Discord = Discord
Display Layout Editor = Exibir o editor do esquema...
Display Layout && Effects = Exibir o editor do esquema...
Display Rotation = Rotação da exibição
Dump Next Frame to Log = D&umpar o frame seguinte no log
Emulation = &Emulação
@ -256,7 +256,7 @@ DevMenu = Menu do DEV
Disabled JIT functionality = Funcionalidade do JIT desativada
Draw Frametimes Graph = Desenhar gráfico dos tempos dos frames
Dump Decrypted Eboot = Dumpar EBOOT.BIN decriptado no boot do jogo
Dump Frame GPU Commands = Dumpar comandos dos frames da GPU
Dump next frame to log = Dumpa o próximo frame no log
Enable driver bug workarounds = Ativar soluções alternativas pros bugs dos drivers
Enable Logging = Ativar log do debug
Enter address = Inserir endereço
@ -268,8 +268,6 @@ GPU Profile = Perfil da GPU
GPU Log Profiler = Criador do Perfil do Registro da GPU
Jit Compare = Comparar JIT
JIT debug tools = Ferramentas de debug do JIT
Language = Idioma
Load language ini = Carregar o ini do idioma
Log Dropped Frame Statistics = Pôr no log as estátisticas da queda dos frames
Log Level = Nível do log
Log View = Visualização do log
@ -285,7 +283,6 @@ RestoreDefaultSettings = Você tem certeza que você quer restaurar todas as con
RestoreGameDefaultSettings = Você tem certeza que você quer restaurar as configurações específicas do jogo\nde volta para os padrões do PPSSPP?
Resume = Resumo
Run CPU Tests = Executar testes da CPU
Save language ini = Salvar o ini do idioma
Save new textures = Salvar novas texturas
Shader Viewer = Visualizador dos shaders
Show Developer Menu = Mostrar menu do desenvolvedor
@ -511,9 +508,8 @@ Device = Dispositivo
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = Desativado
Display layout editor = Exibe o editor dos esquemas
Display Layout && Effects = Exibe o editor dos esquemas
Display Resolution (HW scaler) = Resolução da tela (Dimensionador do hardware)
Dump next frame to log = Dumpa o próximo frame no log
Enable Cardboard VR = Ativa o VR Cardboard
FPS = FPS
Frame Rate Control = Controle da taxa dos frames
@ -564,7 +560,6 @@ Rendering Resolution = Resolução da renderização
RenderingMode NonBuffered Tip = Mais rápido, mas nada pode ser desenhado em alguns jogos
Rotation = Rotação
Safe = Seguro
Screen layout = Esquema da tela
Screen Scaling Filter = Filtro do dimensionamento da tela
Show Debug Statistics = Mostrar estatísticas do debug
Show FPS Counter = Mostrar contador de FPS

View file

@ -161,7 +161,7 @@ Direct3D9 = Direct3D &9
Direct3D11 = Direct3D &11
Disassembly = &Disassembly...
Discord = Discord
Display Layout Editor = Exibir o editor de esquema...
Display Layout && Effects = Exibir o editor de esquema...
Display Rotation = Rotação da exibição
Dump Next Frame to Log = G&uardar o frame seguinte no Log
Emulation = &Emulação
@ -256,7 +256,7 @@ DevMenu = Menu de Desenvolvedor
Disabled JIT functionality = Funcionalidade do JIT desabilitada
Draw Frametimes Graph = Desenhar gráfico dos tempos dos quadros
Dump Decrypted Eboot = Guardar EBOOT.BIN decriptado no boot do jogo
Dump Frame GPU Commands = Guardar comandos dos quadros da GPU
Dump next frame to log = Guardar o próximo frame no log
Enable driver bug workarounds = Ativar soluções alternativas para erros dos Drivers
Enable Logging = Ativar log do depurador
Enter address = Inserir endereço
@ -268,8 +268,6 @@ GPU Profile = Perfil da GPU
GPU Log Profiler = Criador do Perfil do Registro da GPU
Jit Compare = Comparar JIT
JIT debug tools = Ferramentas de depuração do JIT
Language = Idioma
Load language ini = Carregar o .ini do Idioma
Log Dropped Frame Statistics = Guardar no log as estátisticas da queda dos quadros
Log Level = Nível do log
Log View = Visualização do log
@ -285,7 +283,6 @@ RestoreDefaultSettings = Tens a certeza que queres restaurar todas as Definiçõ
RestoreGameDefaultSettings = Tens a certeza que queres restaurar as Definições específicas do jogo\nde volta para os padrões do PPSSPP?
Resume = Resumir
Run CPU Tests = Executar testes da CPU
Save language ini = Guardar o .ini do Idioma
Save new textures = Guardar novas texturas
Shader Viewer = Visualizador dos Shaders
Show Developer Menu = Mostrar Menu de Desenvolvedor
@ -511,9 +508,8 @@ Device = Dispositivo
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = Desativado
Display layout editor = Mostrar o editor dos esquemas
Display Layout && Effects = Mostrar o editor dos esquemas
Display Resolution (HW scaler) = Resolução da tela (Dimensionador do hardware)
Dump next frame to log = Guardar o próximo frame no log
Enable Cardboard VR = Ativar o VR Cardboard
FPS = FPS (Quadros Por Segundo)
Frame Rate Control = Controle da taxa dos quadros
@ -564,7 +560,6 @@ Rendering Resolution = Resolução da renderização
RenderingMode NonBuffered Tip = Mais rápido, mas poderá não ser desenhado nada em alguns jogos
Rotation = Rotação
Safe = Seguro
Screen layout = Esquema da tela
Screen Scaling Filter = Filtro do dimensionamento da tela
Show Debug Statistics = Mostrar estatísticas de depuração
Show FPS Counter = Mostrar contador de FPS

View file

@ -137,7 +137,7 @@ Direct3D9 = &Direct3D9
Direct3D11 = Direct3D &11
Disassembly = &Disassembly...
Discord = Discord
Display Layout Editor = Display layout editor...
Display Layout && Effects = Display layout && effects...
Display Rotation = Display rotation
Dump Next Frame to Log = D&ump Next Frame to Log
Emulation = &Emulation
@ -232,7 +232,7 @@ DevMenu = DevMenu
Disabled JIT functionality = Disabled JIT functionality
Draw Frametimes Graph = Draw frametimes graph
Dump Decrypted Eboot = Dump decrypted EBOOT.BIN on game boot
Dump Frame GPU Commands = Dump frame GPU commands
Dump next frame to log = Dump next frame to log
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Enable debug logging
Enter address = Enter address
@ -244,8 +244,6 @@ GPU Log Profiler = GPU Log Profiler
GPU Profile = GPU profile
Jit Compare = Jit compare
JIT debug tools = JIT debug tools
Language = Limbă
Load language ini = Deschide fişier ini limbă
Log Dropped Frame Statistics = Log dropped frame statistics
Log Level = Log level
Log View = Log view
@ -261,7 +259,6 @@ RestoreDefaultSettings = Are you sure you want to restore all settings back to t
RestoreGameDefaultSettings = Are you sure you want to restore the game-specific settings\nback to the PPSSPP defaults?
Resume = Resume
Run CPU Tests = Run CPU tests
Save language ini = Salvează fişier ini limbă
Save new textures = Save new textures
Shader Viewer = Shader viewer
Show Developer Menu = Show developer menu
@ -487,9 +484,8 @@ Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = Disabled
Display layout editor = Display layout editor
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Rezoluție ecran (scalare HW)
Dump next frame to log = Dump next frame to log
Enable Cardboard VR = Enable Cardboard VR
FPS = FPS
Frame Rate Control = Control rată de cadre
@ -541,7 +537,6 @@ Rendering Resolution = Rezoluție Afișare
RenderingMode NonBuffered Tip = Faster, but nothing may draw in some games
Rotation = Rotation
Safe = Sigur
Screen layout = Screen layout
Screen Scaling Filter = Filtrul de scalare al ecranului
Show Debug Statistics = Arată statistici de depanare
Show FPS Counter = Arată FPS

View file

@ -137,7 +137,7 @@ Direct3D9 = Direct3D &9
Direct3D11 = &Direct3D 11
Disassembly = &Дизассемблер...
Discord = Discord
Display Layout Editor = Редактор расположения экрана...
Display Layout && Effects = Редактор расположения экрана...
Display Rotation = Ориентация экрана
Dump Next Frame to Log = Сохранить &кадр в логе
Emulation = &Эмуляция
@ -232,7 +232,7 @@ DevMenu = Меню разраб.
Disabled JIT functionality = Отключение функционала JIT
Draw Frametimes Graph = Отрисовывать график времени кадров
Dump Decrypted Eboot = Дамп дешифрованного EBOOT.BIN при запуске
Dump Frame GPU Commands = Сохранить команды ГП для кадра
Dump next frame to log = Сохранить следующий кадр в логе
Enable driver bug workarounds = Включить обход багов драйвера
Enable Logging = Включить отладочное логирование
Enter address = Ввести адрес
@ -244,8 +244,6 @@ GPU Log Profiler = GPU Log Profiler
GPU Profile = Профиль ГП
Jit Compare = Сравнение с JIT
JIT debug tools = Инструменты отладки JIT
Language = Язык
Load language ini = Загрузить языковой .ini файл
Log Dropped Frame Statistics = Логировать статистику пропущенных кадров
Log Level = Уровень отладки
Log View = Отображение логов
@ -261,7 +259,6 @@ RestoreDefaultSettings = "Вы уверены, что хотите сброси
RestoreGameDefaultSettings = Вы уверены, что хотите вернуть все параметры игры к стандартным?
Resume = Resume
Run CPU Tests = Запустить тесты ЦП
Save language ini = Сохранить языковой .ini файл
Save new textures = Сохранять новые текстуры
Shader Viewer = Просмотрщик шейдеров
Show Developer Menu = Показывать меню разработчика
@ -487,9 +484,8 @@ Device = Устройство
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = Отключено
Display layout editor = Редактор расположения экрана
Display Layout && Effects = Редактор расположения экрана
Display Resolution (HW scaler) = Разрешение экрана (аппаратное)
Dump next frame to log = Сохранить следующий кадр в логе
Enable Cardboard VR = Включить Cardboard VR
#Features = Возможности
FPS = FPS
@ -542,7 +538,6 @@ Rendering Resolution = Разрешение рендеринга
RenderingMode NonBuffered Tip = Быстрее, но ничего не отображает в некоторых играх
Rotation = Ориентация
Safe = Безопасно
Screen layout = Расположение экрана
Screen Scaling Filter = Фильтр масштабирования экрана
Show Debug Statistics = Отображать отладочную информацию
Show FPS Counter = Показывать счетчик FPS

View file

@ -137,7 +137,7 @@ Direct3D9 = Direct3D9
Direct3D11 = Direct3D &11
Disassembly = Disassemblera
Discord = Discord
Display Layout Editor = Display layout editor...
Display Layout && Effects = Skärmlayout && effekter...
Display Rotation = Skärmrotation
Dump Next Frame to Log = Dump Next Frame to Log
Emulation = Emulering
@ -232,7 +232,7 @@ DevMenu = DevMenu
Disabled JIT functionality = Disabled JIT functionality
Draw Frametimes Graph = Draw frametimes graph
Dump Decrypted Eboot = Dumpa decrypterad EBOOT.BIN när spelet startar
Dump Frame GPU Commands = Dumpa GPU-kommandon för en frame
Dump next frame to log = Dumpa nästa frame till log
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Debugloggning
Enter address = Address
@ -244,8 +244,6 @@ GPU Log Profiler = GPU Log Profiler
GPU Profile = GPU profile
Jit Compare = Jit-jämförare
JIT debug tools = JIT debug tools
Language = Språk
Load language ini = Ladda språk-ini
Log Dropped Frame Statistics = Log dropped frame statistics
Log Level = Loggnivå
Log View = Log view
@ -261,7 +259,6 @@ RestoreDefaultSettings = Are you sure you want to restore all settings back to t
RestoreGameDefaultSettings = Are you sure you want to restore the game-specific settings\nback to the PPSSPP defaults?
Resume = Resume
Run CPU Tests = Kör CPU-tester
Save language ini = Spara språk-ini
Save new textures = Spara nya texturer
Shader Viewer = Shader-visare
Show Developer Menu = Visa Developer-menyn
@ -487,9 +484,8 @@ Device = Enhet
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = Avstängd
Display layout editor = Skärmlayouteditor
Display Layout && Effects = Skärmlayout och effekter
Display Resolution (HW scaler) = Skärmupplösning (HW scaler)
Dump next frame to log = Dumpa nästa frame till log
Enable Cardboard VR = Enable Cardboard VR
FPS = FPS
Frame Rate Control = Framerate-kontroll
@ -541,7 +537,6 @@ Rendering Resolution = Renderingsupplösning
RenderingMode NonBuffered Tip = Faster, but nothing may draw in some games
Rotation = Rotation
Safe = Safe
Screen layout = Screen layout
Screen Scaling Filter = Skärmskalningsfilter
Show Debug Statistics = Visa debugstatistik
Show FPS Counter = Visa FPS-räknare

View file

@ -137,7 +137,7 @@ Direct3D9 = Direct3D9
Direct3D11 = Direct3D 11
Disassembly = Disassembly...
Discord = Discord
Display Layout Editor = Display Layout Editor...
Display Layout && Effects = Display Layout & Effects...
Display Rotation = Display rotation
Dump Next Frame to Log = Dump Next Frame to Log
Emulation = Emulasyon
@ -232,7 +232,7 @@ DevMenu = DevMenu
Disabled JIT functionality = Disabled JIT functionality
Draw Frametimes Graph = Draw frametimes graph
Dump Decrypted Eboot = Dump decrypted EBOOT.BIN on game boot
Dump Frame GPU Commands = Dump frame GPU commands
Dump next frame to log = I-refresh ang set-up
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Paganahin ang Debug Logging
Enter address = Ilagay ang address
@ -244,8 +244,6 @@ GPU Log Profiler = GPU Log Profiler
GPU Profile = GPU profile
Jit Compare = Ipagkumpara ang JIT
JIT debug tools = JIT debug tools
Language = Wika
Load language ini = i-Load ang Language ini
Log Dropped Frame Statistics = Log dropped frame statistics
Log Level = Level ng Log
Log View = Log view
@ -261,7 +259,6 @@ RestoreDefaultSettings = Sigurado ka bang ibalik ang Ssetting sa dati?\nAng Cont
RestoreGameDefaultSettings = Sigurado ka bang ibalik sa dati\nang Setting ng isang spesipikong laro?\n\n\nHindi mo na ito maibabalik.\nPaki-restart ang PPSSPP para makita ang mga binago.
Resume = Resume
Run CPU Tests = Magsagawa ng CPU Tests
Save language ini = Save Language ini
Save new textures = Save new textures
Shader Viewer = Shader viewer
Show Developer Menu = Ipakita ang Developer Menu
@ -487,9 +484,8 @@ Device = Device
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = Disabled
Display layout editor = Display layout editor
Display Layout && Effects = Display layout && effects
Display Resolution (HW scaler) = Display resolution (HW scaler)
Dump next frame to log = I-refresh ang set-up
Enable Cardboard VR = Enable Cardboard VR
FPS = FPS
Frame Rate Control = Pag kontrol ng frame rate
@ -541,7 +537,6 @@ Rendering Resolution = Resolusyon ng rendering
RenderingMode NonBuffered Tip = Mabilis, pero minsan wala kang makikita sa laro, blanko
Rotation = Rotasyon
Safe = Safe
Screen layout = Screen layout
Screen Scaling Filter = Screen Scaling Filter
Show Debug Statistics = Ipakita ang debug statistics
Show FPS Counter = Ipakita ang FPS

View file

@ -137,7 +137,7 @@ Direct3D9 = ไดเร็คท์ 3D 9
Direct3D11 = ไดเร็คท์ 3D 11
Disassembly = การแยกองค์ประกอบ...
Discord = ไปที่ Discord
Display Layout Editor = แก้ไขรูปแบบของหน้าจอ...
Display Layout && Effects = แก้ไขรูปแบบของหน้าจอ...
Display Rotation = การสลับหมุนหน้าจอ
Dump Next Frame to Log = ดึงข้อมูลของเฟรมถัดไปเพื่อเก็บบันทึกค่า
Emulation = การจำลอง
@ -232,7 +232,7 @@ DevMenu = เมนูผู้พัฒนา
Disabled JIT functionality = ปิดฟังก์ชั่นการทำงานของระบบ JIT
Draw Frametimes Graph = กราฟแสดงจำนวนเฟรม
Dump Decrypted Eboot = ดึงไฟล์ EBOOT.BIN ออกมาเก็บไว้เมื่อเริ่มเกม
Dump Frame GPU Commands = ดึงค่าเฟรมคำสั่งของ GPU
Dump next frame to log = ดึงข้อมูลของเฟรมถัดไปเก็บบันทึกค่า
Enable Logging = เปิดใช้งานการเก็บค่าแก้ไขจุดบกพร่อง
Enable driver bug workarounds = เปิดใช้งานการแก้ขัดปัญหาไดรเวอร์บั๊ก
Enter address = ใส่ค่าที่อยู่
@ -244,8 +244,6 @@ GPU Log Profiler = ตัวแสดงค่าโปรไฟล์ GPU
GPU Profile = โปรไฟล์ GPU
Jit Compare = เปรียบเทียบระบบ JIT
JIT debug tools = เครื่องมือตรวจสอบระบบ JIT
Language = ภาษา
Load language ini = โหลดไฟล์ภาษา (.ini)
Log Dropped Frame Statistics = เก็บสถิติค่าเฟรมเรทตก
Log Level = เก็บค่าระดับ
Log View = เก็บค่ามุมมอง
@ -261,7 +259,6 @@ RestoreDefaultSettings = คุณแน่ใจรึว่าต้องก
RestoreGameDefaultSettings = คุณแน่ใจรึว่าต้องการรีเซ็ตตั้งค่าเฉพาะเกม?\nการตั้งค่าของเกมนี้จะกลับไปใช้ค่าเริ่มต้นของ PPSSPP?
Resume = เล่นต่อ
Run CPU Tests = เรียกใช้การทดสอบซีพียู
Save language ini = บันทึกไฟล์ภาษา (.ini)
Save new textures = บันทึกพื้นผิวลงในแหล่งที่เก็บข้อมูล
Shader Viewer = มุมมองการปรับเฉดแสงสี
Show Developer Menu = แสดงเมนูสำหรับนักพัฒนา
@ -487,9 +484,8 @@ Device = การ์ดจอ
Direct3D 9 = ไดเร็คท์ 3D 9
Direct3D 11 = ไดเร็คท์ 3D 11
Disabled = ปิดการใช้งาน
Display layout editor = แก้ไขรูปแบบของหน้าจอ
Display Layout && Effects = แก้ไขรูปแบบของหน้าจอ
Display Resolution (HW scaler) = ความละเอียดหน้าจอ (ตามฮาร์ดแวร์)
Dump next frame to log = ดึงข้อมูลของเฟรมถัดไปเก็บบันทึกค่า
Enable Cardboard VR = เปิดการทำงานแว่นการ์ดบอร์ด VR
FPS = เฟรมต่อวิ
Frame Rate Control = การควบคุมเฟรมเรท
@ -542,7 +538,6 @@ Rendering Resolution = ความละเอียดในการแสด
RenderingMode NonBuffered Tip = เร็วขึ้นก็จริง แต่มีผลข้างเคียงในบางเกมอาจเกิดอาการจอดำ
Rotation = หมุนจอ
Safe = ปลอดภัย
Screen layout = เค้าโครงหน้าจอ
Screen Scaling Filter = ตัวกรองปรับสเกลหน้าจอ
Show Debug Statistics = แสดงค่าทางสถิติการแก้ไขจุดบกพร่อง
Show FPS Counter = แสดงค่าเฟรมเรท และความเร็ว/วินาที

View file

@ -139,7 +139,7 @@ Direct3D9 = &Direct3D9
Direct3D11 = Direct3D &11
Disassembly = &Disassembly...
Discord = Discord
Display Layout Editor = Ekran düzeni düzenleyici...
Display Layout && Effects = Ekran düzeni düzenleyici...
Display Rotation = Ekran rotasyonu
Dump Next Frame to Log = D&ump Next Frame to Log
Emulation = &Emülasyon
@ -234,7 +234,7 @@ DevMenu = DevMenu
Disabled JIT functionality = JIT işlevselliğini devre dışı bırakın
Draw Frametimes Graph = Kare süreleri grafiğini çizin
Dump Decrypted Eboot = Şifresi çözülmüş EBOOT.BIN'i oyun açılışında temizleyin
Dump Frame GPU Commands = Kare GPU komutlarını temizleyin
Dump next frame to log = Sonraki kareyi günlüğe dökümle
Enable driver bug workarounds = Sürücü hatası geçici çözümlerini etkinleştirin
Enable Logging = Hata ayıklama günlüğünü etkinleştirin
Enter address = Adres Gir
@ -246,8 +246,6 @@ GPU Log Profiler = GPU Log Profiler
GPU Profile = GPU profili
Jit Compare = Jit karşılaştırma
JIT debug tools = JIT hata ayıklama araçları
Language = Dil
Load language ini = Dil Dosyası Yükle(.ini)
Log Dropped Frame Statistics = Düşen kare istatistiklerini günlüğe kaydet
Log Level = Günlük seviyesi
Log View = Günlük görünümü
@ -263,7 +261,6 @@ RestoreDefaultSettings = Bütün ayarları varsayılanlarına döndürmek istedi
RestoreGameDefaultSettings = Oyun için ayarlanmış olan özel ayarları PPSSPP varsayılanlarına döndürmek istediğinden emin misin?
Resume = Devam ettir
Run CPU Tests = İşlemci testlerini başlat
Save language ini = Dil Dosyası Kaydet (.ini)
Save new textures = Yeni dokuları kaydet
Shader Viewer = Shader Görüntüleyici
Show Developer Menu = Geliştirici Menüsünü Göster
@ -489,9 +486,8 @@ Device = Cihaz
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = Devre dışı
Display layout editor = Görüntü Düzeni Düzenleyicisi
Display Layout && Effects = Görüntü Düzeni Düzenleyicisi
Display Resolution (HW scaler) = Görüntü Çözünürlüğü (HW scaler)
Dump next frame to log = Sonraki kareyi günlüğe dökümle
Enable Cardboard VR = Cardboard VR'ı Etkinleştirin
FPS = FPS
Frame Rate Control = Kare hızı denetimi
@ -543,7 +539,6 @@ Rendering Resolution = İşleme çözünürlüğü
RenderingMode NonBuffered Tip = Daha hızlıdır, ancak bazı oyunlarda hiçbir şey çizilmeyebilir
Rotation = Rotasyon
Safe = Güvenli
Screen layout = Ekran düzeni
Screen Scaling Filter = Ekran ölçekleme filtresi
Show Debug Statistics = Hata ayıklama istatistiklerini göster
Show FPS Counter = FPS sayacını göster

View file

@ -137,7 +137,7 @@ Direct3D9 = Direct3D &9
Direct3D11 = Direct3D &11
Disassembly = &Розбирання...
Discord = Discord
Display Layout Editor = Редактор розташування екрану...
Display Layout && Effects = Редактор розташування екрану...
Display Rotation = Орієнтація екрану
Dump Next Frame to Log = Зберегти &кадр у лог
Emulation = &Емуляція
@ -232,7 +232,7 @@ DevMenu = Меню розроб.
Disabled JIT functionality = Вимкнений функціонал JIT
Draw Frametimes Graph = Намалюйте графік фрагментів
Dump Decrypted Eboot = Дамп дешифрування Eboot.bin при паузі
Dump Frame GPU Commands = Дамп команд GPU кадру
Dump next frame to log = Зберегти кадр у лог
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Ввімкнути логування
Enter address = Введіть адресу
@ -244,8 +244,6 @@ GPU Log Profiler = GPU Log Profiler
GPU Profile = Профіль GPU
Jit Compare = Порівняння з Jit
JIT debug tools = Інструменти налагодження JIT
Language = Мова
Load language ini = Завантажити мовний .ini файл
Log Dropped Frame Statistics = Лог статистики пропущених кадрів
Log Level = Лог рівня
Log View = Лог виду
@ -261,7 +259,6 @@ RestoreDefaultSettings = "Ви впевненні,що хочете скинут
RestoreGameDefaultSettings = Ви впевнені, що хочете повернути всі параметри гри до стардартних\nповернути PPSSPP за замовчуванням ?
Resume = Resume
Run CPU Tests = Запустити тести CPU
Save language ini = Зберегти мовний .ini файл
Save new textures = Зберегти нові текстури
Shader Viewer = Переглядач шейдеру
Show Developer Menu = Показати меню розробника
@ -487,9 +484,8 @@ Device = Пристрій
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = Вимкнено
Display layout editor = Редактор розташування екрану
Display Layout && Effects = Редактор розташування екрану
Display Resolution (HW scaler) = Розширення екрану (HW масштабування)
Dump next frame to log = Зберегти кадр у лог
Enable Cardboard VR = Увімкнути Cardboard VR
FPS = FPS
Frame Rate Control = Управління частотою кадрів
@ -541,7 +537,6 @@ Rendering Resolution = Розширення рендерингу
RenderingMode NonBuffered Tip = Швидше, але в деяких іграх нічого не може
Rotation = Орієнтація:
Safe = Безпечно
Screen layout = Screen layout
Screen Scaling Filter = Фільтр обчислення екрану
Show Debug Statistics = Відоброжати зневадження
Show FPS Counter = Показати FPS

View file

@ -137,7 +137,7 @@ Direct3D9 = Direct3D9
Direct3D11 = Direct3D11
Disassembly = Disassembly (Tháo gỡ)...
Discord = Discord
Display Layout Editor = Hiện nút chỉnh sửa bố cục...
Display Layout && Effects = Hiện nút chỉnh sửa bố cục...
Display Rotation = Hiện nút xoay màn hình
Dump Next Frame to Log = Dump Next Frame to Log
Emulation = Giả lập
@ -232,7 +232,7 @@ DevMenu = Menu NPH
Disabled JIT functionality = Disabled JIT functionality
Draw Frametimes Graph = Draw frametimes graph
Dump Decrypted Eboot = Đưa file vào EBOOT.BIN để khởi động trò chơi
Dump Frame GPU Commands = Đưa lệnh vào khung GPU
Dump next frame to log = Đưa khung hình kế tiếp vào nhật ký
Enable driver bug workarounds = Enable driver bug workarounds
Enable Logging = Cho phép ghi nhật ký debug
Enter address = Nhập địa chỉ
@ -244,8 +244,6 @@ GPU Log Profiler = GPU Log Profiler
GPU Profile = GPU profile
Jit Compare = So sánh Jit
JIT debug tools = JIT debug tools
Language = Ngôn ngữ
Load language ini = Tải file ngôn ngữ .ini
Log Dropped Frame Statistics = Khung nhật ký thống kê
Log Level = Cấp nhật ký
Log View = Xem nhật ký
@ -261,7 +259,6 @@ RestoreDefaultSettings = Bạn có muốn khôi phục các thiết lập về m
RestoreGameDefaultSettings = Bạn có muốn khôi phục cài đặt trò chơi\nPPSSPP sẽ trở về mặc định?
Resume = Resume
Run CPU Tests = Chạy thử CPU
Save language ini = Lưu file ngôn ngữ .ini
Save new textures = Lưu file textures mới
Shader Viewer = Xem trước đỗ bóng
Show Developer Menu = Hiện menu NPH
@ -487,9 +484,8 @@ Device = Thiết bị
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = Vô hiệu hóa
Display layout editor = Chỉnh bố trí hiển thị
Display Layout && Effects = Chỉnh bố trí hiển thị
Display Resolution (HW scaler) = Độ phân giải màn hình (HW scaler)
Dump next frame to log = Đưa khung hình kế tiếp vào nhật ký
Enable Cardboard VR = Enable Cardboard VR
FPS = FPS (khung hình/giây)
Frame Rate Control = Điều khiển tốc độ khung hình
@ -541,7 +537,6 @@ Rendering Resolution = Độ phân giải kết xuất
RenderingMode NonBuffered Tip = Nhanh hơn, nhưng một số trò chơi thì bị lỗi
Rotation = Xoay màn hình
Safe = An toàn
Screen layout = Screen layout
Screen Scaling Filter = Bộ lọc họa tiết rộng
Show Debug Statistics = Hiện thông số debug
Show FPS Counter = Hiện thông số FPS

View file

@ -137,7 +137,7 @@ Direct3D9 = Direct3D 9 (&9)
Direct3D11 = Direct3D11 (&11)
Disassembly = 反汇编 (&D)...
Discord = Discord
Display Layout Editor = 显示布局编辑器...
Display Layout && Effects = 显示布局编辑器...
Display Rotation = 显示旋转
Dump Next Frame to Log = 转储下一帧到日志 (&U)
Emulation = 模拟 (&E)
@ -232,7 +232,7 @@ DevMenu = 开发者菜单
Disabled JIT functionality = 已禁用的JIT功能
Draw Frametimes Graph = 显示帧时间统计图
Dump Decrypted Eboot = 当载入游戏时转储已解密的EBOOT.BIN
Dump Frame GPU Commands = 转储帧GPU命令
Dump next frame to log = 转储下一帧到日志
Enable driver bug workarounds = 启用驱动程序错误解决方法
Enable Logging = 启用调试日志
Enter address = 输入地址
@ -244,8 +244,6 @@ GPU Log Profiler = GPU日志分析器
GPU Profile = GPU分析器
Jit Compare = Jit比较
JIT debug tools = JIT调试工具
Language = 语言设置
Load language ini = 载入语言配置
Log Dropped Frame Statistics = 记录丢弃帧统计信息
Log Level = 日志等级
Log View = 日志视图
@ -261,7 +259,6 @@ RestoreDefaultSettings = 您确定要将所有设置恢复到默认? (按键映
RestoreGameDefaultSettings = 您确定要将此游戏设置\n恢复为PPSSPP默认吗?
Resume = 恢复
Run CPU Tests = 运行CPU测试
Save language ini = 保存语言配置
Save new textures = 保存新纹理
Shader Viewer = 着色器查看器
Show Developer Menu = 显示开发者菜单
@ -487,9 +484,8 @@ Device = 设备
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = 禁用
Display layout editor = 显示布局编辑器
Display Layout && Effects = 显示布局编辑器
Display Resolution (HW scaler) = 显示分辨率(硬件缩放)
Dump next frame to log = 转储下一帧到日志
Enable Cardboard VR = 启用Cardboard VR
FPS = 每秒帧数 (FPS)
Frame Rate Control = 帧率控制
@ -541,7 +537,6 @@ Rendering Resolution = 渲染分辨率
RenderingMode NonBuffered Tip = 更快,但可能在某些游戏中丢失特效
Rotation = 旋转
Safe = 安全
Screen layout = 屏幕布局
Screen Scaling Filter = 屏幕缩放滤镜
Show Debug Statistics = 显示调试信息
Show FPS Counter = 显示FPS计数器

View file

@ -137,7 +137,7 @@ Direct3D9 = Direct3D 9 (&9)
Direct3D11 = Direct3D 11 (&11)
Disassembly = 反組譯碼 (&D)…
Discord = Discord
Display Layout Editor = 顯示版面配置編輯器…
Display Layout && Effects = 顯示版面配置編輯器…
Display Rotation = 顯示旋轉
Dump Next Frame to Log = 傾印下一影格至記錄 (&U)
Emulation = 模擬 (&E)
@ -232,7 +232,7 @@ DevMenu = 開發選單
Disabled JIT functionality = 停用 JIT 功能
Draw Frametimes Graph = 繪製影格時間圖形
Dump Decrypted Eboot = 遊戲啟動時傾印已解密的 EBOOT.BIN
Dump Frame GPU Commands = 傾印影格 GPU 命令
Dump next frame to log = 將下一個影格傾印至記錄
Enable driver bug workarounds = 啟用驅動程式錯誤因應措施
Enable Logging = 啟用偵錯記錄
Enter address = 輸入位址
@ -244,8 +244,6 @@ GPU Profile = GPU 設定檔
GPU Log Profiler = GPU 記錄分析工具
Jit Compare = JIT 比較
JIT debug tools = JIT 偵錯工具
Language = 語言
Load language ini = 載入語言 ini 檔案
Log Dropped Frame Statistics = 記錄捨棄影格統計資料
Log Level = 記錄層級
Log View = 記錄檢視
@ -261,7 +259,6 @@ RestoreDefaultSettings = 您確定要將所有設定還原為預設值嗎?\n
RestoreGameDefaultSettings = 您確定要將遊戲特定設定\n還原為 PPSSPP 預設值嗎?
Resume = 恢復
Run CPU Tests = 執行 CPU 測試
Save language ini = 儲存語言 ini 檔案
Save new textures = 儲存新紋理
Shader Viewer = 著色器檢視器
Show Developer Menu = 顯示開發人員選單
@ -487,9 +484,8 @@ Device = 裝置
Direct3D 9 = Direct3D 9
Direct3D 11 = Direct3D 11
Disabled = Disabled
Display layout editor = 顯示版面配置編輯器
Display Layout && Effects = 顯示版面配置編輯器
Display Resolution (HW scaler) = 顯示解析度 (硬體縮放)
Dump next frame to log = 將下一個影格傾印至記錄
Enable Cardboard VR = 啟用 Cardboard VR
FPS = FPS
Frame Rate Control = 影格速率控制
@ -540,7 +536,6 @@ Rendering Resolution = 轉譯解析度
RenderingMode NonBuffered Tip = 更快,但在某些遊戲中可能無法繪圖
Rotation = 旋轉
Safe = 安全
Screen layout = 螢幕版面配置
Screen Scaling Filter = 螢幕縮放濾鏡
Show Debug Statistics = 顯示偵錯統計資料
Show FPS Counter = 顯示 FPS 計數器