mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Merge pull request #19214 from hrydgard/fix-vulkan-errors
Fix some Vulkan-related bugs
This commit is contained in:
commit
f23f54bf87
53 changed files with 134 additions and 59 deletions
|
@ -154,9 +154,9 @@ struct VKRStep {
|
||||||
VKRRenderPassStoreAction colorStore;
|
VKRRenderPassStoreAction colorStore;
|
||||||
VKRRenderPassStoreAction depthStore;
|
VKRRenderPassStoreAction depthStore;
|
||||||
VKRRenderPassStoreAction stencilStore;
|
VKRRenderPassStoreAction stencilStore;
|
||||||
u8 clearStencil;
|
|
||||||
uint32_t clearColor;
|
uint32_t clearColor;
|
||||||
float clearDepth;
|
float clearDepth;
|
||||||
|
u8 clearStencil;
|
||||||
int numDraws;
|
int numDraws;
|
||||||
// Downloads and textures from this pass.
|
// Downloads and textures from this pass.
|
||||||
int numReads;
|
int numReads;
|
||||||
|
@ -173,20 +173,20 @@ struct VKRStep {
|
||||||
VKRFramebuffer *dst;
|
VKRFramebuffer *dst;
|
||||||
VkRect2D srcRect;
|
VkRect2D srcRect;
|
||||||
VkOffset2D dstPos;
|
VkOffset2D dstPos;
|
||||||
int aspectMask;
|
VkImageAspectFlags aspectMask;
|
||||||
} copy;
|
} copy;
|
||||||
struct {
|
struct {
|
||||||
VKRFramebuffer *src;
|
VKRFramebuffer *src;
|
||||||
VKRFramebuffer *dst;
|
VKRFramebuffer *dst;
|
||||||
VkRect2D srcRect;
|
VkRect2D srcRect;
|
||||||
VkRect2D dstRect;
|
VkRect2D dstRect;
|
||||||
int aspectMask;
|
VkImageAspectFlags aspectMask;
|
||||||
VkFilter filter;
|
VkFilter filter;
|
||||||
} blit;
|
} blit;
|
||||||
struct {
|
struct {
|
||||||
int aspectMask;
|
|
||||||
VKRFramebuffer *src;
|
VKRFramebuffer *src;
|
||||||
VkRect2D srcRect;
|
VkRect2D srcRect;
|
||||||
|
VkImageAspectFlags aspectMask;
|
||||||
bool delayed;
|
bool delayed;
|
||||||
} readback;
|
} readback;
|
||||||
struct {
|
struct {
|
||||||
|
|
|
@ -900,6 +900,11 @@ void VulkanRenderManager::EndCurRenderStep() {
|
||||||
|
|
||||||
void VulkanRenderManager::BindFramebufferAsRenderTarget(VKRFramebuffer *fb, VKRRenderPassLoadAction color, VKRRenderPassLoadAction depth, VKRRenderPassLoadAction stencil, uint32_t clearColor, float clearDepth, uint8_t clearStencil, const char *tag) {
|
void VulkanRenderManager::BindFramebufferAsRenderTarget(VKRFramebuffer *fb, VKRRenderPassLoadAction color, VKRRenderPassLoadAction depth, VKRRenderPassLoadAction stencil, uint32_t clearColor, float clearDepth, uint8_t clearStencil, const char *tag) {
|
||||||
_dbg_assert_(insideFrame_);
|
_dbg_assert_(insideFrame_);
|
||||||
|
|
||||||
|
#ifdef _DEBUG
|
||||||
|
SanityCheckPassesOnAdd();
|
||||||
|
#endif
|
||||||
|
|
||||||
// Eliminate dupes (bind of the framebuffer we already are rendering to), instantly convert to a clear if possible.
|
// Eliminate dupes (bind of the framebuffer we already are rendering to), instantly convert to a clear if possible.
|
||||||
if (!steps_.empty() && steps_.back()->stepType == VKRStepType::RENDER && steps_.back()->render.framebuffer == fb) {
|
if (!steps_.empty() && steps_.back()->stepType == VKRStepType::RENDER && steps_.back()->render.framebuffer == fb) {
|
||||||
u32 clearMask = 0;
|
u32 clearMask = 0;
|
||||||
|
@ -1233,6 +1238,10 @@ void VulkanRenderManager::Clear(uint32_t clearColor, float clearZ, int clearSten
|
||||||
}
|
}
|
||||||
|
|
||||||
void VulkanRenderManager::CopyFramebuffer(VKRFramebuffer *src, VkRect2D srcRect, VKRFramebuffer *dst, VkOffset2D dstPos, VkImageAspectFlags aspectMask, const char *tag) {
|
void VulkanRenderManager::CopyFramebuffer(VKRFramebuffer *src, VkRect2D srcRect, VKRFramebuffer *dst, VkOffset2D dstPos, VkImageAspectFlags aspectMask, const char *tag) {
|
||||||
|
#ifdef _DEBUG
|
||||||
|
SanityCheckPassesOnAdd();
|
||||||
|
#endif
|
||||||
|
|
||||||
_dbg_assert_msg_(srcRect.offset.x >= 0, "srcrect offset x (%d) < 0", srcRect.offset.x);
|
_dbg_assert_msg_(srcRect.offset.x >= 0, "srcrect offset x (%d) < 0", srcRect.offset.x);
|
||||||
_dbg_assert_msg_(srcRect.offset.y >= 0, "srcrect offset y (%d) < 0", srcRect.offset.y);
|
_dbg_assert_msg_(srcRect.offset.y >= 0, "srcrect offset y (%d) < 0", srcRect.offset.y);
|
||||||
_dbg_assert_msg_(srcRect.offset.x + srcRect.extent.width <= (uint32_t)src->width, "srcrect offset x (%d) + extent (%d) > width (%d)", srcRect.offset.x, srcRect.extent.width, (uint32_t)src->width);
|
_dbg_assert_msg_(srcRect.offset.x + srcRect.extent.width <= (uint32_t)src->width, "srcrect offset x (%d) + extent (%d) > width (%d)", srcRect.offset.x, srcRect.extent.width, (uint32_t)src->width);
|
||||||
|
@ -1297,6 +1306,10 @@ void VulkanRenderManager::CopyFramebuffer(VKRFramebuffer *src, VkRect2D srcRect,
|
||||||
}
|
}
|
||||||
|
|
||||||
void VulkanRenderManager::BlitFramebuffer(VKRFramebuffer *src, VkRect2D srcRect, VKRFramebuffer *dst, VkRect2D dstRect, VkImageAspectFlags aspectMask, VkFilter filter, const char *tag) {
|
void VulkanRenderManager::BlitFramebuffer(VKRFramebuffer *src, VkRect2D srcRect, VKRFramebuffer *dst, VkRect2D dstRect, VkImageAspectFlags aspectMask, VkFilter filter, const char *tag) {
|
||||||
|
#ifdef _DEBUG
|
||||||
|
SanityCheckPassesOnAdd();
|
||||||
|
#endif
|
||||||
|
|
||||||
_dbg_assert_msg_(srcRect.offset.x >= 0, "srcrect offset x (%d) < 0", srcRect.offset.x);
|
_dbg_assert_msg_(srcRect.offset.x >= 0, "srcrect offset x (%d) < 0", srcRect.offset.x);
|
||||||
_dbg_assert_msg_(srcRect.offset.y >= 0, "srcrect offset y (%d) < 0", srcRect.offset.y);
|
_dbg_assert_msg_(srcRect.offset.y >= 0, "srcrect offset y (%d) < 0", srcRect.offset.y);
|
||||||
_dbg_assert_msg_(srcRect.offset.x + srcRect.extent.width <= (uint32_t)src->width, "srcrect offset x (%d) + extent (%d) > width (%d)", srcRect.offset.x, srcRect.extent.width, (uint32_t)src->width);
|
_dbg_assert_msg_(srcRect.offset.x + srcRect.extent.width <= (uint32_t)src->width, "srcrect offset x (%d) + extent (%d) > width (%d)", srcRect.offset.x, srcRect.extent.width, (uint32_t)src->width);
|
||||||
|
@ -1849,3 +1862,14 @@ void VKRPipelineLayout::FlushDescSets(VulkanContext *vulkan, int frame, QueuePro
|
||||||
profile->descriptorsWritten += writeCount;
|
profile->descriptorsWritten += writeCount;
|
||||||
profile->descriptorsDeduped += dedupCount;
|
profile->descriptorsDeduped += dedupCount;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void VulkanRenderManager::SanityCheckPassesOnAdd() {
|
||||||
|
#if _DEBUG
|
||||||
|
// Check that we don't have any previous passes that write to the backbuffer, that must ALWAYS be the last one.
|
||||||
|
for (int i = 0; i < steps_.size(); i++) {
|
||||||
|
if (steps_[i]->stepType == VKRStepType::RENDER) {
|
||||||
|
_dbg_assert_(steps_[i]->render.framebuffer != nullptr);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
|
@ -554,6 +554,8 @@ private:
|
||||||
void ResetDescriptorLists(int frame);
|
void ResetDescriptorLists(int frame);
|
||||||
void FlushDescriptors(int frame);
|
void FlushDescriptors(int frame);
|
||||||
|
|
||||||
|
void SanityCheckPassesOnAdd();
|
||||||
|
|
||||||
FrameDataShared frameDataShared_;
|
FrameDataShared frameDataShared_;
|
||||||
|
|
||||||
FrameData frameData_[VulkanContext::MAX_INFLIGHT_FRAMES];
|
FrameData frameData_[VulkanContext::MAX_INFLIGHT_FRAMES];
|
||||||
|
|
|
@ -547,7 +547,6 @@ bool Config::IsBackendEnabled(GPUBackend backend) {
|
||||||
if (backend == GPUBackend::OPENGL)
|
if (backend == GPUBackend::OPENGL)
|
||||||
return false;
|
return false;
|
||||||
#endif
|
#endif
|
||||||
INFO_LOG(SYSTEM, "Checking for VK");
|
|
||||||
if (backend == GPUBackend::VULKAN && !VulkanMayBeAvailable())
|
if (backend == GPUBackend::VULKAN && !VulkanMayBeAvailable())
|
||||||
return false;
|
return false;
|
||||||
return true;
|
return true;
|
||||||
|
|
|
@ -3272,8 +3272,8 @@ void FramebufferManagerCommon::RebindFramebuffer(const char *tag) {
|
||||||
if (currentRenderVfb_ && currentRenderVfb_->fbo) {
|
if (currentRenderVfb_ && currentRenderVfb_->fbo) {
|
||||||
draw_->BindFramebufferAsRenderTarget(currentRenderVfb_->fbo, { Draw::RPAction::KEEP, Draw::RPAction::KEEP, Draw::RPAction::KEEP }, tag);
|
draw_->BindFramebufferAsRenderTarget(currentRenderVfb_->fbo, { Draw::RPAction::KEEP, Draw::RPAction::KEEP, Draw::RPAction::KEEP }, tag);
|
||||||
} else {
|
} else {
|
||||||
// Should this even happen? It could while debugging, but maybe we can just skip binding at all.
|
// This can happen (like it does in Parappa) when a frame starts with copies instead of rendering.
|
||||||
draw_->BindFramebufferAsRenderTarget(nullptr, { Draw::RPAction::KEEP, Draw::RPAction::KEEP, Draw::RPAction::KEEP }, "RebindFramebuffer_Bad");
|
// Let's do nothing and assume it'll take care of itself.
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1348,7 +1348,7 @@ ScreenRenderFlags EmuScreen::render(ScreenRenderMode mode) {
|
||||||
// We only bind it in FramebufferManager::CopyDisplayToOutput (unless non-buffered)...
|
// We only bind it in FramebufferManager::CopyDisplayToOutput (unless non-buffered)...
|
||||||
// We do, however, start the frame in other ways.
|
// We do, however, start the frame in other ways.
|
||||||
|
|
||||||
if ((skipBufferEffects && !g_Config.bSoftwareRendering) || Core_IsStepping()) {
|
if (skipBufferEffects && !g_Config.bSoftwareRendering) {
|
||||||
// We need to clear here already so that drawing during the frame is done on a clean slate.
|
// We need to clear here already so that drawing during the frame is done on a clean slate.
|
||||||
if (Core_IsStepping() && gpuStats.numFlips != 0) {
|
if (Core_IsStepping() && gpuStats.numFlips != 0) {
|
||||||
draw->BindFramebufferAsRenderTarget(nullptr, { RPAction::KEEP, RPAction::CLEAR, RPAction::CLEAR }, "EmuScreen_BackBuffer");
|
draw->BindFramebufferAsRenderTarget(nullptr, { RPAction::KEEP, RPAction::CLEAR, RPAction::CLEAR }, "EmuScreen_BackBuffer");
|
||||||
|
@ -1450,13 +1450,11 @@ ScreenRenderFlags EmuScreen::render(ScreenRenderMode mode) {
|
||||||
} else {
|
} else {
|
||||||
// If we're stepping, it's convenient not to clear the screen entirely, so we copy display to output.
|
// If we're stepping, it's convenient not to clear the screen entirely, so we copy display to output.
|
||||||
// This won't work in non-buffered, but that's fine.
|
// This won't work in non-buffered, but that's fine.
|
||||||
draw->BindFramebufferAsRenderTarget(nullptr, { RPAction::CLEAR, RPAction::CLEAR, RPAction::CLEAR, clearColor }, "EmuScreen_Stepping");
|
if (!framebufferBound && PSP_IsInited()) {
|
||||||
framebufferBound = true;
|
// draw->BindFramebufferAsRenderTarget(nullptr, { RPAction::CLEAR, RPAction::CLEAR, RPAction::CLEAR, clearColor }, "EmuScreen_Stepping");
|
||||||
// Just to make sure.
|
|
||||||
if (PSP_IsInited()) {
|
|
||||||
_dbg_assert_(gpu);
|
|
||||||
gpu->CopyDisplayToOutput(true);
|
gpu->CopyDisplayToOutput(true);
|
||||||
}
|
}
|
||||||
|
framebufferBound = true;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -1468,6 +1466,10 @@ ScreenRenderFlags EmuScreen::render(ScreenRenderMode mode) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (framebufferBound && gpu) {
|
||||||
|
gpu->PresentedThisFrame();
|
||||||
|
}
|
||||||
|
|
||||||
PSP_EndHostFrame();
|
PSP_EndHostFrame();
|
||||||
|
|
||||||
// This place rougly matches how libretro handles it (after retro_frame).
|
// This place rougly matches how libretro handles it (after retro_frame).
|
||||||
|
|
|
@ -1224,6 +1224,10 @@ void GameSettingsScreen::CreateSystemSettings(UI::ViewGroup *systemSettings) {
|
||||||
systemSettings->Add(new CheckBox(&g_Config.bCacheFullIsoInRam, sy->T("Cache ISO in RAM", "Cache full ISO in RAM")))->SetEnabled(!PSP_IsInited());
|
systemSettings->Add(new CheckBox(&g_Config.bCacheFullIsoInRam, sy->T("Cache ISO in RAM", "Cache full ISO in RAM")))->SetEnabled(!PSP_IsInited());
|
||||||
systemSettings->Add(new CheckBox(&g_Config.bCheckForNewVersion, sy->T("VersionCheck", "Check for new versions of PPSSPP")));
|
systemSettings->Add(new CheckBox(&g_Config.bCheckForNewVersion, sy->T("VersionCheck", "Check for new versions of PPSSPP")));
|
||||||
systemSettings->Add(new CheckBox(&g_Config.bScreenshotsAsPNG, sy->T("Screenshots as PNG")));
|
systemSettings->Add(new CheckBox(&g_Config.bScreenshotsAsPNG, sy->T("Screenshots as PNG")));
|
||||||
|
// TODO: Make this setting available on Mac too.
|
||||||
|
#if PPSSPP_PLATFORM(WINDOWS)
|
||||||
|
systemSettings->Add(new CheckBox(&g_Config.bPauseOnLostFocus, sy->T("Pause when not focused")));
|
||||||
|
#endif
|
||||||
|
|
||||||
systemSettings->Add(new ItemHeader(sy->T("Cheats", "Cheats")));
|
systemSettings->Add(new ItemHeader(sy->T("Cheats", "Cheats")));
|
||||||
CheckBox *enableCheats = systemSettings->Add(new CheckBox(&g_Config.bEnableCheats, sy->T("Enable Cheats")));
|
CheckBox *enableCheats = systemSettings->Add(new CheckBox(&g_Config.bEnableCheats, sy->T("Enable Cheats")));
|
||||||
|
|
|
@ -844,7 +844,7 @@ namespace MainWindow
|
||||||
g_activeWindow = WINDOW_OTHER;
|
g_activeWindow = WINDOW_OTHER;
|
||||||
}
|
}
|
||||||
if (!noFocusPause && g_Config.bPauseOnLostFocus && GetUIState() == UISTATE_INGAME) {
|
if (!noFocusPause && g_Config.bPauseOnLostFocus && GetUIState() == UISTATE_INGAME) {
|
||||||
if (pause != Core_IsStepping()) { // != is xor for bools
|
if (pause != Core_IsStepping()) {
|
||||||
if (disasmWindow)
|
if (disasmWindow)
|
||||||
SendMessage(disasmWindow->GetDlgHandle(), WM_COMMAND, IDC_STOPGO, 0);
|
SendMessage(disasmWindow->GetDlgHandle(), WM_COMMAND, IDC_STOPGO, 0);
|
||||||
else
|
else
|
||||||
|
|
|
@ -591,7 +591,7 @@ BEGIN
|
||||||
POPUP "Game Settings", ID_OPTIONS_MENU
|
POPUP "Game Settings", ID_OPTIONS_MENU
|
||||||
BEGIN
|
BEGIN
|
||||||
MENUITEM "Keep PPSSPP On Top", ID_OPTIONS_TOPMOST
|
MENUITEM "Keep PPSSPP On Top", ID_OPTIONS_TOPMOST
|
||||||
MENUITEM "Pause When Not Focused", ID_OPTIONS_PAUSE_FOCUS
|
MENUITEM "Pause when not focused", ID_OPTIONS_PAUSE_FOCUS
|
||||||
MENUITEM "Ignore Windows Key", ID_OPTIONS_IGNOREWINKEY
|
MENUITEM "Ignore Windows Key", ID_OPTIONS_IGNOREWINKEY
|
||||||
MENUITEM "Language...", ID_OPTIONS_LANGUAGE
|
MENUITEM "Language...", ID_OPTIONS_LANGUAGE
|
||||||
MENUITEM "Control Mapping...", ID_OPTIONS_CONTROLS
|
MENUITEM "Control Mapping...", ID_OPTIONS_CONTROLS
|
||||||
|
|
|
@ -243,6 +243,7 @@ Log Console = &سجل الكونسول
|
||||||
Memory View... = عرض الرام...
|
Memory View... = عرض الرام...
|
||||||
More Settings... = &إعدادات إضافية...
|
More Settings... = &إعدادات إضافية...
|
||||||
Nearest = &الأقرب
|
Nearest = &الأقرب
|
||||||
|
Pause when not focused = &إيقاف مؤقت حينما لا يكون مفعلاً
|
||||||
Recent = &Recent
|
Recent = &Recent
|
||||||
Restart Graphics = إعادة تشغيل الرسومات
|
Restart Graphics = إعادة تشغيل الرسومات
|
||||||
Skip Buffer Effects = &تخطي تأثيرات الصقل (غير مصقول, أسرع)
|
Skip Buffer Effects = &تخطي تأثيرات الصقل (غير مصقول, أسرع)
|
||||||
|
@ -254,7 +255,6 @@ Open Memory Stick = فتح شريحة الذاكرة
|
||||||
Open New Instance = Open new instance
|
Open New Instance = Open new instance
|
||||||
OpenGL = &OpenGL
|
OpenGL = &OpenGL
|
||||||
Pause = &إيقاف مؤقت
|
Pause = &إيقاف مؤقت
|
||||||
Pause When Not Focused = &إيقاف مؤقت حينما لا يكون مفعلاً
|
|
||||||
Portrait = لوحة
|
Portrait = لوحة
|
||||||
Portrait reversed = لوحة معكوسة
|
Portrait reversed = لوحة معكوسة
|
||||||
PPSSPP Forums = PPSSPP &منتديات
|
PPSSPP Forums = PPSSPP &منتديات
|
||||||
|
@ -1328,6 +1328,7 @@ Off = مغلق
|
||||||
Oldest Save = Oldest save
|
Oldest Save = Oldest save
|
||||||
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
||||||
Path does not exist! = Path does not exist!
|
Path does not exist! = Path does not exist!
|
||||||
|
Pause when not focused = &إيقاف مؤقت حينما لا يكون مفعلاً
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = PSP Memory Stick
|
PSP Memory Stick = PSP Memory Stick
|
||||||
PSP Model = PSP موديل
|
PSP Model = PSP موديل
|
||||||
|
|
|
@ -235,6 +235,7 @@ Log Console = &Log Console
|
||||||
Memory View... = Memory &View...
|
Memory View... = Memory &View...
|
||||||
More Settings... = &More Settings...
|
More Settings... = &More Settings...
|
||||||
Nearest = &Nearest
|
Nearest = &Nearest
|
||||||
|
Pause when not focused = &Pause When Not Focused
|
||||||
Recent = &Recent
|
Recent = &Recent
|
||||||
Restart Graphics = Restart Graphics
|
Restart Graphics = Restart Graphics
|
||||||
Skip Buffer Effects = &Skip buffer effects
|
Skip Buffer Effects = &Skip buffer effects
|
||||||
|
@ -246,7 +247,6 @@ Open Memory Stick = Open &Memory Stick
|
||||||
Open New Instance = Open new instance
|
Open New Instance = Open new instance
|
||||||
OpenGL = &OpenGL
|
OpenGL = &OpenGL
|
||||||
Pause = &Pause
|
Pause = &Pause
|
||||||
Pause When Not Focused = &Pause When Not Focused
|
|
||||||
Portrait = Portrait
|
Portrait = Portrait
|
||||||
Portrait reversed = Portrait reversed
|
Portrait reversed = Portrait reversed
|
||||||
PPSSPP Forums = PPSSPP &Forums
|
PPSSPP Forums = PPSSPP &Forums
|
||||||
|
@ -1320,6 +1320,7 @@ Off = Off
|
||||||
Oldest Save = Oldest save
|
Oldest Save = Oldest save
|
||||||
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
||||||
Path does not exist! = Path does not exist!
|
Path does not exist! = Path does not exist!
|
||||||
|
Pause when not focused = &Pause When Not Focused
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = PSP Memory Stick
|
PSP Memory Stick = PSP Memory Stick
|
||||||
PSP Model = PSP model
|
PSP Model = PSP model
|
||||||
|
|
|
@ -235,6 +235,7 @@ Log Console = &Log Console
|
||||||
Memory View... = Памет изглед...
|
Memory View... = Памет изглед...
|
||||||
More Settings... = Още настройки...
|
More Settings... = Още настройки...
|
||||||
Nearest = &Най-близко
|
Nearest = &Най-близко
|
||||||
|
Pause when not focused = Пауза, когато не фокусиран
|
||||||
Recent = &Recent
|
Recent = &Recent
|
||||||
Restart Graphics = Restart Graphics
|
Restart Graphics = Restart Graphics
|
||||||
Skip Buffer Effects = &Skip buffer effects
|
Skip Buffer Effects = &Skip buffer effects
|
||||||
|
@ -246,7 +247,6 @@ Open Memory Stick = Отвори от мемори стик
|
||||||
Open New Instance = Open new instance
|
Open New Instance = Open new instance
|
||||||
OpenGL = &OpenGL
|
OpenGL = &OpenGL
|
||||||
Pause = &Pause
|
Pause = &Pause
|
||||||
Pause When Not Focused = Пауза, когато не фокусиран
|
|
||||||
Portrait = Portrait
|
Portrait = Portrait
|
||||||
Portrait reversed = Portrait reversed
|
Portrait reversed = Portrait reversed
|
||||||
PPSSPP Forums = PPSSPP &форум
|
PPSSPP Forums = PPSSPP &форум
|
||||||
|
@ -1320,6 +1320,7 @@ Off = Off
|
||||||
Oldest Save = Oldest save
|
Oldest Save = Oldest save
|
||||||
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
||||||
Path does not exist! = Path does not exist!
|
Path does not exist! = Path does not exist!
|
||||||
|
Pause when not focused = Пауза, когато не фокусиран
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = PSP Memory Stick
|
PSP Memory Stick = PSP Memory Stick
|
||||||
PSP Model = PSP серия
|
PSP Model = PSP серия
|
||||||
|
|
|
@ -235,6 +235,7 @@ Log Console = Consola de re&gistres
|
||||||
Memory View... = Visor de &memòria...
|
Memory View... = Visor de &memòria...
|
||||||
More Settings... = Més &paràmetres...
|
More Settings... = Més &paràmetres...
|
||||||
Nearest = &El més proper
|
Nearest = &El més proper
|
||||||
|
Pause when not focused = &Pausar quan es canviï de finestra
|
||||||
Recent = &Recent
|
Recent = &Recent
|
||||||
Restart Graphics = Restart Graphics
|
Restart Graphics = Restart Graphics
|
||||||
Skip Buffer Effects = &Renderitzat sense memòria intermèdia (més ràpid)
|
Skip Buffer Effects = &Renderitzat sense memòria intermèdia (més ràpid)
|
||||||
|
@ -246,7 +247,6 @@ Open Memory Stick = Obrir «&Memory Stick»
|
||||||
Open New Instance = Obrir nova instància
|
Open New Instance = Obrir nova instància
|
||||||
OpenGL = &OpenGL
|
OpenGL = &OpenGL
|
||||||
Pause = &Pausar
|
Pause = &Pausar
|
||||||
Pause When Not Focused = &Pausar quan es canviï de finestra
|
|
||||||
Portrait = Vertical
|
Portrait = Vertical
|
||||||
Portrait reversed = Vertical invertit
|
Portrait reversed = Vertical invertit
|
||||||
PPSSPP Forums = &Fòrums de PPSSPP
|
PPSSPP Forums = &Fòrums de PPSSPP
|
||||||
|
@ -1320,6 +1320,7 @@ Off = Off
|
||||||
Oldest Save = Oldest save
|
Oldest Save = Oldest save
|
||||||
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
||||||
Path does not exist! = Path does not exist!
|
Path does not exist! = Path does not exist!
|
||||||
|
Pause when not focused = &Pausar quan es canviï de finestra
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = PSP Memory Stick
|
PSP Memory Stick = PSP Memory Stick
|
||||||
PSP Model = PSP model
|
PSP Model = PSP model
|
||||||
|
|
|
@ -235,6 +235,7 @@ Log Console = &Konzole záznamu
|
||||||
Memory View... = &Zobrazení paměti...
|
Memory View... = &Zobrazení paměti...
|
||||||
More Settings... = D&alší nastavení...
|
More Settings... = D&alší nastavení...
|
||||||
Nearest = &Nejbližší
|
Nearest = &Nejbližší
|
||||||
|
Pause when not focused = &Pozastavit pokud okno není zaměřeno
|
||||||
Recent = &Recent
|
Recent = &Recent
|
||||||
Restart Graphics = Restart Graphics
|
Restart Graphics = Restart Graphics
|
||||||
Skip Buffer Effects = &Přeskočit efekty vyrovnávací paměti
|
Skip Buffer Effects = &Přeskočit efekty vyrovnávací paměti
|
||||||
|
@ -246,7 +247,6 @@ Open Memory Stick = Otevřít &paměťovou kartu
|
||||||
Open New Instance = Open new instance
|
Open New Instance = Open new instance
|
||||||
OpenGL = &OpenGL
|
OpenGL = &OpenGL
|
||||||
Pause = &Pozastavit
|
Pause = &Pozastavit
|
||||||
Pause When Not Focused = &Pozastavit pokud okno není zaměřeno
|
|
||||||
Portrait = Na výšku
|
Portrait = Na výšku
|
||||||
Portrait reversed = Na výšku obráceně
|
Portrait reversed = Na výšku obráceně
|
||||||
PPSSPP Forums = &Fóra PPSSPP
|
PPSSPP Forums = &Fóra PPSSPP
|
||||||
|
@ -1320,6 +1320,7 @@ Off = Vypnuto
|
||||||
Oldest Save = Oldest save
|
Oldest Save = Oldest save
|
||||||
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
||||||
Path does not exist! = Path does not exist!
|
Path does not exist! = Path does not exist!
|
||||||
|
Pause when not focused = &Pozastavit pokud okno není zaměřeno
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = PSP Memory Stick
|
PSP Memory Stick = PSP Memory Stick
|
||||||
PSP Model = Model PSP
|
PSP Model = Model PSP
|
||||||
|
|
|
@ -235,6 +235,7 @@ Log Console = &Log konsol
|
||||||
Memory View... = Hukommelseso&versigt...
|
Memory View... = Hukommelseso&versigt...
|
||||||
More Settings... = &Flere indstillinger...
|
More Settings... = &Flere indstillinger...
|
||||||
Nearest = &Nærmest
|
Nearest = &Nærmest
|
||||||
|
Pause when not focused = P&ause når ikke i fokus
|
||||||
Recent = &Recent
|
Recent = &Recent
|
||||||
Restart Graphics = Restart Graphics
|
Restart Graphics = Restart Graphics
|
||||||
Skip Buffer Effects = &Skip buffer effekter
|
Skip Buffer Effects = &Skip buffer effekter
|
||||||
|
@ -246,7 +247,6 @@ Open Memory Stick = Åben h&ukommelsesstick
|
||||||
Open New Instance = Open new instance
|
Open New Instance = Open new instance
|
||||||
OpenGL = &OpenGL
|
OpenGL = &OpenGL
|
||||||
Pause = &Pause
|
Pause = &Pause
|
||||||
Pause When Not Focused = P&ause når ikke i fokus
|
|
||||||
Portrait = Portræt
|
Portrait = Portræt
|
||||||
Portrait reversed = Omvendt portræt
|
Portrait reversed = Omvendt portræt
|
||||||
PPSSPP Forums = PPSSPP &forum
|
PPSSPP Forums = PPSSPP &forum
|
||||||
|
@ -1320,6 +1320,7 @@ Off = Off
|
||||||
Oldest Save = Oldest save
|
Oldest Save = Oldest save
|
||||||
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
||||||
Path does not exist! = Path does not exist!
|
Path does not exist! = Path does not exist!
|
||||||
|
Pause when not focused = P&ause når ikke i fokus
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = PSP Memory Stick
|
PSP Memory Stick = PSP Memory Stick
|
||||||
PSP Model = PSP model
|
PSP Model = PSP model
|
||||||
|
|
|
@ -235,6 +235,7 @@ Log Console = Logkonsole
|
||||||
Memory View... = Speicheransicht...
|
Memory View... = Speicheransicht...
|
||||||
More Settings... = Mehr Einstellungen...
|
More Settings... = Mehr Einstellungen...
|
||||||
Nearest = Nächster Nachbar
|
Nearest = Nächster Nachbar
|
||||||
|
Pause when not focused = Pausieren im Hintergrund
|
||||||
Recent = &Recent
|
Recent = &Recent
|
||||||
Restart Graphics = Restart Graphics
|
Restart Graphics = Restart Graphics
|
||||||
Skip Buffer Effects = Überspringe Puffereffekte
|
Skip Buffer Effects = Überspringe Puffereffekte
|
||||||
|
@ -246,7 +247,6 @@ Open Memory Stick = Öffne Memory Stick
|
||||||
Open New Instance = Öffne neue Instanz
|
Open New Instance = Öffne neue Instanz
|
||||||
OpenGL = OpenGL
|
OpenGL = OpenGL
|
||||||
Pause = Pause
|
Pause = Pause
|
||||||
Pause When Not Focused = Pausieren im Hintergrund
|
|
||||||
Portrait = Hochformat
|
Portrait = Hochformat
|
||||||
Portrait reversed = Hochformat umgedreht
|
Portrait reversed = Hochformat umgedreht
|
||||||
PPSSPP Forums = PPSSPP Forum
|
PPSSPP Forums = PPSSPP Forum
|
||||||
|
@ -1320,6 +1320,7 @@ Off = Aus
|
||||||
Oldest Save = Ältester Spielstand
|
Oldest Save = Ältester Spielstand
|
||||||
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
||||||
Path does not exist! = Path does not exist!
|
Path does not exist! = Path does not exist!
|
||||||
|
Pause when not focused = Pausieren im Hintergrund
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = PSP Memory Stick
|
PSP Memory Stick = PSP Memory Stick
|
||||||
PSP Model = PSP Modell
|
PSP Model = PSP Modell
|
||||||
|
|
|
@ -235,6 +235,7 @@ Log Console = &Konsol log
|
||||||
Memory View... = Pempakitan &Memory...
|
Memory View... = Pempakitan &Memory...
|
||||||
More Settings... = &More Settings...
|
More Settings... = &More Settings...
|
||||||
Nearest = &Nearest
|
Nearest = &Nearest
|
||||||
|
Pause when not focused = &Pause When Not Focused
|
||||||
Recent = &Recent
|
Recent = &Recent
|
||||||
Restart Graphics = Restart Graphics
|
Restart Graphics = Restart Graphics
|
||||||
Skip Buffer Effects = &Skip buffer effects
|
Skip Buffer Effects = &Skip buffer effects
|
||||||
|
@ -246,7 +247,6 @@ Open Memory Stick = Bukka' &Memory Stick
|
||||||
Open New Instance = Open new instance
|
Open New Instance = Open new instance
|
||||||
OpenGL = &OpenGL
|
OpenGL = &OpenGL
|
||||||
Pause = &Paus
|
Pause = &Paus
|
||||||
Pause When Not Focused = &Pause When Not Focused
|
|
||||||
Portrait = Portrait
|
Portrait = Portrait
|
||||||
Portrait reversed = Portrait reversed
|
Portrait reversed = Portrait reversed
|
||||||
PPSSPP Forums = PPSSPP &Forumna
|
PPSSPP Forums = PPSSPP &Forumna
|
||||||
|
@ -1320,6 +1320,7 @@ Off = Off
|
||||||
Oldest Save = Oldest save
|
Oldest Save = Oldest save
|
||||||
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
||||||
Path does not exist! = Path does not exist!
|
Path does not exist! = Path does not exist!
|
||||||
|
Pause when not focused = &Pause When Not Focused
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = PSP Memory Stick
|
PSP Memory Stick = PSP Memory Stick
|
||||||
PSP Model = PSP model
|
PSP Model = PSP model
|
||||||
|
|
|
@ -259,6 +259,7 @@ Log Console = &Log console
|
||||||
Memory View... = Memory &view...
|
Memory View... = Memory &view...
|
||||||
More Settings... = &More settings...
|
More Settings... = &More settings...
|
||||||
Nearest = &Nearest
|
Nearest = &Nearest
|
||||||
|
Pause when not focused = &Pause when not focused
|
||||||
Restart Graphics = Restart Graphics
|
Restart Graphics = Restart Graphics
|
||||||
Skip Buffer Effects = &Skip buffer effects
|
Skip Buffer Effects = &Skip buffer effects
|
||||||
Off = &Off
|
Off = &Off
|
||||||
|
@ -269,7 +270,6 @@ Open Memory Stick = Open &Memory Stick
|
||||||
Open New Instance = Open new instance
|
Open New Instance = Open new instance
|
||||||
OpenGL = &OpenGL
|
OpenGL = &OpenGL
|
||||||
Pause = &Pause
|
Pause = &Pause
|
||||||
Pause When Not Focused = &Pause when not focused
|
|
||||||
Portrait = Portrait
|
Portrait = Portrait
|
||||||
Portrait reversed = Portrait reversed
|
Portrait reversed = Portrait reversed
|
||||||
PPSSPP Forums = PPSSPP &forums
|
PPSSPP Forums = PPSSPP &forums
|
||||||
|
@ -1334,6 +1334,7 @@ Off = Off
|
||||||
Oldest Save = Oldest save
|
Oldest Save = Oldest save
|
||||||
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
||||||
Path does not exist! = Path does not exist!
|
Path does not exist! = Path does not exist!
|
||||||
|
Pause when not focused = &Pause when not focused
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = PSP Memory Stick
|
PSP Memory Stick = PSP Memory Stick
|
||||||
PSP Model = PSP model
|
PSP Model = PSP model
|
||||||
|
|
|
@ -235,6 +235,7 @@ Log Console = Consola de re&gistros...
|
||||||
Memory View... = Visor de &memoria...
|
Memory View... = Visor de &memoria...
|
||||||
More Settings... = Más &opciones...
|
More Settings... = Más &opciones...
|
||||||
Nearest = &Cercano
|
Nearest = &Cercano
|
||||||
|
Pause when not focused = &Pausar al cambiar de ventana
|
||||||
Recent = &Reciente
|
Recent = &Reciente
|
||||||
Restart Graphics = Restart Graphics
|
Restart Graphics = Restart Graphics
|
||||||
Skip Buffer Effects = &Saltar efectos del búfer (rápido)
|
Skip Buffer Effects = &Saltar efectos del búfer (rápido)
|
||||||
|
@ -246,7 +247,6 @@ Open Memory Stick = Abrir "&Memory Stick"
|
||||||
Open New Instance = Abrir nueva ins&tancia
|
Open New Instance = Abrir nueva ins&tancia
|
||||||
OpenGL = &OpenGL
|
OpenGL = &OpenGL
|
||||||
Pause = &Pausar
|
Pause = &Pausar
|
||||||
Pause When Not Focused = &Pausar al cambiar de ventana
|
|
||||||
Portrait = &Vertical
|
Portrait = &Vertical
|
||||||
Portrait reversed = Vertical &invertido
|
Portrait reversed = Vertical &invertido
|
||||||
PPSSPP Forums = &Foro de PPSSPP
|
PPSSPP Forums = &Foro de PPSSPP
|
||||||
|
@ -1321,6 +1321,7 @@ Off = No
|
||||||
Oldest Save = Partida guardada más antigua
|
Oldest Save = Partida guardada más antigua
|
||||||
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
||||||
Path does not exist! = ¡La ruta no existe!
|
Path does not exist! = ¡La ruta no existe!
|
||||||
|
Pause when not focused = &Pausar al cambiar de ventana
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = PSP Memory Stick
|
PSP Memory Stick = PSP Memory Stick
|
||||||
PSP Model = Modelo de PSP
|
PSP Model = Modelo de PSP
|
||||||
|
|
|
@ -235,6 +235,7 @@ Log Console = Consola de re&gistros...
|
||||||
Memory View... = Visor de &memoria...
|
Memory View... = Visor de &memoria...
|
||||||
More Settings... = Más &opciones...
|
More Settings... = Más &opciones...
|
||||||
Nearest = &Cercano
|
Nearest = &Cercano
|
||||||
|
Pause when not focused = &Pausar al cambiar de ventana
|
||||||
Recent = &Resiente
|
Recent = &Resiente
|
||||||
Restart Graphics = Reiniciar Graficos
|
Restart Graphics = Reiniciar Graficos
|
||||||
Skip Buffer Effects = &Saltar efectos por búfer (rápido)
|
Skip Buffer Effects = &Saltar efectos por búfer (rápido)
|
||||||
|
@ -246,7 +247,6 @@ Open Memory Stick = Abrir &Memory Stick
|
||||||
Open New Instance = Abrir nueva instancia
|
Open New Instance = Abrir nueva instancia
|
||||||
OpenGL = &OpenGL
|
OpenGL = &OpenGL
|
||||||
Pause = &Pausar
|
Pause = &Pausar
|
||||||
Pause When Not Focused = &Pausar al cambiar de ventana
|
|
||||||
Portrait = Retrato
|
Portrait = Retrato
|
||||||
Portrait reversed = Retrato inverso
|
Portrait reversed = Retrato inverso
|
||||||
PPSSPP Forums = &Foro de PPSSPP
|
PPSSPP Forums = &Foro de PPSSPP
|
||||||
|
@ -1322,6 +1322,7 @@ Off = No
|
||||||
Oldest Save = Antiguos datos de guardado
|
Oldest Save = Antiguos datos de guardado
|
||||||
Only JPG and PNG images are supported = Sólo se admiten imágenes JPG y PNG
|
Only JPG and PNG images are supported = Sólo se admiten imágenes JPG y PNG
|
||||||
Path does not exist! = La ruta no existe.
|
Path does not exist! = La ruta no existe.
|
||||||
|
Pause when not focused = &Pausar al cambiar de ventana
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = Memory Stick de PSP
|
PSP Memory Stick = Memory Stick de PSP
|
||||||
PSP Model = Modelo de PSP
|
PSP Model = Modelo de PSP
|
||||||
|
|
|
@ -235,6 +235,7 @@ Log Console = کنسول لاگ
|
||||||
Memory View... = ...نمایش مموری
|
Memory View... = ...نمایش مموری
|
||||||
More Settings... = ...تنظیمات بیشتر
|
More Settings... = ...تنظیمات بیشتر
|
||||||
Nearest = نزدیک ترین
|
Nearest = نزدیک ترین
|
||||||
|
Pause when not focused = هنگامی که پنجره فعال نباشد بازی متوقف شود
|
||||||
Recent = &Recent
|
Recent = &Recent
|
||||||
Restart Graphics = Restart Graphics
|
Restart Graphics = Restart Graphics
|
||||||
Skip Buffer Effects = رد کردن اثرات بافر (سریع تر)
|
Skip Buffer Effects = رد کردن اثرات بافر (سریع تر)
|
||||||
|
@ -246,7 +247,6 @@ Open Memory Stick = بازکردن مموری استیک
|
||||||
Open New Instance = باز کردن نمونه جدید
|
Open New Instance = باز کردن نمونه جدید
|
||||||
OpenGL = &OpenGL
|
OpenGL = &OpenGL
|
||||||
Pause = مکث
|
Pause = مکث
|
||||||
Pause When Not Focused = هنگامی که پنجره فعال نباشد بازی متوقف شود
|
|
||||||
Portrait = عمودی
|
Portrait = عمودی
|
||||||
Portrait reversed = عمودی وارونه
|
Portrait reversed = عمودی وارونه
|
||||||
PPSSPP Forums = PPSSPP انجمن های
|
PPSSPP Forums = PPSSPP انجمن های
|
||||||
|
@ -1320,6 +1320,7 @@ Off = خاموش
|
||||||
Oldest Save = قدیمی ترین ذخیره
|
Oldest Save = قدیمی ترین ذخیره
|
||||||
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
||||||
Path does not exist! = مسیر فایل پیدا نشد
|
Path does not exist! = مسیر فایل پیدا نشد
|
||||||
|
Pause when not focused = هنگامی که پنجره فعال نباشد بازی متوقف شود
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = حافظه psp
|
PSP Memory Stick = حافظه psp
|
||||||
PSP Model = PSP مدل
|
PSP Model = PSP مدل
|
||||||
|
|
|
@ -235,6 +235,7 @@ Log Console = &Log Console
|
||||||
Memory View... = Memory &View...
|
Memory View... = Memory &View...
|
||||||
More Settings... = &More Settings...
|
More Settings... = &More Settings...
|
||||||
Nearest = &Nearest
|
Nearest = &Nearest
|
||||||
|
Pause when not focused = &Pause When Not Focused
|
||||||
Recent = &Recent
|
Recent = &Recent
|
||||||
Restart Graphics = Restart Graphics
|
Restart Graphics = Restart Graphics
|
||||||
Skip Buffer Effects = &Skip buffer effects
|
Skip Buffer Effects = &Skip buffer effects
|
||||||
|
@ -246,7 +247,6 @@ Open Memory Stick = Open &Memory Stick
|
||||||
Open New Instance = Open new instance
|
Open New Instance = Open new instance
|
||||||
OpenGL = &OpenGL
|
OpenGL = &OpenGL
|
||||||
Pause = &Pause
|
Pause = &Pause
|
||||||
Pause When Not Focused = &Pause When Not Focused
|
|
||||||
Portrait = Portrait
|
Portrait = Portrait
|
||||||
Portrait reversed = Portrait reversed
|
Portrait reversed = Portrait reversed
|
||||||
PPSSPP Forums = PPSSPP:n &foorumit
|
PPSSPP Forums = PPSSPP:n &foorumit
|
||||||
|
@ -1320,6 +1320,7 @@ Off = Pois
|
||||||
Oldest Save = Vanhin tallennus
|
Oldest Save = Vanhin tallennus
|
||||||
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
||||||
Path does not exist! = Polkua ei ole olemassa!
|
Path does not exist! = Polkua ei ole olemassa!
|
||||||
|
Pause when not focused = &Pause When Not Focused
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = PSP-muistikortti
|
PSP Memory Stick = PSP-muistikortti
|
||||||
PSP Model = PSP-malli
|
PSP Model = PSP-malli
|
||||||
|
|
|
@ -235,6 +235,7 @@ Log Console = &Journal de débogage
|
||||||
Memory View... = &Visionneur de mémoire
|
Memory View... = &Visionneur de mémoire
|
||||||
More Settings... = &Plus de paramètres...
|
More Settings... = &Plus de paramètres...
|
||||||
Nearest = Le plus &proche
|
Nearest = Le plus &proche
|
||||||
|
Pause when not focused = Mettre en pa&use si pas au premier plan
|
||||||
Recent = &Recent
|
Recent = &Recent
|
||||||
Restart Graphics = Restart Graphics
|
Restart Graphics = Restart Graphics
|
||||||
Skip Buffer Effects = &Pas d'effets en mémoire tampon (hack de vitesse)
|
Skip Buffer Effects = &Pas d'effets en mémoire tampon (hack de vitesse)
|
||||||
|
@ -246,7 +247,6 @@ Open Memory Stick = Ouvrir la &Memory Stick
|
||||||
Open New Instance = Ouvrir une nouvelle instance
|
Open New Instance = Ouvrir une nouvelle instance
|
||||||
OpenGL = &OpenGL
|
OpenGL = &OpenGL
|
||||||
Pause = &Pause
|
Pause = &Pause
|
||||||
Pause When Not Focused = Mettre en pa&use si pas au premier plan
|
|
||||||
Portrait = Portrait
|
Portrait = Portrait
|
||||||
Portrait reversed = Portrait inversé
|
Portrait reversed = Portrait inversé
|
||||||
PPSSPP Forums = Visiter le &forum de PPSSPP
|
PPSSPP Forums = Visiter le &forum de PPSSPP
|
||||||
|
@ -1311,6 +1311,7 @@ Off = Désactivé
|
||||||
Oldest Save = Le plus ancien état
|
Oldest Save = Le plus ancien état
|
||||||
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
||||||
Path does not exist! = Path does not exist!
|
Path does not exist! = Path does not exist!
|
||||||
|
Pause when not focused = Mettre en pa&use si pas au premier plan
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = PSP Memory Stick
|
PSP Memory Stick = PSP Memory Stick
|
||||||
PSP Model = Modèle de PSP
|
PSP Model = Modèle de PSP
|
||||||
|
|
|
@ -235,6 +235,7 @@ Log Console = Consola de re&xistros...
|
||||||
Memory View... = Visor de &memoria...
|
Memory View... = Visor de &memoria...
|
||||||
More Settings... = Máis &opcións...
|
More Settings... = Máis &opcións...
|
||||||
Nearest = &Cercano
|
Nearest = &Cercano
|
||||||
|
Pause when not focused = &Pausar ó cambiar de ventá
|
||||||
Recent = &Recent
|
Recent = &Recent
|
||||||
Restart Graphics = Restart Graphics
|
Restart Graphics = Restart Graphics
|
||||||
Skip Buffer Effects = &Skip buffer effects
|
Skip Buffer Effects = &Skip buffer effects
|
||||||
|
@ -246,7 +247,6 @@ Open Memory Stick = Abrir &Memory Stick
|
||||||
Open New Instance = Open new instance
|
Open New Instance = Open new instance
|
||||||
OpenGL = &OpenGL
|
OpenGL = &OpenGL
|
||||||
Pause = &Pausar
|
Pause = &Pausar
|
||||||
Pause When Not Focused = &Pausar ó cambiar de ventá
|
|
||||||
Portrait = Portrait
|
Portrait = Portrait
|
||||||
Portrait reversed = Portrait reversed
|
Portrait reversed = Portrait reversed
|
||||||
PPSSPP Forums = &Foro de PPSSPP
|
PPSSPP Forums = &Foro de PPSSPP
|
||||||
|
@ -1320,6 +1320,7 @@ Off = Off
|
||||||
Oldest Save = Oldest save
|
Oldest Save = Oldest save
|
||||||
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
||||||
Path does not exist! = Path does not exist!
|
Path does not exist! = Path does not exist!
|
||||||
|
Pause when not focused = &Pausar ó cambiar de ventá
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = PSP Memory Stick
|
PSP Memory Stick = PSP Memory Stick
|
||||||
PSP Model = Modelo de PSP
|
PSP Model = Modelo de PSP
|
||||||
|
|
|
@ -235,6 +235,7 @@ Log Console = Κονσόλα Καταγραφέα
|
||||||
Memory View... = Προβολή Μνήμης...
|
Memory View... = Προβολή Μνήμης...
|
||||||
More Settings... = Περισσότερες Ρυθμίσεις...
|
More Settings... = Περισσότερες Ρυθμίσεις...
|
||||||
Nearest = Κοντινότερο
|
Nearest = Κοντινότερο
|
||||||
|
Pause when not focused = Παύση σε κατάσταση παρασκηνίου
|
||||||
Recent = &Recent
|
Recent = &Recent
|
||||||
Restart Graphics = Restart Graphics
|
Restart Graphics = Restart Graphics
|
||||||
Skip Buffer Effects = &Παράκαμψη εφέ buffer (γρηγορότερο)
|
Skip Buffer Effects = &Παράκαμψη εφέ buffer (γρηγορότερο)
|
||||||
|
@ -246,7 +247,6 @@ Open Memory Stick = Άνοιγμα Memory Stick
|
||||||
Open New Instance = Open new instance
|
Open New Instance = Open new instance
|
||||||
OpenGL = &OpenGL
|
OpenGL = &OpenGL
|
||||||
Pause = &Πάυση
|
Pause = &Πάυση
|
||||||
Pause When Not Focused = Παύση σε κατάσταση παρασκηνίου
|
|
||||||
Portrait = Κατακόρυφο προσανατολισμός
|
Portrait = Κατακόρυφο προσανατολισμός
|
||||||
Portrait reversed = Αντεστραμένος κατακόρυφος προσανατολισμός
|
Portrait reversed = Αντεστραμένος κατακόρυφος προσανατολισμός
|
||||||
PPSSPP Forums = PPSSPP &Forum
|
PPSSPP Forums = PPSSPP &Forum
|
||||||
|
@ -1320,6 +1320,7 @@ Off = Off
|
||||||
Oldest Save = Παλαιότερο αρχείο αποθήκευσης
|
Oldest Save = Παλαιότερο αρχείο αποθήκευσης
|
||||||
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
||||||
Path does not exist! = Path does not exist!
|
Path does not exist! = Path does not exist!
|
||||||
|
Pause when not focused = Παύση σε κατάσταση παρασκηνίου
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = PSP Memory Stick
|
PSP Memory Stick = PSP Memory Stick
|
||||||
PSP Model = Μοντέλο PSP
|
PSP Model = Μοντέλο PSP
|
||||||
|
|
|
@ -235,6 +235,7 @@ Log Console = &התחבר לקונסולה
|
||||||
Memory View... = הצג &זיכרון...
|
Memory View... = הצג &זיכרון...
|
||||||
More Settings... = &More Settings...
|
More Settings... = &More Settings...
|
||||||
Nearest = &Nearest
|
Nearest = &Nearest
|
||||||
|
Pause when not focused = &Pause When Not Focused
|
||||||
Recent = &Recent
|
Recent = &Recent
|
||||||
Restart Graphics = Restart Graphics
|
Restart Graphics = Restart Graphics
|
||||||
Skip Buffer Effects = &Skip buffer effects
|
Skip Buffer Effects = &Skip buffer effects
|
||||||
|
@ -246,7 +247,6 @@ Open Memory Stick = פתח &זיכרון
|
||||||
Open New Instance = Open new instance
|
Open New Instance = Open new instance
|
||||||
OpenGL = &OpenGL
|
OpenGL = &OpenGL
|
||||||
Pause = &השהה
|
Pause = &השהה
|
||||||
Pause When Not Focused = &Pause When Not Focused
|
|
||||||
Portrait = Portrait
|
Portrait = Portrait
|
||||||
Portrait reversed = Portrait reversed
|
Portrait reversed = Portrait reversed
|
||||||
PPSSPP Forums = PPSSPP &Forums
|
PPSSPP Forums = PPSSPP &Forums
|
||||||
|
@ -1320,6 +1320,7 @@ Off = Off
|
||||||
Oldest Save = Oldest save
|
Oldest Save = Oldest save
|
||||||
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
||||||
Path does not exist! = Path does not exist!
|
Path does not exist! = Path does not exist!
|
||||||
|
Pause when not focused = &Pause When Not Focused
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = PSP Memory Stick
|
PSP Memory Stick = PSP Memory Stick
|
||||||
PSP Model = PSP model
|
PSP Model = PSP model
|
||||||
|
|
|
@ -235,6 +235,7 @@ Log Console = &Log Console
|
||||||
Memory View... = Memory &View...
|
Memory View... = Memory &View...
|
||||||
More Settings... = &More Settings...
|
More Settings... = &More Settings...
|
||||||
Nearest = &Nearest
|
Nearest = &Nearest
|
||||||
|
Pause when not focused = &Pause When Not Focused
|
||||||
Recent = &Recent
|
Recent = &Recent
|
||||||
Restart Graphics = Restart Graphics
|
Restart Graphics = Restart Graphics
|
||||||
Skip Buffer Effects = &Skip buffer effects
|
Skip Buffer Effects = &Skip buffer effects
|
||||||
|
@ -246,7 +247,6 @@ Open Memory Stick = Open &Memory Stick
|
||||||
Open New Instance = Open new instance
|
Open New Instance = Open new instance
|
||||||
OpenGL = &OpenGL
|
OpenGL = &OpenGL
|
||||||
Pause = &Pause
|
Pause = &Pause
|
||||||
Pause When Not Focused = &Pause When Not Focused
|
|
||||||
Portrait = Portrait
|
Portrait = Portrait
|
||||||
Portrait reversed = Portrait reversed
|
Portrait reversed = Portrait reversed
|
||||||
PPSSPP Forums = PPSSPP &Forums
|
PPSSPP Forums = PPSSPP &Forums
|
||||||
|
@ -1320,6 +1320,7 @@ Off = Off
|
||||||
Oldest Save = Oldest save
|
Oldest Save = Oldest save
|
||||||
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
||||||
Path does not exist! = Path does not exist!
|
Path does not exist! = Path does not exist!
|
||||||
|
Pause when not focused = &Pause When Not Focused
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = PSP Memory Stick
|
PSP Memory Stick = PSP Memory Stick
|
||||||
PSP Model = PSP model
|
PSP Model = PSP model
|
||||||
|
|
|
@ -235,6 +235,7 @@ Log Console = &Konzola log-a
|
||||||
Memory View... = Pregled &memorije...
|
Memory View... = Pregled &memorije...
|
||||||
More Settings... = &Više postavki...
|
More Settings... = &Više postavki...
|
||||||
Nearest = &Najbliže
|
Nearest = &Najbliže
|
||||||
|
Pause when not focused = &Pauziraj kad nije fokusirano
|
||||||
Recent = &Recent
|
Recent = &Recent
|
||||||
Restart Graphics = Restart Graphics
|
Restart Graphics = Restart Graphics
|
||||||
Skip Buffer Effects = &Preskoči bufferane efekte
|
Skip Buffer Effects = &Preskoči bufferane efekte
|
||||||
|
@ -246,7 +247,6 @@ Open Memory Stick = Otvori &Memorijsku Karticu
|
||||||
Open New Instance = Open new instance
|
Open New Instance = Open new instance
|
||||||
OpenGL = &OpenGL
|
OpenGL = &OpenGL
|
||||||
Pause = &Pauza
|
Pause = &Pauza
|
||||||
Pause When Not Focused = &Pauziraj kad nije fokusirano
|
|
||||||
Portrait = Portret
|
Portrait = Portret
|
||||||
Portrait reversed = Obrnuti portret
|
Portrait reversed = Obrnuti portret
|
||||||
PPSSPP Forums = PPSSPP &forumi
|
PPSSPP Forums = PPSSPP &forumi
|
||||||
|
@ -1320,6 +1320,7 @@ Off = Isključeno
|
||||||
Oldest Save = Najstariji save
|
Oldest Save = Najstariji save
|
||||||
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
||||||
Path does not exist! = Path does not exist!
|
Path does not exist! = Path does not exist!
|
||||||
|
Pause when not focused = &Pauziraj kad nije fokusirano
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = PSP Memory Stick
|
PSP Memory Stick = PSP Memory Stick
|
||||||
PSP Model = PSP model
|
PSP Model = PSP model
|
||||||
|
|
|
@ -235,6 +235,7 @@ Log Console = &Napló ablak
|
||||||
Memory View... = Memória &nézet…
|
Memory View... = Memória &nézet…
|
||||||
More Settings... = &Egyéb beállítások…
|
More Settings... = &Egyéb beállítások…
|
||||||
Nearest = Leg&közelebbi
|
Nearest = Leg&közelebbi
|
||||||
|
Pause when not focused = &Szüneteltetés, ha nincs fókuszban
|
||||||
Recent = &Recent
|
Recent = &Recent
|
||||||
Restart Graphics = Restart Graphics
|
Restart Graphics = Restart Graphics
|
||||||
Skip Buffer Effects = Bufferelt effektek kihagyá&sa (nem bufferelt, gyorsabb)
|
Skip Buffer Effects = Bufferelt effektek kihagyá&sa (nem bufferelt, gyorsabb)
|
||||||
|
@ -246,7 +247,6 @@ Open Memory Stick = Memory &Stick megnyitása
|
||||||
Open New Instance = Open new instance
|
Open New Instance = Open new instance
|
||||||
OpenGL = &OpenGL
|
OpenGL = &OpenGL
|
||||||
Pause = &Szünet
|
Pause = &Szünet
|
||||||
Pause When Not Focused = &Szüneteltetés, ha nincs fókuszban
|
|
||||||
Portrait = Álló
|
Portrait = Álló
|
||||||
Portrait reversed = Fordított álló
|
Portrait reversed = Fordított álló
|
||||||
PPSSPP Forums = PPSSPP &fórum
|
PPSSPP Forums = PPSSPP &fórum
|
||||||
|
@ -1320,6 +1320,7 @@ Off = Ki
|
||||||
Oldest Save = Legrégebbi mentés
|
Oldest Save = Legrégebbi mentés
|
||||||
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
||||||
Path does not exist! = Path does not exist!
|
Path does not exist! = Path does not exist!
|
||||||
|
Pause when not focused = &Szüneteltetés, ha nincs fókuszban
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = PSP Memory Stick
|
PSP Memory Stick = PSP Memory Stick
|
||||||
PSP Model = PSP modell
|
PSP Model = PSP modell
|
||||||
|
|
|
@ -235,6 +235,7 @@ Log Console = Konso&l pencatat
|
||||||
Memory View... = Tampilan memori...
|
Memory View... = Tampilan memori...
|
||||||
More Settings... = Pengaturan lainnya...
|
More Settings... = Pengaturan lainnya...
|
||||||
Nearest = Terdekat
|
Nearest = Terdekat
|
||||||
|
Pause when not focused = Jeda ketika tidak fokus
|
||||||
Recent = &Recent
|
Recent = &Recent
|
||||||
Restart Graphics = Restart Graphics
|
Restart Graphics = Restart Graphics
|
||||||
Skip Buffer Effects = Lewati efek penyangga (tak-tersangga, lebih cepat)
|
Skip Buffer Effects = Lewati efek penyangga (tak-tersangga, lebih cepat)
|
||||||
|
@ -246,7 +247,6 @@ Open Memory Stick = Buka &Memory Stick
|
||||||
Open New Instance = Buka perumpamaan baru
|
Open New Instance = Buka perumpamaan baru
|
||||||
OpenGL = &OpenGL
|
OpenGL = &OpenGL
|
||||||
Pause = Jeda
|
Pause = Jeda
|
||||||
Pause When Not Focused = Jeda ketika tidak fokus
|
|
||||||
Portrait = Tegak
|
Portrait = Tegak
|
||||||
Portrait reversed = Tegak terbalik
|
Portrait reversed = Tegak terbalik
|
||||||
PPSSPP Forums = &Forum PPSSPP
|
PPSSPP Forums = &Forum PPSSPP
|
||||||
|
@ -1320,6 +1320,7 @@ Off = Mati
|
||||||
Oldest Save = Simpanan lawas
|
Oldest Save = Simpanan lawas
|
||||||
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
||||||
Path does not exist! = Tidak ada jalur!
|
Path does not exist! = Tidak ada jalur!
|
||||||
|
Pause when not focused = Jeda ketika tidak fokus
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = PSP Memory Stick
|
PSP Memory Stick = PSP Memory Stick
|
||||||
PSP Model = Model PSP
|
PSP Model = Model PSP
|
||||||
|
|
|
@ -235,6 +235,7 @@ Log Console = Log Console
|
||||||
Memory View... = Visualizzazione Memoria...
|
Memory View... = Visualizzazione Memoria...
|
||||||
More Settings... = Altre Impostazioni...
|
More Settings... = Altre Impostazioni...
|
||||||
Nearest = Pixel perfect
|
Nearest = Pixel perfect
|
||||||
|
Pause when not focused = Pausa quando non attivo
|
||||||
Recent = &Recent
|
Recent = &Recent
|
||||||
Restart Graphics = Restart Graphics
|
Restart Graphics = Restart Graphics
|
||||||
Skip Buffer Effects = Salta effetti di buffer (niente buffer, più velocità)
|
Skip Buffer Effects = Salta effetti di buffer (niente buffer, più velocità)
|
||||||
|
@ -246,7 +247,6 @@ Open Memory Stick = Apri Memory Stick
|
||||||
Open New Instance = Apri nuova istanza
|
Open New Instance = Apri nuova istanza
|
||||||
OpenGL = OpenGL
|
OpenGL = OpenGL
|
||||||
Pause = Pausa
|
Pause = Pausa
|
||||||
Pause When Not Focused = Pausa quando non attivo
|
|
||||||
Portrait = Ritratto
|
Portrait = Ritratto
|
||||||
Portrait reversed = Ritratto invertito
|
Portrait reversed = Ritratto invertito
|
||||||
PPSSPP Forums = Forum PPSSPP
|
PPSSPP Forums = Forum PPSSPP
|
||||||
|
@ -1303,6 +1303,7 @@ Moving background = Spostamento dello sfondo
|
||||||
No animation = Nessuna animazione
|
No animation = Nessuna animazione
|
||||||
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
||||||
Path does not exist! = Il percorso non esiste!
|
Path does not exist! = Il percorso non esiste!
|
||||||
|
Pause when not focused = Pausa quando non attivo
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = Memory Stick PSP
|
PSP Memory Stick = Memory Stick PSP
|
||||||
Recent games = Giochi recenti
|
Recent games = Giochi recenti
|
||||||
|
|
|
@ -235,6 +235,7 @@ Log Console = ログコンソール(&L)
|
||||||
Memory View... = メモリビュー(&V)...
|
Memory View... = メモリビュー(&V)...
|
||||||
More Settings... = 詳細設定(&M)...
|
More Settings... = 詳細設定(&M)...
|
||||||
Nearest = &Nearest
|
Nearest = &Nearest
|
||||||
|
Pause when not focused = 非フォーカス時は一時停止する(&P)
|
||||||
Recent = &Recent
|
Recent = &Recent
|
||||||
Restart Graphics = グラフィクスを再起動
|
Restart Graphics = グラフィクスを再起動
|
||||||
Skip Buffer Effects = ノンバッファレンダリング (高速化)(&S)
|
Skip Buffer Effects = ノンバッファレンダリング (高速化)(&S)
|
||||||
|
@ -246,7 +247,6 @@ Open Memory Stick = メモリースティックを開く(&M)
|
||||||
Open New Instance = 新しいインスタンスを開く
|
Open New Instance = 新しいインスタンスを開く
|
||||||
OpenGL = &OpenGL
|
OpenGL = &OpenGL
|
||||||
Pause = 一時停止(&P)
|
Pause = 一時停止(&P)
|
||||||
Pause When Not Focused = 非フォーカス時は一時停止する(&P)
|
|
||||||
Portrait = 縦
|
Portrait = 縦
|
||||||
Portrait reversed = 縦 (反転)
|
Portrait reversed = 縦 (反転)
|
||||||
PPSSPP Forums = PPSSPPフォーラム(&F)
|
PPSSPP Forums = PPSSPPフォーラム(&F)
|
||||||
|
@ -1320,6 +1320,7 @@ Off = オフ
|
||||||
Oldest Save = 最も古いセーブ
|
Oldest Save = 最も古いセーブ
|
||||||
Only JPG and PNG images are supported = JPGとPNG画像のみ対応しています
|
Only JPG and PNG images are supported = JPGとPNG画像のみ対応しています
|
||||||
Path does not exist! = パスが存在しません
|
Path does not exist! = パスが存在しません
|
||||||
|
Pause when not focused = 非フォーカス時は一時停止する(&P)
|
||||||
Plugins = プラグイン
|
Plugins = プラグイン
|
||||||
PSP Memory Stick = メモリースティックの設定
|
PSP Memory Stick = メモリースティックの設定
|
||||||
PSP Model = PSPのモデル
|
PSP Model = PSPのモデル
|
||||||
|
|
|
@ -235,6 +235,7 @@ Log Console = &Konsol Log
|
||||||
Memory View... = Tampilan &Memory...
|
Memory View... = Tampilan &Memory...
|
||||||
More Settings... = Setelan sing luwih ...
|
More Settings... = Setelan sing luwih ...
|
||||||
Nearest = &Nearest
|
Nearest = &Nearest
|
||||||
|
Pause when not focused = &Ngaso Nalika Ora Fokus
|
||||||
Recent = &Recent
|
Recent = &Recent
|
||||||
Restart Graphics = Restart Graphics
|
Restart Graphics = Restart Graphics
|
||||||
Skip Buffer Effects = Skip efek buffer (ora yakuwi,luwih cepet)
|
Skip Buffer Effects = Skip efek buffer (ora yakuwi,luwih cepet)
|
||||||
|
@ -246,7 +247,6 @@ Open Memory Stick = Mbukak &Memory Stick
|
||||||
Open New Instance = Open new instance
|
Open New Instance = Open new instance
|
||||||
OpenGL = &OpenGL
|
OpenGL = &OpenGL
|
||||||
Pause = &Ngaso
|
Pause = &Ngaso
|
||||||
Pause When Not Focused = &Ngaso Nalika Ora Fokus
|
|
||||||
Portrait = Portrait
|
Portrait = Portrait
|
||||||
Portrait reversed = Portrait reversed
|
Portrait reversed = Portrait reversed
|
||||||
PPSSPP Forums = &Forum PPSSPP
|
PPSSPP Forums = &Forum PPSSPP
|
||||||
|
@ -1320,6 +1320,7 @@ Off = Mati
|
||||||
Oldest Save = Oldest save
|
Oldest Save = Oldest save
|
||||||
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
||||||
Path does not exist! = Path does not exist!
|
Path does not exist! = Path does not exist!
|
||||||
|
Pause when not focused = &Ngaso Nalika Ora Fokus
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = PSP Memory Stick
|
PSP Memory Stick = PSP Memory Stick
|
||||||
PSP Model = PSP model
|
PSP Model = PSP model
|
||||||
|
|
|
@ -235,6 +235,7 @@ Log Console = 콘솔 로그(&L)
|
||||||
Memory View... = 메모리 보기(&V)...
|
Memory View... = 메모리 보기(&V)...
|
||||||
More Settings... = 기타 설정(&M)...
|
More Settings... = 기타 설정(&M)...
|
||||||
Nearest = 근접 필터링(&N)
|
Nearest = 근접 필터링(&N)
|
||||||
|
Pause when not focused = 포커싱되지 않았을 때 일시 정지(&P)
|
||||||
Restart Graphics = 그래픽 재시작
|
Restart Graphics = 그래픽 재시작
|
||||||
Skip Buffer Effects = 버퍼 효과 건너뛰기(&S)
|
Skip Buffer Effects = 버퍼 효과 건너뛰기(&S)
|
||||||
Off = 끔(&O)
|
Off = 끔(&O)
|
||||||
|
@ -245,7 +246,6 @@ Open Memory Stick = 메모리 스틱 열기(&M)
|
||||||
Open New Instance = 새로운 인스턴트 열기
|
Open New Instance = 새로운 인스턴트 열기
|
||||||
OpenGL = OpenGL(&O)
|
OpenGL = OpenGL(&O)
|
||||||
Pause = 일시 정지(&P)
|
Pause = 일시 정지(&P)
|
||||||
Pause When Not Focused = 포커싱되지 않았을 때 일시 정지(&P)
|
|
||||||
Portrait = 세로 방향
|
Portrait = 세로 방향
|
||||||
Portrait reversed = 세로 방향 반전
|
Portrait reversed = 세로 방향 반전
|
||||||
PPSSPP Forums = PPSSPP 포럼(&F)
|
PPSSPP Forums = PPSSPP 포럼(&F)
|
||||||
|
@ -1310,6 +1310,7 @@ Off = 끔
|
||||||
Oldest Save = 가장 오래된 저장
|
Oldest Save = 가장 오래된 저장
|
||||||
Only JPG and PNG images are supported = JPG 및 PNG 이미지만 지원됩니다.
|
Only JPG and PNG images are supported = JPG 및 PNG 이미지만 지원됩니다.
|
||||||
Path does not exist! = 경로가 존재하지 않습니다!
|
Path does not exist! = 경로가 존재하지 않습니다!
|
||||||
|
Pause when not focused = 포커싱되지 않았을 때 일시 정지(&P)
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = PSP 메모리 스틱
|
PSP Memory Stick = PSP 메모리 스틱
|
||||||
PSP Model = PSP 모델
|
PSP Model = PSP 모델
|
||||||
|
|
|
@ -249,6 +249,7 @@ Log Console = &Log console
|
||||||
Memory View... = بینینی میمۆری
|
Memory View... = بینینی میمۆری
|
||||||
More Settings... = سێتینگی زیاتر...
|
More Settings... = سێتینگی زیاتر...
|
||||||
Nearest = نزیکترین
|
Nearest = نزیکترین
|
||||||
|
Pause when not focused = &Pause when not focused
|
||||||
Restart Graphics = دووبارە ئیش پێ کردنەوەی گرافیکەکان
|
Restart Graphics = دووبارە ئیش پێ کردنەوەی گرافیکەکان
|
||||||
Skip Buffer Effects = &Skip buffer effects
|
Skip Buffer Effects = &Skip buffer effects
|
||||||
Off = کوژاندنەوە
|
Off = کوژاندنەوە
|
||||||
|
@ -259,7 +260,6 @@ Open Memory Stick = Open &Memory Stick
|
||||||
Open New Instance = Open new instance
|
Open New Instance = Open new instance
|
||||||
OpenGL = &OpenGL
|
OpenGL = &OpenGL
|
||||||
Pause = &Pause
|
Pause = &Pause
|
||||||
Pause When Not Focused = &Pause when not focused
|
|
||||||
Portrait = Portrait
|
Portrait = Portrait
|
||||||
Portrait reversed = Portrait reversed
|
Portrait reversed = Portrait reversed
|
||||||
PPSSPP Forums = PPSSPP &forums
|
PPSSPP Forums = PPSSPP &forums
|
||||||
|
@ -1324,6 +1324,7 @@ Off = Off
|
||||||
Oldest Save = Oldest save
|
Oldest Save = Oldest save
|
||||||
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
||||||
Path does not exist! = Path does not exist!
|
Path does not exist! = Path does not exist!
|
||||||
|
Pause when not focused = &Pause when not focused
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = PSP Memory Stick
|
PSP Memory Stick = PSP Memory Stick
|
||||||
PSP Model = PSP مۆدێلی
|
PSP Model = PSP مۆدێلی
|
||||||
|
|
|
@ -235,6 +235,7 @@ Log Console = &ເກັບຄ່າຄອນໂຊລ
|
||||||
Memory View... = &ມຸມມອງຄ່າຄວາມຈຳ...
|
Memory View... = &ມຸມມອງຄ່າຄວາມຈຳ...
|
||||||
More Settings... = &ການຕັ້ງຄ່າອື່ນໆ...
|
More Settings... = &ການຕັ້ງຄ່າອື່ນໆ...
|
||||||
Nearest = &ພາບເປັນຮອຍຍັກໄດ້
|
Nearest = &ພາບເປັນຮອຍຍັກໄດ້
|
||||||
|
Pause when not focused = &ຢຸດຊົ່ວຄາວເມື່ອບໍ່ໄດ້ຫຼິ້ນ
|
||||||
Recent = &Recent
|
Recent = &Recent
|
||||||
Restart Graphics = Restart Graphics
|
Restart Graphics = Restart Graphics
|
||||||
Skip Buffer Effects = &ຂ້າມການໃຊ້ເອັບເຟັກບັບເຟີ້ (ບໍ່ມີບັບເຟີ້, ໄວຂຶ້ນ)
|
Skip Buffer Effects = &ຂ້າມການໃຊ້ເອັບເຟັກບັບເຟີ້ (ບໍ່ມີບັບເຟີ້, ໄວຂຶ້ນ)
|
||||||
|
@ -246,7 +247,6 @@ Open Memory Stick = &ເປີດບ່ອນເກັບຂໍ້ມູນ
|
||||||
Open New Instance = Open new instance
|
Open New Instance = Open new instance
|
||||||
OpenGL = &OpenGL
|
OpenGL = &OpenGL
|
||||||
Pause = &ຢຸດຊົ່ວຄາວ
|
Pause = &ຢຸດຊົ່ວຄາວ
|
||||||
Pause When Not Focused = &ຢຸດຊົ່ວຄາວເມື່ອບໍ່ໄດ້ຫຼິ້ນ
|
|
||||||
Portrait = ແນວຕັ້ງ
|
Portrait = ແນວຕັ້ງ
|
||||||
Portrait reversed = ກັບດ້ານແນວຕັ້ງ
|
Portrait reversed = ກັບດ້ານແນວຕັ້ງ
|
||||||
PPSSPP Forums = &ຟໍຣຳ PPSSPP
|
PPSSPP Forums = &ຟໍຣຳ PPSSPP
|
||||||
|
@ -1320,6 +1320,7 @@ Off = ປິດ
|
||||||
Oldest Save = Oldest save
|
Oldest Save = Oldest save
|
||||||
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
||||||
Path does not exist! = Path does not exist!
|
Path does not exist! = Path does not exist!
|
||||||
|
Pause when not focused = &ຢຸດຊົ່ວຄາວເມື່ອບໍ່ໄດ້ຫຼິ້ນ
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = PSP Memory Stick
|
PSP Memory Stick = PSP Memory Stick
|
||||||
PSP Model = ໂມເດລ PSP
|
PSP Model = ໂມເດລ PSP
|
||||||
|
|
|
@ -235,6 +235,7 @@ Log Console = "&Statuso" konsolė
|
||||||
Memory View... = Atminties &rodymas...
|
Memory View... = Atminties &rodymas...
|
||||||
More Settings... = &Daugiau parametrų...
|
More Settings... = &Daugiau parametrų...
|
||||||
Nearest = &Arčiausias
|
Nearest = &Arčiausias
|
||||||
|
Pause when not focused = &Stabdyti kai nefokusuota
|
||||||
Recent = &Recent
|
Recent = &Recent
|
||||||
Restart Graphics = Restart Graphics
|
Restart Graphics = Restart Graphics
|
||||||
Skip Buffer Effects = &Skip buffer effects
|
Skip Buffer Effects = &Skip buffer effects
|
||||||
|
@ -246,7 +247,6 @@ Open Memory Stick = Atidaryti "&Memory Stick"
|
||||||
Open New Instance = Open new instance
|
Open New Instance = Open new instance
|
||||||
OpenGL = &OpenGL
|
OpenGL = &OpenGL
|
||||||
Pause = &Pauzė
|
Pause = &Pauzė
|
||||||
Pause When Not Focused = &Stabdyti kai nefokusuota
|
|
||||||
Portrait = Portrait
|
Portrait = Portrait
|
||||||
Portrait reversed = Portrait reversed
|
Portrait reversed = Portrait reversed
|
||||||
PPSSPP Forums = PPSSPP &Forumai
|
PPSSPP Forums = PPSSPP &Forumai
|
||||||
|
@ -1320,6 +1320,7 @@ Off = Off
|
||||||
Oldest Save = Oldest save
|
Oldest Save = Oldest save
|
||||||
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
||||||
Path does not exist! = Path does not exist!
|
Path does not exist! = Path does not exist!
|
||||||
|
Pause when not focused = &Stabdyti kai nefokusuota
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = PSP Memory Stick
|
PSP Memory Stick = PSP Memory Stick
|
||||||
PSP Model = Emuliuojamo PSP modelis
|
PSP Model = Emuliuojamo PSP modelis
|
||||||
|
|
|
@ -235,6 +235,7 @@ Log Console = &Log Konsol
|
||||||
Memory View... = Lihat &Memori...
|
Memory View... = Lihat &Memori...
|
||||||
More Settings... = &Tetapan lanjutan...
|
More Settings... = &Tetapan lanjutan...
|
||||||
Nearest = &Terdekat
|
Nearest = &Terdekat
|
||||||
|
Pause when not focused = &Jeda ketika tidak difokus
|
||||||
Recent = &Recent
|
Recent = &Recent
|
||||||
Restart Graphics = Restart Graphics
|
Restart Graphics = Restart Graphics
|
||||||
Skip Buffer Effects = &Skip buffer effects
|
Skip Buffer Effects = &Skip buffer effects
|
||||||
|
@ -246,7 +247,6 @@ Open Memory Stick = Buka &Memori Stik
|
||||||
Open New Instance = Open new instance
|
Open New Instance = Open new instance
|
||||||
OpenGL = &OpenGL
|
OpenGL = &OpenGL
|
||||||
Pause = &Jeda
|
Pause = &Jeda
|
||||||
Pause When Not Focused = &Jeda ketika tidak difokus
|
|
||||||
Portrait = Portrait
|
Portrait = Portrait
|
||||||
Portrait reversed = Portrait songsang
|
Portrait reversed = Portrait songsang
|
||||||
PPSSPP Forums = PPSSPP &Forum
|
PPSSPP Forums = PPSSPP &Forum
|
||||||
|
@ -1320,6 +1320,7 @@ Off = Off
|
||||||
Oldest Save = Oldest save
|
Oldest Save = Oldest save
|
||||||
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
||||||
Path does not exist! = Path does not exist!
|
Path does not exist! = Path does not exist!
|
||||||
|
Pause when not focused = &Jeda ketika tidak difokus
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = PSP Memory Stick
|
PSP Memory Stick = PSP Memory Stick
|
||||||
PSP Model = Model PSP
|
PSP Model = Model PSP
|
||||||
|
|
|
@ -235,6 +235,7 @@ Log Console = Logboek&console
|
||||||
Memory View... = &Geheugenweergave...
|
Memory View... = &Geheugenweergave...
|
||||||
More Settings... = &Meer instellingen...
|
More Settings... = &Meer instellingen...
|
||||||
Nearest = &Naaste buur
|
Nearest = &Naaste buur
|
||||||
|
Pause when not focused = &Pauzeren wanneer venster inactief is
|
||||||
Recent = &Recent
|
Recent = &Recent
|
||||||
Restart Graphics = Restart Graphics
|
Restart Graphics = Restart Graphics
|
||||||
Skip Buffer Effects = &Buffereffecten nalaten (niet-gebufferd, sneller)
|
Skip Buffer Effects = &Buffereffecten nalaten (niet-gebufferd, sneller)
|
||||||
|
@ -246,7 +247,6 @@ Open Memory Stick = M&emory stick openen
|
||||||
Open New Instance = Open new instance
|
Open New Instance = Open new instance
|
||||||
OpenGL = &OpenGL
|
OpenGL = &OpenGL
|
||||||
Pause = &Pauzeren
|
Pause = &Pauzeren
|
||||||
Pause When Not Focused = &Pauzeren wanneer venster inactief is
|
|
||||||
Portrait = Portret
|
Portrait = Portret
|
||||||
Portrait reversed = Omgekeerd portret
|
Portrait reversed = Omgekeerd portret
|
||||||
PPSSPP Forums = &PPSSPP-forum
|
PPSSPP Forums = &PPSSPP-forum
|
||||||
|
@ -1320,6 +1320,7 @@ Off = Uit
|
||||||
Oldest Save = Oldest save
|
Oldest Save = Oldest save
|
||||||
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
||||||
Path does not exist! = Path does not exist!
|
Path does not exist! = Path does not exist!
|
||||||
|
Pause when not focused = &Pauzeren wanneer venster inactief is
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = PSP Memory Stick
|
PSP Memory Stick = PSP Memory Stick
|
||||||
PSP Model = PSP-model
|
PSP Model = PSP-model
|
||||||
|
|
|
@ -235,6 +235,7 @@ Log Console = &Log Console
|
||||||
Memory View... = Memory &View...
|
Memory View... = Memory &View...
|
||||||
More Settings... = &More Settings...
|
More Settings... = &More Settings...
|
||||||
Nearest = &Nearest
|
Nearest = &Nearest
|
||||||
|
Pause when not focused = &Pause When Not Focused
|
||||||
Recent = &Recent
|
Recent = &Recent
|
||||||
Restart Graphics = Restart Graphics
|
Restart Graphics = Restart Graphics
|
||||||
Skip Buffer Effects = &Skip buffer effects
|
Skip Buffer Effects = &Skip buffer effects
|
||||||
|
@ -246,7 +247,6 @@ Open Memory Stick = Open &Memory Stick
|
||||||
Open New Instance = Open new instance
|
Open New Instance = Open new instance
|
||||||
OpenGL = &OpenGL
|
OpenGL = &OpenGL
|
||||||
Pause = &Pause
|
Pause = &Pause
|
||||||
Pause When Not Focused = &Pause When Not Focused
|
|
||||||
Portrait = Portrait
|
Portrait = Portrait
|
||||||
Portrait reversed = Portrait reversed
|
Portrait reversed = Portrait reversed
|
||||||
PPSSPP Forums = PPSSPP &Forums
|
PPSSPP Forums = PPSSPP &Forums
|
||||||
|
@ -1320,6 +1320,7 @@ Off = Off
|
||||||
Oldest Save = Oldest save
|
Oldest Save = Oldest save
|
||||||
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
||||||
Path does not exist! = Path does not exist!
|
Path does not exist! = Path does not exist!
|
||||||
|
Pause when not focused = &Pause When Not Focused
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = PSP Memory Stick
|
PSP Memory Stick = PSP Memory Stick
|
||||||
PSP Model = PSP model
|
PSP Model = PSP model
|
||||||
|
|
|
@ -235,6 +235,7 @@ Log Console = Konsola dziennika zdarzeń
|
||||||
Memory View... = Podgląd pamięci...
|
Memory View... = Podgląd pamięci...
|
||||||
More Settings... = Więcej ustawień...
|
More Settings... = Więcej ustawień...
|
||||||
Nearest = Najbliższe
|
Nearest = Najbliższe
|
||||||
|
Pause when not focused = Pauzuj, gdy okno nieaktywne
|
||||||
Recent = &Ostatnie
|
Recent = &Ostatnie
|
||||||
Restart Graphics = Restart Graphics
|
Restart Graphics = Restart Graphics
|
||||||
Skip Buffer Effects = &Nie renderuj efektów z bufora (niebuforowane, szybsze)
|
Skip Buffer Effects = &Nie renderuj efektów z bufora (niebuforowane, szybsze)
|
||||||
|
@ -246,7 +247,6 @@ Open Memory Stick = Otwórz Kartę Pamięci
|
||||||
Open New Instance = Otwórz nową instancję
|
Open New Instance = Otwórz nową instancję
|
||||||
OpenGL = &OpenGL
|
OpenGL = &OpenGL
|
||||||
Pause = Pauza
|
Pause = Pauza
|
||||||
Pause When Not Focused = Pauzuj, gdy okno nieaktywne
|
|
||||||
Portrait = Pionowo
|
Portrait = Pionowo
|
||||||
Portrait reversed = Odwrócone pionowo
|
Portrait reversed = Odwrócone pionowo
|
||||||
PPSSPP Forums = Forum PPSSPP
|
PPSSPP Forums = Forum PPSSPP
|
||||||
|
@ -1325,6 +1325,7 @@ Off = Wył.
|
||||||
Oldest Save = Najstarszy zapis
|
Oldest Save = Najstarszy zapis
|
||||||
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
||||||
Path does not exist! = Ta ścieżka nie istnieje!
|
Path does not exist! = Ta ścieżka nie istnieje!
|
||||||
|
Pause when not focused = Pauzuj, gdy okno nieaktywne
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = Karta Pamięci PSP
|
PSP Memory Stick = Karta Pamięci PSP
|
||||||
PSP Model = Model PSP
|
PSP Model = Model PSP
|
||||||
|
|
|
@ -259,6 +259,7 @@ Log Console = &Console dos registros
|
||||||
Memory View... = Visualização da &memória...
|
Memory View... = Visualização da &memória...
|
||||||
More Settings... = &Mais configurações...
|
More Settings... = &Mais configurações...
|
||||||
Nearest = &Mais próximo
|
Nearest = &Mais próximo
|
||||||
|
Pause when not focused = &Pausar quando não focado
|
||||||
Restart Graphics = Reiniciar os Gráficos
|
Restart Graphics = Reiniciar os Gráficos
|
||||||
Skip Buffer Effects = &Ignorar efeitos do buffer
|
Skip Buffer Effects = &Ignorar efeitos do buffer
|
||||||
Off = &Desligado
|
Off = &Desligado
|
||||||
|
@ -269,7 +270,6 @@ Open Memory Stick = Abrir &cartão de memória
|
||||||
Open New Instance = Abrir nova instância
|
Open New Instance = Abrir nova instância
|
||||||
OpenGL = &OpenGL
|
OpenGL = &OpenGL
|
||||||
Pause = &Pausar
|
Pause = &Pausar
|
||||||
Pause When Not Focused = &Pausar quando não focado
|
|
||||||
Portrait = Retrato
|
Portrait = Retrato
|
||||||
Portrait reversed = Retrato invertido
|
Portrait reversed = Retrato invertido
|
||||||
PPSSPP Forums = Fórums do &PPSSPP
|
PPSSPP Forums = Fórums do &PPSSPP
|
||||||
|
@ -1334,6 +1334,7 @@ Off = Desligado
|
||||||
Oldest Save = Save mais antigo
|
Oldest Save = Save mais antigo
|
||||||
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
||||||
Path does not exist! = O caminho não existe!
|
Path does not exist! = O caminho não existe!
|
||||||
|
Pause when not focused = &Pausar quando não focado
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = Cartão de Memória do PSP
|
PSP Memory Stick = Cartão de Memória do PSP
|
||||||
PSP Model = Modelo do PSP
|
PSP Model = Modelo do PSP
|
||||||
|
|
|
@ -259,6 +259,7 @@ Log Console = &Console dos Logs
|
||||||
Memory View... = Visualização da &memória...
|
Memory View... = Visualização da &memória...
|
||||||
More Settings... = &Mais Definições...
|
More Settings... = &Mais Definições...
|
||||||
Nearest = &Mais próximo
|
Nearest = &Mais próximo
|
||||||
|
Pause when not focused = &Pausar quando a janela não estiver em foco
|
||||||
Recent = &Recente
|
Recent = &Recente
|
||||||
Restart Graphics = Restart Graphics
|
Restart Graphics = Restart Graphics
|
||||||
Skip Buffer Effects = &Ignorar efeitos de buffer (sem buffer, mais rápido)
|
Skip Buffer Effects = &Ignorar efeitos de buffer (sem buffer, mais rápido)
|
||||||
|
@ -270,7 +271,6 @@ Open Memory Stick = Abrir &cartão de memória
|
||||||
Open New Instance = Abrir Nova Instância
|
Open New Instance = Abrir Nova Instância
|
||||||
OpenGL = &OpenGL
|
OpenGL = &OpenGL
|
||||||
Pause = &Pausar
|
Pause = &Pausar
|
||||||
Pause When Not Focused = &Pausar quando a janela não estiver em foco
|
|
||||||
Portrait = Retrato
|
Portrait = Retrato
|
||||||
Portrait reversed = Retrato invertido
|
Portrait reversed = Retrato invertido
|
||||||
PPSSPP Forums = Fóruns do &PPSSPP
|
PPSSPP Forums = Fóruns do &PPSSPP
|
||||||
|
@ -1336,6 +1336,7 @@ Off = Desativado
|
||||||
Oldest Save = Salvamento mais antigo
|
Oldest Save = Salvamento mais antigo
|
||||||
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
||||||
Path does not exist! = O caminho não existe!
|
Path does not exist! = O caminho não existe!
|
||||||
|
Pause when not focused = &Pausar quando a janela não estiver em foco
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = Cartão de memória da PSP
|
PSP Memory Stick = Cartão de memória da PSP
|
||||||
PSP Model = Modelo da PSP
|
PSP Model = Modelo da PSP
|
||||||
|
|
|
@ -236,6 +236,7 @@ Log Console = &Log Console
|
||||||
Memory View... = Memory &View...
|
Memory View... = Memory &View...
|
||||||
More Settings... = &More Settings...
|
More Settings... = &More Settings...
|
||||||
Nearest = &Nearest
|
Nearest = &Nearest
|
||||||
|
Pause when not focused = &Pause When Not Focused
|
||||||
Recent = &Recent
|
Recent = &Recent
|
||||||
Restart Graphics = Restart Graphics
|
Restart Graphics = Restart Graphics
|
||||||
Skip Buffer Effects = &Skip buffer effects
|
Skip Buffer Effects = &Skip buffer effects
|
||||||
|
@ -247,7 +248,6 @@ Open Memory Stick = Open &Memory Stick
|
||||||
Open New Instance = Open new instance
|
Open New Instance = Open new instance
|
||||||
OpenGL = &OpenGL
|
OpenGL = &OpenGL
|
||||||
Pause = &Pause
|
Pause = &Pause
|
||||||
Pause When Not Focused = &Pause When Not Focused
|
|
||||||
Portrait = Portrait
|
Portrait = Portrait
|
||||||
Portrait reversed = Portrait reversed
|
Portrait reversed = Portrait reversed
|
||||||
PPSSPP Forums = PPSSPP &Forums
|
PPSSPP Forums = PPSSPP &Forums
|
||||||
|
@ -1321,6 +1321,7 @@ Off = Off
|
||||||
Oldest Save = Oldest save
|
Oldest Save = Oldest save
|
||||||
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
||||||
Path does not exist! = Path does not exist!
|
Path does not exist! = Path does not exist!
|
||||||
|
Pause when not focused = &Pause When Not Focused
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = PSP Memory Stick
|
PSP Memory Stick = PSP Memory Stick
|
||||||
PSP Model = Model PSP
|
PSP Model = Model PSP
|
||||||
|
|
|
@ -235,6 +235,7 @@ Log Console = Консоль отладки
|
||||||
Memory View... = Просмотрщик па&мяти...
|
Memory View... = Просмотрщик па&мяти...
|
||||||
More Settings... = &Ещё настройки...
|
More Settings... = &Ещё настройки...
|
||||||
Nearest = &Ближайший
|
Nearest = &Ближайший
|
||||||
|
Pause when not focused = &Пауза, когда окно не в фокусе
|
||||||
Recent = &Недавние
|
Recent = &Недавние
|
||||||
Restart Graphics = Перезапустить графику
|
Restart Graphics = Перезапустить графику
|
||||||
Skip Buffer Effects = &Пропускать эффекты (небуферированный, быстрее)
|
Skip Buffer Effects = &Пропускать эффекты (небуферированный, быстрее)
|
||||||
|
@ -246,7 +247,6 @@ Open Memory Stick = Открыть карту памяти
|
||||||
Open New Instance = Открыть новый экземпляр программы
|
Open New Instance = Открыть новый экземпляр программы
|
||||||
OpenGL = &OpenGL
|
OpenGL = &OpenGL
|
||||||
Pause = &Пауза
|
Pause = &Пауза
|
||||||
Pause When Not Focused = &Пауза, когда окно не в фокусе
|
|
||||||
Portrait = Портретная
|
Portrait = Портретная
|
||||||
Portrait reversed = Портретная (перевернутая)
|
Portrait reversed = Портретная (перевернутая)
|
||||||
PPSSPP Forums = &Форум PPSSPP
|
PPSSPP Forums = &Форум PPSSPP
|
||||||
|
@ -1320,6 +1320,7 @@ Off = Отключено
|
||||||
Oldest Save = Самое старое сохранение
|
Oldest Save = Самое старое сохранение
|
||||||
Only JPG and PNG images are supported = Поддерживаются только изображения в формате JPG и PNG
|
Only JPG and PNG images are supported = Поддерживаются только изображения в формате JPG и PNG
|
||||||
Path does not exist! = Путь не существует!
|
Path does not exist! = Путь не существует!
|
||||||
|
Pause when not focused = &Пауза, когда окно не в фокусе
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = Карта памяти PSP
|
PSP Memory Stick = Карта памяти PSP
|
||||||
PSP Model = Модель PSP
|
PSP Model = Модель PSP
|
||||||
|
|
|
@ -235,6 +235,7 @@ Log Console = Loggkonsol
|
||||||
Memory View... = Minnesvy...
|
Memory View... = Minnesvy...
|
||||||
More Settings... = Mer inställningar...
|
More Settings... = Mer inställningar...
|
||||||
Nearest = Nearest
|
Nearest = Nearest
|
||||||
|
Pause when not focused = Pausa vid tappat fokus
|
||||||
Recent = &Recent
|
Recent = &Recent
|
||||||
Restart Graphics = Restart Graphics
|
Restart Graphics = Restart Graphics
|
||||||
Skip Buffer Effects = &Skippa buffereffekter
|
Skip Buffer Effects = &Skippa buffereffekter
|
||||||
|
@ -246,7 +247,6 @@ Open Memory Stick = Öppna Memory Stick
|
||||||
Open New Instance = Öppna ny instans
|
Open New Instance = Öppna ny instans
|
||||||
OpenGL = OpenGL
|
OpenGL = OpenGL
|
||||||
Pause = Paus
|
Pause = Paus
|
||||||
Pause When Not Focused = Pausa vid tappat fokus
|
|
||||||
Portrait = Porträtt
|
Portrait = Porträtt
|
||||||
Portrait reversed = Porträtt omvänt
|
Portrait reversed = Porträtt omvänt
|
||||||
PPSSPP Forums = PPSSPP-forum
|
PPSSPP Forums = PPSSPP-forum
|
||||||
|
@ -1321,6 +1321,7 @@ Off = Off
|
||||||
Oldest Save = Äldsta sparfilen
|
Oldest Save = Äldsta sparfilen
|
||||||
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
||||||
Path does not exist! = Path does not exist!
|
Path does not exist! = Path does not exist!
|
||||||
|
Pause when not focused = Pausa vid tappat fokus
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = PSP Memory Stick
|
PSP Memory Stick = PSP Memory Stick
|
||||||
PSP Model = PSP-modell
|
PSP Model = PSP-modell
|
||||||
|
|
|
@ -235,6 +235,7 @@ Log Console = Log Console
|
||||||
Memory View... = Memory View...
|
Memory View... = Memory View...
|
||||||
More Settings... = Karagdagang settings...
|
More Settings... = Karagdagang settings...
|
||||||
Nearest = Pinakamalapit
|
Nearest = Pinakamalapit
|
||||||
|
Pause when not focused = Ihinto kapag hindi naka pokus
|
||||||
Recent = &Kamakailan
|
Recent = &Kamakailan
|
||||||
Restart Graphics = I-Restart ang Graphics
|
Restart Graphics = I-Restart ang Graphics
|
||||||
Skip Buffer Effects = Italon ang buffer effects
|
Skip Buffer Effects = Italon ang buffer effects
|
||||||
|
@ -246,7 +247,6 @@ Open Memory Stick = Buksan ang Memory Stick
|
||||||
Open New Instance = Buksan ang Bagong Instance
|
Open New Instance = Buksan ang Bagong Instance
|
||||||
OpenGL = OpenGL
|
OpenGL = OpenGL
|
||||||
Pause = Ihinto
|
Pause = Ihinto
|
||||||
Pause When Not Focused = Ihinto kapag hindi naka pokus
|
|
||||||
Portrait = Patayo
|
Portrait = Patayo
|
||||||
Portrait reversed = Pabaliktad na patayo
|
Portrait reversed = Pabaliktad na patayo
|
||||||
PPSSPP Forums = PPSSPP Forums
|
PPSSPP Forums = PPSSPP Forums
|
||||||
|
@ -1323,6 +1323,7 @@ Off = Nakapatay
|
||||||
Oldest Save = Pinakalumang na i-save
|
Oldest Save = Pinakalumang na i-save
|
||||||
Only JPG and PNG images are supported = Tanging ang mga JPG at PNG na mga imahe ang sinusuportahan
|
Only JPG and PNG images are supported = Tanging ang mga JPG at PNG na mga imahe ang sinusuportahan
|
||||||
Path does not exist! = Hindi matagpuan ang sinasabing 'path'!
|
Path does not exist! = Hindi matagpuan ang sinasabing 'path'!
|
||||||
|
Pause when not focused = Ihinto kapag hindi naka pokus
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = PSP Memory Stick
|
PSP Memory Stick = PSP Memory Stick
|
||||||
PSP Model = Modelo ng PSP
|
PSP Model = Modelo ng PSP
|
||||||
|
|
|
@ -235,6 +235,7 @@ Log Console = เก็บค่าคอนโซล
|
||||||
Memory View... = มุมมองค่าความจำ...
|
Memory View... = มุมมองค่าความจำ...
|
||||||
More Settings... = การตั้งค่าอื่นๆ...
|
More Settings... = การตั้งค่าอื่นๆ...
|
||||||
Nearest = แบบใกล้เคียง
|
Nearest = แบบใกล้เคียง
|
||||||
|
Pause when not focused = หยุดชั่วคราวเมื่อไม่ได้เล่น
|
||||||
Recent = &ครั้งล่าสุด
|
Recent = &ครั้งล่าสุด
|
||||||
Restart Graphics = รีสตาร์ทระบบกราฟิก
|
Restart Graphics = รีสตาร์ทระบบกราฟิก
|
||||||
Skip Buffer Effects = ข้ามการใช้บัฟเฟอร์เอฟเฟ็คท์ (ปิดบัฟเฟอร์)
|
Skip Buffer Effects = ข้ามการใช้บัฟเฟอร์เอฟเฟ็คท์ (ปิดบัฟเฟอร์)
|
||||||
|
@ -246,7 +247,6 @@ Open Memory Stick = เปิดที่เก็บบันทึกข้อ
|
||||||
Open New Instance = เปิดหน้าจอแยกใหม่
|
Open New Instance = เปิดหน้าจอแยกใหม่
|
||||||
OpenGL = โอเพ่นจีแอล
|
OpenGL = โอเพ่นจีแอล
|
||||||
Pause = หยุดชั่วคราว
|
Pause = หยุดชั่วคราว
|
||||||
Pause When Not Focused = หยุดชั่วคราวเมื่อไม่ได้เล่น
|
|
||||||
Portrait = แนวตั้ง
|
Portrait = แนวตั้ง
|
||||||
Portrait reversed = แนวตั้งกลับด้าน
|
Portrait reversed = แนวตั้งกลับด้าน
|
||||||
PPSSPP Forums = เว็บ PPSSPP Forums
|
PPSSPP Forums = เว็บ PPSSPP Forums
|
||||||
|
@ -1347,6 +1347,7 @@ Off = ปิด
|
||||||
Oldest Save = เซฟอันเก่าสุด
|
Oldest Save = เซฟอันเก่าสุด
|
||||||
Only JPG and PNG images are supported = รองรับเฉพาะไฟล์รูปภาพนามสกุล JPG และ PNG
|
Only JPG and PNG images are supported = รองรับเฉพาะไฟล์รูปภาพนามสกุล JPG และ PNG
|
||||||
Path does not exist! = ไม่มีเส้นทางนี้อยู่!
|
Path does not exist! = ไม่มีเส้นทางนี้อยู่!
|
||||||
|
Pause when not focused = หยุดชั่วคราวเมื่อไม่ได้เล่น
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = แหล่งเก็บข้อมูล PSP
|
PSP Memory Stick = แหล่งเก็บข้อมูล PSP
|
||||||
PSP Model = โมเดลของ PSP
|
PSP Model = โมเดลของ PSP
|
||||||
|
|
|
@ -237,6 +237,7 @@ Log Console = &Günlük Konsolu
|
||||||
Memory View... = Bellek &Görünümü...
|
Memory View... = Bellek &Görünümü...
|
||||||
More Settings... = &Daha Fazla Ayar...
|
More Settings... = &Daha Fazla Ayar...
|
||||||
Nearest = &En Yakın
|
Nearest = &En Yakın
|
||||||
|
Pause when not focused = &Başka programa geçildiğinde duraklat
|
||||||
Recent = &En Son
|
Recent = &En Son
|
||||||
Restart Graphics = Ekran Kartını Yeniden Başlat
|
Restart Graphics = Ekran Kartını Yeniden Başlat
|
||||||
Skip Buffer Effects = &Arabellek efektlerini atla (arabelleğe alınmaz, daha hızlıdır)
|
Skip Buffer Effects = &Arabellek efektlerini atla (arabelleğe alınmaz, daha hızlıdır)
|
||||||
|
@ -248,7 +249,6 @@ Open Memory Stick = Hafıza Kartını Aç
|
||||||
Open New Instance = Yeni örnek aç
|
Open New Instance = Yeni örnek aç
|
||||||
OpenGL = &OpenGL
|
OpenGL = &OpenGL
|
||||||
Pause = PPSSPP Menüsü
|
Pause = PPSSPP Menüsü
|
||||||
Pause When Not Focused = &Başka programa geçildiğinde duraklat
|
|
||||||
Portrait = Dikey
|
Portrait = Dikey
|
||||||
Portrait reversed = Ters Dikey
|
Portrait reversed = Ters Dikey
|
||||||
PPSSPP Forums = PPSSPP Forumları
|
PPSSPP Forums = PPSSPP Forumları
|
||||||
|
@ -1321,6 +1321,7 @@ Off = Kapalı
|
||||||
Oldest Save = En eski kayıt
|
Oldest Save = En eski kayıt
|
||||||
Only JPG and PNG images are supported = Sadece JPG ve PNG resimleri desteklenir
|
Only JPG and PNG images are supported = Sadece JPG ve PNG resimleri desteklenir
|
||||||
Path does not exist! = Yol mevcut değil!
|
Path does not exist! = Yol mevcut değil!
|
||||||
|
Pause when not focused = &Başka programa geçildiğinde duraklat
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = PSP Hafıza Kartı
|
PSP Memory Stick = PSP Hafıza Kartı
|
||||||
PSP Model = PSP modeli
|
PSP Model = PSP modeli
|
||||||
|
|
|
@ -235,6 +235,7 @@ Log Console = Консоль журналу (log)
|
||||||
Memory View... = Переглядач па&м'яті...
|
Memory View... = Переглядач па&м'яті...
|
||||||
More Settings... = &Ще налаштування...
|
More Settings... = &Ще налаштування...
|
||||||
Nearest = &Найближчий
|
Nearest = &Найближчий
|
||||||
|
Pause when not focused = &Пауза коли вікно не в фокусі
|
||||||
Recent = &Recent
|
Recent = &Recent
|
||||||
Restart Graphics = Restart Graphics
|
Restart Graphics = Restart Graphics
|
||||||
Skip Buffer Effects = &Пропустити ефекти (небуферований, швидше)
|
Skip Buffer Effects = &Пропустити ефекти (небуферований, швидше)
|
||||||
|
@ -246,7 +247,6 @@ Open Memory Stick = Відкрити карту пам'яті
|
||||||
Open New Instance = Open new instance
|
Open New Instance = Open new instance
|
||||||
OpenGL = &OpenGL
|
OpenGL = &OpenGL
|
||||||
Pause = &Пауза
|
Pause = &Пауза
|
||||||
Pause When Not Focused = &Пауза коли вікно не в фокусі
|
|
||||||
Portrait = Портретне
|
Portrait = Портретне
|
||||||
Portrait reversed = Портретна (перевернуто)
|
Portrait reversed = Портретна (перевернуто)
|
||||||
PPSSPP Forums = &Форум PPSSPP
|
PPSSPP Forums = &Форум PPSSPP
|
||||||
|
@ -1320,6 +1320,7 @@ Off = Вимкнено
|
||||||
Oldest Save = Найстаріші збереження
|
Oldest Save = Найстаріші збереження
|
||||||
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
||||||
Path does not exist! = Path does not exist!
|
Path does not exist! = Path does not exist!
|
||||||
|
Pause when not focused = &Пауза коли вікно не в фокусі
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = PSP Memory Stick
|
PSP Memory Stick = PSP Memory Stick
|
||||||
PSP Model = Модель PSP
|
PSP Model = Модель PSP
|
||||||
|
|
|
@ -235,6 +235,7 @@ Log Console = Log Console
|
||||||
Memory View... = Xem bộ nhớ...
|
Memory View... = Xem bộ nhớ...
|
||||||
More Settings... = Các thiết lập khác...
|
More Settings... = Các thiết lập khác...
|
||||||
Nearest = Gần nhất
|
Nearest = Gần nhất
|
||||||
|
Pause when not focused = Dừng trò chơi khi "ko tập trung"
|
||||||
Recent = &Recent
|
Recent = &Recent
|
||||||
Restart Graphics = Restart Graphics
|
Restart Graphics = Restart Graphics
|
||||||
Skip Buffer Effects = Bỏ qua hiệu ứng đệm (Không bộ nhớ đệm, nhanh hơn)
|
Skip Buffer Effects = Bỏ qua hiệu ứng đệm (Không bộ nhớ đệm, nhanh hơn)
|
||||||
|
@ -246,7 +247,6 @@ Open Memory Stick = Mở Memory Stick
|
||||||
Open New Instance = Open new instance
|
Open New Instance = Open new instance
|
||||||
OpenGL = OpenGL
|
OpenGL = OpenGL
|
||||||
Pause = Tạm dừng
|
Pause = Tạm dừng
|
||||||
Pause When Not Focused = Dừng trò chơi khi "ko tập trung"
|
|
||||||
Portrait = Chiều dọc
|
Portrait = Chiều dọc
|
||||||
Portrait reversed = Chiều dọc đảo ngược
|
Portrait reversed = Chiều dọc đảo ngược
|
||||||
PPSSPP Forums = Diễn đàn PPSSPP
|
PPSSPP Forums = Diễn đàn PPSSPP
|
||||||
|
@ -1320,6 +1320,7 @@ Off = Tắt
|
||||||
Oldest Save = Save cũ nhất
|
Oldest Save = Save cũ nhất
|
||||||
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
Only JPG and PNG images are supported = Only JPG and PNG images are supported
|
||||||
Path does not exist! = Path does not exist!
|
Path does not exist! = Path does not exist!
|
||||||
|
Pause when not focused = Dừng trò chơi khi "ko tập trung"
|
||||||
Plugins = Plugins
|
Plugins = Plugins
|
||||||
PSP Memory Stick = PSP Memory Stick
|
PSP Memory Stick = PSP Memory Stick
|
||||||
PSP Model = PSP model
|
PSP Model = PSP model
|
||||||
|
|
|
@ -235,6 +235,7 @@ Log Console = 控制台日志(&L)
|
||||||
Memory View... = 查看内存…(&V)
|
Memory View... = 查看内存…(&V)
|
||||||
More Settings... = 更多设置…(&M)
|
More Settings... = 更多设置…(&M)
|
||||||
Nearest = 邻近取样(&N)
|
Nearest = 邻近取样(&N)
|
||||||
|
Pause when not focused = 后台运行时自动暂停(&P)
|
||||||
Recent = 最近游戏(&R)
|
Recent = 最近游戏(&R)
|
||||||
Restart Graphics = 重启渲染
|
Restart Graphics = 重启渲染
|
||||||
Skip Buffer Effects = 跳过缓冲效果(更快)(&S)
|
Skip Buffer Effects = 跳过缓冲效果(更快)(&S)
|
||||||
|
@ -246,7 +247,6 @@ Open Memory Stick = 打开记忆棒(&M)
|
||||||
Open New Instance = 双开模拟器
|
Open New Instance = 双开模拟器
|
||||||
OpenGL = OpenGL
|
OpenGL = OpenGL
|
||||||
Pause = 暂停(&P)
|
Pause = 暂停(&P)
|
||||||
Pause When Not Focused = 后台运行时自动暂停(&P)
|
|
||||||
Portrait = 纵向
|
Portrait = 纵向
|
||||||
Portrait reversed = 纵向反转
|
Portrait reversed = 纵向反转
|
||||||
PPSSPP Forums = PPSSPP官方论坛(&F)
|
PPSSPP Forums = PPSSPP官方论坛(&F)
|
||||||
|
@ -1258,6 +1258,7 @@ Enable plugins = 启用插件
|
||||||
JIT using IR = 带IR的动态重编译
|
JIT using IR = 带IR的动态重编译
|
||||||
Loaded plugin: %1 = 已加载插件: %1
|
Loaded plugin: %1 = 已加载插件: %1
|
||||||
Only JPG and PNG images are supported = 只支持JPG和PNG图片
|
Only JPG and PNG images are supported = 只支持JPG和PNG图片
|
||||||
|
Pause when not focused = 后台运行时自动暂停(&P)
|
||||||
Plugins = 插件
|
Plugins = 插件
|
||||||
Recording = 录制中
|
Recording = 录制中
|
||||||
RetroAchievements = 成就系统
|
RetroAchievements = 成就系统
|
||||||
|
|
|
@ -235,6 +235,7 @@ Log Console = 記錄主控台(&L)
|
||||||
Memory View... = 記憶體檢視(&V)…
|
Memory View... = 記憶體檢視(&V)…
|
||||||
More Settings... = 更多設定(&M)…
|
More Settings... = 更多設定(&M)…
|
||||||
Nearest = 鄰近取樣(&N)
|
Nearest = 鄰近取樣(&N)
|
||||||
|
Pause when not focused = 未聚焦時暫停(&P)
|
||||||
Recent = 最近(&R)
|
Recent = 最近(&R)
|
||||||
Restart Graphics = 重新啟動圖形
|
Restart Graphics = 重新啟動圖形
|
||||||
Skip Buffer Effects = 跳過緩衝區效果(&S)
|
Skip Buffer Effects = 跳過緩衝區效果(&S)
|
||||||
|
@ -246,7 +247,6 @@ Open Memory Stick = 開啟記憶棒(&M)
|
||||||
Open New Instance = 開啟新執行個體
|
Open New Instance = 開啟新執行個體
|
||||||
OpenGL = OpenGL(&O)
|
OpenGL = OpenGL(&O)
|
||||||
Pause = 暫停(&P)
|
Pause = 暫停(&P)
|
||||||
Pause When Not Focused = 未聚焦時暫停(&P)
|
|
||||||
Portrait = 直向
|
Portrait = 直向
|
||||||
Portrait reversed = 直向反轉
|
Portrait reversed = 直向反轉
|
||||||
PPSSPP Forums = PPSSPP 論壇(&F)
|
PPSSPP Forums = PPSSPP 論壇(&F)
|
||||||
|
@ -1310,6 +1310,7 @@ Off = 關閉
|
||||||
Oldest Save = 最舊存檔
|
Oldest Save = 最舊存檔
|
||||||
Only JPG and PNG images are supported = 僅支援 JPG 和 PNG 影像
|
Only JPG and PNG images are supported = 僅支援 JPG 和 PNG 影像
|
||||||
Path does not exist! = 路徑不存在!
|
Path does not exist! = 路徑不存在!
|
||||||
|
Pause when not focused = 未聚焦時暫停(&P)
|
||||||
Plugins = 外掛程式
|
Plugins = 外掛程式
|
||||||
PSP Memory Stick = PSP 記憶棒
|
PSP Memory Stick = PSP 記憶棒
|
||||||
PSP Model = PSP 型號
|
PSP Model = PSP 型號
|
||||||
|
|
Loading…
Add table
Reference in a new issue