diff --git a/common/src/Utilities/x86/MemcpyFast.cpp b/common/src/Utilities/x86/MemcpyFast.cpp index be026758c8..2ae3f34fb2 100644 --- a/common/src/Utilities/x86/MemcpyFast.cpp +++ b/common/src/Utilities/x86/MemcpyFast.cpp @@ -84,19 +84,19 @@ __declspec(naked) void __fastcall memcpy_amd_(void *dest, const void *src, size_ cmp eax, TINY_BLOCK_COPY jb $memcpy_ic_3 ; tiny? skip mmx copy - cmp eax, 32*1024 ; don't align between 32k-64k because + cmp eax, 32*1024 ; dont align between 32k-64k because jbe $memcpy_do_align ; it appears to be slower cmp eax, 64*1024 jbe $memcpy_align_done $memcpy_do_align: - mov eax, 8 ; a trick that's faster than rep movsb... + mov eax, 8 ; a trick that s faster than rep movsb... sub eax, edi ; align destination to qword and eax, 111b ; get the low bits sub ecx, eax ; update copy count neg eax ; set up to jump into the array add eax, offset $memcpy_align_done - jmp eax ; jump to array of movsb's + jmp eax ; jump to array of movsb s align 4 movsb @@ -153,7 +153,7 @@ $memcpy_ic_3: and eax, 1111b ; only look at the "remainder" bits neg eax ; set up to jump into the array add eax, offset $memcpy_last_few - jmp eax ; jump to array of movsd's + jmp eax ; jump to array of movsd s $memcpy_uc_test: or eax, eax ; tail end of block prefetch will jump here @@ -216,9 +216,9 @@ align 16 movsd movsd -$memcpy_last_few: ; dword aligned from before movsd's +$memcpy_last_few: ; dword aligned from before movsd s and ecx, 11b ; the last few cows must come home - jz $memcpy_final ; no more, let's leave + jz $memcpy_final ; no more, let s leave rep movsb ; the last 1, 2, or 3 bytes $memcpy_final: diff --git a/generate_pot.sh b/generate_pot.sh index 0ac5d89863..8e58f44e9c 100644 --- a/generate_pot.sh +++ b/generate_pot.sh @@ -33,6 +33,7 @@ GENERAL_OPTION="--sort-by-file --no-wrap \ ###################################################################### [ ! -e pcsx2 ] && echo "pcsx2 directory not present" && return 1; [ ! -e common ] && echo "common directory not present" && return 1; +[ ! -e locales ] && echo "locales directory not present" && return 1; # Build a list of all input files input_files="" @@ -48,31 +49,61 @@ done ###################################################################### # Generate the pot ###################################################################### -MAIN_FILE=locales/templates/pcsx2_Main.pot -MAIN_KEY=_ +MAIN_POT=locales/templates/pcsx2_Main.pot +MAIN_KEY1=_ +MAIN_KEY2=pxL -DEV_FILE=locales/templates/pcsx2_Devel.pot -DEV_KEY1=pxE_dev +DEV_POT=locales/templates/pcsx2_Devel.pot +DEV_KEY1=_d DEV_KEY2=pxDt -ICO_FILE=locales/templates/pcsx2_Iconized.pot -ICO_KEY=pxE +ICO_POT=locales/templates/pcsx2_Iconized.pot +ICO_KEY1=pxE -TER_FILE=locales/templates/pcsx2_Tertiary.pot -TER_KEY=pxEt +TER_POT=locales/templates/pcsx2_Tertiary.pot +TER_KEY1=_t +TER_KEY2=pxLt +TER_KEY3=pxEt -echo "Generate $MAIN_FILE" -xgettext --keyword=$MAIN_KEY $GENERAL_OPTION $input_files --output=$MAIN_FILE -sed --in-place $MAIN_FILE --expression=s/charset=CHARSET/charset=UTF-8/ +echo "Generate $MAIN_POT" +xgettext --keyword=$MAIN_KEY1 --keyword=$MAIN_KEY2 $GENERAL_OPTION $input_files --output=$MAIN_POT +sed --in-place $MAIN_POT --expression=s/charset=CHARSET/charset=UTF-8/ -echo "Generate $DEV_FILE" -xgettext --keyword=$DEV_KEY1 --keyword=$DEV_KEY2 $GENERAL_OPTION $input_files --output=$DEV_FILE -sed --in-place $DEV_FILE --expression=s/charset=CHARSET/charset=UTF-8/ +echo "Generate $DEV_POT" +xgettext --keyword=$DEV_KEY1 --keyword=$DEV_KEY2 $GENERAL_OPTION $input_files --output=$DEV_POT +sed --in-place $DEV_POT --expression=s/charset=CHARSET/charset=UTF-8/ -echo "Generate $ICO_FILE" -xgettext --keyword=$ICO_KEY $GENERAL_OPTION $input_files --output=$ICO_FILE -sed --in-place $ICO_FILE --expression=s/charset=CHARSET/charset=UTF-8/ +echo "Generate $ICO_POT" +xgettext --keyword=$ICO_KEY1 $GENERAL_OPTION $input_files --output=$ICO_POT +sed --in-place $ICO_POT --expression=s/charset=CHARSET/charset=UTF-8/ -echo "Generate $TER_FILE" -xgettext --keyword=$TER_KEY $GENERAL_OPTION $input_files --output=$TER_FILE -sed --in-place $TER_FILE --expression=s/charset=CHARSET/charset=UTF-8/ +echo "Generate $TER_POT" +xgettext --keyword=$TER_KEY1 --keyword=$TER_KEY2 --keyword=$TER_KEY3 $GENERAL_OPTION $input_files --output=$TER_POT +sed --in-place $TER_POT --expression=s/charset=CHARSET/charset=UTF-8/ + +###################################################################### +# Automatically align the .po to the new pot file +###################################################################### +echo "Update pcsx2_Main.po files" +for po_file in `find ./locales -iname pcsx2_Main.po` +do + msgmerge --update $po_file $MAIN_POT +done + +echo "Update pcsx2_Devel.po files" +for po_file in `find ./locales -iname pcsx2_Devel.po` +do + msgmerge --update $po_file $DEV_POT +done + +echo "Update pcsx2_Iconized.po files" +for po_file in `find ./locales -iname pcsx2_Iconized.po` +do + msgmerge --update $po_file $ICO_POT +done + +echo "Update pcsx2_Tertiary.po files" +for po_file in `find ./locales -iname pcsx2_Tertiary.po` +do + msgmerge --update $po_file $TER_POT +done diff --git a/locales/pt_BR/pcsx2_Devel.po b/locales/pt_BR/pcsx2_Devel.po index 72e20560be..0d0916951a 100644 --- a/locales/pt_BR/pcsx2_Devel.po +++ b/locales/pt_BR/pcsx2_Devel.po @@ -1,15 +1,15 @@ msgid "" msgstr "" "Project-Id-Version: PCSX2 0.9.7\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-17 23:26-0300\n" +"Report-Msgid-Bugs-To: http://code.google.com/p/pcsx2/\n" +"POT-Creation-Date: 2011-02-25 18:54+0100\n" "PO-Revision-Date: 2011-01-17 23:26-0300\n" "Last-Translator: Rafael \n" "Language-Team: \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Poedit-KeywordsList: pxE_dev;pxDt;_t\n" "X-Poedit-SourceCharset: utf-8\n" "X-Poedit-Basepath: trunk\\\n" @@ -24,8 +24,12 @@ msgid "Dumps detailed information for PS2 executables (ELFs)." msgstr "Extrai informação detalhada de executáveis (ELFs) de PS2." #: pcsx2/SourceLog.cpp:101 -msgid "Logs manual protection, split blocks, and other things that might impact performance." -msgstr "Registra logs de proteção manual, blocos separados e outras coisas que podem impactar na performance." +msgid "" +"Logs manual protection, split blocks, and other things that might impact " +"performance." +msgstr "" +"Registra logs de proteção manual, blocos separados e outras coisas que podem " +"impactar na performance." #: pcsx2/SourceLog.cpp:106 msgid "Shows the game developer's logging text (EE processor)" @@ -45,12 +49,14 @@ msgstr "Atividade de SYSCALL e DECI2" #: pcsx2/SourceLog.cpp:151 msgid "Direct memory accesses to unknown or unmapped EE memory space." -msgstr "Acesso direto a memória para espaço de memória EE desconhecido ou não mapeado." +msgstr "" +"Acesso direto a memória para espaço de memória EE desconhecido ou não " +"mapeado." -#: pcsx2/SourceLog.cpp:157 -#: pcsx2/SourceLog.cpp:270 +#: pcsx2/SourceLog.cpp:157 pcsx2/SourceLog.cpp:276 msgid "Disasm of executing core instructions (excluding COPs and CACHE)." -msgstr "Desmontagem das instruções do núcleo de execução (excluindo COPs e CACHE)." +msgstr "" +"Desmontagem das instruções do núcleo de execução (excluindo COPs e CACHE)." #: pcsx2/SourceLog.cpp:163 msgid "Disasm of COP0 instructions (MMU, cpu and dma status, etc)." @@ -69,163 +75,198 @@ msgid "Execution of EE cache instructions." msgstr "Execução das instruções de cache do EE." #: pcsx2/SourceLog.cpp:187 -msgid "All known hardware register accesses (very slow!); not including sub filter options below." -msgstr "Acessos a todos registradores de hardware (muito lento!); não inclusas opções de sub-filtros abaixo." +msgid "" +"All known hardware register accesses (very slow!); not including sub filter " +"options below." +msgstr "" +"Acessos a todos registradores de hardware (muito lento!); não inclusas " +"opções de sub-filtros abaixo." -#: pcsx2/SourceLog.cpp:193 -#: pcsx2/SourceLog.cpp:288 +#: pcsx2/SourceLog.cpp:193 pcsx2/SourceLog.cpp:294 msgid "Logs only unknown, unmapped, or unimplemented register accesses." -msgstr "Registra somente acessos não conhecidos, não mapeados ou não implementados de registradores." +msgstr "" +"Registra somente acessos não conhecidos, não mapeados ou não implementados " +"de registradores." -#: pcsx2/SourceLog.cpp:199 -#: pcsx2/SourceLog.cpp:294 +#: pcsx2/SourceLog.cpp:199 pcsx2/SourceLog.cpp:300 msgid "Logs only DMA-related registers." msgstr "Registra somente registradores relacionados a DMA." #: pcsx2/SourceLog.cpp:205 msgid "IPU activity: hardware registers, decoding operations, DMA status, etc." -msgstr "Atividade IPU: registradores de hardware, operações de decodificação, status de DMA, etc." +msgstr "" +"Atividade IPU: registradores de hardware, operações de decodificação, status " +"de DMA, etc." #: pcsx2/SourceLog.cpp:211 msgid "All GIFtag parse activity; path index, tag type, etc." -msgstr "Todas atividade de análise do GIFtag; índice de caminho, tipo de tag, etc." +msgstr "" +"Todas atividade de análise do GIFtag; índice de caminho, tipo de tag, etc." #: pcsx2/SourceLog.cpp:217 msgid "All VIFcode processing; command, tag style, interrupts." msgstr "Todo processamento de VIFcode; comando, estilo de tag, interrupções." #: pcsx2/SourceLog.cpp:223 +msgid "All processing involved in Path3 Masking" +msgstr "" + +#: pcsx2/SourceLog.cpp:229 msgid "Scratchpad's MFIFO activity." msgstr "Atividade MFIFO do Bloco de Rascunho." -#: pcsx2/SourceLog.cpp:229 -msgid "Actual data transfer logs, bus right arbitration, stalls, etc." -msgstr "Logs de transferência de dados real, arbitragem de direito de via, obstruções, etc." - #: pcsx2/SourceLog.cpp:235 -msgid "Tracks all EE counters events and some counter register activity." -msgstr "Rastreia todos eventos de contadores de EE e algumas atividades de registradores de contador." +msgid "Actual data transfer logs, bus right arbitration, stalls, etc." +msgstr "" +"Logs de transferência de dados real, arbitragem de direito de via, " +"obstruções, etc." #: pcsx2/SourceLog.cpp:241 +msgid "Tracks all EE counters events and some counter register activity." +msgstr "" +"Rastreia todos eventos de contadores de EE e algumas atividades de " +"registradores de contador." + +#: pcsx2/SourceLog.cpp:247 msgid "Dumps various VIF and VIFcode processing data." msgstr "Extrai vários dados de processamento de VIF e VIFcode." -#: pcsx2/SourceLog.cpp:247 +#: pcsx2/SourceLog.cpp:253 msgid "Dumps various GIF and GIFtag parsing data." msgstr "Extrai vários dados de análise de GIF e GIFtag." -#: pcsx2/SourceLog.cpp:258 +#: pcsx2/SourceLog.cpp:264 msgid "SYSCALL and IRX activity." msgstr "Atividade SYSCALL e IRX." -#: pcsx2/SourceLog.cpp:264 +#: pcsx2/SourceLog.cpp:270 msgid "Direct memory accesses to unknown or unmapped IOP memory space." -msgstr "Acessos direto a memória para espaço de memória IOP não conhecido ou não mapeado." +msgstr "" +"Acessos direto a memória para espaço de memória IOP não conhecido ou não " +"mapeado." -#: pcsx2/SourceLog.cpp:276 +#: pcsx2/SourceLog.cpp:282 msgid "Disasm of the IOP's GPU co-processor instructions." msgstr "Desmontagem das instruções do co-processador GPU do IOP." -#: pcsx2/SourceLog.cpp:282 -msgid "All known hardware register accesses, not including the sub-filters below." -msgstr "Acessos a todos registradores de hardware conhecidos, não incluso os sub-filtros abaixo." - -#: pcsx2/SourceLog.cpp:300 -msgid "Memorycard reads, writes, erases, terminators, and other processing." -msgstr "Leituras, escritas, exclusão, exterminadores e outros processamentos de cartão de memória." +#: pcsx2/SourceLog.cpp:288 +msgid "" +"All known hardware register accesses, not including the sub-filters below." +msgstr "" +"Acessos a todos registradores de hardware conhecidos, não incluso os sub-" +"filtros abaixo." #: pcsx2/SourceLog.cpp:306 +msgid "Memorycard reads, writes, erases, terminators, and other processing." +msgstr "" +"Leituras, escritas, exclusão, exterminadores e outros processamentos de " +"cartão de memória." + +#: pcsx2/SourceLog.cpp:312 msgid "Gamepad activity on the SIO." msgstr "Atividade do gamepad no SIO." -#: pcsx2/SourceLog.cpp:312 -msgid "Actual DMA event processing and data transfer logs." -msgstr "Registro de atuais processamento de eventos DMA e transferência de dados." - #: pcsx2/SourceLog.cpp:318 -msgid "Tracks all IOP counters events and some counter register activity." -msgstr "Rastreia todos eventos dos contadores IOP e algumas atividades dos registrador de contador." +msgid "Actual DMA event processing and data transfer logs." +msgstr "" +"Registro de atuais processamento de eventos DMA e transferência de dados." #: pcsx2/SourceLog.cpp:324 +msgid "Tracks all IOP counters events and some counter register activity." +msgstr "" +"Rastreia todos eventos dos contadores IOP e algumas atividades dos " +"registrador de contador." + +#: pcsx2/SourceLog.cpp:330 msgid "Detailed logging of CDVD hardware." msgstr "Registro log detalhado do hardware de CDVD." -#: pcsx2/gui/AppConfig.cpp:743 -msgid "Safest" -msgstr "Mais seguro" +#~ msgid "Safest" +#~ msgstr "Mais seguro" -#: pcsx2/gui/AppConfig.cpp:744 -msgid "Safe (faster)" -msgstr "Seguro (mais rápido)" +#~ msgid "Safe (faster)" +#~ msgstr "Seguro (mais rápido)" -#: pcsx2/gui/AppConfig.cpp:745 -msgid "Balanced" -msgstr "Balanceado" +#~ msgid "Balanced" +#~ msgstr "Balanceado" -#: pcsx2/gui/AppConfig.cpp:746 -msgid "Aggressive" -msgstr "Agressivo" +#~ msgid "Aggressive" +#~ msgstr "Agressivo" -#: pcsx2/gui/AppConfig.cpp:747 -msgid "Aggressive plus" -msgstr "Agressivo plus" +#~ msgid "Aggressive plus" +#~ msgstr "Agressivo plus" -#: pcsx2/gui/AppConfig.cpp:748 -msgid "Mostly Harmful" -msgstr "Principalmente prejudicial" +#~ msgid "Mostly Harmful" +#~ msgstr "Principalmente prejudicial" -#: pcsx2/gui/ConsoleLogger.cpp:412 -msgid "Fits a lot of log in a microcosmically small area." -msgstr "Armazena um muito conteúdo de log em uma área microscopicamente pequena." +#~ msgid "Fits a lot of log in a microcosmically small area." +#~ msgstr "" +#~ "Armazena um muito conteúdo de log em uma área microscopicamente pequena." -#: pcsx2/gui/ConsoleLogger.cpp:414 -msgid "It's what I use (the programmer guy)." -msgstr "É o que eu uso (o programador)." +#~ msgid "It's what I use (the programmer guy)." +#~ msgstr "É o que eu uso (o programador)." -#: pcsx2/gui/ConsoleLogger.cpp:416 -msgid "Its nice and readable." -msgstr "É bom e legível." +#~ msgid "Its nice and readable." +#~ msgstr "É bom e legível." -#: pcsx2/gui/ConsoleLogger.cpp:418 -msgid "In case you have a really high res display." -msgstr "Para o caso de você ter um monitor de realmente alta resolução." +#~ msgid "In case you have a really high res display." +#~ msgstr "Para o caso de você ter um monitor de realmente alta resolução." -#: pcsx2/gui/ConsoleLogger.cpp:422 -msgid "Default soft-tone color scheme." -msgstr "Esquema padrão de cores em tons suaves." +#~ msgid "Default soft-tone color scheme." +#~ msgstr "Esquema padrão de cores em tons suaves." -#: pcsx2/gui/ConsoleLogger.cpp:423 -msgid "Classic black color scheme for people who enjoy having text seared into their optic nerves." -msgstr "Clássico esquema de cor preta para pessoas que gostam de ter texto cauterizado nos seus nervos ópticos." +#~ msgid "" +#~ "Classic black color scheme for people who enjoy having text seared into " +#~ "their optic nerves." +#~ msgstr "" +#~ "Clássico esquema de cor preta para pessoas que gostam de ter texto " +#~ "cauterizado nos seus nervos ópticos." -#: pcsx2/gui/ConsoleLogger.cpp:427 -msgid "When checked the log window will be visible over other foreground windows." -msgstr "Quando marcado, a janela de registro estará visível sobre outras janelas de primeiro plano." +#~ msgid "" +#~ "When checked the log window will be visible over other foreground windows." +#~ msgstr "" +#~ "Quando marcado, a janela de registro estará visível sobre outras janelas " +#~ "de primeiro plano." -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:164 -msgid "Always use this option if you want the safest and surest memory card behavior." -msgstr "Sempre use essa opção caso você queira o mais seguro e certo dos comportamentos de cartão de memória." +#~ msgid "" +#~ "Always use this option if you want the safest and surest memory card " +#~ "behavior." +#~ msgstr "" +#~ "Sempre use essa opção caso você queira o mais seguro e certo dos " +#~ "comportamentos de cartão de memória." -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:168 -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:172 -msgid "16 and 32 MB cards have roughly the same compatibility factor." -msgstr "Cartões de 16 e 32 MB têm aproximadamente o mesmo fator de compatibilidade." +#~ msgid "16 and 32 MB cards have roughly the same compatibility factor." +#~ msgstr "" +#~ "Cartões de 16 e 32 MB têm aproximadamente o mesmo fator de " +#~ "compatibilidade." -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:176 -msgid "Use at your own risk. Erratic memory card behavior is possible (though unlikely)." -msgstr "Use por sua conta e risco. É possível que ocorra algum comportamento irregular do cartão de memória (apesar de ser improvável)." +#~ msgid "" +#~ "Use at your own risk. Erratic memory card behavior is possible (though " +#~ "unlikely)." +#~ msgstr "" +#~ "Use por sua conta e risco. É possível que ocorra algum comportamento " +#~ "irregular do cartão de memória (apesar de ser improvável)." -#: pcsx2/gui/Panels/VideoPanel.cpp:163 -msgid "Error while parsing either NTSC or PAL framerate settings. Settings must be valid floating point numerics." -msgstr "Erro enquanto analisava as configurações de taxas de Frame de ou NTSC ou PAL. As configurações devem ser pontos flutuantes númericos válidos." +#~ msgid "" +#~ "Error while parsing either NTSC or PAL framerate settings. Settings must " +#~ "be valid floating point numerics." +#~ msgstr "" +#~ "Erro enquanto analisava as configurações de taxas de Frame de ou NTSC ou " +#~ "PAL. As configurações devem ser pontos flutuantes númericos válidos." -#: pcsx2/gui/Panels/VideoPanel.cpp:311 -msgid "For troubleshooting potential bugs in the MTGS only, as it is potentially very slow." -msgstr "Para solucionar problemas de bugs em potencial no MTGS somente, uma vez que esse é potencialmente muito lento." +#~ msgid "" +#~ "For troubleshooting potential bugs in the MTGS only, as it is potentially " +#~ "very slow." +#~ msgstr "" +#~ "Para solucionar problemas de bugs em potencial no MTGS somente, uma vez " +#~ "que esse é potencialmente muito lento." -#: pcsx2/gui/Panels/VideoPanel.cpp:315 -msgid "Completely disables all GS plugin activity; ideal for benchmarking EEcore components." -msgstr "Desabilita completamente toda atividade do plug-in de GS; ideal para avaliar a performance dos componentes centrais do EE." +#~ msgid "" +#~ "Completely disables all GS plugin activity; ideal for benchmarking EEcore " +#~ "components." +#~ msgstr "" +#~ "Desabilita completamente toda atividade do plug-in de GS; ideal para " +#~ "avaliar a performance dos componentes centrais do EE." #~ msgid "" #~ "The MTGS thread has become unresponsive while waiting for the GS plugin " diff --git a/locales/pt_BR/pcsx2_Iconized.po b/locales/pt_BR/pcsx2_Iconized.po index c23216f750..66cd76ba08 100644 --- a/locales/pt_BR/pcsx2_Iconized.po +++ b/locales/pt_BR/pcsx2_Iconized.po @@ -1,15 +1,15 @@ msgid "" msgstr "" "Project-Id-Version: PCSX2 0.9.7\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-17 23:26-0300\n" +"Report-Msgid-Bugs-To: http://code.google.com/p/pcsx2/\n" +"POT-Creation-Date: 2011-02-25 18:54+0100\n" "PO-Revision-Date: 2011-01-17 23:26-0300\n" "Last-Translator: Rafael \n" "Language-Team: \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Poedit-KeywordsList: pxE;pxExpandMsg\n" "X-Poedit-SourceCharset: utf-8\n" "X-Poedit-Basepath: trunk\n" @@ -20,37 +20,64 @@ msgstr "" "X-Poedit-SearchPath-0: pcsx2\n" "X-Poedit-SearchPath-1: common\n" -#: pcsx2/System.cpp:114 -msgid "!Notice:Recompiler:VirtualMemoryAlloc" -msgstr "Esse recompilador não conseguiu reservar memória contígua necessária para os caches internos. Esse erro pode ter sido causado por baixo recurso de memória virtual, como um arquivo swap pequeno ou desabilitado, ou por outro programa que está ocupando muita memória. Você pode também tentar reduzir os tamanhos padrões de cache para todos recompiladores do PCSX2, encontrado nas Configurações do Host." - -#: pcsx2/System.cpp:346 -msgid "!Notice:EmuCore::MemoryForVM" -msgstr "PCSX2 não conseguiu alocar memória necessária para a máquina virtual do PS2. Finalize algumas tarefas que estejam utilizando muita memória e tente novamente." - -#: pcsx2/vtlb.cpp:588 -msgid "!Notice:HostVmReserve" -msgstr "Seu sistema está com poucos recursos virtuais para rodar PCSX2. Isso pode estar sendo causado por ter um arquivo swap pequeno ou desabilitado, ou por haver outros programas utilizando muito dos recursos." +#: common/src/Utilities/Exceptions.cpp:254 +msgid "!Notice:VirtualMemoryMap" +msgstr "" +"Não há memória virtual disponível suficiente, ou mapeamentos de memória " +"virtual necessários já foram reservados para outros processos, serviços ou " +"DLLs." #: pcsx2/CDVD/CDVD.cpp:385 msgid "!Notice:PsxDisc" -msgstr "Discos de jogos de Playstation não têm suporte no PCSX2. Se você quiser emular jogos de PSX, então você terá que fazer download de um emulador especificamente para PSX, como ePSXe ou PCSX." +msgstr "" +"Discos de jogos de Playstation não têm suporte no PCSX2. Se você quiser " +"emular jogos de PSX, então você terá que fazer download de um emulador " +"especificamente para PSX, como ePSXe ou PCSX." + +#: pcsx2/System.cpp:114 +msgid "!Notice:Recompiler:VirtualMemoryAlloc" +msgstr "" +"Esse recompilador não conseguiu reservar memória contígua necessária para os " +"caches internos. Esse erro pode ter sido causado por baixo recurso de " +"memória virtual, como um arquivo swap pequeno ou desabilitado, ou por outro " +"programa que está ocupando muita memória. Você pode também tentar reduzir os " +"tamanhos padrões de cache para todos recompiladores do PCSX2, encontrado nas " +"Configurações do Host." + +#: pcsx2/System.cpp:348 +msgid "!Notice:EmuCore::MemoryForVM" +msgstr "" +"PCSX2 não conseguiu alocar memória necessária para a máquina virtual do PS2. " +"Finalize algumas tarefas que estejam utilizando muita memória e tente " +"novamente." #: pcsx2/gui/AppInit.cpp:43 msgid "!Notice:Startup:NoSSE2" -msgstr "Aviso: Seu computador não suporta SSE2, o qual é requerido por muitos plug-ins e recompiladores do PCSX2. Suas opções serão limitadas e a emulação será *bem* lenta." +msgstr "" +"Aviso: Seu computador não suporta SSE2, o qual é requerido por muitos plug-" +"ins e recompiladores do PCSX2. Suas opções serão limitadas e a emulação será " +"*bem* lenta." #: pcsx2/gui/AppInit.cpp:162 msgid "!Notice:RecompilerInit:Header" -msgstr "Aviso: Alguns recompiladores de PS2 configurados falharam em inicializar e foram desativados:" +msgstr "" +"Aviso: Alguns recompiladores de PS2 configurados falharam em inicializar e " +"foram desativados:" #: pcsx2/gui/AppInit.cpp:211 msgid "!Notice:RecompilerInit:Footer" -msgstr "Nota: Recompiladores não são necessários para que o PCSX2 rode, porém eles normalmente melhoram substancialmente a velocidade de emulação. Talvez você tenha que ativar novamente os recompiladores listados acima, se você resolver os erros." +msgstr "" +"Nota: Recompiladores não são necessários para que o PCSX2 rode, porém eles " +"normalmente melhoram substancialmente a velocidade de emulação. Talvez você " +"tenha que ativar novamente os recompiladores listados acima, se você " +"resolver os erros." #: pcsx2/gui/AppMain.cpp:476 msgid "!Notice:BiosDumpRequired" -msgstr "PCSX2 requer uma BIOS de PS2 para poder funcionar. Por razões legais, você *deve* obter uma BIOS de uma unidade PS2 que você possua (pegar emprestado não conta). Favor consultar os FAQs e os Guias para mais instruções." +msgstr "" +"PCSX2 requer uma BIOS de PS2 para poder funcionar. Por razões legais, você " +"*deve* obter uma BIOS de uma unidade PS2 que você possua (pegar emprestado " +"não conta). Favor consultar os FAQs e os Guias para mais instruções." #: pcsx2/gui/AppMain.cpp:559 msgid "!Notice Error:Thread Deadlock Actions" @@ -61,34 +88,27 @@ msgstr "" #: pcsx2/gui/AppUserMode.cpp:59 msgid "!Error:PortableModeRights" -msgstr "Por favor certifique-se que essas pastas sejam criadas e que sua conta de usuário possui permissões de escrita a elas -- ou rode novamente o PCSX2 com permissões elevadas (administrador), o que deveria permitir ao PCSX2 a habilidade para criar ele mesmo as pastas necessárias. Se você não tem permissões elevadas nesse computador, então você vai precisar alternar para o modo de Documentos do Usuário (clique no botão abaixo)" - -#: pcsx2/gui/IsoDropTarget.cpp:28 -msgid "!Notice:ConfirmSysReset" -msgstr "Essa ação vai redefinir o estado da máquina virtual existente de PS2; todo progresso atual será perdido. Você tem certeza?" - -#: pcsx2/gui/MainMenuClicks.cpp:115 -msgid "!Notice:DeleteSettings" msgstr "" -"Esse comando apaga as configurações de %s e permite que você rode novamente o Assistente de Primeiras Configurações. Você precisará reiniciar %s manualmente após essa operação.\n" -"\n" -"AVISO!! Clique OK para excluir *TODAS* configurações do %s e forçar finalização do aplicativo, perdendo todo progresso em emulação. Você tem certeza absoluta?\n" -"\n" -"(nota: configurações dos plug-ins não serão afetadas)" - -#: pcsx2/gui/MemoryCardFile.cpp:77 -msgid "!Notice:Mcd:HasBeenDisabled" -msgstr "" -"O cartão de memória no slot %d foi desabilitado automaticamente. Você pode consertar o problema\n" -"e ativar novamente o cartão de memória a qualquer momento usando Config:Memory Cards no menu principal." +"Por favor certifique-se que essas pastas sejam criadas e que sua conta de " +"usuário possui permissões de escrita a elas -- ou rode novamente o PCSX2 com " +"permissões elevadas (administrador), o que deveria permitir ao PCSX2 a " +"habilidade para criar ele mesmo as pastas necessárias. Se você não tem " +"permissões elevadas nesse computador, então você vai precisar alternar para " +"o modo de Documentos do Usuário (clique no botão abaixo)" #: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:54 msgid "!Panel:Folders:Settings" -msgstr "Você pode opcionalmente especificar um local para suas configurações de PCSX2 aqui. Se o local contiver configurações existentes de PCSX2, será dado a você a opção de importar ou reescrevê-las." +msgstr "" +"Você pode opcionalmente especificar um local para suas configurações de " +"PCSX2 aqui. Se o local contiver configurações existentes de PCSX2, será dado " +"a você a opção de importar ou reescrevê-las." #: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:94 msgid "!Wizard:Welcome" -msgstr "Esse assistente vai guiá-lo nas configurações de plugins, cartões de memórias e BIOS. É recomendado se for a sua primeira instalando %s que veja o readme e o guia de configuração." +msgstr "" +"Esse assistente vai guiá-lo nas configurações de plugins, cartões de " +"memórias e BIOS. É recomendado se for a sua primeira instalando %s que veja " +"o readme e o guia de configuração." #: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:140 msgid "!Wizard:Bios:Tutorial" @@ -100,84 +120,176 @@ msgstr "" #: pcsx2/gui/Dialogs/ImportSettingsDialog.cpp:31 msgid "!Notice:ImportExistingSettings" msgstr "" -"Foram encontradas configurações existentes de %s no diretório de configurações definido. Você gostaria de importar essas configurações ou sobrescrevê-las com os valores padrões do %s?\n" +"Foram encontradas configurações existentes de %s no diretório de " +"configurações definido. Você gostaria de importar essas configurações ou " +"sobrescrevê-las com os valores padrões do %s?\n" "\n" -"(ou pressione Cancelar para selecionar um diretório de configurações diferente)" +"(ou pressione Cancelar para selecionar um diretório de configurações " +"diferente)" #: pcsx2/gui/Dialogs/McdConfigDialog.cpp:30 msgid "!Panel:Mcd:NtfsCompress" -msgstr "Compressão NTFS é incorporada, rápida, e completamente confiável; e normalmente faz compressão de cartões de memória muito bem (essa opção é altamente recomendada)." +msgstr "" +"Compressão NTFS é incorporada, rápida, e completamente confiável; e " +"normalmente faz compressão de cartões de memória muito bem (essa opção é " +"altamente recomendada)." #: pcsx2/gui/Dialogs/McdConfigDialog.cpp:41 msgid "!Panel:Mcd:EnableEjection" -msgstr "Evita corrupção de cartões de memória forçando jogos a reindexar o conteúdo dos cartões após carregado de savestates. Pode não ser compatível com todos jogos (Guitar Hero)." +msgstr "" +"Evita corrupção de cartões de memória forçando jogos a reindexar o conteúdo " +"dos cartões após carregado de savestates. Pode não ser compatível com todos " +"jogos (Guitar Hero)." #: pcsx2/gui/Dialogs/StuckThreadDialog.cpp:33 msgid "!Panel:StuckThread:Heading" -msgstr "A thread \"%s\" não está respondendo. Pode estar num deadlock, ou pode estar rodando *realmente* devagar." +msgstr "" +"A thread \"%s\" não está respondendo. Pode estar num deadlock, ou pode estar " +"rodando *realmente* devagar." -#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:137 +#: pcsx2/gui/IsoDropTarget.cpp:28 +msgid "!Notice:ConfirmSysReset" +msgstr "" +"Essa ação vai redefinir o estado da máquina virtual existente de PS2; todo " +"progresso atual será perdido. Você tem certeza?" + +#: pcsx2/gui/MainMenuClicks.cpp:106 +msgid "!Notice:DeleteSettings" +msgstr "" +"Esse comando apaga as configurações de %s e permite que você rode novamente " +"o Assistente de Primeiras Configurações. Você precisará reiniciar %s " +"manualmente após essa operação.\n" +"\n" +"AVISO!! Clique OK para excluir *TODAS* configurações do %s e forçar " +"finalização do aplicativo, perdendo todo progresso em emulação. Você tem " +"certeza absoluta?\n" +"\n" +"(nota: configurações dos plug-ins não serão afetadas)" + +#: pcsx2/gui/MemoryCardFile.cpp:77 +msgid "!Notice:Mcd:HasBeenDisabled" +msgstr "" +"O cartão de memória no slot %d foi desabilitado automaticamente. Você pode " +"consertar o problema\n" +"e ativar novamente o cartão de memória a qualquer momento usando Config:" +"Memory Cards no menu principal." + +#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:138 msgid "!Notice:BIOS:InvalidSelection" -msgstr "Favor selecionar uma BIOS válida. Se você não consegue fazer uma seleção válida, então pressione cancelar para fechar o painel de Configuração" +msgstr "" +"Favor selecionar uma BIOS válida. Se você não consegue fazer uma seleção " +"válida, então pressione cancelar para fechar o painel de Configuração" -#: pcsx2/gui/Panels/DirPickerPanel.cpp:63 +#: pcsx2/gui/Panels/CpuPanel.cpp:111 +#, fuzzy +msgid "!Panel:EE/IOP:Heading" +msgstr "" +"Nota: Por causa do design do PS2, frame skipping preciso não é possível. " +"Ativar essa opção pode causar sérios erros gráficos em alguns jogos." + +#: pcsx2/gui/Panels/CpuPanel.cpp:178 +#, fuzzy +msgid "!Panel:VUs:Heading" +msgstr "" +"Nota: Por causa do design do PS2, frame skipping preciso não é possível. " +"Ativar essa opção pode causar sérios erros gráficos em alguns jogos." + +#: pcsx2/gui/Panels/DirPickerPanel.cpp:69 msgid "!Notice:DirPicker:CreatePath" msgstr "O caminho/diretório especificado não existe. Você gostaria de criá-lo?" #: pcsx2/gui/Panels/GameFixesPanel.cpp:96 msgid "!Panel:Gamefixes:Compat Warning" -msgstr "Gamefixes podem consertar emulação incorreta em alguns jogos. Porém podem causar problemas de compatibilidade ou performance em outros games. Você vai precisar desativar manualmente os fixes." +msgstr "" +"Gamefixes podem consertar emulação incorreta em alguns jogos. Porém podem " +"causar problemas de compatibilidade ou performance em outros games. Você vai " +"precisar desativar manualmente os fixes." -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:365 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:368 msgid "!Notice:Mcd:Overwrite" -msgstr "Isso vai copiar o conteúdo do cartão de memória no conector %u para o cartão de memória no conector %u. Todos dados no conector destinatário serão perdidos. Você tem certeza?" +msgstr "" +"Isso vai copiar o conteúdo do cartão de memória no conector %u para o cartão " +"de memória no conector %u. Todos dados no conector destinatário serão " +"perdidos. Você tem certeza?" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:379 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:384 msgid "!Notice:Mcd:Copy Failed" -msgstr "Erro! Não foi possível copiar o cartão de memória para o conector %u. O arquivo destinatário está em uso." +msgstr "" +"Erro! Não foi possível copiar o cartão de memória para o conector %u. O " +"arquivo destinatário está em uso." -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:585 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:596 msgid "!Notice:Mcd:Delete" -msgstr "Você está para excluir o cartão de memória formatado no conector %u. Todos dados nesse cartão serão perdidos! Você tem absoluta e bem positiva certeza?" +msgstr "" +"Você está para excluir o cartão de memória formatado no conector %u. Todos " +"dados nesse cartão serão perdidos! Você tem absoluta e bem positiva certeza?" #: pcsx2/gui/Panels/MiscPanelStuff.cpp:35 msgid "!Panel:Usermode:Explained" -msgstr "Favor selecionar o seu local preferido para os documentos de nível de usuário do PCSX2 aqui (inclui cartões de memória, screenshots, configurações e savestates)" +msgstr "" +"Favor selecionar o seu local preferido para os documentos de nível de " +"usuário do PCSX2 aqui (inclui cartões de memória, screenshots, configurações " +"e savestates)" #: pcsx2/gui/Panels/MiscPanelStuff.cpp:41 msgid "!Panel:Usermode:Warning" -msgstr "Você pode alterar o local padrão preferido para documentos de nível de usuário do PCSX2 aqui (inclui cartões de memória, screenshots, configurações e savestates). Essa opção somente afeta Caminhos Padrões, os quais são configurados para usar o valor padrão de instalação." +msgstr "" +"Você pode alterar o local padrão preferido para documentos de nível de " +"usuário do PCSX2 aqui (inclui cartões de memória, screenshots, configurações " +"e savestates). Essa opção somente afeta Caminhos Padrões, os quais são " +"configurados para usar o valor padrão de instalação." #: pcsx2/gui/Panels/PluginSelectorPanel.cpp:242 msgid "!Notice:PluginSelector:ConfirmShutdown" msgstr "" -"Aviso! Alteração nos plug-ins requer completa finalização e reinício da máquina virtual de PS2. PCSX2 vai tentar salvar e restaurar o estado, mas se os plug-ins agora selecionados forem incompatíveis, a recuperação pode falhar e o progresso atual será perdido.\n" +"Aviso! Alteração nos plug-ins requer completa finalização e reinício da " +"máquina virtual de PS2. PCSX2 vai tentar salvar e restaurar o estado, mas se " +"os plug-ins agora selecionados forem incompatíveis, a recuperação pode " +"falhar e o progresso atual será perdido.\n" "\n" "Você tem certeza que deseja aplicar as alterações agora?" -#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:456 +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:457 msgid "!Notice:PluginSelector:ApplyFailed" -msgstr "Todos plug-ins devem ter seleção válida para %s rodar. Se você não conseguir uma seleção válida por causa de plug-ins faltando ou uma instalação incompleta de %s, então pressione Cancelar para fechar o painel de Configurações." +msgstr "" +"Todos plug-ins devem ter seleção válida para %s rodar. Se você não conseguir " +"uma seleção válida por causa de plug-ins faltando ou uma instalação " +"incompleta de %s, então pressione Cancelar para fechar o painel de " +"Configurações." #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:97 msgid "!Panel:Speedhacks:Overview" -msgstr "Speedhacks normalmente melhora a velocidade de emulação, mas pode causar glitches, audio quebrado, e falsa leitura do FPS. Quando tiver problemas de emulação, desabilite esse painel primeiro." +msgstr "" +"Speedhacks normalmente melhora a velocidade de emulação, mas pode causar " +"glitches, audio quebrado, e falsa leitura do FPS. Quando tiver problemas de " +"emulação, desabilite esse painel primeiro." -#: pcsx2/gui/Panels/VideoPanel.cpp:106 -msgid "!Panel:Framelimiter:Heading" -msgstr "O limitador de frames interno regula a velocidade da máquina virtual. Os valores de ajuste estão em percentagens da taxa de frames padrão de cada região, o que pode ser configurado abaixo." - -#: pcsx2/gui/Panels/VideoPanel.cpp:241 +#: pcsx2/gui/Panels/VideoPanel.cpp:223 msgid "!Panel:Frameskip:Heading" -msgstr "Nota: Por causa do design do PS2, frame skipping preciso não é possível. Ativar essa opção pode causar sérios erros gráficos em alguns jogos." +msgstr "" +"Nota: Por causa do design do PS2, frame skipping preciso não é possível. " +"Ativar essa opção pode causar sérios erros gráficos em alguns jogos." + +#: pcsx2/vtlb.cpp:698 +msgid "!Notice:HostVmReserve" +msgstr "" +"Seu sistema está com poucos recursos virtuais para rodar PCSX2. Isso pode " +"estar sendo causado por ter um arquivo swap pequeno ou desabilitado, ou por " +"haver outros programas utilizando muito dos recursos." #: pcsx2/x86/sVU_zerorec.cpp:362 msgid "!Notice:superVU:VirtualMemoryAlloc" -msgstr "Sem memória (mais ou menos): o recompilador SuperVU não conseguiu reservar a faixa de memória requerida, e não estará disponível para ser usado. Esse erro não é crítico, uma vez que o recompilador sVU está obsoleto, e, ao invés dele, você deveria usar o microVU. :)" +msgstr "" +"Sem memória (mais ou menos): o recompilador SuperVU não conseguiu reservar a " +"faixa de memória requerida, e não estará disponível para ser usado. Esse " +"erro não é crítico, uma vez que o recompilador sVU está obsoleto, e, ao " +"invés dele, você deveria usar o microVU. :)" -#: common/src/Utilities/Exceptions.cpp:254 -msgid "!Notice:VirtualMemoryMap" -msgstr "Não há memória virtual disponível suficiente, ou mapeamentos de memória virtual necessários já foram reservados para outros processos, serviços ou DLLs." +#~ msgid "!Panel:Framelimiter:Heading" +#~ msgstr "" +#~ "O limitador de frames interno regula a velocidade da máquina virtual. Os " +#~ "valores de ajuste estão em percentagens da taxa de frames padrão de cada " +#~ "região, o que pode ser configurado abaixo." #~ msgid "!Panel:Presets:Name:1" #~ msgstr "Mais Seguro" diff --git a/locales/pt_BR/pcsx2_Main.po b/locales/pt_BR/pcsx2_Main.po index d3159d04cc..63be71cc6b 100644 --- a/locales/pt_BR/pcsx2_Main.po +++ b/locales/pt_BR/pcsx2_Main.po @@ -1,15 +1,15 @@ msgid "" msgstr "" "Project-Id-Version: PCSX2 0.9.7\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-17 23:26-0300\n" +"Report-Msgid-Bugs-To: http://code.google.com/p/pcsx2/\n" +"POT-Creation-Date: 2011-02-25 18:54+0100\n" "PO-Revision-Date: 2011-01-17 23:33-0300\n" "Last-Translator: Rafael \n" "Language-Team: \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Poedit-KeywordsList: _;pxL\n" "X-Poedit-SourceCharset: utf-8\n" "X-Poedit-Basepath: trunk\\\n" @@ -19,13 +19,28 @@ msgstr "" "X-Poedit-SearchPath-0: common\n" "X-Poedit-SearchPath-1: pcsx2\n" +#: common/include/Utilities/Exceptions.h:226 +msgid "Parse error" +msgstr "Erro de Análise" + +#: common/include/Utilities/Exceptions.h:250 +msgid "Your machine's hardware is incapable of running PCSX2. Sorry dood." +msgstr "" +"O hardware da sua máquina não é capaz de rodar PCSX2. Sinto muito, cara." + #: common/src/Utilities/Exceptions.cpp:219 msgid "Oh noes! Out of memory!" msgstr "Oh não! Sem memória!" #: common/src/Utilities/Exceptions.cpp:234 -msgid "Virtual memory mapping failure! Your system may have conflicting device drivers, services, or may simply have insufficient memory or resources to meet PCSX2's lofty needs." -msgstr "Falha de mapeamento de memória virtual! Seu sistema pode ter conflito com drivers de dispositivos, serviços ou simplesmente tem memória ou recursos insuficientes para atender as majestosas necessidades do PCSX2." +msgid "" +"Virtual memory mapping failure! Your system may have conflicting device " +"drivers, services, or may simply have insufficient memory or resources to " +"meet PCSX2's lofty needs." +msgstr "" +"Falha de mapeamento de memória virtual! Seu sistema pode ter conflito com " +"drivers de dispositivos, serviços ou simplesmente tem memória ou recursos " +"insuficientes para atender as majestosas necessidades do PCSX2." #: common/src/Utilities/Exceptions.cpp:309 msgid "Path: " @@ -44,12 +59,20 @@ msgid "File not found." msgstr "Arquivo não encontrado." #: common/src/Utilities/Exceptions.cpp:373 -msgid "Permission denied while trying to open file, likely due to insufficient user account rights." -msgstr "Permissão negada enquanto tentava abrir arquivo, provavelmente por permissões insuficientes da conta do usuário." +msgid "" +"Permission denied while trying to open file, likely due to insufficient user " +"account rights." +msgstr "" +"Permissão negada enquanto tentava abrir arquivo, provavelmente por " +"permissões insuficientes da conta do usuário." #: common/src/Utilities/Exceptions.cpp:393 -msgid "Unexpected end of file or stream encountered. File is probably truncated or corrupted." -msgstr "Encontrado final de arquivo ou fluxo não esperado. O arquivo provavelmente truncado ou corrupto." +msgid "" +"Unexpected end of file or stream encountered. File is probably truncated or " +"corrupted." +msgstr "" +"Encontrado final de arquivo ou fluxo não esperado. O arquivo provavelmente " +"truncado ou corrupto." #: common/src/Utilities/ThreadingDialogs.cpp:30 msgid "Waiting for tasks..." @@ -59,27 +82,49 @@ msgstr "Esperando por tarefas..." msgid "Waiting for task..." msgstr "Esperando por tarefa..." +#: pcsx2/CDVD/IsoFileFormats.cpp:416 +msgid "ISO mounting failed: PCSX2 is unable to identify the ISO image type." +msgstr "" +"Falha em montar ISO: PCSX2 não conseguiu indentificar o tipo de imagem ISO." + #: pcsx2/Elfheader.cpp:266 msgid "Cannot load ELF binary image. The file may be corrupt or incomplete." -msgstr "Não foi possível carregar a imagem binária ELF. O arquivo pode estar corrupto ou incompleto." +msgstr "" +"Não foi possível carregar a imagem binária ELF. O arquivo pode estar " +"corrupto ou incompleto." #: pcsx2/Elfheader.cpp:268 -msgid "If loading from an ISO image, this error may be caused by an unsupported ISO image type or bug in PCSX2 ISO image support." -msgstr "Se carregando a partir de uma imagem ISO, esse erro pode ter sido causado por um tipo de imagem ISO não suportada ou um bug no suporte de imagem ISO do PCSX2." +msgid "" +"If loading from an ISO image, this error may be caused by an unsupported ISO " +"image type or bug in PCSX2 ISO image support." +msgstr "" +"Se carregando a partir de uma imagem ISO, esse erro pode ter sido causado " +"por um tipo de imagem ISO não suportada ou um bug no suporte de imagem ISO " +"do PCSX2." #: pcsx2/PluginManager.cpp:692 -msgid "The savestate cannot be loaded, as it appears to be corrupt or incomplete." -msgstr "O savestate não pôde ser carregado, pois parece estar corrupto ou incompleto." +msgid "" +"The savestate cannot be loaded, as it appears to be corrupt or incomplete." +msgstr "" +"O savestate não pôde ser carregado, pois parece estar corrupto ou incompleto." #: pcsx2/PluginManager.cpp:702 #, c-format -msgid "%s plugin failed to open. Your computer may have insufficient resources, or incompatible hardware/drivers." -msgstr "Plug-in %s falhou em carregar. Seu computador deve ter recursos insuficientes, ou hardware/drivers incompatíveis." +msgid "" +"%s plugin failed to open. Your computer may have insufficient resources, or " +"incompatible hardware/drivers." +msgstr "" +"Plug-in %s falhou em carregar. Seu computador deve ter recursos " +"insuficientes, ou hardware/drivers incompatíveis." #: pcsx2/PluginManager.cpp:709 #, c-format -msgid "%s plugin failed to initialize. Your system may have insufficient memory or resources needed." -msgstr "Plug-in %s falhou em inicializar. Seu sistema deve ter memória insuficiente ou recursos faltando." +msgid "" +"%s plugin failed to initialize. Your system may have insufficient memory or " +"resources needed." +msgstr "" +"Plug-in %s falhou em inicializar. Seu sistema deve ter memória insuficiente " +"ou recursos faltando." #: pcsx2/PluginManager.cpp:815 #, c-format @@ -89,25 +134,40 @@ msgstr "O arquivo do plug-in %s configurado não foi encontrado" #: pcsx2/PluginManager.cpp:819 #, c-format msgid "The configured %s plugin file is not a valid dynamic library" -msgstr "O arquivo do plug-in %s configurado não é uma biblioteca dinâmica válida" +msgstr "" +"O arquivo do plug-in %s configurado não é uma biblioteca dinâmica válida" #: pcsx2/PluginManager.cpp:837 #, c-format -msgid "The configured %s plugin is not a PCSX2 plugin, or is for an older unsupported version of PCSX2." -msgstr "O plug-in %s configurado não é um plug-in de PCSX2, ou é para uma versão antiga e não suportada do PCSX2." +msgid "" +"The configured %s plugin is not a PCSX2 plugin, or is for an older " +"unsupported version of PCSX2." +msgstr "" +"O plug-in %s configurado não é um plug-in de PCSX2, ou é para uma versão " +"antiga e não suportada do PCSX2." #: pcsx2/PluginManager.cpp:862 -msgid "The plugin reports that your hardware or software/drivers are not supported." -msgstr "O plug-in relata que o seu hardware o software/drivers não são suportados." +msgid "" +"The plugin reports that your hardware or software/drivers are not supported." +msgstr "" +"O plug-in relata que o seu hardware o software/drivers não são suportados." #: pcsx2/PluginManager.cpp:883 -msgid "Configured plugin is not a PCSX2 plugin, or is for an older unsupported version of PCSX2." -msgstr "Plug-in configurado não é um plugin de PCSX2, ou é para uma versão antiga e não suportada do PCSX2." +msgid "" +"Configured plugin is not a PCSX2 plugin, or is for an older unsupported " +"version of PCSX2." +msgstr "" +"Plug-in configurado não é um plugin de PCSX2, ou é para uma versão antiga e " +"não suportada do PCSX2." #: pcsx2/PluginManager.cpp:909 #, c-format -msgid "Configured %s plugin is not a valid PCSX2 plugin, or is for an older unsupported version of PCSX2." -msgstr "Plug-in %s configurado não é um plug-in válido de PCXSX2, ou é para uma versão antiga ou não suportada do PCSX2." +msgid "" +"Configured %s plugin is not a valid PCSX2 plugin, or is for an older " +"unsupported version of PCSX2." +msgstr "" +"Plug-in %s configurado não é um plug-in válido de PCXSX2, ou é para uma " +"versão antiga ou não suportada do PCSX2." #: pcsx2/PluginManager.cpp:1726 msgid "Unloaded Plugin" @@ -115,16 +175,22 @@ msgstr "Plug-in descarregado" #: pcsx2/SaveState.cpp:338 msgid "Cannot load savestate. It is of an unknown or unsupported version." -msgstr "Não foi possível carregar o savestate. Ele é de uma versão desconhecida ou não suportada." +msgstr "" +"Não foi possível carregar o savestate. Ele é de uma versão desconhecida ou " +"não suportada." -#: pcsx2/CDVD/IsoFileFormats.cpp:416 -msgid "ISO mounting failed: PCSX2 is unable to identify the ISO image type." -msgstr "Falha em montar ISO: PCSX2 não conseguiu indentificar o tipo de imagem ISO." +#: pcsx2/ZipTools/thread_gzip.cpp:82 +msgid "" +"The savestate was not properly saved. The temporary file was created " +"successfully but could not be moved to its final resting place." +msgstr "" +"O savestate não foi armazenado corretamente. O arquivo temporário foi criado " +"com sucesso, mas não pôde ser movido para seu destino de descanso." -#: pcsx2/gui/AppConfig.cpp:892 -#: pcsx2/gui/AppConfig.cpp:898 +#: pcsx2/gui/AppConfig.cpp:937 pcsx2/gui/AppConfig.cpp:943 msgid "Failed to overwrite existing settings file; permission was denied." -msgstr "Falha em sobrescrever arquivo de configurações existentes; permissão negada." +msgstr "" +"Falha em sobrescrever arquivo de configurações existentes; permissão negada." #: pcsx2/gui/AppCorePlugins.cpp:404 msgid "Loading PS2 system plugins..." @@ -135,8 +201,12 @@ msgid "PCSX2 - SSE2 Recommended" msgstr "PCSX2 - SSE2 recomendado" #: pcsx2/gui/AppInit.cpp:71 -msgid "SSE extensions are not available. PCSX2 requires a cpu that supports the SSE instruction set." -msgstr "Extensões SSE não disponíveis. PCSX2 requer um processador que suporte o conjunto de instruções SSE." +msgid "" +"SSE extensions are not available. PCSX2 requires a cpu that supports the " +"SSE instruction set." +msgstr "" +"Extensões SSE não disponíveis. PCSX2 requer um processador que suporte o " +"conjunto de instruções SSE." #: pcsx2/gui/AppInit.cpp:154 msgid "PCSX2 Recompiler Error(s)" @@ -146,8 +216,7 @@ msgstr "Erro(s) no Recompilador do PCSX2." msgid "All options are for the current session only and will not be saved.\n" msgstr "Todas opções são para a sessão atual somente e não serão salvas.\n" -#: pcsx2/gui/AppInit.cpp:237 -#: pcsx2/gui/AppMain.cpp:290 +#: pcsx2/gui/AppInit.cpp:237 pcsx2/gui/AppMain.cpp:290 msgid "IsoFile" msgstr "Arquivo ISO" @@ -177,7 +246,8 @@ msgstr "executa uma imagem ELF" #: pcsx2/gui/AppInit.cpp:245 msgid "boots an empty dvd tray; use to enter the PS2 system menu" -msgstr "carrega uma bandeja de DVD vazia; use para entrar no menu de sistema do PS2" +msgstr "" +"carrega uma bandeja de DVD vazia; use para entrar no menu de sistema do PS2" #: pcsx2/gui/AppInit.cpp:246 msgid "boots from the CDVD plugin (overrides IsoFile parameter)" @@ -189,7 +259,9 @@ msgstr "desativa todos os hacks de velocidade" #: pcsx2/gui/AppInit.cpp:249 msgid "use the specified comma or pipe-delimited list of gamefixes." -msgstr "use a lista, delimitada por vígula ou pipe, de correções de jogos especificada." +msgstr "" +"use a lista, delimitada por vígula ou pipe, de correções de jogos " +"especificada." #: pcsx2/gui/AppInit.cpp:250 msgid "disables fast booting" @@ -225,27 +297,30 @@ msgstr "Erro de substituição de plug-in - %s" #: pcsx2/gui/AppInit.cpp:310 #, c-format msgid "" -"%s Plugin Override Error! The following file does not exist or is not a valid %s plugin:\n" +"%s Plugin Override Error! The following file does not exist or is not a " +"valid %s plugin:\n" "\n" msgstr "" -"Erro de substituição de plug-in %s! O seguinte arquivo não existe ou não é um plug-in válido de %s :\n" +"Erro de substituição de plug-in %s! O seguinte arquivo não existe ou não é " +"um plug-in válido de %s :\n" "\n" #: pcsx2/gui/AppInit.cpp:317 #, c-format msgid "Press OK to use the default configured plugin, or Cancel to close %s." -msgstr "Pressione OK para usar o plug-in configurado padrão, ou Cancelar para fechar %s." - -#: pcsx2/gui/AppInit.cpp:495 -#: pcsx2/gui/AppInit.cpp:507 -#, c-format -msgid "Press OK to close %s." -msgstr "Pressione OK para fechar %s." +msgstr "" +"Pressione OK para usar o plug-in configurado padrão, ou Cancelar para fechar " +"%s." #: pcsx2/gui/AppInit.cpp:495 msgid "PCSX2 Error: Hardware Deficiency" msgstr "Erro no PCSX2: Deficiência de Hardware" +#: pcsx2/gui/AppInit.cpp:495 pcsx2/gui/AppInit.cpp:507 +#, c-format +msgid "Press OK to close %s." +msgstr "Pressione OK para fechar %s." + #: pcsx2/gui/AppInit.cpp:508 #, c-format msgid "%s Critical Error" @@ -276,8 +351,9 @@ msgid "&Next >" msgstr "&Próximo >" #: pcsx2/gui/AppInit.cpp:682 -msgid "&Back >" -msgstr "&Voltar >" +#, fuzzy +msgid "< &Back" +msgstr "&Voltar" #: pcsx2/gui/AppInit.cpp:683 msgid "&Back" @@ -287,19 +363,33 @@ msgstr "&Voltar" msgid "&Finish" msgstr "&Concluir" +#: pcsx2/gui/AppInit.cpp:685 +msgid "&Yes" +msgstr "" + #: pcsx2/gui/AppInit.cpp:686 +#, fuzzy +msgid "&No" +msgstr "Não" + +#: pcsx2/gui/AppInit.cpp:687 +#, fuzzy +msgid "Browse" +msgstr "Procurar..." + +#: pcsx2/gui/AppInit.cpp:689 msgid "&Save" msgstr "&Salvar" -#: pcsx2/gui/AppInit.cpp:687 +#: pcsx2/gui/AppInit.cpp:690 msgid "Save &As..." msgstr "&Salvar Como..." -#: pcsx2/gui/AppInit.cpp:688 +#: pcsx2/gui/AppInit.cpp:691 msgid "&Help" msgstr "&Ajuda" -#: pcsx2/gui/AppInit.cpp:689 +#: pcsx2/gui/AppInit.cpp:692 msgid "&Home" msgstr "&Página Inicial" @@ -313,10 +403,12 @@ msgstr "" "\n" "Pressione OK para ir para o Painel de Configuração de Plug-in." -#: pcsx2/gui/AppMain.cpp:131 -#: pcsx2/gui/AppMain.cpp:145 -msgid "Warning! System plugins have not been loaded. PCSX2 may be inoperable." -msgstr "Aviso! Plug-ins de sistema não foram carregados. PCSX2 pode não estar operacional." +#: pcsx2/gui/AppMain.cpp:131 pcsx2/gui/AppMain.cpp:145 +msgid "" +"Warning! System plugins have not been loaded. PCSX2 may be inoperable." +msgstr "" +"Aviso! Plug-ins de sistema não foram carregados. PCSX2 pode não estar " +"operacional." #: pcsx2/gui/AppMain.cpp:300 #, c-format @@ -343,14 +435,14 @@ msgstr "Terminar" msgid "Executing PS2 Virtual Machine..." msgstr "Executando Máquina Virtual de PS2..." -#: pcsx2/gui/AppRes.cpp:72 -msgid "Browse..." -msgstr "Procurar..." - #: pcsx2/gui/AppRes.cpp:72 msgid "Browse for an Iso that is not in your recent history." msgstr "Procurar por uma ISO que não está no seu histórico recente." +#: pcsx2/gui/AppRes.cpp:72 +msgid "Browse..." +msgstr "Procurar..." + #: pcsx2/gui/AppUserMode.cpp:101 msgid "The following folders exist, but are not writable:" msgstr "A seguinte pasta existe, mas não permite escrita:" @@ -365,13 +457,23 @@ msgid "Portable mode error - %s" msgstr "Erro de modo portátil - %s" #: pcsx2/gui/AppUserMode.cpp:159 -msgid "PCSX2 has been installed as a portable application but cannot run due to the following errors:" -msgstr "PCSX2 foi instalado como uma aplicação portátil, mas não pôde rodar por causa dos seguintes erros:" +msgid "" +"PCSX2 has been installed as a portable application but cannot run due to the " +"following errors:" +msgstr "" +"PCSX2 foi instalado como uma aplicação portátil, mas não pôde rodar por " +"causa dos seguintes erros:" #: pcsx2/gui/AppUserMode.cpp:167 msgid "Switch to User Documents Mode" msgstr "Alterar para Modo de Documentos de Usuário" +#: pcsx2/gui/ApplyState.h:55 +msgid "Cannot apply new settings, one of the settings is invalid." +msgstr "" +"Não foi possível aplicar novas configurações, uma das configurações é " +"inválida." + #: pcsx2/gui/ConsoleLogger.cpp:120 msgid "Save log question" msgstr "Pergunta sobre armazanento de log" @@ -380,7 +482,7 @@ msgstr "Pergunta sobre armazanento de log" msgid "Small" msgstr "Pequeno" -#: pcsx2/gui/ConsoleLogger.cpp:414 +#: pcsx2/gui/ConsoleLogger.cpp:414 pcsx2/gui/Panels/CpuPanel.cpp:38 msgid "Normal" msgstr "Normal" @@ -420,7 +522,7 @@ msgstr "&Limpar" msgid "Clear the log window contents" msgstr "Limpar conteúdo da janela de logs" -#: pcsx2/gui/ConsoleLogger.cpp:432 +#: pcsx2/gui/ConsoleLogger.cpp:432 pcsx2/gui/Dialogs/SysConfigDialog.cpp:280 msgid "Appearance" msgstr "Aparência" @@ -464,6 +566,296 @@ msgstr "Log" msgid "&Sources" msgstr "Fontes" +#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:35 +#, c-format +msgid "About %s" +msgstr "Sobre %s" + +#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:97 +msgid "A Playstation 2 Emulator" +msgstr "Um emulador de Playstation 2" + +#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:101 +msgid "PCSX2 Official Website and Forums" +msgstr "Website e Fóruns Oficiais do PCSX2" + +#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:105 +msgid "PCSX2 Official Svn Repository at Googlecode" +msgstr "Repositório Svn Oficial do PCSX2 no Googlecode" + +#: pcsx2/gui/Dialogs/AssertionDialog.cpp:23 +msgid "Assertion Failure - " +msgstr "Falha na declaração - " + +#: pcsx2/gui/Dialogs/BaseConfigurationDialog.cpp:189 +msgid "Saves a snapshot of this settings panel to a PNG file." +msgstr "Salva um snapshot do painel de configurações para um arquivo PNG." + +#: pcsx2/gui/Dialogs/BaseConfigurationDialog.cpp:300 +msgid "Save dialog screenshots to..." +msgstr "Salvar diálogo de captura de telas para..." + +#: pcsx2/gui/Dialogs/BiosSelectorDialog.cpp:31 +msgid "BIOS Selector" +msgstr "Seletor de BIOS" + +#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:193 +msgid "Do not show this dialog again." +msgstr "Não mostre mais esse diálogo." + +#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:199 +msgid "" +"Disables this popup and whatever response you select here will be " +"automatically used from now on." +msgstr "" +"Desabilita esse pop-up e qualquer outra resposta que você selecionar aqui " +"será usada automaticamente daqui para frente." + +#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:201 +msgid "" +"The popup will not be shown again. This setting can be undone from the " +"settings panels." +msgstr "" +"Esse pop-up não vai ser exibido denovo. Essa configuração pode ser desfeita " +"no painel de configurações." + +#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:247 +#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:292 +msgid "Ignore" +msgstr "Ignorar" + +#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:278 +msgid "Reset" +msgstr "Redefinir" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:32 +#, c-format +msgid "Select memory card for Port %u / Slot %u" +msgstr "Selecionar cartão de memória para Porta %u / Slot %u" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:41 +msgid "Create new memory card" +msgstr "Criar novo cartão de memória" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:60 +#: pcsx2/gui/Panels/DirPickerPanel.cpp:74 +#: pcsx2/gui/Panels/DirPickerPanel.cpp:271 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:464 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:511 +msgid "Create" +msgstr "Criar" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:72 +msgid "New card will be saved to:" +msgstr "Novo cartão será armazenado em:" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:135 +msgid "Error: The memory card could not be created." +msgstr "Erro: O cartão de memória não pôde ser criado." + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:136 +msgid "memory card creation error" +msgstr "Erro na criação do cartão de memória" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:147 +msgid "Use NTFS compression when creating this card." +msgstr "Usar compressão NTFS na criação desse cartão." + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:163 +msgid "8 MB [most compatible]" +msgstr "8 MB [mais compatível]" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:163 +msgid "" +"This is the standard Sony-provisioned size, and is supported by all games " +"and BIOS versions." +msgstr "" +"Esse é o tamanho padrão provido pela Sony e é suportado por todos jogos e " +"versões de BIOS." + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:167 +msgid "16 MB" +msgstr "16 MB" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:167 +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:171 +msgid "" +"A typical size for 3rd-party memory cards which should work with most games." +msgstr "" +"Um tamanho comum para um cartão de memória de terceiros que deveria " +"funcionar com a maioria dos jogos." + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:171 +msgid "32 MB" +msgstr "32 MB" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:175 +msgid "64 MB" +msgstr "64 MB" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:175 +msgid "" +"Low compatibility warning: Yes it's very big, but may not work with many " +"games." +msgstr "" +"Aviso de baixa compatibilidade: Sim, é muito grande, mas pode não funcionar " +"em muitos jogos." + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:47 +#, c-format +msgid "Select a folder for %s settings" +msgstr "Selecione uma pasta para as configurações de %s" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:47 +msgid "Settings" +msgstr "Configurações" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:81 +msgid "Language selector" +msgstr "Seletor de Idioma" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:84 +msgid "" +"Change the language only if you need to.\n" +"The system default should be fine for most operating systems." +msgstr "" +"Altere o idioma somente se você precisar.\n" +"O padrão do sistema deve servir para maioria dos sistemas operacionais." + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:104 +msgid "Configuration Guides (online)" +msgstr "Guias de configuração (online)" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:108 +msgid "Readme / FAQ (Offline/PDF)" +msgstr "Readme / FAQ (offline/PDF)" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:117 +#, c-format +msgid "%s First Time Configuration" +msgstr "Primeiras Configurações do %s" + +#: pcsx2/gui/Dialogs/GameDatabaseDialog.cpp:24 +#, c-format +msgid "Game database - %s" +msgstr "Banco de dados de jogos - %s" + +#: pcsx2/gui/Dialogs/ImportSettingsDialog.cpp:24 +msgid "Import Existing Settings?" +msgstr "Importar configurações existentes?" + +#: pcsx2/gui/Dialogs/ImportSettingsDialog.cpp:39 +msgid "Import" +msgstr "Importar" + +#: pcsx2/gui/Dialogs/ImportSettingsDialog.cpp:40 +msgid "Overwrite" +msgstr "Sobrescrever" + +#: pcsx2/gui/Dialogs/LogOptionsDialog.cpp:27 +msgid "Trace Logging" +msgstr "Log de rastreamento" + +#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:40 +msgid "Auto-eject memory cards when loading savestates" +msgstr "Auto-ejetar cartões de memória quando estiver carregando savestates" + +#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:47 +msgid "Backup existing Savestate when creating a new one" +msgstr "Fazer um backup do Savestate existente quando criar um novo" + +#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:51 +#, c-format +msgid "Enable Multitap on Port %u" +msgstr "Habilitar Multitap na Porta %u" + +#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:95 +msgid "MemoryCard Manager" +msgstr "Gerenciador de Cartão de Memória" + +#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:102 +msgid "Drag items over other items in the list to swap or copy memory cards." +msgstr "" +"Arraste itens sobre outros da lista para trocar ou copiar cartões de memória." + +#: pcsx2/gui/Dialogs/PickUserModeDialog.cpp:24 +msgid "PCSX2 First Time configuration" +msgstr "Primeiras Configurações do PCSX2" + +#: pcsx2/gui/Dialogs/PickUserModeDialog.cpp:29 +#, c-format +msgid "%s is starting from a new or unknown folder and needs to be configured." +msgstr "" +"%s está iniciando a partir de uma pasta nova ou não conhecida e precisa ser " +"configurado." + +#: pcsx2/gui/Dialogs/StuckThreadDialog.cpp:28 +msgid "PCSX2 Thread is not responding" +msgstr "A Thread PCSX2 não está respondendo" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:36 +msgid "Config Overrides Warning" +msgstr "Aviso de Substituição de Configuração" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:56 +msgid "Components Overrides Warning" +msgstr "Aviso de Substituição de Componentes" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:147 +msgid "Preset:" +msgstr "Pré-definição:" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:228 +#, c-format +msgid "Emulation Settings - %s" +msgstr "Configurações de Emulação - %s" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:237 +msgid "EE/IOP" +msgstr "EE/IOP" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:238 +msgid "VUs" +msgstr "VUs" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:239 +msgid "GS" +msgstr "GS" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:240 +msgid "GS Window" +msgstr "Janela de GS" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:241 +msgid "Speedhacks" +msgstr "Hacks de Velocidade" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:242 +msgid "Game Fixes" +msgstr "Consertos de jogos" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:253 +#, c-format +msgid "Components Selectors - %s" +msgstr "Seletores de Componentes - %s" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:260 +msgid "Plugins" +msgstr "Plug-ins" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:261 +msgid "BIOS" +msgstr "BIOS" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:262 +msgid "Folders" +msgstr "Pastas" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:273 +#, c-format +msgid "Appearance/Themes - %s" +msgstr "Aparência/Temas - %s" + #: pcsx2/gui/ExecutorThread.cpp:430 msgid "Press Cancel to attempt to cancel the action." msgstr "Pressione Cancelar para tentar cancelar a ação." @@ -481,35 +873,35 @@ msgstr "Terminar aplicativo" msgid "GS Output is Disabled!" msgstr "Saída do GS está Desativada!" -#: pcsx2/gui/GlobalCommands.cpp:243 +#: pcsx2/gui/GlobalCommands.cpp:268 pcsx2/gui/MainFrame.cpp:402 msgid "Save state" msgstr "Salvar estado" -#: pcsx2/gui/GlobalCommands.cpp:244 +#: pcsx2/gui/GlobalCommands.cpp:269 msgid "Saves the virtual machine state to the current slot." msgstr "Salva o estado da máquina virtual para o slot atual." -#: pcsx2/gui/GlobalCommands.cpp:249 +#: pcsx2/gui/GlobalCommands.cpp:274 pcsx2/gui/MainFrame.cpp:401 msgid "Load state" msgstr "Carregar estado" -#: pcsx2/gui/GlobalCommands.cpp:250 +#: pcsx2/gui/GlobalCommands.cpp:275 msgid "Loads a virtual machine state from the current slot." msgstr "Carrega o estado da máquina virtual do slot atual." -#: pcsx2/gui/GlobalCommands.cpp:255 +#: pcsx2/gui/GlobalCommands.cpp:280 msgid "Cycle to next slot" msgstr "Muda para o slot seguinte." -#: pcsx2/gui/GlobalCommands.cpp:256 +#: pcsx2/gui/GlobalCommands.cpp:281 msgid "Cycles the current save slot in +1 fashion!" msgstr "Altera o slot de save atual num estilo +1!" -#: pcsx2/gui/GlobalCommands.cpp:261 +#: pcsx2/gui/GlobalCommands.cpp:286 msgid "Cycle to prev slot" msgstr "Muda para o slot anterior" -#: pcsx2/gui/GlobalCommands.cpp:262 +#: pcsx2/gui/GlobalCommands.cpp:287 msgid "Cycles the current save slot in -1 fashion!" msgstr "Altera o slot de save atual num estilo -1!" @@ -519,11 +911,14 @@ msgstr "Erro em Pegar e Arrastar" #: pcsx2/gui/IsoDropTarget.cpp:58 #, c-format -msgid "It is an error to drop multiple files onto a %s window. One at a time please, thank you." -msgstr "Esse é um erro em arrastar múltiplos arquivos para a janela %s. Um por vez por favor, obrigado." +msgid "" +"It is an error to drop multiple files onto a %s window. One at a time " +"please, thank you." +msgstr "" +"Esse é um erro em arrastar múltiplos arquivos para a janela %s. Um por vez " +"por favor, obrigado." -#: pcsx2/gui/IsoDropTarget.cpp:89 -#: pcsx2/gui/MainMenuClicks.cpp:346 +#: pcsx2/gui/IsoDropTarget.cpp:89 pcsx2/gui/MainMenuClicks.cpp:337 msgid "Confirm PS2 Reset" msgstr "Confirmar reinício do PS2" @@ -541,6 +936,11 @@ msgstr "" msgid "You have dropped the following ISO image into %s:" msgstr "Você arrastou a seguinte imagem ISO para %s:" +#: pcsx2/gui/MainFrame.cpp:38 +#, c-format +msgid "Slot %d" +msgstr "" + #: pcsx2/gui/MainFrame.cpp:41 msgid "Other..." msgstr "Outro..." @@ -587,8 +987,7 @@ msgstr "%s %d.%d.%d %s" msgid "(modded)" msgstr "(modulado)" -#: pcsx2/gui/MainFrame.cpp:387 -#: pcsx2/gui/MainFrame.cpp:389 +#: pcsx2/gui/MainFrame.cpp:387 pcsx2/gui/MainFrame.cpp:389 #: pcsx2/gui/MainFrame.cpp:395 msgid "Initializing..." msgstr "Inicializando..." @@ -674,248 +1073,259 @@ msgstr "&Cartões de Memória" msgid "&Plugin/BIOS Selector" msgstr "&Seletor de Plug-in/BIOS" -#: pcsx2/gui/MainFrame.cpp:447 +#: pcsx2/gui/MainFrame.cpp:445 pcsx2/gui/Panels/GameDatabasePanel.cpp:348 msgid "Game Database Editor" msgstr "Editor de Banco de Dados de Jogos" -#: pcsx2/gui/MainFrame.cpp:448 -msgid "Appearance..." -msgstr "Aparência..." - -#: pcsx2/gui/MainFrame.cpp:453 +#: pcsx2/gui/MainFrame.cpp:451 msgid "&Video (GS)" msgstr "&Vídeo (GS)" -#: pcsx2/gui/MainFrame.cpp:454 +#: pcsx2/gui/MainFrame.cpp:452 msgid "&Audio (SPU2)" msgstr "&Áudio (SPU2)" -#: pcsx2/gui/MainFrame.cpp:455 +#: pcsx2/gui/MainFrame.cpp:453 msgid "&Controllers (PAD)" msgstr "&Controles (PAD)" -#: pcsx2/gui/MainFrame.cpp:456 +#: pcsx2/gui/MainFrame.cpp:454 msgid "Dev9" msgstr "Dev9" -#: pcsx2/gui/MainFrame.cpp:457 +#: pcsx2/gui/MainFrame.cpp:455 msgid "USB" msgstr "USB" -#: pcsx2/gui/MainFrame.cpp:458 +#: pcsx2/gui/MainFrame.cpp:456 msgid "Firewire" msgstr "Firewire" -#: pcsx2/gui/MainFrame.cpp:461 +#: pcsx2/gui/MainFrame.cpp:459 msgid "Patches (unimplemented)" msgstr "Patches (não implementado)" -#: pcsx2/gui/MainFrame.cpp:464 +#: pcsx2/gui/MainFrame.cpp:462 msgid "Multitap 1" msgstr "Multitap 1" -#: pcsx2/gui/MainFrame.cpp:465 +#: pcsx2/gui/MainFrame.cpp:463 msgid "Multitap 2" msgstr "Multitap 2" -#: pcsx2/gui/MainFrame.cpp:468 +#: pcsx2/gui/MainFrame.cpp:466 msgid "Clear all settings..." msgstr "Apagar todas configurações..." -#: pcsx2/gui/MainFrame.cpp:469 +#: pcsx2/gui/MainFrame.cpp:467 #, c-format msgid "Clears all %s settings and re-runs the startup wizard." -msgstr "Apaga todas configurações do %s e roda novamente o Assistente de Primeiras Configurações." +msgstr "" +"Apaga todas configurações do %s e roda novamente o Assistente de Primeiras " +"Configurações." -#: pcsx2/gui/MainFrame.cpp:485 +#: pcsx2/gui/MainFrame.cpp:483 msgid "Print CDVD Info" msgstr "Imprime informação do CDVD" -#: pcsx2/gui/MainFrame.cpp:492 +#: pcsx2/gui/MainFrame.cpp:490 msgid "About..." msgstr "Sobre..." -#: pcsx2/gui/MainFrame.cpp:494 +#: pcsx2/gui/MainFrame.cpp:492 msgid "Open Debug Window..." msgstr "Abrir Tela de Depuração..." -#: pcsx2/gui/MainFrame.cpp:495 +#: pcsx2/gui/MainFrame.cpp:493 msgid "Memory Dump..." msgstr "Extração da Memória..." -#: pcsx2/gui/MainFrame.cpp:496 +#: pcsx2/gui/MainFrame.cpp:494 msgid "Logging..." msgstr "Logging..." -#: pcsx2/gui/MainFrame.cpp:573 +#: pcsx2/gui/MainFrame.cpp:571 msgid "Suspend" msgstr "Suspender" -#: pcsx2/gui/MainFrame.cpp:574 +#: pcsx2/gui/MainFrame.cpp:572 msgid "Safely pauses emulation and preserves the PS2 state." msgstr "Pausa com seguraça a emulação e preserva o estado do PS2." -#: pcsx2/gui/MainFrame.cpp:581 +#: pcsx2/gui/MainFrame.cpp:579 msgid "Resume" msgstr "Resumir" -#: pcsx2/gui/MainFrame.cpp:582 +#: pcsx2/gui/MainFrame.cpp:580 msgid "Resumes the suspended emulation state." msgstr "Resume o estado da emulação suspensa" -#: pcsx2/gui/MainFrame.cpp:586 +#: pcsx2/gui/MainFrame.cpp:584 msgid "Suspend/Resume" msgstr "Suspender/Resumir" -#: pcsx2/gui/MainFrame.cpp:587 +#: pcsx2/gui/MainFrame.cpp:585 msgid "No emulation state is active; cannot suspend or resume." -msgstr "Nenhum estado de emulação está ativo; Não foi possível suspender ou resumir." +msgstr "" +"Nenhum estado de emulação está ativo; Não foi possível suspender ou resumir." -#: pcsx2/gui/MainFrame.cpp:596 +#: pcsx2/gui/MainFrame.cpp:594 msgid "Restart" msgstr "Reiniciar" -#: pcsx2/gui/MainFrame.cpp:597 +#: pcsx2/gui/MainFrame.cpp:595 msgid "Simulates hardware reset of the PS2 virtual machine." msgstr "Simula reset de hardware da máquina virtual do PS2." -#: pcsx2/gui/MainFrame.cpp:602 +#: pcsx2/gui/MainFrame.cpp:600 msgid "No emulation state is active; boot something first." msgstr "Nenhum estado de emulação está ativo; carregue alguma coisa primeiro." -#: pcsx2/gui/MainFrame.cpp:610 +#: pcsx2/gui/MainFrame.cpp:608 msgid "Reboot CDVD (full)" msgstr "Reiniciar CDVD (completo)" -#: pcsx2/gui/MainFrame.cpp:611 +#: pcsx2/gui/MainFrame.cpp:609 msgid "Hard reset of the active VM." msgstr "Hard reset da VM ativa." -#: pcsx2/gui/MainFrame.cpp:615 +#: pcsx2/gui/MainFrame.cpp:613 msgid "Boot CDVD (full)" msgstr "Carrega CDVD (completo)" -#: pcsx2/gui/MainFrame.cpp:616 +#: pcsx2/gui/MainFrame.cpp:614 msgid "Boot the VM using the current DVD or Iso source media" msgstr "Carrega a VM usando o atual DVD ou fonte de mídia Iso" -#: pcsx2/gui/MainFrame.cpp:624 +#: pcsx2/gui/MainFrame.cpp:622 msgid "Reboot CDVD (fast)" msgstr "Recarrega CDVD (rápido)" -#: pcsx2/gui/MainFrame.cpp:625 -msgid "Reboot using BOOT2 injection (skips splash screens)" +#: pcsx2/gui/MainFrame.cpp:623 +#, fuzzy +msgid "Reboot using fast BOOT (skips splash screens)" msgstr "Recarrega mais rápido (pula tela de inicialização)" -#: pcsx2/gui/MainFrame.cpp:629 +#: pcsx2/gui/MainFrame.cpp:627 msgid "Boot CDVD (fast)" msgstr "Carrega CDVD (rápido)" -#: pcsx2/gui/MainFrame.cpp:630 -msgid "Use BOOT2 injection to skip PS2 startup and splash screens" -msgstr "Carregue mais rápido seu jogo, pulando as telas de inicialização do PS2." +#: pcsx2/gui/MainFrame.cpp:628 +#, fuzzy +msgid "Use fast boot to skip PS2 startup and splash screens" +msgstr "" +"Carregue mais rápido seu jogo, pulando as telas de inicialização do PS2." -#: pcsx2/gui/MainFrame.cpp:669 -#: pcsx2/gui/MainFrame.cpp:704 +#: pcsx2/gui/MainFrame.cpp:689 pcsx2/gui/MainFrame.cpp:724 msgid "No plugin loaded" msgstr "Nenhum plug-in carregado" -#: pcsx2/gui/MainFrame.cpp:674 +#: pcsx2/gui/MainFrame.cpp:694 msgid "Core GS Settings..." msgstr "Configurações Gerais de GS" -#: pcsx2/gui/MainFrame.cpp:675 -msgid "Modify hardware emulation settings regulated by the PCSX2 core virtual machine." -msgstr "Modificar as configurações da emulação de hardware regulada pela máquina virtual central do PCSX2." +#: pcsx2/gui/MainFrame.cpp:695 +msgid "" +"Modify hardware emulation settings regulated by the PCSX2 core virtual " +"machine." +msgstr "" +"Modificar as configurações da emulação de hardware regulada pela máquina " +"virtual central do PCSX2." -#: pcsx2/gui/MainFrame.cpp:677 +#: pcsx2/gui/MainFrame.cpp:697 msgid "Window Settings..." msgstr "Configurações da Janela..." -#: pcsx2/gui/MainFrame.cpp:678 +#: pcsx2/gui/MainFrame.cpp:698 msgid "Modify window and appearance options, including aspect ratio." msgstr "Modifica opções de janela e aparência, incluindo a taxa de proporção." -#: pcsx2/gui/MainFrame.cpp:685 +#: pcsx2/gui/MainFrame.cpp:705 msgid "Plugin Settings..." msgstr "Configurações do Plug-in..." -#: pcsx2/gui/MainFrame.cpp:686 +#: pcsx2/gui/MainFrame.cpp:706 #, c-format msgid "Opens the %s plugin's advanced settings dialog." msgstr "Abre o diálogo de configurações avançadas do plug-in %s." -#: pcsx2/gui/MainMenuClicks.cpp:121 +#: pcsx2/gui/MainMenuClicks.cpp:112 msgid "Reset all settings?" msgstr "Redefinir todas configurações?" -#: pcsx2/gui/MainMenuClicks.cpp:149 +#: pcsx2/gui/MainMenuClicks.cpp:140 msgid "Confirm ISO image change" msgstr "Confirmar alteração de imagem ISO" -#: pcsx2/gui/MainMenuClicks.cpp:155 +#: pcsx2/gui/MainMenuClicks.cpp:146 msgid "Do you want to swap discs or boot the new image (via system reset)?" -msgstr "Você quer trocar discos ou carregar a nova imagem (via reinicialização do sistema)" +msgstr "" +"Você quer trocar discos ou carregar a nova imagem (via reinicialização do " +"sistema)" -#: pcsx2/gui/MainMenuClicks.cpp:157 -#: pcsx2/gui/MainMenuClicks.cpp:200 +#: pcsx2/gui/MainMenuClicks.cpp:148 pcsx2/gui/MainMenuClicks.cpp:191 msgid "Swap Disc" msgstr "Trocar Disco" -#: pcsx2/gui/MainMenuClicks.cpp:190 +#: pcsx2/gui/MainMenuClicks.cpp:181 msgid "Confirm CDVD source change" msgstr "Confirme alteração da fonte do CDVD" -#: pcsx2/gui/MainMenuClicks.cpp:193 +#: pcsx2/gui/MainMenuClicks.cpp:184 #, c-format msgid "You've selected to switch the CDVD source from %s to %s." msgstr "Você selecionou a troca da fonte de CDVD de %s para %s." -#: pcsx2/gui/MainMenuClicks.cpp:197 +#: pcsx2/gui/MainMenuClicks.cpp:188 msgid "Do you want to swap discs or boot the new image (system reset)?" -msgstr "Você quer trocar discos ou carregar a nova imagem (reinicialização do sistema)" +msgstr "" +"Você quer trocar discos ou carregar a nova imagem (reinicialização do " +"sistema)" -#: pcsx2/gui/MainMenuClicks.cpp:265 +#: pcsx2/gui/MainMenuClicks.cpp:256 #, c-format msgid "All Supported (%s)" msgstr "Todos Suportados (%s)" -#: pcsx2/gui/MainMenuClicks.cpp:268 +#: pcsx2/gui/MainMenuClicks.cpp:259 #, c-format msgid "Disc Images (%s)" msgstr "Imagens de Disco (%s)" -#: pcsx2/gui/MainMenuClicks.cpp:271 +#: pcsx2/gui/MainMenuClicks.cpp:262 #, c-format msgid "Blockdumps (%s)" msgstr "Blocos de Extração (%s)" -#: pcsx2/gui/MainMenuClicks.cpp:274 -#: pcsx2/gui/MainMenuClicks.cpp:295 +#: pcsx2/gui/MainMenuClicks.cpp:265 pcsx2/gui/MainMenuClicks.cpp:286 msgid "All Files (*.*)" msgstr "Todos Arquivos (*.*)" -#: pcsx2/gui/MainMenuClicks.cpp:277 +#: pcsx2/gui/MainMenuClicks.cpp:268 msgid "Select CDVD source iso..." msgstr "Selecione a fonte Iso de CDVD..." -#: pcsx2/gui/MainMenuClicks.cpp:294 +#: pcsx2/gui/MainMenuClicks.cpp:285 msgid "Select ELF file..." msgstr "Selecione o arquivo ELF..." -#: pcsx2/gui/MainMenuClicks.cpp:320 +#: pcsx2/gui/MainMenuClicks.cpp:311 msgid "ISO file not found!" msgstr "Arquivo ISO não encontrado!" -#: pcsx2/gui/MainMenuClicks.cpp:322 +#: pcsx2/gui/MainMenuClicks.cpp:313 msgid "An error occurred while trying to open the file:" msgstr "Ocorreu um arquivo ao tentar abrir o arquivo:" -#: pcsx2/gui/MainMenuClicks.cpp:323 -msgid "Error: The configured ISO file does not exist. Click OK to select a new ISO source for CDVD." -msgstr "Erro: O arquivo ISO configurado não existe. Clique OK para selecionar uma nova fonte ISO para CDVD." +#: pcsx2/gui/MainMenuClicks.cpp:314 +msgid "" +"Error: The configured ISO file does not exist. Click OK to select a new ISO " +"source for CDVD." +msgstr "" +"Erro: O arquivo ISO configurado não existe. Clique OK para selecionar uma " +"nova fonte ISO para CDVD." -#: pcsx2/gui/MainMenuClicks.cpp:389 +#: pcsx2/gui/MainMenuClicks.cpp:380 msgid "" "You have selected the following ISO image into PCSX2:\n" "\n" @@ -949,292 +1359,6 @@ msgstr "" "%s\n" "\n" -#: pcsx2/gui/SysState.cpp:283 -msgid "Cannot load this savestate. The state is from an incompatible edition of PCSX2 that is either newer than this version, or is no longer supported." -msgstr "Não foi possível carregar o savestate. O estado é de uma edição incompatível do PCSX2 que é ou mais nova que essa versão ou não mais suportado." - -#: pcsx2/gui/SysState.cpp:290 -msgid "Cannot load this savestate. The state is an unsupported version, likely created by a newer edition of PCSX2." -msgstr "Não foi possível carregar o savestate. O estado é uma versão não suportada, provavelmente criado por uma edição mais nova do PCSX2." - -#: pcsx2/gui/SysState.cpp:520 -msgid "This savestate cannot be loaded because it is not a valid gzip archive. It may have been created by an older unsupported version of PCSX2, or it may be corrupted." -msgstr "O savestate não pode ser carregado pois não é um arquivo gzip válido. Ele pode ter sido criado por uma versão mais antiga e não suportada do PCSX2, ou pode estar corrupto." - -#: pcsx2/gui/SysState.cpp:579 -msgid "This file is not a valid PCSX2 savestate. See the logfile for details." -msgstr "Esse arquivo não é um savestate válido para PCSX2. Veja o arquivo de log para detalhes." - -#: pcsx2/gui/SysState.cpp:598 -msgid "This savestate cannot be loaded due to missing critical components. See the log file for details." -msgstr "O savestate não pode ser carregado por estar faltando componentes críticos. Veja o arquivo de log para mais detalhes." - -#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:35 -#, c-format -msgid "About %s" -msgstr "Sobre %s" - -#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:97 -msgid "A Playstation 2 Emulator" -msgstr "Um emulador de Playstation 2" - -#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:101 -msgid "PCSX2 Official Website and Forums" -msgstr "Website e Fóruns Oficiais do PCSX2" - -#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:105 -msgid "PCSX2 Official Svn Repository at Googlecode" -msgstr "Repositório Svn Oficial do PCSX2 no Googlecode" - -#: pcsx2/gui/Dialogs/AssertionDialog.cpp:23 -msgid "Assertion Failure - " -msgstr "Falha na declaração - " - -#: pcsx2/gui/Dialogs/BaseConfigurationDialog.cpp:140 -msgid "Saves a snapshot of this settings panel to a PNG file." -msgstr "Salva um snapshot do painel de configurações para um arquivo PNG." - -#: pcsx2/gui/Dialogs/BaseConfigurationDialog.cpp:278 -msgid "Save dialog screenshots to..." -msgstr "Salvar diálogo de captura de telas para..." - -#: pcsx2/gui/Dialogs/BiosSelectorDialog.cpp:31 -msgid "BIOS Selector" -msgstr "Seletor de BIOS" - -#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:193 -msgid "Do not show this dialog again." -msgstr "Não mostre mais esse diálogo." - -#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:199 -msgid "Disables this popup and whatever response you select here will be automatically used from now on." -msgstr "Desabilita esse pop-up e qualquer outra resposta que você selecionar aqui será usada automaticamente daqui para frente." - -#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:201 -msgid "The popup will not be shown again. This setting can be undone from the settings panels." -msgstr "Esse pop-up não vai ser exibido denovo. Essa configuração pode ser desfeita no painel de configurações." - -#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:247 -#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:292 -msgid "Ignore" -msgstr "Ignorar" - -#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:278 -msgid "Reset" -msgstr "Redefinir" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:32 -#, c-format -msgid "Select memory card for Port %u / Slot %u" -msgstr "Selecionar cartão de memória para Porta %u / Slot %u" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:41 -msgid "Create new memory card" -msgstr "Criar novo cartão de memória" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:60 -#: pcsx2/gui/Panels/DirPickerPanel.cpp:68 -#: pcsx2/gui/Panels/DirPickerPanel.cpp:228 -msgid "Create" -msgstr "Criar" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:72 -msgid "New card will be saved to:" -msgstr "Novo cartão será armazenado em:" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:135 -msgid "Error: The memory card could not be created." -msgstr "Erro: O cartão de memória não pôde ser criado." - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:136 -msgid "memory card creation error" -msgstr "Erro na criação do cartão de memória" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:147 -msgid "Use NTFS compression when creating this card." -msgstr "Usar compressão NTFS na criação desse cartão." - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:163 -msgid "8 MB [most compatible]" -msgstr "8 MB [mais compatível]" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:163 -msgid "This is the standard Sony-provisioned size, and is supported by all games and BIOS versions." -msgstr "Esse é o tamanho padrão provido pela Sony e é suportado por todos jogos e versões de BIOS." - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:167 -msgid "16 MB" -msgstr "16 MB" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:167 -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:171 -msgid "A typical size for 3rd-party memory cards which should work with most games." -msgstr "Um tamanho comum para um cartão de memória de terceiros que deveria funcionar com a maioria dos jogos." - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:171 -msgid "32 MB" -msgstr "32 MB" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:175 -msgid "64 MB" -msgstr "64 MB" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:175 -msgid "Low compatibility warning: Yes it's very big, but may not work with many games." -msgstr "Aviso de baixa compatibilidade: Sim, é muito grande, mas pode não funcionar em muitos jogos." - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:47 -msgid "Settings" -msgstr "Configurações" - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:47 -#, c-format -msgid "Select a folder for %s settings" -msgstr "Selecione uma pasta para as configurações de %s" - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:81 -msgid "Language selector" -msgstr "Seletor de Idioma" - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:84 -msgid "" -"Change the language only if you need to.\n" -"The system default should be fine for most operating systems." -msgstr "" -"Altere o idioma somente se você precisar.\n" -"O padrão do sistema deve servir para maioria dos sistemas operacionais." - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:104 -msgid "Configuration Guides (online)" -msgstr "Guias de configuração (online)" - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:108 -msgid "Readme / FAQ (Offline/PDF)" -msgstr "Readme / FAQ (offline/PDF)" - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:117 -#, c-format -msgid "%s First Time Configuration" -msgstr "Primeiras Configurações do %s" - -#: pcsx2/gui/Dialogs/GameDatabaseDialog.cpp:24 -#, c-format -msgid "Game database - %s" -msgstr "Banco de dados de jogos - %s" - -#: pcsx2/gui/Dialogs/ImportSettingsDialog.cpp:24 -msgid "Import Existing Settings?" -msgstr "Importar configurações existentes?" - -#: pcsx2/gui/Dialogs/ImportSettingsDialog.cpp:39 -msgid "Import" -msgstr "Importar" - -#: pcsx2/gui/Dialogs/ImportSettingsDialog.cpp:40 -msgid "Overwrite" -msgstr "Sobrescrever" - -#: pcsx2/gui/Dialogs/LogOptionsDialog.cpp:27 -msgid "Trace Logging" -msgstr "Log de rastreamento" - -#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:40 -msgid "Auto-eject memory cards when loading savestates" -msgstr "Auto-ejetar cartões de memória quando estiver carregando savestates" - -#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:47 -msgid "Backup existing Savestate when creating a new one" -msgstr "Fazer um backup do Savestate existente quando criar um novo" - -#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:51 -#, c-format -msgid "Enable Multitap on Port %u" -msgstr "Habilitar Multitap na Porta %u" - -#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:95 -msgid "MemoryCard Manager" -msgstr "Gerenciador de Cartão de Memória" - -#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:102 -msgid "Drag items over other items in the list to swap or copy memory cards." -msgstr "Arraste itens sobre outros da lista para trocar ou copiar cartões de memória." - -#: pcsx2/gui/Dialogs/PickUserModeDialog.cpp:24 -msgid "PCSX2 First Time configuration" -msgstr "Primeiras Configurações do PCSX2" - -#: pcsx2/gui/Dialogs/PickUserModeDialog.cpp:29 -#, c-format -msgid "%s is starting from a new or unknown folder and needs to be configured." -msgstr "%s está iniciando a partir de uma pasta nova ou não conhecida e precisa ser configurado." - -#: pcsx2/gui/Dialogs/StuckThreadDialog.cpp:28 -msgid "PCSX2 Thread is not responding" -msgstr "A Thread PCSX2 não está respondendo" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:35 -msgid "Config Overrides Warning" -msgstr "Aviso de Substituição de Configuração" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:55 -msgid "Components Overrides Warning" -msgstr "Aviso de Substituição de Componentes" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:125 -msgid "Preset:" -msgstr "Pré-definição:" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:198 -#, c-format -msgid "Emulation Settings - %s" -msgstr "Configurações de Emulação - %s" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:205 -msgid "EE/IOP" -msgstr "EE/IOP" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:206 -msgid "VUs" -msgstr "VUs" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:207 -msgid "GS" -msgstr "GS" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:208 -msgid "GS Window" -msgstr "Janela de GS" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:209 -msgid "Speedhacks" -msgstr "Hacks de Velocidade" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:210 -msgid "Game Fixes" -msgstr "Consertos de jogos" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:221 -#, c-format -msgid "Components Selectors - %s" -msgstr "Seletores de Componentes - %s" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:228 -msgid "Plugins" -msgstr "Plug-ins" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:229 -msgid "BIOS" -msgstr "BIOS" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:240 -#, c-format -msgid "Appearance/Themes - %s" -msgstr "Aparência/Temas - %s" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:248 -msgid "Folders" -msgstr "Pastas" - #: pcsx2/gui/Panels/BaseApplicableConfigPanel.cpp:97 msgid "Cannot apply settings..." msgstr "Não foi possível aplicar configurações..." @@ -1247,15 +1371,21 @@ msgstr "Caminho para pesquisa de BIOS:" msgid "Select folder with PS2 BIOS roms" msgstr "Selecione pasta com roms de BIOS de PS2" -#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:110 -msgid "Click the Browse button to select a different folder where PCSX2 will look for PS2 BIOS roms." -msgstr "Clique o botão Procurar para selecionar uma pasta diferente onde PCSX2 vai procurar por roms de BIOS de PS2." +#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:111 +msgid "" +"Click the Browse button to select a different folder where PCSX2 will look " +"for PS2 BIOS roms." +msgstr "" +"Clique o botão Procurar para selecionar uma pasta diferente onde PCSX2 vai " +"procurar por roms de BIOS de PS2." -#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:112 +#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:113 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:149 +#: pcsx2/gui/Panels/ThemeSelectorPanel.cpp:47 msgid "Refresh list" msgstr "Atualizar lista" -#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:114 +#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:115 msgid "Select a BIOS rom:" msgstr "Selecione uma rom de BIOS:" @@ -1267,201 +1397,143 @@ msgstr "Modo de Arredondamento" msgid "Clamping Mode" msgstr "Modo Clamping" -#: pcsx2/gui/Panels/CpuPanel.cpp:27 -msgid "Flush to Zero" -msgstr "Limpe para Zero" - -#: pcsx2/gui/Panels/CpuPanel.cpp:28 -msgid "Denormals are Zero" -msgstr "Normalizados são Zero" - -#: pcsx2/gui/Panels/CpuPanel.cpp:32 +#: pcsx2/gui/Panels/CpuPanel.cpp:29 msgid "Nearest" msgstr "Mais próximo" -#: pcsx2/gui/Panels/CpuPanel.cpp:33 +#: pcsx2/gui/Panels/CpuPanel.cpp:30 msgid "Negative" msgstr "Negativo" -#: pcsx2/gui/Panels/CpuPanel.cpp:34 +#: pcsx2/gui/Panels/CpuPanel.cpp:31 msgid "Positive" msgstr "Positivo" -#: pcsx2/gui/Panels/CpuPanel.cpp:35 +#: pcsx2/gui/Panels/CpuPanel.cpp:32 msgid "Chop / Zero" msgstr "Cortar / Zero" -#: pcsx2/gui/Panels/CpuPanel.cpp:40 +#: pcsx2/gui/Panels/CpuPanel.cpp:37 msgid "None" msgstr "Nenhum" -#: pcsx2/gui/Panels/CpuPanel.cpp:102 +#: pcsx2/gui/Panels/CpuPanel.cpp:85 msgid "EE/FPU Advanced Recompiler Options" msgstr "Opções Avançadas de Recompilador de EE/Unidade de Pontos Flutuantes" -#: pcsx2/gui/Panels/CpuPanel.cpp:104 -#: pcsx2/gui/Panels/CpuPanel.cpp:119 +#: pcsx2/gui/Panels/CpuPanel.cpp:87 pcsx2/gui/Panels/CpuPanel.cpp:102 msgid "Extra + Preserve Sign" msgstr "Extra + Preservar Sinal" -#: pcsx2/gui/Panels/CpuPanel.cpp:105 +#: pcsx2/gui/Panels/CpuPanel.cpp:88 msgid "Full" msgstr "Completo" -#: pcsx2/gui/Panels/CpuPanel.cpp:116 +#: pcsx2/gui/Panels/CpuPanel.cpp:99 msgid "VU0 / VU1 Advanced Recompiler Options" msgstr "Opções Avançadas de Recompilador de VU0 / VU1" -#: pcsx2/gui/Panels/CpuPanel.cpp:118 +#: pcsx2/gui/Panels/CpuPanel.cpp:101 msgid "Extra" msgstr "Extra" -#: pcsx2/gui/Panels/CpuPanel.cpp:130 -#: pcsx2/gui/Panels/CpuPanel.cpp:139 -#: pcsx2/gui/Panels/CpuPanel.cpp:187 +#: pcsx2/gui/Panels/CpuPanel.cpp:117 pcsx2/gui/Panels/CpuPanel.cpp:126 +#: pcsx2/gui/Panels/CpuPanel.cpp:184 msgid "Interpreter" msgstr "Interpretador" -#: pcsx2/gui/Panels/CpuPanel.cpp:131 +#: pcsx2/gui/Panels/CpuPanel.cpp:118 msgid "Quite possibly the slowest thing in the universe." msgstr "Bem possivelmente a coisa mais lenta do universo." -#: pcsx2/gui/Panels/CpuPanel.cpp:133 -#: pcsx2/gui/Panels/CpuPanel.cpp:142 +#: pcsx2/gui/Panels/CpuPanel.cpp:120 pcsx2/gui/Panels/CpuPanel.cpp:129 msgid "Recompiler" msgstr "Recompilador" -#: pcsx2/gui/Panels/CpuPanel.cpp:134 -msgid "Performs just-in-time binary translation of 64-bit MIPS-IV machine code to x86." -msgstr "Executa tradução just-in-time de binários de códigos de máquina de MIPS-IV de 64-bit para x86." +#: pcsx2/gui/Panels/CpuPanel.cpp:121 +msgid "" +"Performs just-in-time binary translation of 64-bit MIPS-IV machine code to " +"x86." +msgstr "" +"Executa tradução just-in-time de binários de códigos de máquina de MIPS-IV " +"de 64-bit para x86." -#: pcsx2/gui/Panels/CpuPanel.cpp:140 +#: pcsx2/gui/Panels/CpuPanel.cpp:127 msgid "Pretty slow; provided for diagnostic purposes only." msgstr "Bem lento; Disponível para fim de diagnóstico somente." -#: pcsx2/gui/Panels/CpuPanel.cpp:143 -msgid "Performs just-in-time binary translation of 32-bit MIPS-I machine code to x86." -msgstr "Executa tradução just-in-time de binários de códigos de máquina de MIPS-I de 32-bit para x86." +#: pcsx2/gui/Panels/CpuPanel.cpp:130 +msgid "" +"Performs just-in-time binary translation of 32-bit MIPS-I machine code to " +"x86." +msgstr "" +"Executa tradução just-in-time de binários de códigos de máquina de MIPS-I de " +"32-bit para x86." -#: pcsx2/gui/Panels/CpuPanel.cpp:177 -#: pcsx2/gui/Panels/CpuPanel.cpp:226 +#: pcsx2/gui/Panels/CpuPanel.cpp:154 +msgid "Enable EE Cache - Interpreter Only! (Slower)" +msgstr "" + +#: pcsx2/gui/Panels/CpuPanel.cpp:170 pcsx2/gui/Panels/CpuPanel.cpp:223 +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:110 msgid "Restore Defaults" msgstr "Restaurar padrão" -#: pcsx2/gui/Panels/CpuPanel.cpp:188 -msgid "Vector Unit Interpreter. Slow and not very compatible. Only use for diagnostics." -msgstr "Interpretador de Unidade Vetorial. Lento e não muito compatível. Use somente para diagnósticos." +#: pcsx2/gui/Panels/CpuPanel.cpp:185 +msgid "" +"Vector Unit Interpreter. Slow and not very compatible. Only use for " +"diagnostics." +msgstr "" +"Interpretador de Unidade Vetorial. Lento e não muito compatível. Use somente " +"para diagnósticos." -#: pcsx2/gui/Panels/CpuPanel.cpp:190 +#: pcsx2/gui/Panels/CpuPanel.cpp:187 msgid "microVU Recompiler" msgstr "Recompilador microVU" -#: pcsx2/gui/Panels/CpuPanel.cpp:191 -msgid "New Vector Unit recompiler with much improved compatibility. Recommended." -msgstr "Novo recompilador de Unidade Vetorial com compatibilidade muito melhorada. Recomendado." +#: pcsx2/gui/Panels/CpuPanel.cpp:188 +msgid "" +"New Vector Unit recompiler with much improved compatibility. Recommended." +msgstr "" +"Novo recompilador de Unidade Vetorial com compatibilidade muito melhorada. " +"Recomendado." -#: pcsx2/gui/Panels/CpuPanel.cpp:193 +#: pcsx2/gui/Panels/CpuPanel.cpp:190 msgid "superVU Recompiler [legacy]" msgstr "Recompilador SuperVU [legado]" -#: pcsx2/gui/Panels/CpuPanel.cpp:194 -msgid "Useful for diagnosing bugs or clamping issues in the new mVU recompiler." -msgstr "Útil para diagnosticar problemas de bugs ou clamping no novo recompilador mVU." +#: pcsx2/gui/Panels/CpuPanel.cpp:191 +msgid "" +"Useful for diagnosing bugs or clamping issues in the new mVU recompiler." +msgstr "" +"Útil para diagnosticar problemas de bugs ou clamping no novo recompilador " +"mVU." -#: pcsx2/gui/Panels/DirPickerPanel.cpp:58 +#: pcsx2/gui/Panels/DirPickerPanel.cpp:64 msgid "Path does not exist" msgstr "O caminho não existe" -#: pcsx2/gui/Panels/DirPickerPanel.cpp:116 +#: pcsx2/gui/Panels/DirPickerPanel.cpp:154 msgid "Use default setting" msgstr "Usar configuração padrão" -#: pcsx2/gui/Panels/DirPickerPanel.cpp:133 +#: pcsx2/gui/Panels/DirPickerPanel.cpp:174 msgid "Open in Explorer" msgstr "Abrir no Explorer" -#: pcsx2/gui/Panels/DirPickerPanel.cpp:134 +#: pcsx2/gui/Panels/DirPickerPanel.cpp:175 msgid "Open an explorer window to this folder." msgstr "Abrir uma janela do navegador para essa pasta." -#: pcsx2/gui/Panels/DirPickerPanel.cpp:223 +#: pcsx2/gui/Panels/DirPickerPanel.cpp:266 msgid "Create folder?" msgstr "Criar a pasta?" -#: pcsx2/gui/Panels/DirPickerPanel.cpp:224 +#: pcsx2/gui/Panels/DirPickerPanel.cpp:267 #, c-format msgid "A configured folder does not exist. Should %s try to create it?" msgstr "Uma pasta configurada não existe. %s deveria tentar criá-la?" -#: pcsx2/gui/Panels/GameDatabasePanel.cpp:336 -msgid "Search" -msgstr "Pesquisar" - -#: pcsx2/gui/Panels/GameDatabasePanel.cpp:370 -#: pcsx2/gui/Panels/GameFixesPanel.cpp:25 -msgid "Gamefixes" -msgstr "Reparações de Jogos" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:38 -msgid "VU Add Hack - Fixes Tri-Ace games boot crash." -msgstr "VU Add Hack - Conserta travamentos ao iniciar jogos da Tri-Ace." - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:39 -msgid "" -"Games that need this hack to boot:\n" -" * Star Ocean 3\n" -" * Radiata Stories\n" -" * Valkyrie Profile 2" -msgstr "" -"Jogos que precisam desse hack para carregar:\n" -" * Star Ocean 3\n" -" * Radiata Sotries\n" -" * Valkyrie Profile 2" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:42 -msgid "VU Clip Flag Hack - For Persona games (SuperVU recompiler only!)" -msgstr "Hack de Sinalizador de Recorte do VU - Para jogos Persona (somente recompilador SuperVU!)" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:46 -msgid "FPU Compare Hack - For Digimon Rumble Arena 2." -msgstr "Hack de Comparação de FPU - Para Digimon Rumble Arena 2." - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:50 -msgid "FPU Multiply Hack - For Tales of Destiny." -msgstr "Hack de Multiplicação de FPU - Para Tales of Destiny." - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:54 -msgid "FPU Negative Div Hack - For Gundam games." -msgstr "Hack de Divisão negativa de FPU - Para jogos de Gundam." - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:58 -msgid "VU XGkick Hack - For Erementar Gerad." -msgstr "Hack de XGkick do VU - Para Erementar Gerad." - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:62 -msgid "FFX videos fix - Fixes bad graphics overlay in FFX videos." -msgstr "Conserto de videos FFX - Conserta má sobreposição de gráficos nos videos do FFX." - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:66 -msgid "EE timing hack - Multi purpose hack. Try if all else fails." -msgstr "Hack de tempo do EE - hack com múltiplos propósitos. Tente se tudo mais der errado." - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:75 -msgid "Skip MPEG hack - Skips videos/FMVs in games to avoid game hanging/freezes." -msgstr "Hack para pular MPEG - Pula vídeos/FMVs nos jogos para evitar travamentos/congelamentos nos jogos." - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:79 -msgid "OPH Flag hack - Try if your game freezes showing the same frame." -msgstr "Hack de Sinalizador de OPH - Tente se seu jogo congela exibindo o mesmo quadro." - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:95 -msgid "Enable game fixes" -msgstr "Habilitar reparações de jogos" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:103 -msgid "The safest way to make sure that all game fixes are completely disabled." -msgstr "O meio mais seguro de ter certeza que todas reparações de jogos estão completamento desabilitados." - #: pcsx2/gui/Panels/GSWindowPanel.cpp:30 msgid "Fit to Window/Screen" msgstr "Ajustar para Janela/Tela" @@ -1510,89 +1582,225 @@ msgstr "Taxa de Proporção:" msgid "Custom Window Size:" msgstr "Tamanho de Janela Personalizada:" -#: pcsx2/gui/Panels/GSWindowPanel.cpp:161 -msgid "Invalid window dimensions specified: Size cannot contain non-numeric digits! >_<" -msgstr "Especificado dimensões inválidas de janela: Tamanho não pode conter dígitos não-numéricos! >_<" +#: pcsx2/gui/Panels/GSWindowPanel.cpp:164 +msgid "" +"Invalid window dimensions specified: Size cannot contain non-numeric digits! " +">_<" +msgstr "" +"Especificado dimensões inválidas de janela: Tamanho não pode conter dígitos " +"não-numéricos! >_<" -#: pcsx2/gui/Panels/LogOptionsPanels.cpp:248 +#: pcsx2/gui/Panels/GameDatabasePanel.cpp:336 +msgid "Search" +msgstr "Pesquisar" + +#: pcsx2/gui/Panels/GameDatabasePanel.cpp:370 +#: pcsx2/gui/Panels/GameFixesPanel.cpp:25 +msgid "Gamefixes" +msgstr "Reparações de Jogos" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:38 +msgid "VU Add Hack - Fixes Tri-Ace games boot crash." +msgstr "VU Add Hack - Conserta travamentos ao iniciar jogos da Tri-Ace." + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:39 +msgid "" +"Games that need this hack to boot:\n" +" * Star Ocean 3\n" +" * Radiata Stories\n" +" * Valkyrie Profile 2" +msgstr "" +"Jogos que precisam desse hack para carregar:\n" +" * Star Ocean 3\n" +" * Radiata Sotries\n" +" * Valkyrie Profile 2" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:42 +msgid "VU Clip Flag Hack - For Persona games (SuperVU recompiler only!)" +msgstr "" +"Hack de Sinalizador de Recorte do VU - Para jogos Persona (somente " +"recompilador SuperVU!)" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:46 +msgid "FPU Compare Hack - For Digimon Rumble Arena 2." +msgstr "Hack de Comparação de FPU - Para Digimon Rumble Arena 2." + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:50 +msgid "FPU Multiply Hack - For Tales of Destiny." +msgstr "Hack de Multiplicação de FPU - Para Tales of Destiny." + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:54 +msgid "FPU Negative Div Hack - For Gundam games." +msgstr "Hack de Divisão negativa de FPU - Para jogos de Gundam." + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:58 +msgid "VU XGkick Hack - For Erementar Gerad." +msgstr "Hack de XGkick do VU - Para Erementar Gerad." + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:62 +msgid "FFX videos fix - Fixes bad graphics overlay in FFX videos." +msgstr "" +"Conserto de videos FFX - Conserta má sobreposição de gráficos nos videos do " +"FFX." + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:66 +msgid "EE timing hack - Multi purpose hack. Try if all else fails." +msgstr "" +"Hack de tempo do EE - hack com múltiplos propósitos. Tente se tudo mais der " +"errado." + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:75 +msgid "" +"Skip MPEG hack - Skips videos/FMVs in games to avoid game hanging/freezes." +msgstr "" +"Hack para pular MPEG - Pula vídeos/FMVs nos jogos para evitar travamentos/" +"congelamentos nos jogos." + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:79 +msgid "OPH Flag hack - Try if your game freezes showing the same frame." +msgstr "" +"Hack de Sinalizador de OPH - Tente se seu jogo congela exibindo o mesmo " +"quadro." + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:95 +msgid "Enable game fixes" +msgstr "Habilitar reparações de jogos" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:103 +msgid "" +"The safest way to make sure that all game fixes are completely disabled." +msgstr "" +"O meio mais seguro de ter certeza que todas reparações de jogos estão " +"completamento desabilitados." + +#: pcsx2/gui/Panels/LogOptionsPanels.cpp:249 msgid "Enable Trace Logging" msgstr "Habilita Logs de rastreamento" -#: pcsx2/gui/Panels/LogOptionsPanels.cpp:249 -msgid "Trace logs are all written to emulog.txt. Toggle trace logging at any time using F10." -msgstr "Logs de rastreamento são escritos em emulog.txt. Ative/Desative o log de rastreamento a qualquer momento com F10." - #: pcsx2/gui/Panels/LogOptionsPanels.cpp:250 -msgid "Warning: Enabling trace logs is typically very slow, and is a leading cause of 'What happened to my FPS?' problems. :)" -msgstr "Aviso: Habilitando logs de rastreamento é normalmente muito lento e uma das principais causas de problemas \"O que aconteceu com meu FPS?\". :)" +msgid "" +"Trace logs are all written to emulog.txt. Toggle trace logging at any time " +"using F10." +msgstr "" +"Logs de rastreamento são escritos em emulog.txt. Ative/Desative o log de " +"rastreamento a qualquer momento com F10." + +#: pcsx2/gui/Panels/LogOptionsPanels.cpp:251 +msgid "" +"Warning: Enabling trace logs is typically very slow, and is a leading cause " +"of 'What happened to my FPS?' problems. :)" +msgstr "" +"Aviso: Habilitando logs de rastreamento é normalmente muito lento e uma das " +"principais causas de problemas \"O que aconteceu com meu FPS?\". :)" #: pcsx2/gui/Panels/MemoryCardListPanel.cpp:144 msgid "Select folder with PS2 memory cards" msgstr "Selecione pasta com cartões de memória de PS2." -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:386 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:374 +#, fuzzy +msgid "Overwrite memory card?" +msgstr "Exclui cartão de memória?" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:391 msgid "Copy failed!" msgstr "Cópia falhou!" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:454 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:465 msgid "Mount" msgstr "Montar" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:500 -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:670 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:511 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:681 msgid "Delete" msgstr "Excluir" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:503 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:514 msgid "Deletes the existing memory card from disk (all contents are lost)." -msgstr "Exclui o cartão de memória existente do disco (todo conteúdo será perdido)." +msgstr "" +"Exclui o cartão de memória existente do disco (todo conteúdo será perdido)." -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:504 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:515 msgid "Creates a new memory card in the empty slot." msgstr "Crea um novo cartão de memória num slot vazio." -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:508 -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:671 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:519 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:682 msgid "Disable" msgstr "Desabilita" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:508 -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:671 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:519 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:682 msgid "Enable" msgstr "Habilita" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:511 -msgid "Disables the selected memory card, so that it will not be seen by games or BIOS." -msgstr "Disabilita o cartão de memória selecionado, de forma que ele não seja visto pelos jogos ou pela BIOS." +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:522 +msgid "" +"Disables the selected memory card, so that it will not be seen by games or " +"BIOS." +msgstr "" +"Disabilita o cartão de memória selecionado, de forma que ele não seja visto " +"pelos jogos ou pela BIOS." -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:512 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:523 msgid "Mounts the selected memory card, so that games can see it again." -msgstr "Monta o cartão de memória selecionado, de forma que os jogos podem vê-lo novamente." +msgstr "" +"Monta o cartão de memória selecionado, de forma que os jogos podem vê-lo " +"novamente." -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:591 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:602 msgid "Delete memory card?" msgstr "Exclui cartão de memória?" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:670 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:681 msgid "Create new..." msgstr "Criar novo..." -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:672 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:683 msgid "Relocate file..." msgstr "Realocar arquivo..." -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:677 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:688 msgid "Refresh List" msgstr "Atualizar lista" -#: pcsx2/gui/Panels/MemoryCardListView.cpp:136 -msgid "Enabled" -msgstr "Habilitado" +#: pcsx2/gui/Panels/MemoryCardListView.cpp:105 +msgid "Slot" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:106 +msgid "Status" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:107 +msgid "Size" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:108 +msgid "Formatted" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:109 +msgid "Modified" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:110 +#, fuzzy +msgid "Created" +msgstr "Criar" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:111 +msgid "Filename" +msgstr "" #: pcsx2/gui/Panels/MemoryCardListView.cpp:136 msgid "Disabled" msgstr "Desabilitado" +#: pcsx2/gui/Panels/MemoryCardListView.cpp:136 +msgid "Enabled" +msgstr "Habilitado" + #: pcsx2/gui/Panels/MemoryCardListView.cpp:136 msgid "Missing" msgstr "Faltando" @@ -1603,14 +1811,14 @@ msgstr "Faltando" msgid "N/A" msgstr "N/D" -#: pcsx2/gui/Panels/MemoryCardListView.cpp:138 -msgid "Yes" -msgstr "Sim" - #: pcsx2/gui/Panels/MemoryCardListView.cpp:138 msgid "No" msgstr "Não" +#: pcsx2/gui/Panels/MemoryCardListView.cpp:138 +msgid "Yes" +msgstr "Sim" + #: pcsx2/gui/Panels/MiscPanelStuff.cpp:33 msgid "Usermode Selection" msgstr "Seleção de Modo de Usuário" @@ -1628,8 +1836,12 @@ msgid "Custom folder:" msgstr "Pasta Personalizada:" #: pcsx2/gui/Panels/MiscPanelStuff.cpp:57 -msgid "This setting may require administration privileges from your operating system, depending on how your system is configured." -msgstr "Essa configuração pode requerir privilégios administrativos do seus sistema operacional, dependendo de como seu sistema está configurado." +msgid "" +"This setting may require administration privileges from your operating " +"system, depending on how your system is configured." +msgstr "" +"Essa configuração pode requerir privilégios administrativos do seus sistema " +"operacional, dependendo de como seu sistema está configurado." #: pcsx2/gui/Panels/MiscPanelStuff.cpp:66 #, c-format @@ -1692,11 +1904,18 @@ msgstr "Caminho de Busca por Plug-ins:" msgid "Select a folder with PCSX2 plugins" msgstr "Selecione uma pasta com plug-ins de PCSX2" -#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:378 -msgid "Click the Browse button to select a different folder for PCSX2 plugins." -msgstr "Clique no botão Pesquisar para selecionar uma pasta diferente para plug-ins de PCSX2." +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:370 +#, fuzzy +msgid "Configure..." +msgstr "Configuração" -#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:518 +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:379 +msgid "Click the Browse button to select a different folder for PCSX2 plugins." +msgstr "" +"Clique no botão Pesquisar para selecionar uma pasta diferente para plug-ins " +"de PCSX2." + +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:519 #, c-format msgid "" "The selected %s plugin failed to load.\n" @@ -1709,7 +1928,7 @@ msgstr "" "Razão: %s\n" "\n" -#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:728 +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:729 msgid "Completing tasks..." msgstr "Completando tarefas..." @@ -1718,12 +1937,19 @@ msgid "Enable speedhacks" msgstr "Habilitar hacks de velocidade" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:102 -msgid "A safe and easy way to make sure that all speedhacks are completely disabled." -msgstr "O modo mais seguro e fácil de ter certeza que todos hacks de velocidade estão completamente desabilitados." +msgid "" +"A safe and easy way to make sure that all speedhacks are completely disabled." +msgstr "" +"O modo mais seguro e fácil de ter certeza que todos hacks de velocidade " +"estão completamente desabilitados." #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:111 -msgid "Resets all speedhack options to their defaults, which consequently turns them all OFF." -msgstr "Reinicia todas opções de hack de velocidade para seus valores padrões, o que consequentemente vai desabilitá-los." +msgid "" +"Resets all speedhack options to their defaults, which consequently turns " +"them all OFF." +msgstr "" +"Reinicia todas opções de hack de velocidade para seus valores padrões, o que " +"consequentemente vai desabilitá-los." #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:120 msgid "EE Cyclerate [Not Recommended]" @@ -1742,24 +1968,35 @@ msgid "mVU Flag Hack" msgstr "Hack de flag de mVU" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:164 -msgid "Good Speedup and High Compatibility; may cause garbage graphics, SPS, etc... [Recommended]" -msgstr "Boa Aceleração e Alta Compatibilidade; pode causar gráficos distorcidos, SPS, etc.... [Recomendado]" +msgid "" +"Good Speedup and High Compatibility; may cause garbage graphics, SPS, etc... " +"[Recommended]" +msgstr "" +"Boa Aceleração e Alta Compatibilidade; pode causar gráficos distorcidos, " +"SPS, etc.... [Recomendado]" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:166 msgid "mVU Block Hack" msgstr "Hack de Bloco mVU" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:167 -msgid "Good Speedup and High Compatibility; may cause garbage graphics, SPS, etc..." -msgstr "Boa Aceleração e Alta Compatibilidade; pode ocasionar em gráficos sem sentidos, SPS, etc." +msgid "" +"Good Speedup and High Compatibility; may cause garbage graphics, SPS, etc..." +msgstr "" +"Boa Aceleração e Alta Compatibilidade; pode ocasionar em gráficos sem " +"sentidos, SPS, etc." #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:169 msgid "mVU Min/Max Hack" msgstr "Hack de Min/Máx mVU" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:170 -msgid "Small Speedup; may cause black screens, garbage graphics, SPS, etc... [Not Recommended]" -msgstr "Pequena Aceleração; pode causar telas pretas, gráficos sem sentido, SPS, etc... [Não recomendado]" +msgid "" +"Small Speedup; may cause black screens, garbage graphics, SPS, etc... [Not " +"Recommended]" +msgstr "" +"Pequena Aceleração; pode causar telas pretas, gráficos sem sentido, SPS, " +"etc... [Não recomendado]" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:190 msgid "Other Hacks" @@ -1770,16 +2007,23 @@ msgid "Enable INTC Spin Detection" msgstr "Habilita Detecção de Rotação INTC" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:193 -msgid "Huge speedup for some games, with almost no compatibility side effects. [Recommended]" -msgstr "Imensa Aceleração para alguns jogos, com quase nenhum efeito colateral [Recomendado]" +msgid "" +"Huge speedup for some games, with almost no compatibility side effects. " +"[Recommended]" +msgstr "" +"Imensa Aceleração para alguns jogos, com quase nenhum efeito colateral " +"[Recomendado]" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:195 msgid "Enable Wait Loop Detection" msgstr "Habilita Detecção de Loop de Espera" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:196 -msgid "Moderate speedup for some games, with no known side effects. [Recommended]" -msgstr "Moderada Aceleração para alguns jogos, com nenhum efeito colateral conhecido [Recomendado]" +msgid "" +"Moderate speedup for some games, with no known side effects. [Recommended]" +msgstr "" +"Moderada Aceleração para alguns jogos, com nenhum efeito colateral conhecido " +"[Recomendado]" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:198 msgid "Enable fast CDVD" @@ -1797,11 +2041,15 @@ msgstr "Caminho de pesquisa de Temas:" msgid "Select folder containing PCSX2 visual themes" msgstr "Selecione pasta contendo temas visuais de PCSX2" -#: pcsx2/gui/Panels/ThemeSelectorPanel.cpp:44 -msgid "Click the Browse button to select a different folder containing PCSX2 visual themes." -msgstr "Clique no botão Pesquisar para selecionar uma pasta diferente contendo temas visuais de PCSX2." +#: pcsx2/gui/Panels/ThemeSelectorPanel.cpp:45 +msgid "" +"Click the Browse button to select a different folder containing PCSX2 visual " +"themes." +msgstr "" +"Clique no botão Pesquisar para selecionar uma pasta diferente contendo temas " +"visuais de PCSX2." -#: pcsx2/gui/Panels/ThemeSelectorPanel.cpp:48 +#: pcsx2/gui/Panels/ThemeSelectorPanel.cpp:49 msgid "Select a visual theme:" msgstr "Selecione o tema visual:" @@ -1810,8 +2058,11 @@ msgid "Disable Framelimiting" msgstr "Desabilita Limitação de Frames" #: pcsx2/gui/Panels/VideoPanel.cpp:35 -msgid "Useful for running benchmarks. Toggle this option in-game by pressing F4." -msgstr "Útil para rodar benchmarks. Ative/Desative essa opção no jogo pressionando F4." +msgid "" +"Useful for running benchmarks. Toggle this option in-game by pressing F4." +msgstr "" +"Útil para rodar benchmarks. Ative/Desative essa opção no jogo pressionando " +"F4." #: pcsx2/gui/Panels/VideoPanel.cpp:61 msgid "Base Framerate Adjust:" @@ -1829,8 +2080,7 @@ msgstr "Ajuste do Turbo:" msgid "NTSC Framerate:" msgstr "Framerate de NTSC:" -#: pcsx2/gui/Panels/VideoPanel.cpp:91 -#: pcsx2/gui/Panels/VideoPanel.cpp:97 +#: pcsx2/gui/Panels/VideoPanel.cpp:91 pcsx2/gui/Panels/VideoPanel.cpp:97 msgid "FPS" msgstr "FPS" @@ -1838,84 +2088,139 @@ msgstr "FPS" msgid "PAL Framerate:" msgstr "Framerate de PAL:" -#: pcsx2/gui/Panels/VideoPanel.cpp:195 +#: pcsx2/gui/Panels/VideoPanel.cpp:180 msgid "Disabled [default]" msgstr "Desabilitado [padrão]" -#: pcsx2/gui/Panels/VideoPanel.cpp:199 -msgid "Skip when on Turbo only" +#: pcsx2/gui/Panels/VideoPanel.cpp:184 +#, fuzzy +msgid "Skip when on Turbo only (TAB to enable)" msgstr "Pular quando estiver usando Turbo somente" -#: pcsx2/gui/Panels/VideoPanel.cpp:203 +#: pcsx2/gui/Panels/VideoPanel.cpp:188 msgid "Constant skipping" msgstr "Pular constantemente" -#: pcsx2/gui/Panels/VideoPanel.cpp:205 -msgid "Normal and Turbo limit rates skip frames. Slow motion mode will still disable frameskipping." -msgstr "Taxa de limites Normal e Turbo aplicam Frame skipping. O modo câmera lenta vai manter desabilitado Frame skipping." +#: pcsx2/gui/Panels/VideoPanel.cpp:190 +msgid "" +"Normal and Turbo limit rates skip frames. Slow motion mode will still " +"disable frameskipping." +msgstr "" +"Taxa de limites Normal e Turbo aplicam Frame skipping. O modo câmera lenta " +"vai manter desabilitado Frame skipping." -#: pcsx2/gui/Panels/VideoPanel.cpp:231 +#: pcsx2/gui/Panels/VideoPanel.cpp:213 msgid "Frames to Draw" msgstr "Frames a Serem Desenhados" -#: pcsx2/gui/Panels/VideoPanel.cpp:236 +#: pcsx2/gui/Panels/VideoPanel.cpp:218 msgid "Frames to Skip" msgstr "Frames a Serem Pulados" -#: pcsx2/gui/Panels/VideoPanel.cpp:310 +#: pcsx2/gui/Panels/VideoPanel.cpp:294 msgid "Use Synchronized MTGS" msgstr "Usar MTGS Sincronizado" -#: pcsx2/gui/Panels/VideoPanel.cpp:314 +#: pcsx2/gui/Panels/VideoPanel.cpp:298 msgid "Disable all GS output" msgstr "Desabilita toda saída do GS" -#: pcsx2/gui/Panels/VideoPanel.cpp:332 +#: pcsx2/gui/Panels/VideoPanel.cpp:316 msgid "Frame Skipping" msgstr "Frame Skipping" -#: pcsx2/gui/Panels/VideoPanel.cpp:335 +#: pcsx2/gui/Panels/VideoPanel.cpp:319 msgid "Framelimiter" msgstr "Limitador de Frames" -#: pcsx2/ps2/BiosTools.cpp:83 -#: pcsx2/ps2/BiosTools.cpp:151 +#: pcsx2/gui/SysState.cpp:283 +msgid "" +"Cannot load this savestate. The state is from an incompatible edition of " +"PCSX2 that is either newer than this version, or is no longer supported." +msgstr "" +"Não foi possível carregar o savestate. O estado é de uma edição incompatível " +"do PCSX2 que é ou mais nova que essa versão ou não mais suportado." + +#: pcsx2/gui/SysState.cpp:290 +msgid "" +"Cannot load this savestate. The state is an unsupported version, likely " +"created by a newer edition of PCSX2." +msgstr "" +"Não foi possível carregar o savestate. O estado é uma versão não suportada, " +"provavelmente criado por uma edição mais nova do PCSX2." + +#: pcsx2/gui/SysState.cpp:520 +msgid "" +"This savestate cannot be loaded because it is not a valid gzip archive. It " +"may have been created by an older unsupported version of PCSX2, or it may be " +"corrupted." +msgstr "" +"O savestate não pode ser carregado pois não é um arquivo gzip válido. Ele " +"pode ter sido criado por uma versão mais antiga e não suportada do PCSX2, " +"ou pode estar corrupto." + +#: pcsx2/gui/SysState.cpp:579 +msgid "This file is not a valid PCSX2 savestate. See the logfile for details." +msgstr "" +"Esse arquivo não é um savestate válido para PCSX2. Veja o arquivo de log " +"para detalhes." + +#: pcsx2/gui/SysState.cpp:598 +msgid "" +"This savestate cannot be loaded due to missing critical components. See the " +"log file for details." +msgstr "" +"O savestate não pode ser carregado por estar faltando componentes críticos. " +"Veja o arquivo de log para mais detalhes." + +#: pcsx2/ps2/BiosTools.cpp:83 pcsx2/ps2/BiosTools.cpp:151 msgid "The selected BIOS file is not a valid PS2 BIOS. Please re-configure." -msgstr "O arquivo de BIOS selecionado não é uma BIOS de PS2 válida. Por favor reconfigure." +msgstr "" +"O arquivo de BIOS selecionado não é uma BIOS de PS2 válida. Por favor " +"reconfigure." #: pcsx2/ps2/BiosTools.cpp:244 -msgid "The PS2 BIOS could not be loaded. The BIOS has not been configured, or the configuration has been corrupted. Please re-configure." -msgstr "A BIOS de PS2 não pôde ser carregada. A BIOS não foi configurada ou a configuração foi corrompida. Por favor, configure novamente." +msgid "" +"The PS2 BIOS could not be loaded. The BIOS has not been configured, or the " +"configuration has been corrupted. Please re-configure." +msgstr "" +"A BIOS de PS2 não pôde ser carregada. A BIOS não foi configurada ou a " +"configuração foi corrompida. Por favor, configure novamente." #: pcsx2/ps2/BiosTools.cpp:251 msgid "The configured BIOS file does not exist. Please re-configure." -msgstr "O arquivo de BIOS configurado não existe. Por favor, configure novamente." - -#: pcsx2/x86/microVU.cpp:85 -#, c-format -msgid "%s Extensions not found. microVU requires a host CPU with MMX, SSE, and SSE2 extensions." -msgstr "Extensões %s não encontradas. microVU requer uma máquina com CPU que tenha extensões MMX, SSE e SSE2." +msgstr "" +"O arquivo de BIOS configurado não existe. Por favor, configure novamente." #: pcsx2/x86/ix86-32/iR5900-32.cpp:578 #, c-format -msgid "%s Extensions not found. The R5900-32 recompiler requires a host CPU with MMX, SSE, and SSE2 extensions." -msgstr "Extensões %s não encontradas. O recompilador R5900-32 requer uma máquina com CPU que tenha extensões MMX, SSE e SSE2." +msgid "" +"%s Extensions not found. The R5900-32 recompiler requires a host CPU with " +"MMX, SSE, and SSE2 extensions." +msgstr "" +"Extensões %s não encontradas. O recompilador R5900-32 requer uma máquina com " +"CPU que tenha extensões MMX, SSE e SSE2." -#: pcsx2/ZipTools/thread_gzip.cpp:82 -msgid "The savestate was not properly saved. The temporary file was created successfully but could not be moved to its final resting place." -msgstr "O savestate não foi armazenado corretamente. O arquivo temporário foi criado com sucesso, mas não pôde ser movido para seu destino de descanso." +#: pcsx2/x86/microVU.cpp:85 +#, c-format +msgid "" +"%s Extensions not found. microVU requires a host CPU with MMX, SSE, and " +"SSE2 extensions." +msgstr "" +"Extensões %s não encontradas. microVU requer uma máquina com CPU que tenha " +"extensões MMX, SSE e SSE2." -#: common/include/Utilities/Exceptions.h:226 -msgid "Parse error" -msgstr "Erro de Análise" +#~ msgid "&Back >" +#~ msgstr "&Voltar >" -#: common/include/Utilities/Exceptions.h:250 -msgid "Your machine's hardware is incapable of running PCSX2. Sorry dood." -msgstr "O hardware da sua máquina não é capaz de rodar PCSX2. Sinto muito, cara." +#~ msgid "Appearance..." +#~ msgstr "Aparência..." -#: pcsx2/gui/ApplyState.h:55 -msgid "Cannot apply new settings, one of the settings is invalid." -msgstr "Não foi possível aplicar novas configurações, uma das configurações é inválida." +#~ msgid "Flush to Zero" +#~ msgstr "Limpe para Zero" + +#~ msgid "Denormals are Zero" +#~ msgstr "Normalizados são Zero" #~ msgid "" #~ "%s will create the following folder for documents. You can change this " diff --git a/locales/pt_BR/pcsx2_Tertiary.po b/locales/pt_BR/pcsx2_Tertiary.po index 4158c84583..605a3af9ce 100644 --- a/locales/pt_BR/pcsx2_Tertiary.po +++ b/locales/pt_BR/pcsx2_Tertiary.po @@ -1,15 +1,15 @@ msgid "" msgstr "" "Project-Id-Version: PCSX2 0.9.7\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-17 23:26-0300\n" +"Report-Msgid-Bugs-To: http://code.google.com/p/pcsx2/\n" +"POT-Creation-Date: 2011-02-25 18:54+0100\n" "PO-Revision-Date: 2011-01-17 23:26-0300\n" "Last-Translator: Rafael \n" "Language-Team: \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: \n" "X-Poedit-KeywordsList: pxEt;pxLt\n" "X-Poedit-SourceCharset: utf-8\n" "X-Poedit-Basepath: trunk\\\n" @@ -19,55 +19,198 @@ msgstr "" "X-Poedit-SearchPath-0: pcsx2\n" "X-Poedit-SearchPath-1: common\n" +#: common/include/Utilities/Exceptions.h:187 +msgid "No reason given." +msgstr "Nenhuma razão dada." + +#: common/src/Utilities/ThreadTools.cpp:41 +msgid "Threading activity: start, detach, sync, deletion, etc." +msgstr "" +"Manipulação de threads: iniciar, desanexar, sincronizar, exclusão, etc." + +#: common/src/Utilities/wxAppWithHelpers.cpp:36 +msgid "Includes idle event processing and some other uncommon event usages." +msgstr "" +"Inclui eventos ociosos de processamento e alguns outros usos de eventos " +"incomuns." + #: pcsx2/MTGS.cpp:809 -msgid "The MTGS thread has become unresponsive while waiting for the GS plugin to open." +msgid "" +"The MTGS thread has become unresponsive while waiting for the GS plugin to " +"open." msgstr "A thread MTGS não está respondendo enquanto espera o plugin GS abrir." #: pcsx2/PluginManager.cpp:1329 msgid "Internal Memorycard Plugin failed to initialize." msgstr "Plugin the Cartão de Memória Interno falhou em inicializar." -#: pcsx2/gui/ExecutorThread.cpp:40 -msgid "Logs events as they are passed to the PS2 virtual machine." -msgstr "Registra eventos assim que eles são passados para a máquina virtual do PS2." +#: pcsx2/gui/AppConfig.cpp:776 +msgid "Safest" +msgstr "" + +#: pcsx2/gui/AppConfig.cpp:777 +msgid "Safe (faster)" +msgstr "" + +#: pcsx2/gui/AppConfig.cpp:778 +msgid "Balanced" +msgstr "" + +#: pcsx2/gui/AppConfig.cpp:779 +msgid "Aggressive" +msgstr "" + +#: pcsx2/gui/AppConfig.cpp:780 +msgid "Aggressive plus" +msgstr "" + +#: pcsx2/gui/AppConfig.cpp:781 +msgid "Mostly Harmful" +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:412 +msgid "Fits a lot of log in a microcosmically small area." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:414 +msgid "It's what I use (the programmer guy)." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:416 +msgid "Its nice and readable." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:418 +msgid "In case you have a really high res display." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:422 +msgid "Default soft-tone color scheme." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:423 +msgid "" +"Classic black color scheme for people who enjoy having text seared into " +"their optic nerves." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:427 +msgid "" +"When checked the log window will be visible over other foreground windows." +msgstr "" #: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:151 msgid "!ContextTip:ChangingNTFS" -msgstr "Compressão NTFS pode ser alterada manualmente a qualquer tempo usando as propriedades do arquivo no Windows Explorer." +msgstr "" +"Compressão NTFS pode ser alterada manualmente a qualquer tempo usando as " +"propriedades do arquivo no Windows Explorer." + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:164 +msgid "" +"Always use this option if you want the safest and surest memory card " +"behavior." +msgstr "" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:168 +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:172 +msgid "16 and 32 MB cards have roughly the same compatibility factor." +msgstr "" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:176 +msgid "" +"Use at your own risk. Erratic memory card behavior is possible (though " +"unlikely)." +msgstr "" #: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:49 msgid "!ContextTip:Folders:Settings" -msgstr "Essa é a pasta onde PCSX2 salva as configurações, incluindo as configurações geradas pela maioria dos plug-ins (alguns plug-ins antigos podem não respeitar esse valor)." +msgstr "" +"Essa é a pasta onde PCSX2 salva as configurações, incluindo as configurações " +"geradas pela maioria dos plug-ins (alguns plug-ins antigos podem não " +"respeitar esse valor)." -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:37 +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:38 msgid "!Panel:HasHacksOverrides" -msgstr "Aviso! Você está rodando PCSX2 com opções de linha de comando que substituem suas configurações armazenadas. Essas opções de linha de comando não vão refletir na tela de Configurações, e vão ser desativadas se você aplicar qualquer alteração aqui." +msgstr "" +"Aviso! Você está rodando PCSX2 com opções de linha de comando que substituem " +"suas configurações armazenadas. Essas opções de linha de comando não vão " +"refletir na tela de Configurações, e vão ser desativadas se você aplicar " +"qualquer alteração aqui." -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:57 +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:58 msgid "!Panel:HasPluginsOverrides" -msgstr "Aviso! Você está rodando PCSX2 com opções de linha de comando que substituem as configurações de seu plug-in e/ou diretório. Essas opções de linha de comando não vão refletir na tela de Configurações, e vão ser desativadas quando você aplicar qualquer alteração aqui." +msgstr "" +"Aviso! Você está rodando PCSX2 com opções de linha de comando que substituem " +"as configurações de seu plug-in e/ou diretório. Essas opções de linha de " +"comando não vão refletir na tela de Configurações, e vão ser desativadas " +"quando você aplicar qualquer alteração aqui." -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:113 +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:135 msgid "!Notice:Tooltip:Presets:Slider" msgstr "" -"As Pré-Definições aplicam hacks de velocidade, opções de alguns recompiladores e algumas reparações de jogos conhecidas por impulsionar a velocidade. Reparações de jogos ('Patches') conhecidos como importantes serão aplicados automaticamente.\n" +"As Pré-Definições aplicam hacks de velocidade, opções de alguns " +"recompiladores e algumas reparações de jogos conhecidas por impulsionar a " +"velocidade. Reparações de jogos ('Patches') conhecidos como importantes " +"serão aplicados automaticamente.\n" "\n" "Informações das Pré-Definições:\n" "1 - A emulação mais precisa, mas também a mais lenta.\n" "3 --> Tenta balancear velocidade com compatibilidade.\n" "4 - Alguns hacks mais agressivos.\n" -"6 - Hacks demais, o que provavelmente vai deixar a maioria dos jogos lentos.\"" +"6 - Hacks demais, o que provavelmente vai deixar a maioria dos jogos " +"lentos.\"" -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:127 +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:149 msgid "!Notice:Tooltip:Presets:Checkbox" msgstr "" -"As Pré-Definições aplicam hacks de velocidade, opções de alguns recompiladores e algumas reparações de jogos conhecidas por impulsionar a velocidade. Reparações de jogos ('Patches') conhecidas como importantes serão aplicadas automaticamente.\n" +"As Pré-Definições aplicam hacks de velocidade, opções de alguns " +"recompiladores e algumas reparações de jogos conhecidas por impulsionar a " +"velocidade. Reparações de jogos ('Patches') conhecidas como importantes " +"serão aplicadas automaticamente.\n" "\n" -"--> Desmarque para modifcar configurações manualmente (com base na pré-definição selecionada)" +"--> Desmarque para modifcar configurações manualmente (com base na pré-" +"definição selecionada)" -#: pcsx2/gui/Panels/DirPickerPanel.cpp:118 +#: pcsx2/gui/ExecutorThread.cpp:40 +msgid "Logs events as they are passed to the PS2 virtual machine." +msgstr "" +"Registra eventos assim que eles são passados para a máquina virtual do PS2." + +#: pcsx2/gui/Panels/DirPickerPanel.cpp:156 msgid "!ContextTip:DirPicker:UseDefault" -msgstr "Quando marcado essa pasta vai refletir automaticamente a associação automática com a configuração de modo usuário do PCSX2." +msgstr "" +"Quando marcado essa pasta vai refletir automaticamente a associação " +"automática com a configuração de modo usuário do PCSX2." + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:52 +msgid "!ContextTip:Window:Vsync" +msgstr "" +"Vsync elimina ranhuras na tela, mas tipicamente ataca em muito a performance." + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:57 +msgid "!ContextTip:Window:HideMouse" +msgstr "" +"Marque para forçar a ocultação do cursor do mouse dentro da janela do GS; " +"útil se usando o mouse como dispositivo de controle primário para jogar. Por " +"padrão o mouse se auto-oculta após 2 segundos de inatividade." + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:63 +msgid "!ContextTip:Window:Fullscreen" +msgstr "" +"Ativa alteração automática para tela cheia quando iniciando ou resumindo " +"emulação." + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:68 +msgid "!ContextTip:Window:FullscreenExclusive" +msgstr "" +"Mode Exclusivo Tela Cheia pode ficar melhor em CRTs mais velhos e pode ficar " +"um pouco mais rápido em placas de vídeo antigas." + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:73 +msgid "!ContextTip:Window:HideGS" +msgstr "" +"Fecha completamente a normalmente grande e volumosa janela do GS quando " +"pressionado ESC ou suspendido o emulador." #: pcsx2/gui/Panels/GameFixesPanel.cpp:67 msgid "!ContextTip:Gamefixes:EE Timing Hack" @@ -85,49 +228,43 @@ msgstr "" " * Growlanser II e III\n" " * Wizardry" -#: pcsx2/gui/Panels/GSWindowPanel.cpp:52 -msgid "!ContextTip:Window:Vsync" -msgstr "Vsync elimina ranhuras na tela, mas tipicamente ataca em muito a performance." - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:57 -msgid "!ContextTip:Window:HideMouse" -msgstr "Marque para forçar a ocultação do cursor do mouse dentro da janela do GS; útil se usando o mouse como dispositivo de controle primário para jogar. Por padrão o mouse se auto-oculta após 2 segundos de inatividade." - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:63 -msgid "!ContextTip:Window:Fullscreen" -msgstr "Ativa alteração automática para tela cheia quando iniciando ou resumindo emulação." - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:68 -msgid "!ContextTip:Window:FullscreenExclusive" -msgstr "Mode Exclusivo Tela Cheia pode ficar melhor em CRTs mais velhos e pode ficar um pouco mais rápido em placas de vídeo antigas." - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:73 -msgid "!ContextTip:Window:HideGS" -msgstr "Fecha completamente a normalmente grande e volumosa janela do GS quando pressionado ESC ou suspendido o emulador." - #: pcsx2/gui/Panels/PathsPanel.cpp:40 msgid "!ContextTip:Folders:Savestates" -msgstr "Essa pasta é onde PCSX2 salva os savestates; os quais são salvados tanto usando menus/barras de ferramentas, ou pressionando F1/F3 (carregar/salvar)." +msgstr "" +"Essa pasta é onde PCSX2 salva os savestates; os quais são salvados tanto " +"usando menus/barras de ferramentas, ou pressionando F1/F3 (carregar/salvar)." #: pcsx2/gui/Panels/PathsPanel.cpp:50 msgid "!ContextTip:Folders:Snapshots" -msgstr "Essa pasta é onde PCSX2 salva as capturas de tela. O formato e estilo real da imagem de captura de tela pode variar dependendo do plug-in de GS está sendo usado." +msgstr "" +"Essa pasta é onde PCSX2 salva as capturas de tela. O formato e estilo real " +"da imagem de captura de tela pode variar dependendo do plug-in de GS está " +"sendo usado." #: pcsx2/gui/Panels/PathsPanel.cpp:60 msgid "!ContextTip:Folders:Logs" -msgstr "Essa pasta é onde PCSX2 salva seus arquivos de log e de extração para diagnóstico. A maioria dos plug-ins vão também aderir a essa pasta, mas alguns plug-ins antigos podem acabar por ignorar." +msgstr "" +"Essa pasta é onde PCSX2 salva seus arquivos de log e de extração para " +"diagnóstico. A maioria dos plug-ins vão também aderir a essa pasta, mas " +"alguns plug-ins antigos podem acabar por ignorar." #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:27 msgid "!Panel:Speedhacks:EECycleX1" -msgstr "1 - Frequência de ciclo normal. Isso quase corresponde com a real velocidade de uma EmotionEngine real de PS2." +msgstr "" +"1 - Frequência de ciclo normal. Isso quase corresponde com a real velocidade " +"de uma EmotionEngine real de PS2." #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:32 msgid "!Panel:Speedhacks:EECycleX2" -msgstr "2 - Reduz a frequência de ciclo do EE em mais ou menos 33%. Aceleração suave para a maioria dos jogos com alta compatibilidade." +msgstr "" +"2 - Reduz a frequência de ciclo do EE em mais ou menos 33%. Aceleração suave " +"para a maioria dos jogos com alta compatibilidade." #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:37 msgid "!Panel:Speedhacks:EECycleX3" -msgstr "3 - Reduz a frequência de ciclo do EE em mais ou menos 55%. Aceleração moderada, mas *vai* causar falhas de áudio em muitos FMVs." +msgstr "" +"3 - Reduz a frequência de ciclo do EE em mais ou menos 55%. Aceleração " +"moderada, mas *vai* causar falhas de áudio em muitos FMVs." #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:54 msgid "!Panel:Speedhacks:VUCycleStealOff" @@ -135,72 +272,119 @@ msgstr "0 - Desativa Roubo de Ciclo do VU. Configuração mais compatível!" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:59 msgid "!Panel:Speedhacks:VUCycleSteal1" -msgstr "1 - Suave Roubo de Ciclo do VU. Menor compatibilidade, mas é alguma aceleração para maioria dos jogos." +msgstr "" +"1 - Suave Roubo de Ciclo do VU. Menor compatibilidade, mas é alguma " +"aceleração para maioria dos jogos." #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:64 msgid "!Panel:Speedhacks:VUCycleSteal2" -msgstr "2 - Moderado Roubo de Ciclo de VU. Ainda menor compatibilidade, mas a aceleração é significante em alguns jogos." +msgstr "" +"2 - Moderado Roubo de Ciclo de VU. Ainda menor compatibilidade, mas a " +"aceleração é significante em alguns jogos." #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:70 msgid "!Panel:Speedhacks:VUCycleSteal3" -msgstr "3 - Máximo de Roubo de Ciclo de VU. Utilidade é limitada, uma vez que isso pode causar oscilações visuais ou desaceleração na maioria dos jogos." +msgstr "" +"3 - Máximo de Roubo de Ciclo de VU. Utilidade é limitada, uma vez que isso " +"pode causar oscilações visuais ou desaceleração na maioria dos jogos." #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:129 msgid "!ContextTip:Speedhacks:EECycleRate Slider" -msgstr "Definir valores mais altos nesse slider reduz efetivamente a velocidade de clock da CPU núcleo R5900 da EmotionEngine e normalmente traz grande aceleração para jogos que falham em utilizar todo potencial do hardware de PS real." +msgstr "" +"Definir valores mais altos nesse slider reduz efetivamente a velocidade de " +"clock da CPU núcleo R5900 da EmotionEngine e normalmente traz grande " +"aceleração para jogos que falham em utilizar todo potencial do hardware de " +"PS real." #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:150 msgid "!ContextTip:Speedhacks:VUCycleStealing Slider" -msgstr "Esse slider controla a quantidade de ciclos que a unidade VU rouba da EmotionEngine. Maiores valores aumentam o número de ciclos roubados do EE para cada micro-programa VU que o jogo roda." +msgstr "" +"Esse slider controla a quantidade de ciclos que a unidade VU rouba da " +"EmotionEngine. Maiores valores aumentam o número de ciclos roubados do EE " +"para cada micro-programa VU que o jogo roda." #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:172 msgid "!ContextTip:Speedhacks:vuFlagHack" -msgstr "Atualiza Sinalizadores de Estado somente nos blocos que vão ler eles, ao contrário de de o tempo todo. Isso é seguro na maioria do tempo, e o Super VU faz coisa semelhante por padrão." +msgstr "" +"Atualiza Sinalizadores de Estado somente nos blocos que vão ler eles, ao " +"contrário de de o tempo todo. Isso é seguro na maioria do tempo, e o Super " +"VU faz coisa semelhante por padrão." #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:177 msgid "!ContextTip:Speedhacks:vuBlockHack" -msgstr "Presume que num futuro bem distante os blocos não vão precisar dos dados de instâncias de sinalizadores antigos. Isso pode ser bem seguro. Não se sabe se isso quebra algum jogo..." +msgstr "" +"Presume que num futuro bem distante os blocos não vão precisar dos dados de " +"instâncias de sinalizadores antigos. Isso pode ser bem seguro. Não se sabe " +"se isso quebra algum jogo..." #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:182 msgid "!ContextTip:Speedhacks:vuMinMax" -msgstr "Usa o Min/Máx de Operações com Pontos Flutuantes do SSE ao invés de rotinas de Min/Máx de lógica personalizadas. Sabe-se que quebra Gran Turismo 4, Tekken 5." +msgstr "" +"Usa o Min/Máx de Operações com Pontos Flutuantes do SSE ao invés de rotinas " +"de Min/Máx de lógica personalizadas. Sabe-se que quebra Gran Turismo 4, " +"Tekken 5." #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:202 msgid "!ContextTip:Speedhacks:INTC" -msgstr "Esse hack funciona melhor para jogos que usam o registrador de INTC Status para esperar por vsyncs, o qual inclui primariamente títulos de RPG não-3D. Jogos que não usam esse método de vsync vão aproveitar um pouco ou nada de aceleração desse hack." +msgstr "" +"Esse hack funciona melhor para jogos que usam o registrador de INTC Status " +"para esperar por vsyncs, o qual inclui primariamente títulos de RPG não-3D. " +"Jogos que não usam esse método de vsync vão aproveitar um pouco ou nada de " +"aceleração desse hack." #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:207 msgid "!ContextTip:Speedhacks:BIFC0" -msgstr "Mirando primariamente o loop ocioso do EE no endereço 0x81Fc0 no kernel, esse hack tenta detectar loops cujo conteúdo garantidamente resulta no mesmo estado da máquina para toda iteração até que um evento agendado dispare emulação de outra unidade. Depois de uma interação desses loops, nós avançamos para a vez do evento seguinte ou o fim da fatia de tempo do processador, seja qual for que vier a ocorrer primeiro." +msgstr "" +"Mirando primariamente o loop ocioso do EE no endereço 0x81Fc0 no kernel, " +"esse hack tenta detectar loops cujo conteúdo garantidamente resulta no mesmo " +"estado da máquina para toda iteração até que um evento agendado dispare " +"emulação de outra unidade. Depois de uma interação desses loops, nós " +"avançamos para a vez do evento seguinte ou o fim da fatia de tempo do " +"processador, seja qual for que vier a ocorrer primeiro." #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:214 msgid "!ContextTip:Speedhacks:fastCDVD" -msgstr "Verifica lista de compatibilidade de HDLoader para jogos conhecidos que tenham problemas com isso. (Muitas vezes marcado por precisar de 'modo 1' ou 'DVD lento')" +msgstr "" +"Verifica lista de compatibilidade de HDLoader para jogos conhecidos que " +"tenham problemas com isso. (Muitas vezes marcado por precisar de 'modo 1' ou " +"'DVD lento')" #: pcsx2/gui/Panels/VideoPanel.cpp:37 msgid "!ContextTip:Framelimiter:Disable" -msgstr "Note que quando o Limitador de Frames está desabilitado, os modos Turbo e Câmera Lenta também não vão estar disponíveis." +msgstr "" +"Note que quando o Limitador de Frames está desabilitado, os modos Turbo e " +"Câmera Lenta também não vão estar disponíveis." -#: pcsx2/gui/Panels/VideoPanel.cpp:318 +#: pcsx2/gui/Panels/VideoPanel.cpp:162 +msgid "" +"Error while parsing either NTSC or PAL framerate settings. Settings must be " +"valid floating point numerics." +msgstr "" + +#: pcsx2/gui/Panels/VideoPanel.cpp:295 +msgid "" +"For troubleshooting potential bugs in the MTGS only, as it is potentially " +"very slow." +msgstr "" + +#: pcsx2/gui/Panels/VideoPanel.cpp:299 +msgid "" +"Completely disables all GS plugin activity; ideal for benchmarking EEcore " +"components." +msgstr "" + +#: pcsx2/gui/Panels/VideoPanel.cpp:302 msgid "!ContextTip:GS:SyncMTGS" -msgstr "Habilite isso se você achar que a sincronização da thread MTGS está causando travamentos ou erros gráficos." +msgstr "" +"Habilite isso se você achar que a sincronização da thread MTGS está causando " +"travamentos ou erros gráficos." -#: pcsx2/gui/Panels/VideoPanel.cpp:322 +#: pcsx2/gui/Panels/VideoPanel.cpp:306 msgid "!ContextTip:GS:DisableOutput" msgstr "" -"Remove qualquer ruído padrão causado pela sobrecarga da thread MTGS ou da GPU. Essa opção é melhor usada em conjunto com savestates: armazene o estado em uma cena ideal, habilite essa opção e recarregue o savestate.\n" +"Remove qualquer ruído padrão causado pela sobrecarga da thread MTGS ou da " +"GPU. Essa opção é melhor usada em conjunto com savestates: armazene o estado " +"em uma cena ideal, habilite essa opção e recarregue o savestate.\n" "\n" -"Aviso: Essa opção pode ser ativada durante o jogo, mas normalmente não pode ser desativada durante o jogo (o vídeo normalmente ficará estragado)" - -#: common/src/Utilities/ThreadTools.cpp:41 -msgid "Threading activity: start, detach, sync, deletion, etc." -msgstr "Manipulação de threads: iniciar, desanexar, sincronizar, exclusão, etc." - -#: common/src/Utilities/wxAppWithHelpers.cpp:36 -msgid "Includes idle event processing and some other uncommon event usages." -msgstr "Inclui eventos ociosos de processamento e alguns outros usos de eventos incomuns." - -#: common/include/Utilities/Exceptions.h:187 -msgid "No reason given." -msgstr "Nenhuma razão dada." - +"Aviso: Essa opção pode ser ativada durante o jogo, mas normalmente não pode " +"ser desativada durante o jogo (o vídeo normalmente ficará estragado)" diff --git a/locales/ru_RU/pcsx2_Devel.po b/locales/ru_RU/pcsx2_Devel.po index 05b025df87..2dbffacbfd 100644 --- a/locales/ru_RU/pcsx2_Devel.po +++ b/locales/ru_RU/pcsx2_Devel.po @@ -2,10 +2,11 @@ msgid "" msgstr "" "Project-Id-Version: PCSX2 0.9.7\n" "Report-Msgid-Bugs-To: http://code.google.com/p/pcsx2/\n" -"POT-Creation-Date: 2010-12-26 09:58-0500\n" +"POT-Creation-Date: 2011-02-25 18:54+0100\n" "PO-Revision-Date: 2010-12-28 13:54+0300\n" "Last-Translator: Kein \n" "Language-Team: \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -17,11 +18,17 @@ msgstr "" #: pcsx2/SourceLog.cpp:96 msgid "Dumps detailed information for PS2 executables (ELFs)." -msgstr "Отображает детальную информацию касательно исполняемых файлов PS2 (ELF-файлах)." +msgstr "" +"Отображает детальную информацию касательно исполняемых файлов PS2 (ELF-" +"файлах)." #: pcsx2/SourceLog.cpp:101 -msgid "Logs manual protection, split blocks, and other things that might impact performance." -msgstr "Отображает информацию о manual protection, split blocks, и других источниках, которые могут влиять на производительность." +msgid "" +"Logs manual protection, split blocks, and other things that might impact " +"performance." +msgstr "" +"Отображает информацию о manual protection, split blocks, и других " +"источниках, которые могут влиять на производительность." #: pcsx2/SourceLog.cpp:106 msgid "Shows the game developer's logging text (EE processor)" @@ -43,8 +50,7 @@ msgstr "" msgid "Direct memory accesses to unknown or unmapped EE memory space." msgstr "" -#: pcsx2/SourceLog.cpp:157 -#: pcsx2/SourceLog.cpp:270 +#: pcsx2/SourceLog.cpp:157 pcsx2/SourceLog.cpp:276 msgid "Disasm of executing core instructions (excluding COPs and CACHE)." msgstr "" @@ -65,16 +71,16 @@ msgid "Execution of EE cache instructions." msgstr "" #: pcsx2/SourceLog.cpp:187 -msgid "All known hardware register accesses (very slow!); not including sub filter options below." +msgid "" +"All known hardware register accesses (very slow!); not including sub filter " +"options below." msgstr "" -#: pcsx2/SourceLog.cpp:193 -#: pcsx2/SourceLog.cpp:288 +#: pcsx2/SourceLog.cpp:193 pcsx2/SourceLog.cpp:294 msgid "Logs only unknown, unmapped, or unimplemented register accesses." msgstr "" -#: pcsx2/SourceLog.cpp:199 -#: pcsx2/SourceLog.cpp:294 +#: pcsx2/SourceLog.cpp:199 pcsx2/SourceLog.cpp:300 msgid "Logs only DMA-related registers." msgstr "" @@ -91,58 +97,62 @@ msgid "All VIFcode processing; command, tag style, interrupts." msgstr "" #: pcsx2/SourceLog.cpp:223 -msgid "Scratchpad's MFIFO activity." +msgid "All processing involved in Path3 Masking" msgstr "" #: pcsx2/SourceLog.cpp:229 -msgid "Actual data transfer logs, bus right arbitration, stalls, etc." +msgid "Scratchpad's MFIFO activity." msgstr "" #: pcsx2/SourceLog.cpp:235 -msgid "Tracks all EE counters events and some counter register activity." +msgid "Actual data transfer logs, bus right arbitration, stalls, etc." msgstr "" #: pcsx2/SourceLog.cpp:241 -msgid "Dumps various VIF and VIFcode processing data." +msgid "Tracks all EE counters events and some counter register activity." msgstr "" #: pcsx2/SourceLog.cpp:247 +msgid "Dumps various VIF and VIFcode processing data." +msgstr "" + +#: pcsx2/SourceLog.cpp:253 msgid "Dumps various GIF and GIFtag parsing data." msgstr "" -#: pcsx2/SourceLog.cpp:258 +#: pcsx2/SourceLog.cpp:264 msgid "SYSCALL and IRX activity." msgstr "" -#: pcsx2/SourceLog.cpp:264 +#: pcsx2/SourceLog.cpp:270 msgid "Direct memory accesses to unknown or unmapped IOP memory space." msgstr "" -#: pcsx2/SourceLog.cpp:276 +#: pcsx2/SourceLog.cpp:282 msgid "Disasm of the IOP's GPU co-processor instructions." msgstr "" -#: pcsx2/SourceLog.cpp:282 -msgid "All known hardware register accesses, not including the sub-filters below." -msgstr "" - -#: pcsx2/SourceLog.cpp:300 -msgid "Memorycard reads, writes, erases, terminators, and other processing." +#: pcsx2/SourceLog.cpp:288 +msgid "" +"All known hardware register accesses, not including the sub-filters below." msgstr "" #: pcsx2/SourceLog.cpp:306 -msgid "Gamepad activity on the SIO." +msgid "Memorycard reads, writes, erases, terminators, and other processing." msgstr "" #: pcsx2/SourceLog.cpp:312 -msgid "Actual DMA event processing and data transfer logs." +msgid "Gamepad activity on the SIO." msgstr "" #: pcsx2/SourceLog.cpp:318 -msgid "Tracks all IOP counters events and some counter register activity." +msgid "Actual DMA event processing and data transfer logs." msgstr "" #: pcsx2/SourceLog.cpp:324 +msgid "Tracks all IOP counters events and some counter register activity." +msgstr "" + +#: pcsx2/SourceLog.cpp:330 msgid "Detailed logging of CDVD hardware." msgstr "Выводит в лог детальную информацию о CDVD-системе." - diff --git a/locales/ru_RU/pcsx2_Iconized.po b/locales/ru_RU/pcsx2_Iconized.po index 5dd559b93d..14e656338a 100644 --- a/locales/ru_RU/pcsx2_Iconized.po +++ b/locales/ru_RU/pcsx2_Iconized.po @@ -2,10 +2,11 @@ msgid "" msgstr "" "Project-Id-Version: PCSX2 0.9.7\n" "Report-Msgid-Bugs-To: http://code.google.com/p/pcsx2/\n" -"POT-Creation-Date: 2010-12-26 10:02-0500\n" +"POT-Creation-Date: 2011-02-25 18:54+0100\n" "PO-Revision-Date: 2010-12-28 13:54+0300\n" "Last-Translator: Kein \n" "Language-Team: Kein \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -17,160 +18,290 @@ msgstr "" "X-Poedit-SearchPath-0: pcsx2\n" "X-Poedit-SearchPath-1: common\n" -#: pcsx2/System.cpp:114 -msgid "!Notice:Recompiler:VirtualMemoryAlloc" -msgstr "Рекомпилятор не смог зарезервировать непрерывный блок памяти, необходимый для внутреннего кэша. Данная проблема может быть вызвана недостатком виртуальной памяти и/или свободных ресурсов (например, малым объемом своп-файла или программой, которая использует слишком много системных ресурсов). Если хотите, вы можете попробовать уменьшить значения кэша для всех рекомпиляторов PCSX2 (см. «Основные настройки»)." - -#: pcsx2/System.cpp:346 -msgid "!Notice:EmuCore::MemoryForVM" -msgstr "Эмулятор PCSX2 не смог зарезервировать объем памяти, необходимый для виртуальной машины PS2. Попробуйте закрыть какие-либо \"тяжелые\" приложения (антивирус, браузер) и перезапустите PCSX2." - -#: pcsx2/vtlb.cpp:588 -msgid "!Notice:HostVmReserve" -msgstr "Недостаточно виртуальной памяти для запуска PCSX2. Возможно, у вас отключен своп-файл или какая-то другая программа \"съела\" все системные ресурсы." +#: common/src/Utilities/Exceptions.cpp:254 +msgid "!Notice:VirtualMemoryMap" +msgstr "" +"В вашей системе недостаточно виртуальной памяти, либо же, доступное адресное " +"пространство уже занято другим процессом, службой или библиотеками." #: pcsx2/CDVD/CDVD.cpp:385 msgid "!Notice:PsxDisc" -msgstr "Эмулятор PCSX2 не поддерживает игры от PlayStation. Если вы желаете запустить игры от PSX, используйте соответствующий эмулятор: ePSXe или PCSX." +msgstr "" +"Эмулятор PCSX2 не поддерживает игры от PlayStation. Если вы желаете " +"запустить игры от PSX, используйте соответствующий эмулятор: ePSXe или PCSX." -#: pcsx2/gui/AppInit.cpp:44 +#: pcsx2/System.cpp:114 +msgid "!Notice:Recompiler:VirtualMemoryAlloc" +msgstr "" +"Рекомпилятор не смог зарезервировать непрерывный блок памяти, необходимый " +"для внутреннего кэша. Данная проблема может быть вызвана недостатком " +"виртуальной памяти и/или свободных ресурсов (например, малым объемом своп-" +"файла или программой, которая использует слишком много системных ресурсов). " +"Если хотите, вы можете попробовать уменьшить значения кэша для всех " +"рекомпиляторов PCSX2 (см. «Основные настройки»)." + +#: pcsx2/System.cpp:348 +msgid "!Notice:EmuCore::MemoryForVM" +msgstr "" +"Эмулятор PCSX2 не смог зарезервировать объем памяти, необходимый для " +"виртуальной машины PS2. Попробуйте закрыть какие-либо \"тяжелые\" приложения " +"(антивирус, браузер) и перезапустите PCSX2." + +#: pcsx2/gui/AppInit.cpp:43 msgid "!Notice:Startup:NoSSE2" -msgstr "Внимание: ваш компьютер не поддерживает SSE2-инструкции, необходимые для работы многих плагинов и опций PCSX2. Вы будете ограничены в настройках эмулятора, а сам процесс эмуляции будет *очень* медленным." +msgstr "" +"Внимание: ваш компьютер не поддерживает SSE2-инструкции, необходимые для " +"работы многих плагинов и опций PCSX2. Вы будете ограничены в настройках " +"эмулятора, а сам процесс эмуляции будет *очень* медленным." -#: pcsx2/gui/AppInit.cpp:290 +#: pcsx2/gui/AppInit.cpp:162 msgid "!Notice:RecompilerInit:Header" -msgstr "Внимание: произошла ошибка инициализации некоторых рекомпиляторов PCSX2, они будут автоматически отключены." +msgstr "" +"Внимание: произошла ошибка инициализации некоторых рекомпиляторов PCSX2, они " +"будут автоматически отключены." -#: pcsx2/gui/AppInit.cpp:344 +#: pcsx2/gui/AppInit.cpp:211 msgid "!Notice:RecompilerInit:Footer" -msgstr "Примечание: наличие рекомпиляторов не критично для работы PCSX2 в целом, однако, они позволяют ускорить процесс эмуляции в разы. Вы можете включить их снова в настройках эмуляции PCSX2 сразу после того, как устраните причину ошибки." +msgstr "" +"Примечание: наличие рекомпиляторов не критично для работы PCSX2 в целом, " +"однако, они позволяют ускорить процесс эмуляции в разы. Вы можете включить " +"их снова в настройках эмуляции PCSX2 сразу после того, как устраните причину " +"ошибки." -#: pcsx2/gui/AppMain.cpp:483 +#: pcsx2/gui/AppMain.cpp:476 msgid "!Notice:BiosDumpRequired" -msgstr "Для работы эмулятора PCSX2 вам нужна *легальная* копия образа BIOS'а из вашей PS2. Вы не можете использовать образ, скачанный из интернета или полученный от друзей. Используйте спец-программы для сохранения вашей собственной копии BIOS'а с вашей консоли." +msgstr "" +"Для работы эмулятора PCSX2 вам нужна *легальная* копия образа BIOS'а из " +"вашей PS2. Вы не можете использовать образ, скачанный из интернета или " +"полученный от друзей. Используйте спец-программы для сохранения вашей " +"собственной копии BIOS'а с вашей консоли." -#: pcsx2/gui/AppMain.cpp:567 +#: pcsx2/gui/AppMain.cpp:559 msgid "!Notice Error:Thread Deadlock Actions" -msgstr "Выберите 'Игнорировать' если хотите подождать ответа.Выберите 'Отмена' если желаете закрыть поток.Выберите 'Выход' если хотите завершить работу PCSX2." +msgstr "" +"Выберите 'Игнорировать' если хотите подождать ответа.Выберите 'Отмена' если " +"желаете закрыть поток.Выберите 'Выход' если хотите завершить работу PCSX2." + +#: pcsx2/gui/AppUserMode.cpp:59 +msgid "!Error:PortableModeRights" +msgstr "" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:54 +msgid "!Panel:Folders:Settings" +msgstr "" +"Ниже вы можете указать отдельную папку для хранения настроек PCSX2. Если вы " +"укажете папку с уже существующимим настройками PCSX2 вам будет предложен " +"выбор импортировать их в текущую конфигурацию." + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:94 +msgid "!Wizard:Welcome" +msgstr "" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:140 +msgid "!Wizard:Bios:Tutorial" +msgstr "" +"Для работы эмулятора PCSX2 вам нужна *легальная* копия образа BIOS'а PS2. Вы " +"не можете использовать образ, скачанный из интернета или полученный от " +"друзей. Используйте спец-программы для сохранения вашей собственной копии " +"BIOS'а с вашей консоли. Для более подробной информации обратитесь к " +"руководству программы." + +#: pcsx2/gui/Dialogs/ImportSettingsDialog.cpp:31 +msgid "!Notice:ImportExistingSettings" +msgstr "" +"Программа настройки %s нашла старые настройки эмулятора в указанной вами " +"папке. Желаете импортировать эти настройки или перезаписать настройками %s " +"по умолчанию?\n" +"\n" +"(нажмите \"Отмена\" для выбора другой папки)" + +#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:30 +msgid "!Panel:Mcd:NtfsCompress" +msgstr "" +"Режим NTFS-компрессии быстр, надежен и нативен для Windows. Весьма неплохое " +"сжатие файлов карт памяти ставит его в один ряд с другими рекомендуемыми " +"настройками." + +#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:41 +msgid "!Panel:Mcd:EnableEjection" +msgstr "" +"Позволяет избежать возможной порчи вирутальных карты памяти при " +"использовании быстрых сохранений. Сразу после загрузки оного, эмулятор " +"\"заставит\" игру перечитать содержимое карты. Данный режим несоместим с " +"некоторыми играми (Guitar Hero 4)." + +#: pcsx2/gui/Dialogs/StuckThreadDialog.cpp:33 +msgid "!Panel:StuckThread:Heading" +msgstr "" +"Нет ответа от потока '%s'. Возможно он завис или работет *очень* медленно." #: pcsx2/gui/IsoDropTarget.cpp:28 msgid "!Notice:ConfirmSysReset" -msgstr "Данная операция перезапустит вирутальную машину PS2. Все несохраненные данные будут потеряны. Хотите продолжить?" +msgstr "" +"Данная операция перезапустит вирутальную машину PS2. Все несохраненные " +"данные будут потеряны. Хотите продолжить?" -#: pcsx2/gui/MainMenuClicks.cpp:112 +#: pcsx2/gui/MainMenuClicks.cpp:106 msgid "!Notice:DeleteSettings" msgstr "" -"Данная команда удалит текущие настройки PCSX2 и позволит вам запустить Мастер настройки при следующем запуске PCSX2.\n" +"Данная команда удалит текущие настройки PCSX2 и позволит вам запустить " +"Мастер настройки при следующем запуске PCSX2.\n" "\n" -"ВНИМАНИЕ!!! Если вы нажмете OK вы подтвердите удаление ВСЕХ ваших настроек. Сразу же после этого действия работа программы будет завершена, все несохраненные данные - потеряны. Вы точно уверены что хотите сделать это? Точно-точно? А если вилку в глаз и переспросить?\n" +"ВНИМАНИЕ!!! Если вы нажмете OK вы подтвердите удаление ВСЕХ ваших настроек. " +"Сразу же после этого действия работа программы будет завершена, все " +"несохраненные данные - потеряны. Вы точно уверены что хотите сделать это? " +"Точно-точно? А если вилку в глаз и переспросить?\n" "\n" "(примечание: все настройки плагинов сохранятся)" #: pcsx2/gui/MemoryCardFile.cpp:77 msgid "!Notice:Mcd:HasBeenDisabled" msgstr "" -"Карта памяти в слоте %d была автоматически отключена. После того, как вы исправите проблему,\n" -"вы можете включить ее опять в окне управления картами памяти: Настройки -> Настройки карт памя" +"Карта памяти в слоте %d была автоматически отключена. После того, как вы " +"исправите проблему,\n" +"вы можете включить ее опять в окне управления картами памяти: Настройки -> " +"Настройки карт памя" -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:53 -msgid "!Panel:Folders:Settings" -msgstr "Ниже вы можете указать отдельную папку для хранения настроек PCSX2. Если вы укажете папку с уже существующимим настройками PCSX2 вам будет предложен выбор импортировать их в текущую конфигурацию." - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:109 -msgid "!Notice:DocsFolderFileConflict" -msgstr "PCSX2 не может создать папку для настроек в указанном вами месте ввиду наличия одноименного файла по указанному вами пути. Удалите файл или выберите другое месторасположение для папки с настройками." - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:152 -msgid "!Wizard:Bios:Tutorial" -msgstr "Для работы эмулятора PCSX2 вам нужна *легальная* копия образа BIOS'а PS2. Вы не можете использовать образ, скачанный из интернета или полученный от друзей. Используйте спец-программы для сохранения вашей собственной копии BIOS'а с вашей консоли. Для более подробной информации обратитесь к руководству программы." - -#: pcsx2/gui/Dialogs/ImportSettingsDialog.cpp:31 -msgid "!Notice:ImportExistingSettings" -msgstr "" -"Программа настройки %s нашла старые настройки эмулятора в указанной вами папке. Желаете импортировать эти настройки или перезаписать настройками %s по умолчанию?\n" -"\n" -"(нажмите \"Отмена\" для выбора другой папки)" - -#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:30 -msgid "!Panel:Mcd:NtfsCompress" -msgstr "Режим NTFS-компрессии быстр, надежен и нативен для Windows. Весьма неплохое сжатие файлов карт памяти ставит его в один ряд с другими рекомендуемыми настройками." - -#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:41 -msgid "!Panel:Mcd:EnableEjection" -msgstr "Позволяет избежать возможной порчи вирутальных карты памяти при использовании быстрых сохранений. Сразу после загрузки оного, эмулятор \"заставит\" игру перечитать содержимое карты. Данный режим несоместим с некоторыми играми (Guitar Hero 4)." - -#: pcsx2/gui/Dialogs/StuckThreadDialog.cpp:33 -msgid "!Panel:StuckThread:Heading" -msgstr "Нет ответа от потока '%s'. Возможно он завис или работет *очень* медленно." - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:37 -msgid "!Panel:HasHacksOverrides" -msgstr "Внимание! Вы запустили PCSX2 с использованием ключей командной строки, опции которых буду преобладать над любыми текущими настройками PCSX2. Значения данных опций не будут отображены в диалоговых окнах настроек эмулятора. При любых изменениях настроек эмулятора через интерфейс, все опции, переданные через командную строку, будут аннулированы." - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:57 -msgid "!Panel:HasPluginsOverrides" -msgstr "Внимание! Вы запустили PCSX2 с использованием ключей командной строки, опции которых буду преобладать над любыми настройками плагинов и/или рабочих папок PCSX2. Значения данных опций не будут отображены в диалоговых окнах настроек эмулятора. При любых изменениях настроек эмулятора через интерфейс, все опции, переданные через командную строку, будут аннулированы." - -#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:126 +#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:138 msgid "!Notice:BIOS:InvalidSelection" -msgstr "Для продолжения работы вам необходимо выбрать образ BIOS'а. Если вы не уверены в своем выборе, нажмите Cancel дабы закрыть окно настроек без применения изменений." +msgstr "" +"Для продолжения работы вам необходимо выбрать образ BIOS'а. Если вы не " +"уверены в своем выборе, нажмите Cancel дабы закрыть окно настроек без " +"применения изменений." -#: pcsx2/gui/Panels/DirPickerPanel.cpp:63 +#: pcsx2/gui/Panels/CpuPanel.cpp:111 +#, fuzzy +msgid "!Panel:EE/IOP:Heading" +msgstr "" +"Примечание: ввиду особенностей архитектуры аппаратной части PS2, аккуратный " +"пропуск кадров невозможен в принципе. Поэтому, его активация может " +"спровоцировать появление графических артефактов в некоторых играх." + +#: pcsx2/gui/Panels/CpuPanel.cpp:178 +#, fuzzy +msgid "!Panel:VUs:Heading" +msgstr "" +"Примечание: ввиду особенностей архитектуры аппаратной части PS2, аккуратный " +"пропуск кадров невозможен в принципе. Поэтому, его активация может " +"спровоцировать появление графических артефактов в некоторых играх." + +#: pcsx2/gui/Panels/DirPickerPanel.cpp:69 msgid "!Notice:DirPicker:CreatePath" msgstr "Указаные путь/папка не существуют. Желаете создать их?" #: pcsx2/gui/Panels/GameFixesPanel.cpp:96 msgid "!Panel:Gamefixes:Compat Warning" -msgstr "Определенные игровые хаки исправляют ошибки эмуляции в определенных играх, однако почти всегда вызывают ошибки и проблемы в других. При смене игры вам необходимо отключить хаки вручную (если какие-либо их них были включены)." +msgstr "" +"Определенные игровые хаки исправляют ошибки эмуляции в определенных играх, " +"однако почти всегда вызывают ошибки и проблемы в других. При смене игры вам " +"необходимо отключить хаки вручную (если какие-либо их них были включены)." -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:365 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:368 msgid "!Notice:Mcd:Overwrite" -msgstr "Данная операция скопирует информацию карты памяти из слота %u на карту памяти в слоте %u. Все данные второй карты памяти будут потеряны. Вы уверены что хотите продолжить?" +msgstr "" +"Данная операция скопирует информацию карты памяти из слота %u на карту " +"памяти в слоте %u. Все данные второй карты памяти будут потеряны. Вы уверены " +"что хотите продолжить?" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:379 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:384 msgid "!Notice:Mcd:Copy Failed" -msgstr "Ошибка! Невозможно скопировать выбранную карту памяти в слот %u. Указанный файл уже используется." +msgstr "" +"Ошибка! Невозможно скопировать выбранную карту памяти в слот %u. Указанный " +"файл уже используется." -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:585 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:596 msgid "!Notice:Mcd:Delete" -msgstr "Вы действительно хотите удалить отформатированную карту памяти в слоте %u? Все сохраненные данные на ней будут потеряны!" +msgstr "" +"Вы действительно хотите удалить отформатированную карту памяти в слоте %u? " +"Все сохраненные данные на ней будут потеряны!" #: pcsx2/gui/Panels/MiscPanelStuff.cpp:35 msgid "!Panel:Usermode:Explained" -msgstr "Выберите место, куда PCSX2 будет сохранять ваши пользовательские данные (настройки, карты памяти, быстрые сохранения, скриншоты и т.д.). Папка, которую вы выберете, будет основной рабочей папкой PCSX2, но вы всегда сможете изменить ее месторасположение через меню настроек эмулятора." +msgstr "" +"Выберите место, куда PCSX2 будет сохранять ваши пользовательские данные " +"(настройки, карты памяти, быстрые сохранения, скриншоты и т.д.). Папка, " +"которую вы выберете, будет основной рабочей папкой PCSX2, но вы всегда " +"сможете изменить ее месторасположение через меню настроек эмулятора." #: pcsx2/gui/Panels/MiscPanelStuff.cpp:41 msgid "!Panel:Usermode:Warning" -msgstr "Данная опция позволит вам изменить папку, где PCSX2 будет сохранять ваши пользовательские данные (настройки, карты памяти, быстрые сохранения, скриншоты и т.д.). Произведенные изменения затронут только те стандартные папки, у которых стоит галочка \"Использовать настройки по умолчанию\"." +msgstr "" +"Данная опция позволит вам изменить папку, где PCSX2 будет сохранять ваши " +"пользовательские данные (настройки, карты памяти, быстрые сохранения, " +"скриншоты и т.д.). Произведенные изменения затронут только те стандартные " +"папки, у которых стоит галочка \"Использовать настройки по умолчанию\"." #: pcsx2/gui/Panels/PluginSelectorPanel.cpp:242 msgid "!Notice:PluginSelector:ConfirmShutdown" msgstr "" -"Внимание! Смена плагинов требует перезапуска вирутальной машины PS2. Сейчас PCSX2 попробует сохранить текущее состояние и восстановить его с новыми настройками, однако если выбранные вами плагины окажутся несовместимы, данная операция чревата потерей всех данных.\"\n" +"Внимание! Смена плагинов требует перезапуска вирутальной машины PS2. Сейчас " +"PCSX2 попробует сохранить текущее состояние и восстановить его с новыми " +"настройками, однако если выбранные вами плагины окажутся несовместимы, " +"данная операция чревата потерей всех данных.\"\n" "\n" "Вы действительно хотите продолжить?" -#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:458 +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:457 msgid "!Notice:PluginSelector:ApplyFailed" -msgstr "Для нормальной работы %s вам необходимо указать и выбрать все доступные плагины. Если вы не можете сделать выбор ввиду отсутствия некоторых плагинов %s, нажмите \"Отмена\" для выхода из окна настроек." +msgstr "" +"Для нормальной работы %s вам необходимо указать и выбрать все доступные " +"плагины. Если вы не можете сделать выбор ввиду отсутствия некоторых плагинов " +"%s, нажмите \"Отмена\" для выхода из окна настроек." #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:97 msgid "!Panel:Speedhacks:Overview" -msgstr "Спидхаки позволяют вам ускорить эмуляцию той или иной игры, но в большинстве случаев вам придется расплачиваться за скорость различными багами, испорченным звуком, некорректными значениями FPS. При наличии каких-либо критичных проблем - первым делом отключите ВСЕ спидхаки." +msgstr "" +"Спидхаки позволяют вам ускорить эмуляцию той или иной игры, но в большинстве " +"случаев вам придется расплачиваться за скорость различными багами, " +"испорченным звуком, некорректными значениями FPS. При наличии каких-либо " +"критичных проблем - первым делом отключите ВСЕ спидхаки." -#: pcsx2/gui/Panels/VideoPanel.cpp:106 -msgid "!Panel:Framelimiter:Heading" -msgstr "Внутрениий ограничитель кадров эмулятора регулирует скорость вирутальной машины. Первые три значения - это процентарное смещение относительно двух стандартных (для каждого региона) значений ниже." - -#: pcsx2/gui/Panels/VideoPanel.cpp:230 +#: pcsx2/gui/Panels/VideoPanel.cpp:223 msgid "!Panel:Frameskip:Heading" -msgstr "Примечание: ввиду особенностей архитектуры аппаратной части PS2, аккуратный пропуск кадров невозможен в принципе. Поэтому, его активация может спровоцировать появление графических артефактов в некоторых играх." +msgstr "" +"Примечание: ввиду особенностей архитектуры аппаратной части PS2, аккуратный " +"пропуск кадров невозможен в принципе. Поэтому, его активация может " +"спровоцировать появление графических артефактов в некоторых играх." + +#: pcsx2/vtlb.cpp:698 +msgid "!Notice:HostVmReserve" +msgstr "" +"Недостаточно виртуальной памяти для запуска PCSX2. Возможно, у вас отключен " +"своп-файл или какая-то другая программа \"съела\" все системные ресурсы." #: pcsx2/x86/sVU_zerorec.cpp:362 msgid "!Notice:superVU:VirtualMemoryAlloc" -msgstr "Out of Memory (типа): рекомпилятор SuperVU не смог зарезервировать необходимое адресное пространство и не может быть использован. Впрочем, не стоит расстраиваться, ведь SuperVU устарел и вы всегда можете выбрать \"новый и блестящий\" microVU :P" +msgstr "" +"Out of Memory (типа): рекомпилятор SuperVU не смог зарезервировать " +"необходимое адресное пространство и не может быть использован. Впрочем, не " +"стоит расстраиваться, ведь SuperVU устарел и вы всегда можете выбрать " +"\"новый и блестящий\" microVU :P" -#: common/src/Utilities/Exceptions.cpp:254 -msgid "!Notice:VirtualMemoryMap" -msgstr "В вашей системе недостаточно виртуальной памяти, либо же, доступное адресное пространство уже занято другим процессом, службой или библиотеками." +#~ msgid "!Notice:DocsFolderFileConflict" +#~ msgstr "" +#~ "PCSX2 не может создать папку для настроек в указанном вами месте ввиду " +#~ "наличия одноименного файла по указанному вами пути. Удалите файл или " +#~ "выберите другое месторасположение для папки с настройками." +#~ msgid "!Panel:HasHacksOverrides" +#~ msgstr "" +#~ "Внимание! Вы запустили PCSX2 с использованием ключей командной строки, " +#~ "опции которых буду преобладать над любыми текущими настройками PCSX2. " +#~ "Значения данных опций не будут отображены в диалоговых окнах настроек " +#~ "эмулятора. При любых изменениях настроек эмулятора через интерфейс, все " +#~ "опции, переданные через командную строку, будут аннулированы." + +#~ msgid "!Panel:HasPluginsOverrides" +#~ msgstr "" +#~ "Внимание! Вы запустили PCSX2 с использованием ключей командной строки, " +#~ "опции которых буду преобладать над любыми настройками плагинов и/или " +#~ "рабочих папок PCSX2. Значения данных опций не будут отображены в " +#~ "диалоговых окнах настроек эмулятора. При любых изменениях настроек " +#~ "эмулятора через интерфейс, все опции, переданные через командную строку, " +#~ "будут аннулированы." + +#~ msgid "!Panel:Framelimiter:Heading" +#~ msgstr "" +#~ "Внутрениий ограничитель кадров эмулятора регулирует скорость вирутальной " +#~ "машины. Первые три значения - это процентарное смещение относительно двух " +#~ "стандартных (для каждого региона) значений ниже." diff --git a/locales/ru_RU/pcsx2_Main.po b/locales/ru_RU/pcsx2_Main.po index 0bbacecc07..2564b61c59 100644 --- a/locales/ru_RU/pcsx2_Main.po +++ b/locales/ru_RU/pcsx2_Main.po @@ -2,10 +2,11 @@ msgid "" msgstr "" "Project-Id-Version: PCSX2 0.9.7\n" "Report-Msgid-Bugs-To: http://code.google.com/p/pcsx2/\n" -"POT-Creation-Date: 2010-12-26 10:00-0500\n" +"POT-Creation-Date: 2011-02-25 18:54+0100\n" "PO-Revision-Date: 2011-01-01 17:48+0300\n" "Last-Translator: Kein \n" "Language-Team: Kein \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -17,27 +18,110 @@ msgstr "" "X-Poedit-SearchPath-0: pcsx2\n" "X-Poedit-SearchPath-1: common\n" +#: common/include/Utilities/Exceptions.h:226 +msgid "Parse error" +msgstr "Ошибка парсинга" + +#: common/include/Utilities/Exceptions.h:250 +msgid "Your machine's hardware is incapable of running PCSX2. Sorry dood." +msgstr "" +"Аппаратные способности вашего компьютера оставляют желать лучшего. Извини, " +"чувак, PCSX2 у тебя не пойдет." + +#: common/src/Utilities/Exceptions.cpp:219 +msgid "Oh noes! Out of memory!" +msgstr "Какая досада, мы \"out of memory\"!" + +#: common/src/Utilities/Exceptions.cpp:234 +msgid "" +"Virtual memory mapping failure! Your system may have conflicting device " +"drivers, services, or may simply have insufficient memory or resources to " +"meet PCSX2's lofty needs." +msgstr "" +"Ошибка распределения вирутальной памяти! Возможно какие-то драйвера " +"устройств в вашей системе конфликтуют или же, ваша система не обладает " +"достаточным объемом свободных ресурсов." + +#: common/src/Utilities/Exceptions.cpp:309 +msgid "Path: " +msgstr "Путь:" + +#: common/src/Utilities/Exceptions.cpp:313 +msgid "[Unnamed or unknown]" +msgstr "[Unnamed or unknown]" + +#: common/src/Utilities/Exceptions.cpp:333 +msgid "A file could not be created." +msgstr "Невозможно создать файл." + +#: common/src/Utilities/Exceptions.cpp:353 +msgid "File not found." +msgstr "Файл не найден." + +#: common/src/Utilities/Exceptions.cpp:373 +msgid "" +"Permission denied while trying to open file, likely due to insufficient user " +"account rights." +msgstr "" +"Ошибка доступа при открытии файла. Виной тому, сорее всего, недостаток прав " +"текущего пользователя." + +#: common/src/Utilities/Exceptions.cpp:393 +msgid "" +"Unexpected end of file or stream encountered. File is probably truncated or " +"corrupted." +msgstr "" +"Неожиданный обрыв файла или потока. Возможно файл обрезан или поврежден." + +#: common/src/Utilities/ThreadingDialogs.cpp:30 +msgid "Waiting for tasks..." +msgstr "Выполнение задач..." + +#: common/src/Utilities/ThreadingDialogs.cpp:41 +msgid "Waiting for task..." +msgstr "Выполнение задачи..." + +#: pcsx2/CDVD/IsoFileFormats.cpp:416 +msgid "ISO mounting failed: PCSX2 is unable to identify the ISO image type." +msgstr "Ошибка загрузки образа: эмулятор не смог определить тип ISO-файла" + #: pcsx2/Elfheader.cpp:266 msgid "Cannot load ELF binary image. The file may be corrupt or incomplete." msgstr "Ошибка загрузки бинарного ELF-файла, возможно он поврежден." #: pcsx2/Elfheader.cpp:268 -msgid "If loading from an ISO image, this error may be caused by an unsupported ISO image type or bug in PCSX2 ISO image support." -msgstr "Если вы уверены, что загружаемый вами файл является валидным ISO-образом, значит, причиной данной ошибки является баг PCSX2 или же, PCSX2 не поддерживает данный тип ISO-файлов." +msgid "" +"If loading from an ISO image, this error may be caused by an unsupported ISO " +"image type or bug in PCSX2 ISO image support." +msgstr "" +"Если вы уверены, что загружаемый вами файл является валидным ISO-образом, " +"значит, причиной данной ошибки является баг PCSX2 или же, PCSX2 не " +"поддерживает данный тип ISO-файлов." #: pcsx2/PluginManager.cpp:692 -msgid "The savestate cannot be loaded, as it appears to be corrupt or incomplete." -msgstr "Файл быстрого сохранения не может быть загружен, возможно он поврежден." +msgid "" +"The savestate cannot be loaded, as it appears to be corrupt or incomplete." +msgstr "" +"Файл быстрого сохранения не может быть загружен, возможно он поврежден." #: pcsx2/PluginManager.cpp:702 #, c-format -msgid "%s plugin failed to open. Your computer may have insufficient resources, or incompatible hardware/drivers." -msgstr "Невозможно загрузить плагин %s. Возможно ваша система не имеет достаточно свободных ресурсов или ваше оборудование/драйвера несовместимы с данным плагином." +msgid "" +"%s plugin failed to open. Your computer may have insufficient resources, or " +"incompatible hardware/drivers." +msgstr "" +"Невозможно загрузить плагин %s. Возможно ваша система не имеет достаточно " +"свободных ресурсов или ваше оборудование/драйвера несовместимы с данным " +"плагином." #: pcsx2/PluginManager.cpp:709 #, c-format -msgid "%s plugin failed to initialize. Your system may have insufficient memory or resources needed." -msgstr "Ошибка инициализации плагина %s. Возможно ваша система не имеет достаточно свободных ресурсов и/или памяти." +msgid "" +"%s plugin failed to initialize. Your system may have insufficient memory or " +"resources needed." +msgstr "" +"Ошибка инициализации плагина %s. Возможно ваша система не имеет достаточно " +"свободных ресурсов и/или памяти." #: pcsx2/PluginManager.cpp:815 #, c-format @@ -51,21 +135,36 @@ msgstr "Файл плагина %s не является динамически #: pcsx2/PluginManager.cpp:837 #, c-format -msgid "The configured %s plugin is not a PCSX2 plugin, or is for an older unsupported version of PCSX2." -msgstr "Плагин %s не является PCSX2-соместимым плагином или же он предназначен для более старой версии PCSX2." +msgid "" +"The configured %s plugin is not a PCSX2 plugin, or is for an older " +"unsupported version of PCSX2." +msgstr "" +"Плагин %s не является PCSX2-соместимым плагином или же он предназначен для " +"более старой версии PCSX2." #: pcsx2/PluginManager.cpp:862 -msgid "The plugin reports that your hardware or software/drivers are not supported." -msgstr "Плагин сообщает о том, что ваше программное обеспечение/драйвера не поддерживаются." +msgid "" +"The plugin reports that your hardware or software/drivers are not supported." +msgstr "" +"Плагин сообщает о том, что ваше программное обеспечение/драйвера не " +"поддерживаются." #: pcsx2/PluginManager.cpp:883 -msgid "Configured plugin is not a PCSX2 plugin, or is for an older unsupported version of PCSX2." -msgstr "Выбранный плагин не является PCSX2-соместимым плагином или же он предназначен для более старой версии PCSX2." +msgid "" +"Configured plugin is not a PCSX2 plugin, or is for an older unsupported " +"version of PCSX2." +msgstr "" +"Выбранный плагин не является PCSX2-соместимым плагином или же он " +"предназначен для более старой версии PCSX2." #: pcsx2/PluginManager.cpp:909 #, c-format -msgid "Configured %s plugin is not a valid PCSX2 plugin, or is for an older unsupported version of PCSX2." -msgstr "Плагин %s не является PCSX2-соместимым плагином или же он предназначен для более старой версии PCSX2." +msgid "" +"Configured %s plugin is not a valid PCSX2 plugin, or is for an older " +"unsupported version of PCSX2." +msgstr "" +"Плагин %s не является PCSX2-соместимым плагином или же он предназначен для " +"более старой версии PCSX2." #: pcsx2/PluginManager.cpp:1726 msgid "Unloaded Plugin" @@ -73,13 +172,20 @@ msgstr "Выгруженный плагин" #: pcsx2/SaveState.cpp:338 msgid "Cannot load savestate. It is of an unknown or unsupported version." -msgstr "Ошибка загрузки быстрого сохранения. Его версия неизвестна или не поддерживается." +msgstr "" +"Ошибка загрузки быстрого сохранения. Его версия неизвестна или не " +"поддерживается." -#: pcsx2/CDVD/IsoFileFormats.cpp:416 -msgid "ISO mounting failed: PCSX2 is unable to identify the ISO image type." -msgstr "Ошибка загрузки образа: эмулятор не смог определить тип ISO-файла" +#: pcsx2/ZipTools/thread_gzip.cpp:82 +msgid "" +"The savestate was not properly saved. The temporary file was created " +"successfully but could not be moved to its final resting place." +msgstr "" +"Ошибка записи файла быстрого сохранения. Временый файл сохранения был создан " +"вполне успешно, но по каким-то причинам он не может быть перемещен в пункт " +"назначения." -#: pcsx2/gui/AppConfig.cpp:769 +#: pcsx2/gui/AppConfig.cpp:937 pcsx2/gui/AppConfig.cpp:943 msgid "Failed to overwrite existing settings file; permission was denied." msgstr "Ошибка прав доступа при перезаписи текущего файла настроек." @@ -87,180 +193,207 @@ msgstr "Ошибка прав доступа при перезаписи тек msgid "Loading PS2 system plugins..." msgstr "Загрузка системных плагинов PS2..." -#: pcsx2/gui/AppInit.cpp:42 +#: pcsx2/gui/AppInit.cpp:41 msgid "PCSX2 - SSE2 Recommended" msgstr "PCSX2 - Уведомление о необходимости SSE2" -#: pcsx2/gui/AppInit.cpp:208 -msgid "SSE extensions are not available. PCSX2 requires a cpu that supports the SSE instruction set." -msgstr "Ваш процессор не поддерживает SSE-инструкции, необходимые для полноценной работы PCSX2. Увы." +#: pcsx2/gui/AppInit.cpp:71 +msgid "" +"SSE extensions are not available. PCSX2 requires a cpu that supports the " +"SSE instruction set." +msgstr "" +"Ваш процессор не поддерживает SSE-инструкции, необходимые для полноценной " +"работы PCSX2. Увы." -#: pcsx2/gui/AppInit.cpp:287 +#: pcsx2/gui/AppInit.cpp:154 msgid "PCSX2 Recompiler Error(s)" msgstr "Ошибка(и) рекомпиляторов PCSX2" -#: pcsx2/gui/AppInit.cpp:360 +#: pcsx2/gui/AppInit.cpp:227 msgid "All options are for the current session only and will not be saved.\n" -msgstr "Все указанные тут опции актуальны только для конкретной сессии эмулятора и не будут сохранены в конфиг при использовании.\n" +msgstr "" +"Все указанные тут опции актуальны только для конкретной сессии эмулятора и " +"не будут сохранены в конфиг при использовании.\n" -#: pcsx2/gui/AppInit.cpp:370 -#: pcsx2/gui/AppMain.cpp:297 +#: pcsx2/gui/AppInit.cpp:237 pcsx2/gui/AppMain.cpp:290 msgid "IsoFile" msgstr "ISO-файл" -#: pcsx2/gui/AppInit.cpp:371 +#: pcsx2/gui/AppInit.cpp:238 msgid "displays this list of command line options" msgstr "выводит данное справочное окно" -#: pcsx2/gui/AppInit.cpp:372 +#: pcsx2/gui/AppInit.cpp:239 msgid "forces the program log/console to be visible" msgstr "принудительно запускает эмулятор с окном лога" -#: pcsx2/gui/AppInit.cpp:373 +#: pcsx2/gui/AppInit.cpp:240 msgid "use fullscreen GS mode" msgstr "запускает эмулятор в полноэкранном режиме" -#: pcsx2/gui/AppInit.cpp:374 +#: pcsx2/gui/AppInit.cpp:241 msgid "use windowed GS mode" msgstr "запускает эмулятор в оконном режиме" -#: pcsx2/gui/AppInit.cpp:376 +#: pcsx2/gui/AppInit.cpp:243 msgid "disables display of the gui while running games" msgstr "отключает показ графического интерфейса" -#: pcsx2/gui/AppInit.cpp:377 +#: pcsx2/gui/AppInit.cpp:244 msgid "executes an ELF image" msgstr "запускает указанный ELF-файл." -#: pcsx2/gui/AppInit.cpp:378 +#: pcsx2/gui/AppInit.cpp:245 msgid "boots an empty dvd tray; use to enter the PS2 system menu" msgstr "запускает эмулятор \"без диска\" (используйте для доступа к BIOS'у)" -#: pcsx2/gui/AppInit.cpp:379 +#: pcsx2/gui/AppInit.cpp:246 msgid "boots from the CDVD plugin (overrides IsoFile parameter)" msgstr "запускает эмулятор с использованием CDVD-плагина" -#: pcsx2/gui/AppInit.cpp:381 +#: pcsx2/gui/AppInit.cpp:248 msgid "disables all speedhacks" msgstr "отключает все спидхаки" -#: pcsx2/gui/AppInit.cpp:382 +#: pcsx2/gui/AppInit.cpp:249 msgid "use the specified comma or pipe-delimited list of gamefixes." -msgstr "позволяет активировать указанные исправления для игр при запуске (через запятую)" +msgstr "" +"позволяет активировать указанные исправления для игр при запуске (через " +"запятую)" -#: pcsx2/gui/AppInit.cpp:383 +#: pcsx2/gui/AppInit.cpp:250 msgid "disables fast booting" msgstr "отключает быстрый запуск диска/образа" -#: pcsx2/gui/AppInit.cpp:385 +#: pcsx2/gui/AppInit.cpp:252 msgid "changes the configuration file path" msgstr "позволяет указать папку с настройками PCSX2" -#: pcsx2/gui/AppInit.cpp:386 +#: pcsx2/gui/AppInit.cpp:253 msgid "specifies the PCSX2 configuration file to use" msgstr "позволяет указать файл с настройками PCSX2" -#: pcsx2/gui/AppInit.cpp:387 +#: pcsx2/gui/AppInit.cpp:254 #, c-format msgid "forces %s to start the First-time Wizard" msgstr "запускает Мастер настройки %s" -#: pcsx2/gui/AppInit.cpp:391 +#: pcsx2/gui/AppInit.cpp:255 +msgid "enables portable mode operation (requires admin/root access)" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:259 #, c-format msgid "specify the file to use as the %s plugin" msgstr "позволяет указать файл в качестве %s-плагина" -#: pcsx2/gui/AppInit.cpp:439 +#: pcsx2/gui/AppInit.cpp:307 #, c-format msgid "Plugin Override Error - %s" msgstr "Ошибка переключения плагина - %s" -#: pcsx2/gui/AppInit.cpp:442 +#: pcsx2/gui/AppInit.cpp:310 #, c-format msgid "" -"%s Plugin Override Error! The following file does not exist or is not a valid %s plugin:\n" +"%s Plugin Override Error! The following file does not exist or is not a " +"valid %s plugin:\n" "\n" -msgstr "Ошибка переключения %s-плагина! Нижеуказанный файл не существует или не является валидным %s-плагином :\n" +msgstr "" +"Ошибка переключения %s-плагина! Нижеуказанный файл не существует или не " +"является валидным %s-плагином :\n" -#: pcsx2/gui/AppInit.cpp:449 +#: pcsx2/gui/AppInit.cpp:317 #, c-format msgid "Press OK to use the default configured plugin, or Cancel to close %s." -msgstr "Нажмите \"OK\" если желаете использовать файл плагина из настроек PCSX2 или нажмите \"Отмена\" чтобы закрыть %s." +msgstr "" +"Нажмите \"OK\" если желаете использовать файл плагина из настроек PCSX2 или " +"нажмите \"Отмена\" чтобы закрыть %s." -#: pcsx2/gui/AppInit.cpp:626 -#: pcsx2/gui/AppInit.cpp:638 -#, c-format -msgid "" -"\n" -"\n" -"Press OK to close %s." +#: pcsx2/gui/AppInit.cpp:495 +msgid "PCSX2 Error: Hardware Deficiency" +msgstr "Ошибка PCSX2: аппаратная неисправность" + +#: pcsx2/gui/AppInit.cpp:495 pcsx2/gui/AppInit.cpp:507 +#, fuzzy, c-format +msgid "Press OK to close %s." msgstr "" "\n" "\n" "Выберите \"OK\" чтобы закрыть %s." -#: pcsx2/gui/AppInit.cpp:626 -msgid "PCSX2 Error: Hardware Deficiency" -msgstr "Ошибка PCSX2: аппаратная неисправность" - -#: pcsx2/gui/AppInit.cpp:639 +#: pcsx2/gui/AppInit.cpp:508 #, c-format msgid "%s Critical Error" msgstr "Страшная и непереносимая ошибка %s" -#: pcsx2/gui/AppInit.cpp:807 +#: pcsx2/gui/AppInit.cpp:676 msgid "OK" msgstr "OK" -#: pcsx2/gui/AppInit.cpp:808 +#: pcsx2/gui/AppInit.cpp:677 msgid "&OK" msgstr "&OK" -#: pcsx2/gui/AppInit.cpp:809 +#: pcsx2/gui/AppInit.cpp:678 msgid "Cancel" msgstr "Отмена" -#: pcsx2/gui/AppInit.cpp:810 +#: pcsx2/gui/AppInit.cpp:679 msgid "&Cancel" msgstr "&Отмена" -#: pcsx2/gui/AppInit.cpp:811 +#: pcsx2/gui/AppInit.cpp:680 msgid "&Apply" msgstr "&Применить" -#: pcsx2/gui/AppInit.cpp:812 +#: pcsx2/gui/AppInit.cpp:681 msgid "&Next >" msgstr "&Далее >" -#: pcsx2/gui/AppInit.cpp:813 -msgid "&Back >" -msgstr "&Назад >" +#: pcsx2/gui/AppInit.cpp:682 +#, fuzzy +msgid "< &Back" +msgstr "&Назад" -#: pcsx2/gui/AppInit.cpp:814 +#: pcsx2/gui/AppInit.cpp:683 msgid "&Back" msgstr "&Назад" -#: pcsx2/gui/AppInit.cpp:815 +#: pcsx2/gui/AppInit.cpp:684 msgid "&Finish" msgstr "&Завершить" -#: pcsx2/gui/AppInit.cpp:817 +#: pcsx2/gui/AppInit.cpp:685 +msgid "&Yes" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:686 +#, fuzzy +msgid "&No" +msgstr "Нет" + +#: pcsx2/gui/AppInit.cpp:687 +#, fuzzy +msgid "Browse" +msgstr "Обзор..." + +#: pcsx2/gui/AppInit.cpp:689 msgid "&Save" msgstr "&Сохранить лог как..." -#: pcsx2/gui/AppInit.cpp:818 +#: pcsx2/gui/AppInit.cpp:690 msgid "Save &As..." msgstr "&Сохранить лог как..." -#: pcsx2/gui/AppInit.cpp:819 +#: pcsx2/gui/AppInit.cpp:691 msgid "&Help" msgstr "&Помощь" -#: pcsx2/gui/AppInit.cpp:820 +#: pcsx2/gui/AppInit.cpp:692 msgid "&Home" msgstr "" -#: pcsx2/gui/AppMain.cpp:85 +#: pcsx2/gui/AppMain.cpp:78 msgid "" "\n" "\n" @@ -270,47 +403,76 @@ msgstr "" "\n" "Нажмите OK для перехода в окно Настройки плагинов PCSX2." -#: pcsx2/gui/AppMain.cpp:138 -#: pcsx2/gui/AppMain.cpp:152 -msgid "Warning! System plugins have not been loaded. PCSX2 may be inoperable." -msgstr "Внимание! Не все системные плагины загружены, нормальная работа PCSX2 не гарантируется." +#: pcsx2/gui/AppMain.cpp:131 pcsx2/gui/AppMain.cpp:145 +msgid "" +"Warning! System plugins have not been loaded. PCSX2 may be inoperable." +msgstr "" +"Внимание! Не все системные плагины загружены, нормальная работа PCSX2 не " +"гарантируется." -#: pcsx2/gui/AppMain.cpp:307 +#: pcsx2/gui/AppMain.cpp:300 #, c-format msgid "%s Commandline Options" msgstr "Опции командной строки %s" -#: pcsx2/gui/AppMain.cpp:511 +#: pcsx2/gui/AppMain.cpp:503 msgid "PS2 BIOS Error" msgstr "Ошибка BIOS'а PS2" -#: pcsx2/gui/AppMain.cpp:512 -msgid "" -"\n" -"Press Ok to go to the BIOS Configuration Panel." +#: pcsx2/gui/AppMain.cpp:504 +#, fuzzy +msgid "Press Ok to go to the BIOS Configuration Panel." msgstr "" "\n" "Нажмите ОК для перехода в окно настройки BIOS'а." -#: pcsx2/gui/AppMain.cpp:564 +#: pcsx2/gui/AppMain.cpp:556 msgid "PCSX2 Unresponsive Thread" msgstr "Превышено время ожидания потока PCSX2" -#: pcsx2/gui/AppMain.cpp:574 +#: pcsx2/gui/AppMain.cpp:566 msgid "Terminate" msgstr "Закрыть" -#: pcsx2/gui/AppMain.cpp:884 +#: pcsx2/gui/AppMain.cpp:876 msgid "Executing PS2 Virtual Machine..." msgstr "Запуск вирутальной машины PS2..." +#: pcsx2/gui/AppRes.cpp:72 +msgid "Browse for an Iso that is not in your recent history." +msgstr "Поиск и выбор нового образа диска." + #: pcsx2/gui/AppRes.cpp:72 msgid "Browse..." msgstr "Обзор..." -#: pcsx2/gui/AppRes.cpp:72 -msgid "Browse for an Iso that is not in your recent history." -msgstr "Поиск и выбор нового образа диска." +#: pcsx2/gui/AppUserMode.cpp:101 +msgid "The following folders exist, but are not writable:" +msgstr "" + +#: pcsx2/gui/AppUserMode.cpp:106 +msgid "The following folders are missing and cannot be created:" +msgstr "" + +#: pcsx2/gui/AppUserMode.cpp:146 +#, fuzzy, c-format +msgid "Portable mode error - %s" +msgstr "Ошибка переключения плагина - %s" + +#: pcsx2/gui/AppUserMode.cpp:159 +msgid "" +"PCSX2 has been installed as a portable application but cannot run due to the " +"following errors:" +msgstr "" + +#: pcsx2/gui/AppUserMode.cpp:167 +#, fuzzy +msgid "Switch to User Documents Mode" +msgstr "Папка Мои Документы (рекомендуется)" + +#: pcsx2/gui/ApplyState.h:55 +msgid "Cannot apply new settings, one of the settings is invalid." +msgstr "Ошибка применения новых настроек, где-то в опции закралась ошибка!" #: pcsx2/gui/ConsoleLogger.cpp:120 msgid "Save log question" @@ -320,7 +482,7 @@ msgstr "Сохранить лог-файл как..." msgid "Small" msgstr "Мелкий шрифт" -#: pcsx2/gui/ConsoleLogger.cpp:414 +#: pcsx2/gui/ConsoleLogger.cpp:414 pcsx2/gui/Panels/CpuPanel.cpp:38 msgid "Normal" msgstr "Средний шрифт" @@ -360,7 +522,7 @@ msgstr "&Очистить окно" msgid "Clear the log window contents" msgstr "Очищает окно лога." -#: pcsx2/gui/ConsoleLogger.cpp:432 +#: pcsx2/gui/ConsoleLogger.cpp:432 pcsx2/gui/Dialogs/SysConfigDialog.cpp:280 msgid "Appearance" msgstr "Внешний вид" @@ -404,52 +566,346 @@ msgstr "&Файл" msgid "&Sources" msgstr "&Режим" -#: pcsx2/gui/ExecutorThread.cpp:432 +#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:35 +#, c-format +msgid "About %s" +msgstr "О программе %s" + +#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:97 +msgid "A Playstation 2 Emulator" +msgstr "Эмулятор Playstation 2" + +#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:101 +msgid "PCSX2 Official Website and Forums" +msgstr "Официальный web-ресурс PCSX2" + +#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:105 +msgid "PCSX2 Official Svn Repository at Googlecode" +msgstr "Официальный svn-репозиторий PCSX2 на Googlecode" + +#: pcsx2/gui/Dialogs/AssertionDialog.cpp:23 +msgid "Assertion Failure - " +msgstr "" + +#: pcsx2/gui/Dialogs/BaseConfigurationDialog.cpp:189 +msgid "Saves a snapshot of this settings panel to a PNG file." +msgstr "Сохраняет скриншот настроек текущего окна." + +#: pcsx2/gui/Dialogs/BaseConfigurationDialog.cpp:300 +msgid "Save dialog screenshots to..." +msgstr "Сохранить скриншот с настройками как..." + +#: pcsx2/gui/Dialogs/BiosSelectorDialog.cpp:31 +msgid "BIOS Selector" +msgstr "Настройка BIOS'а" + +#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:193 +msgid "Do not show this dialog again." +msgstr "Больше не показывать данный диалог" + +#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:199 +msgid "" +"Disables this popup and whatever response you select here will be " +"automatically used from now on." +msgstr "" +"Позволяет скрыть данное окно в дальнейшем и всегда применять то действие, " +"которое вы выберете сейчас." + +#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:201 +msgid "" +"The popup will not be shown again. This setting can be undone from the " +"settings panels." +msgstr "" + +#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:247 +#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:292 +msgid "Ignore" +msgstr "Игнорировать" + +#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:278 +msgid "Reset" +msgstr "Сброс" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:32 +#, c-format +msgid "Select memory card for Port %u / Slot %u" +msgstr "Выберите карту памяти для порта %u / слот %u" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:41 +msgid "Create new memory card" +msgstr "Создание новой карты памяти" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:60 +#: pcsx2/gui/Panels/DirPickerPanel.cpp:74 +#: pcsx2/gui/Panels/DirPickerPanel.cpp:271 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:464 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:511 +msgid "Create" +msgstr "Создать" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:72 +msgid "New card will be saved to:" +msgstr "Новая карат памяти будет создана по адресу:" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:135 +msgid "Error: The memory card could not be created." +msgstr "Ошибка: карта памяти не может быть создана." + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:136 +msgid "memory card creation error" +msgstr "Ошибка создания карты памяти!" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:147 +msgid "Use NTFS compression when creating this card." +msgstr "Использовать NTFS-компрессию для файла карты памяти." + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:163 +msgid "8 MB [most compatible]" +msgstr "8 MB [наиболее совместимый вариант]" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:163 +msgid "" +"This is the standard Sony-provisioned size, and is supported by all games " +"and BIOS versions." +msgstr "" +"Это стандартынй размер каты памяти PS2, предоставленный и рекомендуемый " +"самой Sony.\n" +"Совместим с любыми играми и версиями BIOS'а." + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:167 +msgid "16 MB" +msgstr "16 MB" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:167 +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:171 +msgid "" +"A typical size for 3rd-party memory cards which should work with most games." +msgstr "" +"Стандартный размер для \"неофициальных\" карт памяти. Должы работать почти " +"со всеми играми." + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:171 +msgid "32 MB" +msgstr "32 MB" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:175 +msgid "64 MB" +msgstr "64 MB" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:175 +msgid "" +"Low compatibility warning: Yes it's very big, but may not work with many " +"games." +msgstr "" +"Больше - не значит лучше! Размер, в данном случае, обратно-пропорционален " +"совместимости." + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:47 +#, c-format +msgid "Select a folder for %s settings" +msgstr "Выберите папку куда %s будет сохранять настройки" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:47 +msgid "Settings" +msgstr "Место хранения настроек" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:81 +#, fuzzy +msgid "Language selector" +msgstr "Выбор языка %s" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:84 +msgid "" +"Change the language only if you need to.\n" +"The system default should be fine for most operating systems." +msgstr "" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:104 +msgid "Configuration Guides (online)" +msgstr "" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:108 +msgid "Readme / FAQ (Offline/PDF)" +msgstr "" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:117 +#, c-format +msgid "%s First Time Configuration" +msgstr "Мастер настройки %s" + +#: pcsx2/gui/Dialogs/GameDatabaseDialog.cpp:24 +#, c-format +msgid "Game database - %s" +msgstr "" + +#: pcsx2/gui/Dialogs/ImportSettingsDialog.cpp:24 +msgid "Import Existing Settings?" +msgstr "Импортировать существующие настройки?" + +#: pcsx2/gui/Dialogs/ImportSettingsDialog.cpp:39 +msgid "Import" +msgstr "Импортировать" + +#: pcsx2/gui/Dialogs/ImportSettingsDialog.cpp:40 +msgid "Overwrite" +msgstr "Перезаписать" + +#: pcsx2/gui/Dialogs/LogOptionsDialog.cpp:27 +msgid "Trace Logging" +msgstr "" + +#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:40 +msgid "Auto-eject memory cards when loading savestates" +msgstr "" +"Автоматически \"вынимать\" вирутальные карты памяти при загрузке быстрого " +"сохранения" + +#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:47 +msgid "Backup existing Savestate when creating a new one" +msgstr "" +"Делать резервную копию существующего быстрого сохранения при его перезаписи " +"новым" + +#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:51 +#, c-format +msgid "Enable Multitap on Port %u" +msgstr "Включить поддержку Multitap для слота %u" + +#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:95 +msgid "MemoryCard Manager" +msgstr "Управление картами памяти" + +#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:102 +msgid "Drag items over other items in the list to swap or copy memory cards." +msgstr "" +"Используя мышь, вы можете перетаскивать карты памяти в нижепредставленном " +"списке для изменения их позиции." + +#: pcsx2/gui/Dialogs/PickUserModeDialog.cpp:24 +msgid "PCSX2 First Time configuration" +msgstr "Мастер настройки PCSX2" + +#: pcsx2/gui/Dialogs/PickUserModeDialog.cpp:29 +#, c-format +msgid "%s is starting from a new or unknown folder and needs to be configured." +msgstr "" +"Предыдущие настройки %s не обнаружены, возможно вы запускаете эмулятор " +"впервые или из другой папки. Необходима перенастройка." + +#: pcsx2/gui/Dialogs/StuckThreadDialog.cpp:28 +msgid "PCSX2 Thread is not responding" +msgstr "Превышено время ожидания потока PCSX2" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:36 +msgid "Config Overrides Warning" +msgstr "Предупреждение о статусе настроек" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:56 +msgid "Components Overrides Warning" +msgstr "Предупреждение о статусе плагинов" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:147 +#, fuzzy +msgid "Preset:" +msgstr "Сброс" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:228 +#, c-format +msgid "Emulation Settings - %s" +msgstr "Настройки эмуляции - %s" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:237 +msgid "EE/IOP" +msgstr "Настройки EE/IOP" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:238 +msgid "VUs" +msgstr "Настройки VU" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:239 +msgid "GS" +msgstr "Настройки GS (видео)" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:240 +msgid "GS Window" +msgstr "GS-окно (видео)" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:241 +msgid "Speedhacks" +msgstr "Спидхаки" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:242 +msgid "Game Fixes" +msgstr "Исправления для игр" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:253 +#, c-format +msgid "Components Selectors - %s" +msgstr "Настройка плагинов %s" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:260 +msgid "Plugins" +msgstr "Плагины" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:261 +msgid "BIOS" +msgstr "BIOS" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:262 +msgid "Folders" +msgstr "Папки" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:273 +#, fuzzy, c-format +msgid "Appearance/Themes - %s" +msgstr "Внешний вид" + +#: pcsx2/gui/ExecutorThread.cpp:430 msgid "Press Cancel to attempt to cancel the action." msgstr "Нажмите Отмена дабы отменить данное действие." -#: pcsx2/gui/ExecutorThread.cpp:433 +#: pcsx2/gui/ExecutorThread.cpp:431 #, c-format msgid "Press Terminate to kill %s immediately." msgstr "Нажмите \"Закрыть\" для завершения работы %s." -#: pcsx2/gui/ExecutorThread.cpp:436 +#: pcsx2/gui/ExecutorThread.cpp:434 msgid "Terminate App" msgstr "Закрыть" -#: pcsx2/gui/FrameForGS.cpp:254 +#: pcsx2/gui/FrameForGS.cpp:274 msgid "GS Output is Disabled!" msgstr "Вывод видеоданных отключен!" -#: pcsx2/gui/GlobalCommands.cpp:243 +#: pcsx2/gui/GlobalCommands.cpp:268 pcsx2/gui/MainFrame.cpp:402 msgid "Save state" msgstr "Быстрое сохранение" -#: pcsx2/gui/GlobalCommands.cpp:244 +#: pcsx2/gui/GlobalCommands.cpp:269 msgid "Saves the virtual machine state to the current slot." msgstr "Создает быстрое сохранение ассоциированное с данным слотом." -#: pcsx2/gui/GlobalCommands.cpp:249 +#: pcsx2/gui/GlobalCommands.cpp:274 pcsx2/gui/MainFrame.cpp:401 msgid "Load state" msgstr "Быстрая загрузка" -#: pcsx2/gui/GlobalCommands.cpp:250 +#: pcsx2/gui/GlobalCommands.cpp:275 msgid "Loads a virtual machine state from the current slot." msgstr "Загружает быстрое сохранение ассоциированное с данным слотом." -#: pcsx2/gui/GlobalCommands.cpp:255 +#: pcsx2/gui/GlobalCommands.cpp:280 msgid "Cycle to next slot" msgstr "Переключиться на следующий слот." -#: pcsx2/gui/GlobalCommands.cpp:256 +#: pcsx2/gui/GlobalCommands.cpp:281 msgid "Cycles the current save slot in +1 fashion!" msgstr "" -#: pcsx2/gui/GlobalCommands.cpp:261 +#: pcsx2/gui/GlobalCommands.cpp:286 msgid "Cycle to prev slot" msgstr "Переключиться на предыдущий слот." -#: pcsx2/gui/GlobalCommands.cpp:262 +#: pcsx2/gui/GlobalCommands.cpp:287 msgid "Cycles the current save slot in -1 fashion!" msgstr "" @@ -459,11 +915,14 @@ msgstr "Ошибка при перетаскивании" #: pcsx2/gui/IsoDropTarget.cpp:58 #, c-format -msgid "It is an error to drop multiple files onto a %s window. One at a time please, thank you." -msgstr "Вы не можете перетащить в окно %s сразу несколько файлов. В очередь, пожалуйста." +msgid "" +"It is an error to drop multiple files onto a %s window. One at a time " +"please, thank you." +msgstr "" +"Вы не можете перетащить в окно %s сразу несколько файлов. В очередь, " +"пожалуйста." -#: pcsx2/gui/IsoDropTarget.cpp:89 -#: pcsx2/gui/MainMenuClicks.cpp:343 +#: pcsx2/gui/IsoDropTarget.cpp:89 pcsx2/gui/MainMenuClicks.cpp:337 msgid "Confirm PS2 Reset" msgstr "Подтвердите сброс" @@ -481,383 +940,400 @@ msgstr "" msgid "You have dropped the following ISO image into %s:" msgstr "Вы перетащили в окно %s следующий ISO-файл:" +#: pcsx2/gui/MainFrame.cpp:38 +#, c-format +msgid "Slot %d" +msgstr "" + #: pcsx2/gui/MainFrame.cpp:41 msgid "Other..." msgstr "Вручную..." -#: pcsx2/gui/MainFrame.cpp:317 +#: pcsx2/gui/MainFrame.cpp:312 msgid "Show Console" msgstr "Отображать консоль." -#: pcsx2/gui/MainFrame.cpp:318 +#: pcsx2/gui/MainFrame.cpp:313 msgid "Console to Stdio" msgstr "" -#: pcsx2/gui/MainFrame.cpp:331 +#: pcsx2/gui/MainFrame.cpp:326 msgid "&System" msgstr "&Запуск" -#: pcsx2/gui/MainFrame.cpp:332 +#: pcsx2/gui/MainFrame.cpp:327 msgid "CD&VD" msgstr "CD&VD" -#: pcsx2/gui/MainFrame.cpp:333 +#: pcsx2/gui/MainFrame.cpp:328 msgid "&Config" msgstr "&Настройка" -#: pcsx2/gui/MainFrame.cpp:334 +#: pcsx2/gui/MainFrame.cpp:329 msgid "&Misc" msgstr "&Разное" -#: pcsx2/gui/MainFrame.cpp:336 +#: pcsx2/gui/MainFrame.cpp:331 msgid "&Debug" msgstr "&Отладка" -#: pcsx2/gui/MainFrame.cpp:348 +#: pcsx2/gui/MainFrame.cpp:343 #, c-format msgid "%s %d.%d.%d.%d%s (svn) %s" msgstr "%s %d.%d.%d.%d%s (svn) %s" -#: pcsx2/gui/MainFrame.cpp:354 +#: pcsx2/gui/MainFrame.cpp:349 #, c-format msgid "%s %d.%d.%d %s" msgstr "%s %d.%d.%d %s" -#: pcsx2/gui/MainFrame.cpp:355 +#: pcsx2/gui/MainFrame.cpp:350 msgid "(modded)" msgstr "(modded)" -#: pcsx2/gui/MainFrame.cpp:392 -#: pcsx2/gui/MainFrame.cpp:394 -#: pcsx2/gui/MainFrame.cpp:400 +#: pcsx2/gui/MainFrame.cpp:387 pcsx2/gui/MainFrame.cpp:389 +#: pcsx2/gui/MainFrame.cpp:395 msgid "Initializing..." msgstr "Инициализация..." -#: pcsx2/gui/MainFrame.cpp:396 +#: pcsx2/gui/MainFrame.cpp:391 msgid "Run ELF..." msgstr "Запустить ELF-файл..." -#: pcsx2/gui/MainFrame.cpp:397 +#: pcsx2/gui/MainFrame.cpp:392 msgid "For running raw PS2 binaries directly" msgstr "Прямой запуск бинарных файлов PS2" -#: pcsx2/gui/MainFrame.cpp:411 +#: pcsx2/gui/MainFrame.cpp:406 msgid "Enable Patches" msgstr "Включить патчи" -#: pcsx2/gui/MainFrame.cpp:414 +#: pcsx2/gui/MainFrame.cpp:409 msgid "Enable Cheats" msgstr "Включить читы" -#: pcsx2/gui/MainFrame.cpp:417 +#: pcsx2/gui/MainFrame.cpp:412 msgid "Enable Host Filesystem" msgstr "Включить файловую систему хоста" -#: pcsx2/gui/MainFrame.cpp:422 +#: pcsx2/gui/MainFrame.cpp:417 msgid "Shutdown" msgstr "Выключить консоль" -#: pcsx2/gui/MainFrame.cpp:423 +#: pcsx2/gui/MainFrame.cpp:418 msgid "Wipes all internal VM states and shuts down plugins." msgstr "Закрывает текущую VM-сессию и останавливает работу плагинов." -#: pcsx2/gui/MainFrame.cpp:425 +#: pcsx2/gui/MainFrame.cpp:420 msgid "Exit" msgstr "Выход" -#: pcsx2/gui/MainFrame.cpp:426 +#: pcsx2/gui/MainFrame.cpp:421 #, c-format msgid "Closing %s may be hazardous to your health" -msgstr "Выход из %s без нашего официального разрешения может плохо сказаться на вашем здоровье..." +msgstr "" +"Выход из %s без нашего официального разрешения может плохо сказаться на " +"вашем здоровье..." -#: pcsx2/gui/MainFrame.cpp:433 +#: pcsx2/gui/MainFrame.cpp:428 msgid "Iso Selector" msgstr "Выбор ISO" -#: pcsx2/gui/MainFrame.cpp:434 +#: pcsx2/gui/MainFrame.cpp:429 msgid "Plugin Menu" msgstr "CDVD-плагин" -#: pcsx2/gui/MainFrame.cpp:437 +#: pcsx2/gui/MainFrame.cpp:432 msgid "Iso" msgstr "Использовать ISO" -#: pcsx2/gui/MainFrame.cpp:437 +#: pcsx2/gui/MainFrame.cpp:432 msgid "Makes the specified ISO image the CDVD source." msgstr "Использует текущий выбранный ISO-файл в качестве диска." -#: pcsx2/gui/MainFrame.cpp:438 +#: pcsx2/gui/MainFrame.cpp:433 msgid "Plugin" msgstr "Использовать плагин" -#: pcsx2/gui/MainFrame.cpp:438 +#: pcsx2/gui/MainFrame.cpp:433 msgid "Uses an external plugin as the CDVD source." msgstr "Использует CDVD-плагин и его настройки для запуска игры." -#: pcsx2/gui/MainFrame.cpp:439 +#: pcsx2/gui/MainFrame.cpp:434 msgid "No disc" msgstr "Не использовать диск" -#: pcsx2/gui/MainFrame.cpp:439 +#: pcsx2/gui/MainFrame.cpp:434 msgid "Use this to boot into your virtual PS2's BIOS configuration." msgstr "Позволяет загрузить PS2-биос для доступа к его настройкам." -#: pcsx2/gui/MainFrame.cpp:447 +#: pcsx2/gui/MainFrame.cpp:442 msgid "Emulation &Settings" msgstr "Настройки &эмуляции" -#: pcsx2/gui/MainFrame.cpp:448 +#: pcsx2/gui/MainFrame.cpp:443 msgid "&Memory cards" msgstr "&Настройка карт памяти" -#: pcsx2/gui/MainFrame.cpp:449 +#: pcsx2/gui/MainFrame.cpp:444 msgid "&Plugin/BIOS Selector" msgstr "&Настройка плагинов/BIOS'а" -#: pcsx2/gui/MainFrame.cpp:452 +#: pcsx2/gui/MainFrame.cpp:445 pcsx2/gui/Panels/GameDatabasePanel.cpp:348 msgid "Game Database Editor" msgstr "Редактор базы данных игр" -#: pcsx2/gui/MainFrame.cpp:453 -msgid "Appearance..." -msgstr "Внешний вид" - -#: pcsx2/gui/MainFrame.cpp:458 +#: pcsx2/gui/MainFrame.cpp:451 msgid "&Video (GS)" msgstr "&Видео (GS)" -#: pcsx2/gui/MainFrame.cpp:459 +#: pcsx2/gui/MainFrame.cpp:452 msgid "&Audio (SPU2)" msgstr "&Звук (SPU2)" -#: pcsx2/gui/MainFrame.cpp:460 +#: pcsx2/gui/MainFrame.cpp:453 msgid "&Controllers (PAD)" msgstr "&Джойстики (PAD)" -#: pcsx2/gui/MainFrame.cpp:461 +#: pcsx2/gui/MainFrame.cpp:454 msgid "Dev9" msgstr "Dev9" -#: pcsx2/gui/MainFrame.cpp:462 +#: pcsx2/gui/MainFrame.cpp:455 msgid "USB" msgstr "USB" -#: pcsx2/gui/MainFrame.cpp:463 +#: pcsx2/gui/MainFrame.cpp:456 msgid "Firewire" msgstr "Firewire" -#: pcsx2/gui/MainFrame.cpp:466 +#: pcsx2/gui/MainFrame.cpp:459 msgid "Patches (unimplemented)" msgstr "Патчи (пока не работает)" -#: pcsx2/gui/MainFrame.cpp:469 +#: pcsx2/gui/MainFrame.cpp:462 msgid "Multitap 1" msgstr "Multitap 1" -#: pcsx2/gui/MainFrame.cpp:470 +#: pcsx2/gui/MainFrame.cpp:463 msgid "Multitap 2" msgstr "Multitap 2" -#: pcsx2/gui/MainFrame.cpp:473 +#: pcsx2/gui/MainFrame.cpp:466 msgid "Clear all settings..." msgstr "Сбросить все настройки..." -#: pcsx2/gui/MainFrame.cpp:474 +#: pcsx2/gui/MainFrame.cpp:467 #, c-format msgid "Clears all %s settings and re-runs the startup wizard." msgstr "Сбрасывает все настройки %s и перезапускает \"Мастер настройки\"." -#: pcsx2/gui/MainFrame.cpp:490 +#: pcsx2/gui/MainFrame.cpp:483 msgid "Print CDVD Info" msgstr "Выводить CDVD-информацию" -#: pcsx2/gui/MainFrame.cpp:497 +#: pcsx2/gui/MainFrame.cpp:490 msgid "About..." msgstr "О программе..." -#: pcsx2/gui/MainFrame.cpp:499 +#: pcsx2/gui/MainFrame.cpp:492 msgid "Open Debug Window..." msgstr "" -#: pcsx2/gui/MainFrame.cpp:500 +#: pcsx2/gui/MainFrame.cpp:493 msgid "Memory Dump..." msgstr "" -#: pcsx2/gui/MainFrame.cpp:501 +#: pcsx2/gui/MainFrame.cpp:494 msgid "Logging..." msgstr "" -#: pcsx2/gui/MainFrame.cpp:578 +#: pcsx2/gui/MainFrame.cpp:571 msgid "Suspend" msgstr "Пауза" -#: pcsx2/gui/MainFrame.cpp:579 +#: pcsx2/gui/MainFrame.cpp:572 msgid "Safely pauses emulation and preserves the PS2 state." msgstr "Ставит текущую игровую сессию на \"внутреннюю\" паузу." -#: pcsx2/gui/MainFrame.cpp:586 +#: pcsx2/gui/MainFrame.cpp:579 msgid "Resume" msgstr "Продолжить" -#: pcsx2/gui/MainFrame.cpp:587 +#: pcsx2/gui/MainFrame.cpp:580 msgid "Resumes the suspended emulation state." msgstr "Снимает \"паузу\" и возвращает игровую сессию к ее прежнему состоянию." -#: pcsx2/gui/MainFrame.cpp:591 +#: pcsx2/gui/MainFrame.cpp:584 msgid "Suspend/Resume" msgstr "Пауза/Продолжить" -#: pcsx2/gui/MainFrame.cpp:592 +#: pcsx2/gui/MainFrame.cpp:585 msgid "No emulation state is active; cannot suspend or resume." msgstr "Ничего не запущено, ставить на паузу нечего." -#: pcsx2/gui/MainFrame.cpp:601 +#: pcsx2/gui/MainFrame.cpp:594 msgid "Restart" msgstr "Перезапуск" -#: pcsx2/gui/MainFrame.cpp:602 +#: pcsx2/gui/MainFrame.cpp:595 msgid "Simulates hardware reset of the PS2 virtual machine." msgstr "Перезапуск виртуальной консоли, аналогичный кнопке сброса на PS2." -#: pcsx2/gui/MainFrame.cpp:607 +#: pcsx2/gui/MainFrame.cpp:600 msgid "No emulation state is active; boot something first." msgstr "Ничего не запущено, перезапускать нечего." -#: pcsx2/gui/MainFrame.cpp:615 +#: pcsx2/gui/MainFrame.cpp:608 msgid "Reboot CDVD (full)" msgstr "Перезапустить CD/DVD (все этапы)" -#: pcsx2/gui/MainFrame.cpp:616 +#: pcsx2/gui/MainFrame.cpp:609 msgid "Hard reset of the active VM." msgstr "\"Холодная\" перезагрузка текущей вирутальной машины." -#: pcsx2/gui/MainFrame.cpp:620 +#: pcsx2/gui/MainFrame.cpp:613 msgid "Boot CDVD (full)" msgstr "Запустить CD/DVD (все этапы)" -#: pcsx2/gui/MainFrame.cpp:621 +#: pcsx2/gui/MainFrame.cpp:614 msgid "Boot the VM using the current DVD or Iso source media" -msgstr "Запускает вирутальную машину PS2 используя выбранный DVD-диск или ISO-файл." +msgstr "" +"Запускает вирутальную машину PS2 используя выбранный DVD-диск или ISO-файл." -#: pcsx2/gui/MainFrame.cpp:629 +#: pcsx2/gui/MainFrame.cpp:622 msgid "Reboot CDVD (fast)" msgstr "Перезапустить CD/DVD (быстро)" -#: pcsx2/gui/MainFrame.cpp:630 -msgid "Reboot using BOOT2 injection (skips splash screens)" -msgstr "Быстрый перезапуск посредством BOOT2-инъекции (пропуск BIOS'а и PS2-логотипа)" +#: pcsx2/gui/MainFrame.cpp:623 +#, fuzzy +msgid "Reboot using fast BOOT (skips splash screens)" +msgstr "" +"Быстрый перезапуск посредством BOOT2-инъекции (пропуск BIOS'а и PS2-логотипа)" -#: pcsx2/gui/MainFrame.cpp:634 +#: pcsx2/gui/MainFrame.cpp:627 msgid "Boot CDVD (fast)" msgstr "Запустить CD/DVD (быстро)" -#: pcsx2/gui/MainFrame.cpp:635 -msgid "Use BOOT2 injection to skip PS2 startup and splash screens" -msgstr "Быстрая загрузка посредством BOOT2-инъекции с пропуском BIOS'а и PS2-логотипа" +#: pcsx2/gui/MainFrame.cpp:628 +#, fuzzy +msgid "Use fast boot to skip PS2 startup and splash screens" +msgstr "" +"Быстрая загрузка посредством BOOT2-инъекции с пропуском BIOS'а и PS2-логотипа" -#: pcsx2/gui/MainFrame.cpp:674 -#: pcsx2/gui/MainFrame.cpp:709 +#: pcsx2/gui/MainFrame.cpp:689 pcsx2/gui/MainFrame.cpp:724 msgid "No plugin loaded" msgstr "Плагин не загружен" -#: pcsx2/gui/MainFrame.cpp:679 +#: pcsx2/gui/MainFrame.cpp:694 msgid "Core GS Settings..." msgstr "Базовые настройки GS..." -#: pcsx2/gui/MainFrame.cpp:680 -msgid "Modify hardware emulation settings regulated by the PCSX2 core virtual machine." -msgstr "Настройка опций эмуляции аппаратной части за которую отвечает ядро вирутальной машины PCSX2." +#: pcsx2/gui/MainFrame.cpp:695 +msgid "" +"Modify hardware emulation settings regulated by the PCSX2 core virtual " +"machine." +msgstr "" +"Настройка опций эмуляции аппаратной части за которую отвечает ядро " +"вирутальной машины PCSX2." -#: pcsx2/gui/MainFrame.cpp:682 +#: pcsx2/gui/MainFrame.cpp:697 msgid "Window Settings..." msgstr "Настройки окна..." -#: pcsx2/gui/MainFrame.cpp:683 +#: pcsx2/gui/MainFrame.cpp:698 msgid "Modify window and appearance options, including aspect ratio." -msgstr "Позволяет настроить различные опции видео-окна, в том числе и соотношение сторон." +msgstr "" +"Позволяет настроить различные опции видео-окна, в том числе и соотношение " +"сторон." -#: pcsx2/gui/MainFrame.cpp:690 +#: pcsx2/gui/MainFrame.cpp:705 msgid "Plugin Settings..." msgstr "Настройки плагина..." -#: pcsx2/gui/MainFrame.cpp:691 +#: pcsx2/gui/MainFrame.cpp:706 #, c-format msgid "Opens the %s plugin's advanced settings dialog." msgstr "Открывает расширенные настройки текущего %s -плагина." -#: pcsx2/gui/MainMenuClicks.cpp:118 +#: pcsx2/gui/MainMenuClicks.cpp:112 msgid "Reset all settings?" msgstr "Сбросить все настройки?" -#: pcsx2/gui/MainMenuClicks.cpp:146 +#: pcsx2/gui/MainMenuClicks.cpp:140 msgid "Confirm ISO image change" msgstr "Подтверждение смены ISO-образа" -#: pcsx2/gui/MainMenuClicks.cpp:152 +#: pcsx2/gui/MainMenuClicks.cpp:146 msgid "Do you want to swap discs or boot the new image (via system reset)?" -msgstr "Желаете сменить текущий диск ИЛИ перезапустить консоль с новым образом (сброс)?" +msgstr "" +"Желаете сменить текущий диск ИЛИ перезапустить консоль с новым образом " +"(сброс)?" -#: pcsx2/gui/MainMenuClicks.cpp:154 -#: pcsx2/gui/MainMenuClicks.cpp:197 +#: pcsx2/gui/MainMenuClicks.cpp:148 pcsx2/gui/MainMenuClicks.cpp:191 msgid "Swap Disc" msgstr "Сменить диск" -#: pcsx2/gui/MainMenuClicks.cpp:187 +#: pcsx2/gui/MainMenuClicks.cpp:181 msgid "Confirm CDVD source change" msgstr "Подтверждение смены источника данных CDVD" -#: pcsx2/gui/MainMenuClicks.cpp:190 +#: pcsx2/gui/MainMenuClicks.cpp:184 #, c-format msgid "You've selected to switch the CDVD source from %s to %s." msgstr "Выбранная вами операция сменит источник данных с %s на %s." -#: pcsx2/gui/MainMenuClicks.cpp:194 +#: pcsx2/gui/MainMenuClicks.cpp:188 msgid "Do you want to swap discs or boot the new image (system reset)?" -msgstr "Вы желаете сменить источник и продолжить играть ИЛИ сменить и перезапустить консоль (сброс)?" +msgstr "" +"Вы желаете сменить источник и продолжить играть ИЛИ сменить и перезапустить " +"консоль (сброс)?" -#: pcsx2/gui/MainMenuClicks.cpp:262 +#: pcsx2/gui/MainMenuClicks.cpp:256 #, c-format msgid "All Supported (%s)" msgstr "Все поддерживаемые (%s)" -#: pcsx2/gui/MainMenuClicks.cpp:265 +#: pcsx2/gui/MainMenuClicks.cpp:259 #, c-format msgid "Disc Images (%s)" msgstr "Образа дисков (%s)" -#: pcsx2/gui/MainMenuClicks.cpp:268 +#: pcsx2/gui/MainMenuClicks.cpp:262 #, c-format msgid "Blockdumps (%s)" msgstr "Block-дампы (%s)" -#: pcsx2/gui/MainMenuClicks.cpp:271 -#: pcsx2/gui/MainMenuClicks.cpp:292 +#: pcsx2/gui/MainMenuClicks.cpp:265 pcsx2/gui/MainMenuClicks.cpp:286 msgid "All Files (*.*)" msgstr "Все файлы (*.*)" -#: pcsx2/gui/MainMenuClicks.cpp:274 +#: pcsx2/gui/MainMenuClicks.cpp:268 msgid "Select CDVD source iso..." msgstr "Выбор файла-образа в качестве CDVD-источника..." -#: pcsx2/gui/MainMenuClicks.cpp:291 +#: pcsx2/gui/MainMenuClicks.cpp:285 msgid "Select ELF file..." msgstr "Выбор ELF-файла..." -#: pcsx2/gui/MainMenuClicks.cpp:317 +#: pcsx2/gui/MainMenuClicks.cpp:311 msgid "ISO file not found!" msgstr "ISO-файл не найден!" -#: pcsx2/gui/MainMenuClicks.cpp:319 -msgid "" -"An error occurred while trying to open the file:\n" -"\n" +#: pcsx2/gui/MainMenuClicks.cpp:313 +#, fuzzy +msgid "An error occurred while trying to open the file:" msgstr "Произошла ошибка при попытке открытия файла:\n" -#: pcsx2/gui/MainMenuClicks.cpp:320 -msgid "Error: The configured ISO file does not exist. Click OK to select a new ISO source for CDVD." -msgstr "Ошибка: указанный ISO-файл не существует. Нажмите \"ОК\" для выбора другого ISO-файла для CDVD-источника." +#: pcsx2/gui/MainMenuClicks.cpp:314 +msgid "" +"Error: The configured ISO file does not exist. Click OK to select a new ISO " +"source for CDVD." +msgstr "" +"Ошибка: указанный ISO-файл не существует. Нажмите \"ОК\" для выбора другого " +"ISO-файла для CDVD-источника." -#: pcsx2/gui/MainMenuClicks.cpp:386 +#: pcsx2/gui/MainMenuClicks.cpp:380 msgid "" "You have selected the following ISO image into PCSX2:\n" "\n" @@ -889,303 +1365,31 @@ msgstr "" "%s\n" "\n" -#: pcsx2/gui/SysState.cpp:283 -msgid "Cannot load this savestate. The state is from an incompatible edition of PCSX2 that is either newer than this version, or is no longer supported." -msgstr "Ошибка загрузки быстрого сохранения. Данное сохранение либо устарело, либо от более новой версии PCSX2." - -#: pcsx2/gui/SysState.cpp:290 -msgid "Cannot load this savestate. The state is an unsupported version, likely created by a newer edition of PCSX2." -msgstr "Ошибка загрузки файла быстрого сохранения - версия файла сохранения не поддерживается. Возможно, он был создан более новой версией PCSX2." - -#: pcsx2/gui/SysState.cpp:513 -msgid "This savestate cannot be loaded because it is not a valid gzip archive. It may have been created by an older unsupported version of PCSX2, or it may be corrupted." -msgstr "Указанный файл быстрого сохранения не может быть загружен, так как не является gzip-архивом. Возможно, он был создан устаревшей версией PCSX2 или же поврежден." - -#: pcsx2/gui/SysState.cpp:572 -msgid "This file is not a valid PCSX2 savestate. See the logfile for details." -msgstr "Указанный файл не является быстрым сохранением PCSX2. См. файл лога для более подробной информации." - -#: pcsx2/gui/SysState.cpp:591 -msgid "This savestate cannot be loaded due to missing critical components. See the log file for details." -msgstr "Указанный файл быстрого сохранения не может быть загружен, так как в его составе отсутствуют важные компоненты. См. файл лога для более подробной информации." - -#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:35 -#, c-format -msgid "About %s" -msgstr "О программе %s" - -#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:95 -msgid "A Playstation 2 Emulator" -msgstr "Эмулятор Playstation 2" - -#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:99 -msgid "PCSX2 Official Website and Forums" -msgstr "Официальный web-ресурс PCSX2" - -#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:103 -msgid "PCSX2 Official Svn Repository at Googlecode" -msgstr "Официальный svn-репозиторий PCSX2 на Googlecode" - -#: pcsx2/gui/Dialogs/AssertionDialog.cpp:23 -msgid "Assertion Failure - " -msgstr "" - -#: pcsx2/gui/Dialogs/BaseConfigurationDialog.cpp:139 -msgid "Saves a snapshot of this settings panel to a PNG file." -msgstr "Сохраняет скриншот настроек текущего окна." - -#: pcsx2/gui/Dialogs/BaseConfigurationDialog.cpp:268 -msgid "Save dialog screenshots to..." -msgstr "Сохранить скриншот с настройками как..." - -#: pcsx2/gui/Dialogs/BiosSelectorDialog.cpp:31 -msgid "BIOS Selector" -msgstr "Настройка BIOS'а" - -#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:193 -msgid "Do not show this dialog again." -msgstr "Больше не показывать данный диалог" - -#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:199 -msgid "Disables this popup and whatever response you select here will be automatically used from now on." -msgstr "Позволяет скрыть данное окно в дальнейшем и всегда применять то действие, которое вы выберете сейчас." - -#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:201 -msgid "The popup will not be shown again. This setting can be undone from the settings panels." -msgstr "" - -#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:247 -#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:292 -msgid "Ignore" -msgstr "Игнорировать" - -#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:278 -msgid "Reset" -msgstr "Сброс" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:32 -#, c-format -msgid "Select memory card for Port %u / Slot %u" -msgstr "Выберите карту памяти для порта %u / слот %u" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:41 -msgid "Create new memory card" -msgstr "Создание новой карты памяти" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:60 -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:123 -#: pcsx2/gui/Panels/DirPickerPanel.cpp:68 -#: pcsx2/gui/Panels/DirPickerPanel.cpp:228 -msgid "Create" -msgstr "Создать" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:72 -msgid "New card will be saved to:" -msgstr "Новая карат памяти будет создана по адресу:" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:135 -msgid "Error: The memory card could not be created." -msgstr "Ошибка: карта памяти не может быть создана." - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:136 -msgid "memory card creation error" -msgstr "Ошибка создания карты памяти!" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:147 -msgid "Use NTFS compression when creating this card." -msgstr "Использовать NTFS-компрессию для файла карты памяти." - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:163 -msgid "8 MB [most compatible]" -msgstr "8 MB [наиболее совместимый вариант]" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:163 -msgid "This is the standard Sony-provisioned size, and is supported by all games and BIOS versions." -msgstr "" -"Это стандартынй размер каты памяти PS2, предоставленный и рекомендуемый самой Sony.\n" -"Совместим с любыми играми и версиями BIOS'а." - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:167 -msgid "16 MB" -msgstr "16 MB" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:167 -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:171 -msgid "A typical size for 3rd-party memory cards which should work with most games." -msgstr "Стандартный размер для \"неофициальных\" карт памяти. Должы работать почти со всеми играми." - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:171 -msgid "32 MB" -msgstr "32 MB" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:175 -msgid "64 MB" -msgstr "64 MB" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:175 -msgid "Low compatibility warning: Yes it's very big, but may not work with many games." -msgstr "Больше - не значит лучше! Размер, в данном случае, обратно-пропорционален совместимости." - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:46 -msgid "Settings" -msgstr "Место хранения настроек" - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:46 -#, c-format -msgid "Select a folder for %s settings" -msgstr "Выберите папку куда %s будет сохранять настройки" - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:72 -#: pcsx2/gui/Dialogs/PickUserModeDialog.cpp:29 -#, c-format -msgid "%s is starting from a new or unknown folder and needs to be configured." -msgstr "Предыдущие настройки %s не обнаружены, возможно вы запускаете эмулятор впервые или из другой папки. Необходима перенастройка." - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:118 -#: pcsx2/gui/Panels/DirPickerPanel.cpp:223 -msgid "Create folder?" -msgstr "Создать папку?" - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:119 -#, c-format -msgid "%s will create the following folder for documents. You can change this setting later, at any time." -msgstr "Указанная папка не существует, но %s может создать ее для вас. Данная опция доступна для изменения в настройках программы в любой момент времени. Продолжить?" - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:132 -#, c-format -msgid "%s First Time Configuration" -msgstr "Мастер настройки %s" - -#: pcsx2/gui/Dialogs/GameDatabaseDialog.cpp:24 -#, c-format -msgid "Game database - %s" -msgstr "" - -#: pcsx2/gui/Dialogs/ImportSettingsDialog.cpp:24 -msgid "Import Existing Settings?" -msgstr "Импортировать существующие настройки?" - -#: pcsx2/gui/Dialogs/ImportSettingsDialog.cpp:39 -msgid "Import" -msgstr "Импортировать" - -#: pcsx2/gui/Dialogs/ImportSettingsDialog.cpp:40 -msgid "Overwrite" -msgstr "Перезаписать" - -#: pcsx2/gui/Dialogs/LogOptionsDialog.cpp:27 -msgid "Trace Logging" -msgstr "" - -#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:40 -msgid "Auto-eject memory cards when loading savestates" -msgstr "Автоматически \"вынимать\" вирутальные карты памяти при загрузке быстрого сохранения" - -#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:47 -msgid "Backup existing Savestate when creating a new one" -msgstr "Делать резервную копию существующего быстрого сохранения при его перезаписи новым" - -#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:51 -#, c-format -msgid "Enable Multitap on Port %u" -msgstr "Включить поддержку Multitap для слота %u" - -#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:95 -msgid "MemoryCard Manager" -msgstr "Управление картами памяти" - -#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:102 -msgid "Drag items over other items in the list to swap or copy memory cards." -msgstr "Используя мышь, вы можете перетаскивать карты памяти в нижепредставленном списке для изменения их позиции." - -#: pcsx2/gui/Dialogs/PickUserModeDialog.cpp:24 -msgid "PCSX2 First Time configuration" -msgstr "Мастер настройки PCSX2" - -#: pcsx2/gui/Dialogs/StuckThreadDialog.cpp:28 -msgid "PCSX2 Thread is not responding" -msgstr "Превышено время ожидания потока PCSX2" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:35 -msgid "Config Overrides Warning" -msgstr "Предупреждение о статусе настроек" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:55 -msgid "Components Overrides Warning" -msgstr "Предупреждение о статусе плагинов" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:69 -#, c-format -msgid "Emulation Settings - %s" -msgstr "Настройки эмуляции - %s" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:76 -msgid "EE/IOP" -msgstr "Настройки EE/IOP" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:77 -msgid "VUs" -msgstr "Настройки VU" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:78 -msgid "GS" -msgstr "Настройки GS (видео)" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:79 -msgid "GS Window" -msgstr "GS-окно (видео)" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:80 -msgid "Speedhacks" -msgstr "Спидхаки" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:81 -msgid "Game Fixes" -msgstr "Исправления для игр" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:91 -#, c-format -msgid "Components Selectors - %s" -msgstr "Настройка плагинов %s" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:98 -msgid "Plugins" -msgstr "Плагины" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:99 -msgid "BIOS" -msgstr "BIOS" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:109 -#, c-format -msgid "Language Selector - %s" -msgstr "Выбор языка %s" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:117 -msgid "Folders" -msgstr "Папки" - #: pcsx2/gui/Panels/BaseApplicableConfigPanel.cpp:97 msgid "Cannot apply settings..." msgstr "Невозможно применить настройки..." -#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:92 +#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:103 msgid "BIOS Search Path:" msgstr "Искать BIOS-образа в:" -#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:93 +#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:104 msgid "Select folder with PS2 BIOS roms" msgstr "Выберите папку с образами BIOS'а" -#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:99 -msgid "Click the Browse button to select a different folder where PCSX2 will look for PS2 BIOS roms." +#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:111 +msgid "" +"Click the Browse button to select a different folder where PCSX2 will look " +"for PS2 BIOS roms." msgstr "Нажмите кнопку \"Обзор\" для выбора папки с образами BIOS'а PS2." -#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:101 +#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:113 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:149 +#: pcsx2/gui/Panels/ThemeSelectorPanel.cpp:47 msgid "Refresh list" msgstr "Обновить список" -#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:103 +#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:115 msgid "Select a BIOS rom:" msgstr "Выберите желаемый BIOS:" @@ -1197,133 +1401,210 @@ msgstr "Round Mode" msgid "Clamping Mode" msgstr "Clamping Mode" -#: pcsx2/gui/Panels/CpuPanel.cpp:27 -msgid "Flush to Zero" -msgstr "Flush to Zero" - -#: pcsx2/gui/Panels/CpuPanel.cpp:28 -msgid "Denormals are Zero" -msgstr "Denormals are Zero" - -#: pcsx2/gui/Panels/CpuPanel.cpp:32 +#: pcsx2/gui/Panels/CpuPanel.cpp:29 msgid "Nearest" msgstr "Nearest" -#: pcsx2/gui/Panels/CpuPanel.cpp:33 +#: pcsx2/gui/Panels/CpuPanel.cpp:30 msgid "Negative" msgstr "Negative" -#: pcsx2/gui/Panels/CpuPanel.cpp:34 +#: pcsx2/gui/Panels/CpuPanel.cpp:31 msgid "Positive" msgstr "Positive" -#: pcsx2/gui/Panels/CpuPanel.cpp:35 +#: pcsx2/gui/Panels/CpuPanel.cpp:32 msgid "Chop / Zero" msgstr "Chop / Zero" -#: pcsx2/gui/Panels/CpuPanel.cpp:40 +#: pcsx2/gui/Panels/CpuPanel.cpp:37 msgid "None" msgstr "None" -#: pcsx2/gui/Panels/CpuPanel.cpp:102 +#: pcsx2/gui/Panels/CpuPanel.cpp:85 msgid "EE/FPU Advanced Recompiler Options" msgstr "EE/FPU Advanced Recompiler Options" -#: pcsx2/gui/Panels/CpuPanel.cpp:104 -#: pcsx2/gui/Panels/CpuPanel.cpp:119 +#: pcsx2/gui/Panels/CpuPanel.cpp:87 pcsx2/gui/Panels/CpuPanel.cpp:102 msgid "Extra + Preserve Sign" msgstr "Extra + Preserve Sign" -#: pcsx2/gui/Panels/CpuPanel.cpp:105 +#: pcsx2/gui/Panels/CpuPanel.cpp:88 msgid "Full" msgstr "Full" -#: pcsx2/gui/Panels/CpuPanel.cpp:116 +#: pcsx2/gui/Panels/CpuPanel.cpp:99 msgid "VU0 / VU1 Advanced Recompiler Options" msgstr "VU0 / VU1 Advanced Recompiler Options" -#: pcsx2/gui/Panels/CpuPanel.cpp:118 +#: pcsx2/gui/Panels/CpuPanel.cpp:101 msgid "Extra" msgstr "Extra" -#: pcsx2/gui/Panels/CpuPanel.cpp:130 -#: pcsx2/gui/Panels/CpuPanel.cpp:139 -#: pcsx2/gui/Panels/CpuPanel.cpp:187 +#: pcsx2/gui/Panels/CpuPanel.cpp:117 pcsx2/gui/Panels/CpuPanel.cpp:126 +#: pcsx2/gui/Panels/CpuPanel.cpp:184 msgid "Interpreter" msgstr "Interpreter" -#: pcsx2/gui/Panels/CpuPanel.cpp:131 +#: pcsx2/gui/Panels/CpuPanel.cpp:118 msgid "Quite possibly the slowest thing in the universe." -msgstr "Режим интерпретации - тугодум еще тот. Используйте его только для поиска возможных багов рекомпилятора." +msgstr "" +"Режим интерпретации - тугодум еще тот. Используйте его только для поиска " +"возможных багов рекомпилятора." -#: pcsx2/gui/Panels/CpuPanel.cpp:133 -#: pcsx2/gui/Panels/CpuPanel.cpp:142 +#: pcsx2/gui/Panels/CpuPanel.cpp:120 pcsx2/gui/Panels/CpuPanel.cpp:129 msgid "Recompiler" msgstr "Recompiler" -#: pcsx2/gui/Panels/CpuPanel.cpp:134 -msgid "Performs just-in-time binary translation of 64-bit MIPS-IV machine code to x86." -msgstr "Заметно ускоряет эмуляцию посредством рекомпиляции бинарного машинного кода 64-bit MIPS-IV в x86-совместимый \"на-лету\"." +#: pcsx2/gui/Panels/CpuPanel.cpp:121 +msgid "" +"Performs just-in-time binary translation of 64-bit MIPS-IV machine code to " +"x86." +msgstr "" +"Заметно ускоряет эмуляцию посредством рекомпиляции бинарного машинного кода " +"64-bit MIPS-IV в x86-совместимый \"на-лету\"." -#: pcsx2/gui/Panels/CpuPanel.cpp:140 +#: pcsx2/gui/Panels/CpuPanel.cpp:127 msgid "Pretty slow; provided for diagnostic purposes only." -msgstr "Медленный режим, используйте только для поиска возможных багов IOP-рекомпилятора." +msgstr "" +"Медленный режим, используйте только для поиска возможных багов IOP-" +"рекомпилятора." -#: pcsx2/gui/Panels/CpuPanel.cpp:143 -msgid "Performs just-in-time binary translation of 32-bit MIPS-I machine code to x86." -msgstr "Заметно ускоряет эмуляцию посредством рекомпиляции бинарного машинного кода 32-bit MIPS-IV в x86-совместимый \"на-лету\"." +#: pcsx2/gui/Panels/CpuPanel.cpp:130 +msgid "" +"Performs just-in-time binary translation of 32-bit MIPS-I machine code to " +"x86." +msgstr "" +"Заметно ускоряет эмуляцию посредством рекомпиляции бинарного машинного кода " +"32-bit MIPS-IV в x86-совместимый \"на-лету\"." -#: pcsx2/gui/Panels/CpuPanel.cpp:177 -#: pcsx2/gui/Panels/CpuPanel.cpp:226 +#: pcsx2/gui/Panels/CpuPanel.cpp:154 +msgid "Enable EE Cache - Interpreter Only! (Slower)" +msgstr "" + +#: pcsx2/gui/Panels/CpuPanel.cpp:170 pcsx2/gui/Panels/CpuPanel.cpp:223 +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:110 msgid "Restore Defaults" msgstr "Сбросить настройки" -#: pcsx2/gui/Panels/CpuPanel.cpp:188 -msgid "Vector Unit Interpreter. Slow and not very compatible. Only use for diagnostics." -msgstr "Используйте режим интерпретатора VU только для поиска ошибок рекомпилятора." +#: pcsx2/gui/Panels/CpuPanel.cpp:185 +msgid "" +"Vector Unit Interpreter. Slow and not very compatible. Only use for " +"diagnostics." +msgstr "" +"Используйте режим интерпретатора VU только для поиска ошибок рекомпилятора." -#: pcsx2/gui/Panels/CpuPanel.cpp:190 +#: pcsx2/gui/Panels/CpuPanel.cpp:187 msgid "microVU Recompiler" msgstr "microVU Recompiler" -#: pcsx2/gui/Panels/CpuPanel.cpp:191 -msgid "New Vector Unit recompiler with much improved compatibility. Recommended." -msgstr "Новый рекомпилятор VU с весьма высокой совместимостью. Рекомендуется для использования." +#: pcsx2/gui/Panels/CpuPanel.cpp:188 +msgid "" +"New Vector Unit recompiler with much improved compatibility. Recommended." +msgstr "" +"Новый рекомпилятор VU с весьма высокой совместимостью. Рекомендуется для " +"использования." -#: pcsx2/gui/Panels/CpuPanel.cpp:193 +#: pcsx2/gui/Panels/CpuPanel.cpp:190 msgid "superVU Recompiler [legacy]" msgstr "superVU Recompiler [устаревший]" -#: pcsx2/gui/Panels/CpuPanel.cpp:194 -msgid "Useful for diagnosing bugs or clamping issues in the new mVU recompiler." -msgstr "Старый рекомпилятор VU, чуть быстрее microVU, но проигрывает в совместимости." +#: pcsx2/gui/Panels/CpuPanel.cpp:191 +msgid "" +"Useful for diagnosing bugs or clamping issues in the new mVU recompiler." +msgstr "" +"Старый рекомпилятор VU, чуть быстрее microVU, но проигрывает в совместимости." -#: pcsx2/gui/Panels/DirPickerPanel.cpp:58 +#: pcsx2/gui/Panels/DirPickerPanel.cpp:64 msgid "Path does not exist" msgstr "Указанный путь не существует" -#: pcsx2/gui/Panels/DirPickerPanel.cpp:116 +#: pcsx2/gui/Panels/DirPickerPanel.cpp:154 msgid "Use default setting" msgstr "Использовать настройки по умолчанию" -#: pcsx2/gui/Panels/DirPickerPanel.cpp:133 +#: pcsx2/gui/Panels/DirPickerPanel.cpp:174 msgid "Open in Explorer" msgstr "Открыть в Проводнике" -#: pcsx2/gui/Panels/DirPickerPanel.cpp:134 +#: pcsx2/gui/Panels/DirPickerPanel.cpp:175 msgid "Open an explorer window to this folder." msgstr "Открывает данную папку в Проводнике" -#: pcsx2/gui/Panels/DirPickerPanel.cpp:224 +#: pcsx2/gui/Panels/DirPickerPanel.cpp:266 +msgid "Create folder?" +msgstr "Создать папку?" + +#: pcsx2/gui/Panels/DirPickerPanel.cpp:267 #, c-format msgid "A configured folder does not exist. Should %s try to create it?" -msgstr "Указанная папка не существует, однако %s так мила, что готова создать ее для вас. Хотите?" +msgstr "" +"Указанная папка не существует, однако %s так мила, что готова создать ее для " +"вас. Хотите?" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:30 +msgid "Fit to Window/Screen" +msgstr "Подогнать под размеры окна/экрана" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:31 +msgid "Standard (4:3)" +msgstr "Стандартное (4:3)" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:32 +msgid "Widescreen (16:9)" +msgstr "Широкоформатное (16:9)" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:44 +msgid "Disable window resize border" +msgstr "Заблокировать растягивание кромки окна" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:45 +msgid "Always hide mouse cursor" +msgstr "Скрывать курсор мыши" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:46 +msgid "Hide window on suspend" +msgstr "Скрывать видеоокно в режиме паузы" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:47 +msgid "Default to fullscreen mode on open" +msgstr "Переходить в полный экран при запуске" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:48 +msgid "Wait for vsync on refresh" +msgstr "Использовать вертикальную синхронизацию (Vsync)" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:49 +msgid "Double-click Toggles Full-Screen mode" +msgstr "" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:50 +msgid "Use exclusive fullscreen mode (if available)" +msgstr "Использовать экслюзивный полноэкранный режим (если доступно)" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:90 +msgid "Aspect Ratio:" +msgstr "Соотношение сторон:" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:92 +msgid "Custom Window Size:" +msgstr "Установка соотношения вручную:" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:164 +msgid "" +"Invalid window dimensions specified: Size cannot contain non-numeric digits! " +">_<" +msgstr "" +"Указаны неверные значения для полей ручной настройки соотношения сторон. " +"Пожалуйста, используйте только правильные цифровые значения. Это для вашего " +"же блага..." #: pcsx2/gui/Panels/GameDatabasePanel.cpp:336 msgid "Search" msgstr "Поиск" #: pcsx2/gui/Panels/GameDatabasePanel.cpp:370 +#: pcsx2/gui/Panels/GameFixesPanel.cpp:25 msgid "Gamefixes" msgstr "Список доступных исправлений" @@ -1372,8 +1653,11 @@ msgid "EE timing hack - Multi purpose hack. Try if all else fails." msgstr "EE timing hack - \"универсальный\" хак, если все остальные бессильны." #: pcsx2/gui/Panels/GameFixesPanel.cpp:75 -msgid "Skip MPEG hack - Skips videos/FMVs in games to avoid game hanging/freezes." -msgstr "Skip MPEG hack - пропуск видеороликов игр дабы избежать возможных вылетов/зависаний." +msgid "" +"Skip MPEG hack - Skips videos/FMVs in games to avoid game hanging/freezes." +msgstr "" +"Skip MPEG hack - пропуск видеороликов игр дабы избежать возможных вылетов/" +"зависаний." #: pcsx2/gui/Panels/GameFixesPanel.cpp:79 msgid "OPH Flag hack - Try if your game freezes showing the same frame." @@ -1384,136 +1668,132 @@ msgid "Enable game fixes" msgstr "Включить поддержку исправлений для игр" #: pcsx2/gui/Panels/GameFixesPanel.cpp:103 -msgid "The safest way to make sure that all game fixes are completely disabled." +msgid "" +"The safest way to make sure that all game fixes are completely disabled." msgstr "Быстрый и уверенный способ отключить все игровые хаки разом." -#: pcsx2/gui/Panels/GSWindowPanel.cpp:30 -msgid "Fit to Window/Screen" -msgstr "Подогнать под размеры окна/экрана" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:31 -msgid "Standard (4:3)" -msgstr "Стандартное (4:3)" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:32 -msgid "Widescreen (16:9)" -msgstr "Широкоформатное (16:9)" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:44 -msgid "Disable window resize border" -msgstr "Заблокировать растягивание кромки окна" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:45 -msgid "Always hide mouse cursor" -msgstr "Скрывать курсор мыши" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:46 -msgid "Hide window on suspend" -msgstr "Скрывать видеоокно в режиме паузы" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:47 -msgid "Default to fullscreen mode on open" -msgstr "Переходить в полный экран при запуске" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:48 -msgid "Wait for vsync on refresh" -msgstr "Использовать вертикальную синхронизацию (Vsync)" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:49 -msgid "Use exclusive fullscreen mode (if available)" -msgstr "Использовать экслюзивный полноэкранный режим (если доступно)" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:89 -msgid "Aspect Ratio:" -msgstr "Соотношение сторон:" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:91 -msgid "Custom Window Size:" -msgstr "Установка соотношения вручную:" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:147 -msgid "Invalid window dimensions specified: Size cannot contain non-numeric digits! >_<" -msgstr "Указаны неверные значения для полей ручной настройки соотношения сторон. Пожалуйста, используйте только правильные цифровые значения. Это для вашего же блага..." - -#: pcsx2/gui/Panels/LogOptionsPanels.cpp:248 +#: pcsx2/gui/Panels/LogOptionsPanels.cpp:249 msgid "Enable Trace Logging" msgstr "" -#: pcsx2/gui/Panels/LogOptionsPanels.cpp:249 -msgid "Trace logs are all written to emulog.txt. Toggle trace logging at any time using F10." +#: pcsx2/gui/Panels/LogOptionsPanels.cpp:250 +msgid "" +"Trace logs are all written to emulog.txt. Toggle trace logging at any time " +"using F10." msgstr "" -#: pcsx2/gui/Panels/LogOptionsPanels.cpp:250 -msgid "Warning: Enabling trace logs is typically very slow, and is a leading cause of 'What happened to my FPS?' problems. :)" +#: pcsx2/gui/Panels/LogOptionsPanels.cpp:251 +msgid "" +"Warning: Enabling trace logs is typically very slow, and is a leading cause " +"of 'What happened to my FPS?' problems. :)" msgstr "" #: pcsx2/gui/Panels/MemoryCardListPanel.cpp:144 msgid "Select folder with PS2 memory cards" msgstr "Выберите папку для вирутальных карт памяти PS2" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:386 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:374 +#, fuzzy +msgid "Overwrite memory card?" +msgstr "Удалить карту памяти?" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:391 msgid "Copy failed!" msgstr "Ошибка копирования!" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:454 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:465 msgid "Mount" msgstr "Смонтировать" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:500 -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:670 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:511 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:681 msgid "Delete" msgstr "Удалить" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:503 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:514 msgid "Deletes the existing memory card from disk (all contents are lost)." -msgstr "Удаляет выбранную карту памяти с диска (все данные на карте будут потеряны)." +msgstr "" +"Удаляет выбранную карту памяти с диска (все данные на карте будут потеряны)." -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:504 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:515 msgid "Creates a new memory card in the empty slot." msgstr "Создает новую карту памяти в пустом слоте." -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:508 -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:671 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:519 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:682 msgid "Disable" msgstr "Отключить" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:508 -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:671 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:519 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:682 msgid "Enable" msgstr "Включить" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:511 -msgid "Disables the selected memory card, so that it will not be seen by games or BIOS." -msgstr "Деактивирует (\"вынимает\") выбранную карту памяти (ни BIOS, ни игра не будут ее видеть)." +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:522 +msgid "" +"Disables the selected memory card, so that it will not be seen by games or " +"BIOS." +msgstr "" +"Деактивирует (\"вынимает\") выбранную карту памяти (ни BIOS, ни игра не " +"будут ее видеть)." -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:512 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:523 msgid "Mounts the selected memory card, so that games can see it again." msgstr "Активирует (\"вставляет\") выбранную карту памяти." -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:591 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:602 msgid "Delete memory card?" msgstr "Удалить карту памяти?" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:670 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:681 msgid "Create new..." msgstr "Создать новую" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:672 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:683 msgid "Relocate file..." msgstr "Переопределить файл..." -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:677 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:688 msgid "Refresh List" msgstr "Обновить список" -#: pcsx2/gui/Panels/MemoryCardListView.cpp:136 -msgid "Enabled" -msgstr "Активна" +#: pcsx2/gui/Panels/MemoryCardListView.cpp:105 +msgid "Slot" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:106 +msgid "Status" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:107 +msgid "Size" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:108 +msgid "Formatted" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:109 +msgid "Modified" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:110 +#, fuzzy +msgid "Created" +msgstr "Создать" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:111 +msgid "Filename" +msgstr "" #: pcsx2/gui/Panels/MemoryCardListView.cpp:136 msgid "Disabled" msgstr "Неактивна" +#: pcsx2/gui/Panels/MemoryCardListView.cpp:136 +msgid "Enabled" +msgstr "Активна" + #: pcsx2/gui/Panels/MemoryCardListView.cpp:136 msgid "Missing" msgstr "Отсутствует" @@ -1524,14 +1804,14 @@ msgstr "Отсутствует" msgid "N/A" msgstr "N/A" -#: pcsx2/gui/Panels/MemoryCardListView.cpp:138 -msgid "Yes" -msgstr "Да" - #: pcsx2/gui/Panels/MemoryCardListView.cpp:138 msgid "No" msgstr "Нет" +#: pcsx2/gui/Panels/MemoryCardListView.cpp:138 +msgid "Yes" +msgstr "Да" + #: pcsx2/gui/Panels/MiscPanelStuff.cpp:33 msgid "Usermode Selection" msgstr "Настройка пользовательского режима" @@ -1549,8 +1829,12 @@ msgid "Custom folder:" msgstr "Другая папка:" #: pcsx2/gui/Panels/MiscPanelStuff.cpp:57 -msgid "This setting may require administration privileges from your operating system, depending on how your system is configured." -msgstr "В зависимости от того, куда вы установили PCSX2, данная опция может потребовать наличие администраторских прав для ее правильного использования." +msgid "" +"This setting may require administration privileges from your operating " +"system, depending on how your system is configured." +msgstr "" +"В зависимости от того, куда вы установили PCSX2, данная опция может " +"потребовать наличие администраторских прав для ее правильного использования." #: pcsx2/gui/Panels/MiscPanelStuff.cpp:66 #, c-format @@ -1565,31 +1849,27 @@ msgstr "Применить" msgid "Make this language my default right now!" msgstr "Устанавливает выбранный язык как язык интерфейса по умолчанию." -#: pcsx2/gui/Panels/MiscPanelStuff.cpp:127 -msgid "Select a language:" -msgstr "Выберите язык:" - -#: pcsx2/gui/Panels/PathsPanel.cpp:37 +#: pcsx2/gui/Panels/PathsPanel.cpp:38 msgid "Savestates:" msgstr "Быстрые сохранения:" -#: pcsx2/gui/Panels/PathsPanel.cpp:38 +#: pcsx2/gui/Panels/PathsPanel.cpp:39 msgid "Select folder for Savestates" msgstr "Выберите папку для быстрых сохранений" -#: pcsx2/gui/Panels/PathsPanel.cpp:47 +#: pcsx2/gui/Panels/PathsPanel.cpp:48 msgid "Snapshots:" msgstr "Скриншоты:" -#: pcsx2/gui/Panels/PathsPanel.cpp:48 +#: pcsx2/gui/Panels/PathsPanel.cpp:49 msgid "Select a folder for Snapshots" msgstr "Выберите папку для скриншотов" -#: pcsx2/gui/Panels/PathsPanel.cpp:57 +#: pcsx2/gui/Panels/PathsPanel.cpp:58 msgid "Logs/Dumps:" msgstr "Логи/дампы:" -#: pcsx2/gui/Panels/PathsPanel.cpp:58 +#: pcsx2/gui/Panels/PathsPanel.cpp:59 msgid "Select a folder for logs/dumps" msgstr "Выберите папку для логов/дампов" @@ -1617,11 +1897,16 @@ msgstr "Искать плагины в:" msgid "Select a folder with PCSX2 plugins" msgstr "Выберите папку с плагинами PCSX2" -#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:378 +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:370 +#, fuzzy +msgid "Configure..." +msgstr "&Настройка" + +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:379 msgid "Click the Browse button to select a different folder for PCSX2 plugins." msgstr "Нажмите кнопку \"Обзор\" для выбора папки с плагинами PCSX2." -#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:520 +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:519 #, c-format msgid "" "The selected %s plugin failed to load.\n" @@ -1634,7 +1919,7 @@ msgstr "" "Причина: %s\n" "\n" -#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:730 +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:729 msgid "Completing tasks..." msgstr "Завершение задач..." @@ -1643,12 +1928,17 @@ msgid "Enable speedhacks" msgstr "Включить спидхаки" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:102 -msgid "A safe and easy way to make sure that all speedhacks are completely disabled." +msgid "" +"A safe and easy way to make sure that all speedhacks are completely disabled." msgstr "Простое и быстрое включение/отключение всех спидхаков." #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:111 -msgid "Resets all speedhack options to their defaults, which consequently turns them all OFF." -msgstr "Сбрасывает все настройки спидхаков на значения по умолчанию (поочередное отключение всех директив)" +msgid "" +"Resets all speedhack options to their defaults, which consequently turns " +"them all OFF." +msgstr "" +"Сбрасывает все настройки спидхаков на значения по умолчанию (поочередное " +"отключение всех директив)" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:120 msgid "EE Cyclerate [Not Recommended]" @@ -1667,24 +1957,36 @@ msgid "mVU Flag Hack" msgstr "mVU Flag Hack" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:164 -msgid "Good Speedup and High Compatibility; may cause garbage graphics, SPS, etc... [Recommended]" -msgstr "Неплохое ускорение и вполне неплохая совместимость. Возможно появление графического \"мусора\", черного экрана, выпадающих полигонов и т.п. [рекомендуется]" +msgid "" +"Good Speedup and High Compatibility; may cause garbage graphics, SPS, etc... " +"[Recommended]" +msgstr "" +"Неплохое ускорение и вполне неплохая совместимость. Возможно появление " +"графического \"мусора\", черного экрана, выпадающих полигонов и т.п. " +"[рекомендуется]" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:166 msgid "mVU Block Hack" msgstr "mVU Block Hack" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:167 -msgid "Good Speedup and High Compatibility; may cause garbage graphics, SPS, etc..." -msgstr "Неплохое ускорение и вполне неплохая совместимость. Возможно появление графического \"мусора\", черного экрана, выпадающих полигонов и т.п." +msgid "" +"Good Speedup and High Compatibility; may cause garbage graphics, SPS, etc..." +msgstr "" +"Неплохое ускорение и вполне неплохая совместимость. Возможно появление " +"графического \"мусора\", черного экрана, выпадающих полигонов и т.п." #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:169 msgid "mVU Min/Max Hack" msgstr "mVU Min/Max Hack" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:170 -msgid "Small Speedup; may cause black screens, garbage graphics, SPS, etc... [Not Recommended]" -msgstr "Небольшое ускорение, возможно появление графического \"мусора\", черного экрана, выпадающих полигонов и т.п. [не рекомендуется]" +msgid "" +"Small Speedup; may cause black screens, garbage graphics, SPS, etc... [Not " +"Recommended]" +msgstr "" +"Небольшое ускорение, возможно появление графического \"мусора\", черного " +"экрана, выпадающих полигонов и т.п. [не рекомендуется]" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:190 msgid "Other Hacks" @@ -1695,16 +1997,23 @@ msgid "Enable INTC Spin Detection" msgstr "Включить INTC Spin Detection" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:193 -msgid "Huge speedup for some games, with almost no compatibility side effects. [Recommended]" -msgstr "Серьезное повышение производительности и почти без каких-либо побочных эффектов. [рекомендуется]" +msgid "" +"Huge speedup for some games, with almost no compatibility side effects. " +"[Recommended]" +msgstr "" +"Серьезное повышение производительности и почти без каких-либо побочных " +"эффектов. [рекомендуется]" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:195 msgid "Enable Wait Loop Detection" msgstr "Включить Wait Loop Detection" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:196 -msgid "Moderate speedup for some games, with no known side effects. [Recommended]" -msgstr "Неплохое ускорение некоторых игр без каких-либо побочных эффектов. [рекомендуется]" +msgid "" +"Moderate speedup for some games, with no known side effects. [Recommended]" +msgstr "" +"Неплохое ускорение некоторых игр без каких-либо побочных эффектов. " +"[рекомендуется]" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:198 msgid "Enable fast CDVD" @@ -1714,13 +2023,38 @@ msgstr "Включить fast CDVD" msgid "Fast disc access, less loading times. [Not Recommended]" msgstr "Ускоряет доступ к диску, уменьшает время загрузки. [не рекомендуется]" +#: pcsx2/gui/Panels/ThemeSelectorPanel.cpp:37 +#, fuzzy +msgid "Themes Search Path:" +msgstr "Искать BIOS-образа в:" + +#: pcsx2/gui/Panels/ThemeSelectorPanel.cpp:38 +#, fuzzy +msgid "Select folder containing PCSX2 visual themes" +msgstr "Выберите папку для быстрых сохранений" + +#: pcsx2/gui/Panels/ThemeSelectorPanel.cpp:45 +#, fuzzy +msgid "" +"Click the Browse button to select a different folder containing PCSX2 visual " +"themes." +msgstr "Нажмите кнопку \"Обзор\" для выбора папки с плагинами PCSX2." + +#: pcsx2/gui/Panels/ThemeSelectorPanel.cpp:49 +#, fuzzy +msgid "Select a visual theme:" +msgstr "Выберите язык:" + #: pcsx2/gui/Panels/VideoPanel.cpp:34 msgid "Disable Framelimiting" msgstr "Отключить лимит кадров" #: pcsx2/gui/Panels/VideoPanel.cpp:35 -msgid "Useful for running benchmarks. Toggle this option in-game by pressing F4." -msgstr "Удобно использовать для замеров производительности. Быстрая клавиша для смены режима во время игры: F4" +msgid "" +"Useful for running benchmarks. Toggle this option in-game by pressing F4." +msgstr "" +"Удобно использовать для замеров производительности. Быстрая клавиша для " +"смены режима во время игры: F4" #: pcsx2/gui/Panels/VideoPanel.cpp:61 msgid "Base Framerate Adjust:" @@ -1738,8 +2072,7 @@ msgstr "Коэффициент ускорения:" msgid "NTSC Framerate:" msgstr "Лимит кадров для NTSC-игр" -#: pcsx2/gui/Panels/VideoPanel.cpp:91 -#: pcsx2/gui/Panels/VideoPanel.cpp:97 +#: pcsx2/gui/Panels/VideoPanel.cpp:91 pcsx2/gui/Panels/VideoPanel.cpp:97 msgid "FPS" msgstr "FPS" @@ -1747,219 +2080,269 @@ msgstr "FPS" msgid "PAL Framerate:" msgstr "Лимит кадров для PAL-игр" -#: pcsx2/gui/Panels/VideoPanel.cpp:184 +#: pcsx2/gui/Panels/VideoPanel.cpp:180 msgid "Disabled [default]" msgstr "Отключен (по умолчанию)" -#: pcsx2/gui/Panels/VideoPanel.cpp:188 -msgid "Skip when on Turbo only" +#: pcsx2/gui/Panels/VideoPanel.cpp:184 +#, fuzzy +msgid "Skip when on Turbo only (TAB to enable)" msgstr "Пропускать только в режиме ускорения" -#: pcsx2/gui/Panels/VideoPanel.cpp:192 +#: pcsx2/gui/Panels/VideoPanel.cpp:188 msgid "Constant skipping" msgstr "Постоянный пропуск" -#: pcsx2/gui/Panels/VideoPanel.cpp:194 -msgid "Normal and Turbo limit rates skip frames. Slow motion mode will still disable frameskipping." -msgstr "Normal- и Turbo-режимы позволяют пропуск кадров. Slowmotion-режим отключает любой пропуск кадров." +#: pcsx2/gui/Panels/VideoPanel.cpp:190 +msgid "" +"Normal and Turbo limit rates skip frames. Slow motion mode will still " +"disable frameskipping." +msgstr "" +"Normal- и Turbo-режимы позволяют пропуск кадров. Slowmotion-режим отключает " +"любой пропуск кадров." -#: pcsx2/gui/Panels/VideoPanel.cpp:220 +#: pcsx2/gui/Panels/VideoPanel.cpp:213 msgid "Frames to Draw" msgstr "кол-во кадров для прорисовки" -#: pcsx2/gui/Panels/VideoPanel.cpp:225 +#: pcsx2/gui/Panels/VideoPanel.cpp:218 msgid "Frames to Skip" msgstr "кол-во кадров для пропуска" -#: pcsx2/gui/Panels/VideoPanel.cpp:291 +#: pcsx2/gui/Panels/VideoPanel.cpp:294 msgid "Use Synchronized MTGS" msgstr "Использовать синхронизацию MTGS" -#: pcsx2/gui/Panels/VideoPanel.cpp:295 +#: pcsx2/gui/Panels/VideoPanel.cpp:298 msgid "Disable all GS output" msgstr "Отключить вывод GS-данных." -#: pcsx2/gui/Panels/VideoPanel.cpp:313 +#: pcsx2/gui/Panels/VideoPanel.cpp:316 msgid "Frame Skipping" msgstr "Пропуск кадров" -#: pcsx2/gui/Panels/VideoPanel.cpp:316 +#: pcsx2/gui/Panels/VideoPanel.cpp:319 msgid "Framelimiter" msgstr "Лимит кадров" -#: pcsx2/ps2/BiosTools.cpp:83 -#: pcsx2/ps2/BiosTools.cpp:151 +#: pcsx2/gui/SysState.cpp:283 +msgid "" +"Cannot load this savestate. The state is from an incompatible edition of " +"PCSX2 that is either newer than this version, or is no longer supported." +msgstr "" +"Ошибка загрузки быстрого сохранения. Данное сохранение либо устарело, либо " +"от более новой версии PCSX2." + +#: pcsx2/gui/SysState.cpp:290 +msgid "" +"Cannot load this savestate. The state is an unsupported version, likely " +"created by a newer edition of PCSX2." +msgstr "" +"Ошибка загрузки файла быстрого сохранения - версия файла сохранения не " +"поддерживается. Возможно, он был создан более новой версией PCSX2." + +#: pcsx2/gui/SysState.cpp:520 +msgid "" +"This savestate cannot be loaded because it is not a valid gzip archive. It " +"may have been created by an older unsupported version of PCSX2, or it may be " +"corrupted." +msgstr "" +"Указанный файл быстрого сохранения не может быть загружен, так как не " +"является gzip-архивом. Возможно, он был создан устаревшей версией PCSX2 или " +"же поврежден." + +#: pcsx2/gui/SysState.cpp:579 +msgid "This file is not a valid PCSX2 savestate. See the logfile for details." +msgstr "" +"Указанный файл не является быстрым сохранением PCSX2. См. файл лога для " +"более подробной информации." + +#: pcsx2/gui/SysState.cpp:598 +msgid "" +"This savestate cannot be loaded due to missing critical components. See the " +"log file for details." +msgstr "" +"Указанный файл быстрого сохранения не может быть загружен, так как в его " +"составе отсутствуют важные компоненты. См. файл лога для более подробной " +"информации." + +#: pcsx2/ps2/BiosTools.cpp:83 pcsx2/ps2/BiosTools.cpp:151 msgid "The selected BIOS file is not a valid PS2 BIOS. Please re-configure." -msgstr "Выбранный файл не является правильным образом PS2-биоса. Выберите другой." +msgstr "" +"Выбранный файл не является правильным образом PS2-биоса. Выберите другой." #: pcsx2/ps2/BiosTools.cpp:244 -msgid "The PS2 BIOS could not be loaded. The BIOS has not been configured, or the configuration has been corrupted. Please re-configure." -msgstr "Ошибка загрузки BIOS-системы PS2. Возможно, BIOS-образ не выбран или его настройка некорректна. Попробуйте перенастроить." +msgid "" +"The PS2 BIOS could not be loaded. The BIOS has not been configured, or the " +"configuration has been corrupted. Please re-configure." +msgstr "" +"Ошибка загрузки BIOS-системы PS2. Возможно, BIOS-образ не выбран или его " +"настройка некорректна. Попробуйте перенастроить." #: pcsx2/ps2/BiosTools.cpp:251 msgid "The configured BIOS file does not exist. Please re-configure." msgstr "Выбранный файл BIOS'а не найден. Выберите другой." -#: pcsx2/x86/microVU.cpp:85 -#, c-format -msgid "%s Extensions not found. microVU requires a host CPU with MMX, SSE, and SSE2 extensions." -msgstr "Расширение %s не обнаружено. microVU-рекомпилятору необходим процессор с поддержкой инструкций MMX, SSE, и SSE2." - #: pcsx2/x86/ix86-32/iR5900-32.cpp:578 #, c-format -msgid "%s Extensions not found. The R5900-32 recompiler requires a host CPU with MMX, SSE, and SSE2 extensions." -msgstr "Расширение %s не обнаружено. R5900-32-рекомпилятору необходим процессор с поддержкой инструкций MMX, SSE, и SSE2." +msgid "" +"%s Extensions not found. The R5900-32 recompiler requires a host CPU with " +"MMX, SSE, and SSE2 extensions." +msgstr "" +"Расширение %s не обнаружено. R5900-32-рекомпилятору необходим процессор с " +"поддержкой инструкций MMX, SSE, и SSE2." -#: pcsx2/ZipTools/thread_gzip.cpp:83 -msgid "The savestate was not properly saved. The temporary file was created successfully but could not be moved to its final resting place." -msgstr "Ошибка записи файла быстрого сохранения. Временый файл сохранения был создан вполне успешно, но по каким-то причинам он не может быть перемещен в пункт назначения." +#: pcsx2/x86/microVU.cpp:85 +#, c-format +msgid "" +"%s Extensions not found. microVU requires a host CPU with MMX, SSE, and " +"SSE2 extensions." +msgstr "" +"Расширение %s не обнаружено. microVU-рекомпилятору необходим процессор с " +"поддержкой инструкций MMX, SSE, и SSE2." -#: common/src/Utilities/Exceptions.cpp:219 -msgid "Oh noes! Out of memory!" -msgstr "Какая досада, мы \"out of memory\"!" +#~ msgid "&Back >" +#~ msgstr "&Назад >" -#: common/src/Utilities/Exceptions.cpp:234 -msgid "Virtual memory mapping failure! Your system may have conflicting device drivers, services, or may simply have insufficient memory or resources to meet PCSX2's lofty needs." -msgstr "Ошибка распределения вирутальной памяти! Возможно какие-то драйвера устройств в вашей системе конфликтуют или же, ваша система не обладает достаточным объемом свободных ресурсов." +#~ msgid "Appearance..." +#~ msgstr "Внешний вид" -#: common/src/Utilities/Exceptions.cpp:309 -msgid "Path: " -msgstr "Путь:" +#~ msgid "" +#~ "%s will create the following folder for documents. You can change this " +#~ "setting later, at any time." +#~ msgstr "" +#~ "Указанная папка не существует, но %s может создать ее для вас. Данная " +#~ "опция доступна для изменения в настройках программы в любой момент " +#~ "времени. Продолжить?" -#: common/src/Utilities/Exceptions.cpp:313 -msgid "[Unnamed or unknown]" -msgstr "[Unnamed or unknown]" +#~ msgid "Flush to Zero" +#~ msgstr "Flush to Zero" -#: common/src/Utilities/Exceptions.cpp:333 -msgid "A file could not be created." -msgstr "Невозможно создать файл." - -#: common/src/Utilities/Exceptions.cpp:353 -msgid "File not found." -msgstr "Файл не найден." - -#: common/src/Utilities/Exceptions.cpp:373 -msgid "Permission denied while trying to open file, likely due to insufficient user account rights." -msgstr "Ошибка доступа при открытии файла. Виной тому, сорее всего, недостаток прав текущего пользователя." - -#: common/src/Utilities/Exceptions.cpp:393 -msgid "Unexpected end of file or stream encountered. File is probably truncated or corrupted." -msgstr "Неожиданный обрыв файла или потока. Возможно файл обрезан или поврежден." - -#: common/src/Utilities/ThreadingDialogs.cpp:30 -msgid "Waiting for tasks..." -msgstr "Выполнение задач..." - -#: common/src/Utilities/ThreadingDialogs.cpp:41 -msgid "Waiting for task..." -msgstr "Выполнение задачи..." - -#: pcsx2/gui/ApplyState.h:55 -msgid "Cannot apply new settings, one of the settings is invalid." -msgstr "Ошибка применения новых настроек, где-то в опции закралась ошибка!" - -#: common/include/Utilities/Exceptions.h:226 -msgid "Parse error" -msgstr "Ошибка парсинга" - -#: common/include/Utilities/Exceptions.h:250 -msgid "Your machine's hardware is incapable of running PCSX2. Sorry dood." -msgstr "Аппаратные способности вашего компьютера оставляют желать лучшего. Извини, чувак, PCSX2 у тебя не пойдет." +#~ msgid "Denormals are Zero" +#~ msgstr "Denormals are Zero" #~ msgid "Illegal ELF file size over 2GB!" #~ msgstr "Некорректный размер ELF-загрузчика (более 2GB)" + #~ msgid "ELF file does not exist!" #~ msgstr "ELF-загрузчик не найден." + #~ msgid "Unexpected end of ELF file." #~ msgstr "Неожиданный конец ELF-загрузчика." + #~ msgid "" #~ "The MTGS thread has become unresponsive while waiting for the GS plugin " #~ "to open." #~ msgstr "" #~ "Связь с MTGS-потоком была потеряна в период ожидания открытия GS-плагина." + #~ msgid "Internal Memorycard Plugin failed to initialize." #~ msgstr "Ошибка инициализации встроенного плагина карт памяти." + #~ msgid "The savestate data is invalid or corrupted." #~ msgstr "Данные файла быстрого сохранения повреждены." + #~ msgid "Dumps detailed information for PS2 executables (ELFs)." #~ msgstr "" #~ "Отображает детальную информацию касательно исполняемых файлов PS2 (ELF-" #~ "файлах)." + #~ msgid "" #~ "Logs manual protection, split blocks, and other things that might impact " #~ "performance." #~ msgstr "" #~ "Отображает информацию о manual protection, split blocks, и другие " #~ "источники, которые могут влиять на производительность." + #~ msgid "Shows the game developer's logging text (EE processor)" #~ msgstr "Отображает отладочную информацию касательно EE-процессора." + #~ msgid "Shows the game developer's logging text (IOP processor)" #~ msgstr "Отображает отладочную информацию касательно IOP-процессора." + #~ msgid "Detailed logging of CDVD hardware." #~ msgstr "Выводит в лог детальную информацию о CDVD-системе." + #~ msgid "Unrecognized ISO file format." #~ msgstr "Неизвестный формат ISO-файла." + #~ msgid "Fits a lot of log in a microcosmically small area." #~ msgstr "Для самых маленьких." + #~ msgid "It's what I use (the programmer guy)." #~ msgstr "Самое то для любого кодера (сам такой использую)." + #~ msgid "Its nice and readable." #~ msgstr "На тот случай если у вас проблема со зрением." + #~ msgid "In case you have a really high res display." #~ msgstr "Гигантский размер шрифта для ребят с гигантскими... мониторами." + #~ msgid "Default soft-tone color scheme." #~ msgstr "Стандартная светлая тема с мягкими цветами." + #~ msgid "" #~ "Classic black color scheme for people who enjoy having text seared into " #~ "their optic nerves." #~ msgstr "Классический черный фон для людей со стальными глазными нервами." + #~ msgid "" #~ "When checked the log window will be visible over other foreground windows." #~ msgstr "" #~ "Включите данную опцию, если желаете видеть окно лога поверх всех " #~ "остальных окон." + #~ msgid "Logs events as they are passed to the PS2 virtual machine." #~ msgstr "Отображает события которые отправляются вирутальной машине PS2." + #~ msgid "Data read failed: Invalid or corrupted gzip archive." #~ msgstr "Ошибка чтения данных: неправильный или поврежденный gzip-архив." + #~ msgid "" #~ "Always use this option if you want the safest and surest memory card " #~ "behavior." #~ msgstr "" #~ "Просто оставьте эту опцию включенной и можете забыть про все остальные " #~ "варианты. Все будет \"тип-топ\" (не зря же она стоит по умолчанию, а?)." + #~ msgid "16 and 32 MB cards have roughly the same compatibility factor." #~ msgstr "Совместимость почти такая же, как и у предыдущего варианта." + #~ msgid "" #~ "Use at your own risk. Erratic memory card behavior is possible (though " #~ "unlikely)." #~ msgstr "" #~ "Используйте данный вариант на свой страх и риск, ибо возможно появление " #~ "ошибок." + #~ msgid "" #~ "Error while parsing either NTSC or PAL framerate settings. Settings must " #~ "be valid floating point numerics." #~ msgstr "" #~ "Ошибка обработки директивы максимального кол-ва кадров для NTSC/PAL " #~ "режимов. Возможно, вы указали некорректное значение." + #~ msgid "" #~ "For troubleshooting potential bugs in the MTGS only, as it is potentially " #~ "very slow." #~ msgstr "" #~ "Данная опция актуальна только для поиска возможных багов в MTGS, ибо " #~ "весьма серьезно замедляет производительность эмулятора." + #~ msgid "" #~ "Completely disables all GS plugin activity; ideal for benchmarking EEcore " #~ "components." #~ msgstr "" #~ "Полностью отключает любую активность GS-плагинов -- идеально для тестов " #~ "EEcore-компонентов." + #~ msgid "Threading activity: start, detach, sync, deletion, etc." #~ msgstr "Потоковая акивность: start, detach, sync, deletion, и т.д." + #~ msgid "Includes idle event processing and some other uncommon event usages." #~ msgstr "" #~ "Включает в себя обработку событий ожидания и других редко используемых " #~ "событий." + #~ msgid "No reason given." #~ msgstr "Причина неизвестна." - diff --git a/locales/ru_RU/pcsx2_Tertiary.po b/locales/ru_RU/pcsx2_Tertiary.po index 0977ecb930..c6be42ad19 100644 --- a/locales/ru_RU/pcsx2_Tertiary.po +++ b/locales/ru_RU/pcsx2_Tertiary.po @@ -2,10 +2,11 @@ msgid "" msgstr "" "Project-Id-Version: PCSX2 0.9.7\n" "Report-Msgid-Bugs-To: http://code.google.com/p/pcsx2/\n" -"POT-Creation-Date: 2010-12-26 10:01-0500\n" +"POT-Creation-Date: 2011-02-25 18:54+0100\n" "PO-Revision-Date: 2010-12-28 13:40+0300\n" "Last-Translator: Kein \n" "Language-Team: Kein \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -17,29 +18,174 @@ msgstr "" "X-Poedit-SearchPath-0: pcsx2\n" "X-Poedit-SearchPath-1: common\n" +#: common/include/Utilities/Exceptions.h:187 +msgid "No reason given." +msgstr "Причина неизвестна." + +#: common/src/Utilities/ThreadTools.cpp:41 +msgid "Threading activity: start, detach, sync, deletion, etc." +msgstr "Потоковая акивность: start, detach, sync, deletion, и т.д." + +#: common/src/Utilities/wxAppWithHelpers.cpp:36 +msgid "Includes idle event processing and some other uncommon event usages." +msgstr "" +"Включает в себя обработку событий ожидания и других редко используемых " +"событий." + #: pcsx2/MTGS.cpp:809 -msgid "The MTGS thread has become unresponsive while waiting for the GS plugin to open." -msgstr "Связь с MTGS-потоком была потеряна в период ожидания открытия GS-плагина." +msgid "" +"The MTGS thread has become unresponsive while waiting for the GS plugin to " +"open." +msgstr "" +"Связь с MTGS-потоком была потеряна в период ожидания открытия GS-плагина." #: pcsx2/PluginManager.cpp:1329 msgid "Internal Memorycard Plugin failed to initialize." msgstr "Ошибка инициализации встроенного плагина карт памяти." +#: pcsx2/gui/AppConfig.cpp:776 +msgid "Safest" +msgstr "" + +#: pcsx2/gui/AppConfig.cpp:777 +msgid "Safe (faster)" +msgstr "" + +#: pcsx2/gui/AppConfig.cpp:778 +msgid "Balanced" +msgstr "" + +#: pcsx2/gui/AppConfig.cpp:779 +msgid "Aggressive" +msgstr "" + +#: pcsx2/gui/AppConfig.cpp:780 +msgid "Aggressive plus" +msgstr "" + +#: pcsx2/gui/AppConfig.cpp:781 +msgid "Mostly Harmful" +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:412 +msgid "Fits a lot of log in a microcosmically small area." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:414 +msgid "It's what I use (the programmer guy)." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:416 +msgid "Its nice and readable." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:418 +msgid "In case you have a really high res display." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:422 +msgid "Default soft-tone color scheme." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:423 +msgid "" +"Classic black color scheme for people who enjoy having text seared into " +"their optic nerves." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:427 +msgid "" +"When checked the log window will be visible over other foreground windows." +msgstr "" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:151 +msgid "!ContextTip:ChangingNTFS" +msgstr "" +"Режим NTFS-компрессии может быть изменен в любой момент времени через " +"свойства файла Проводника Windows." + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:164 +msgid "" +"Always use this option if you want the safest and surest memory card " +"behavior." +msgstr "" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:168 +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:172 +msgid "16 and 32 MB cards have roughly the same compatibility factor." +msgstr "" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:176 +msgid "" +"Use at your own risk. Erratic memory card behavior is possible (though " +"unlikely)." +msgstr "" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:49 +msgid "!ContextTip:Folders:Settings" +msgstr "" +"Папка, где PCSX2 будет хранить свои настройки, в том числе и настройки " +"большинства плагинов (некоторые устаревшие плагины могут игнорировать данную " +"опцию)." + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:38 +msgid "!Panel:HasHacksOverrides" +msgstr "" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:58 +msgid "!Panel:HasPluginsOverrides" +msgstr "" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:135 +msgid "!Notice:Tooltip:Presets:Slider" +msgstr "" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:149 +msgid "!Notice:Tooltip:Presets:Checkbox" +msgstr "" + #: pcsx2/gui/ExecutorThread.cpp:40 msgid "Logs events as they are passed to the PS2 virtual machine." msgstr "Отображает события которые отправляются вирутальной машине PS2." -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:151 -msgid "!ContextTip:ChangingNTFS" -msgstr "Режим NTFS-компрессии может быть изменен в любой момент времени через свойства файла Проводника Windows." - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:48 -msgid "!ContextTip:Folders:Settings" -msgstr "Папка, где PCSX2 будет хранить свои настройки, в том числе и настройки большинства плагинов (некоторые устаревшие плагины могут игнорировать данную опцию)." - -#: pcsx2/gui/Panels/DirPickerPanel.cpp:118 +#: pcsx2/gui/Panels/DirPickerPanel.cpp:156 msgid "!ContextTip:DirPicker:UseDefault" -msgstr "Активируйте данную опцию, если желаете чтобы PCSX2 создавала соответствующие папки относительно пути указанному в настройках пользовательского режима." +msgstr "" +"Активируйте данную опцию, если желаете чтобы PCSX2 создавала соответствующие " +"папки относительно пути указанному в настройках пользовательского режима." + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:52 +msgid "!ContextTip:Window:Vsync" +msgstr "" +"Устраняет \"излом\" изображения при активной смене картинки на экране, " +"однако сия роскошь чревата общим понижением производительности. Актуально " +"лишь при использовании полноэкранного режима и лишь в связке с теми видео-" +"плагинами, которые его поддерживают." + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:57 +msgid "!ContextTip:Window:HideMouse" +msgstr "" +"По умолчанию, курсор мыши скрывается после 2-ух секунд бездействия. Данная " +"опция моментально скрывает курсор мыши в видеоокне. Удобно, если вы " +"используете управление мышью в игре." + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:63 +msgid "!ContextTip:Window:Fullscreen" +msgstr "" +"Автоматически переводит видеоокно в полный режим при запуске игры. Впрочем, " +"вы всегда можете выйти из данного режима с помощью комбинации ALT+ENTER." + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:68 +msgid "!ContextTip:Window:FullscreenExclusive" +msgstr "" +"Эксклюзивный полноэкранный режим немного улучшает качество видеоряда на " +"старых CRT-мониторах и немного ускоряет отображение кадров на старых " +"видеокартах. Однако, ввиду его особенностей, может приводить к утчекам " +"памяти и вылетам при частой его активации/деактивации (alt+enter)." + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:73 +msgid "!ContextTip:Window:HideGS" +msgstr "Скрывает видеоокно при установке паузы или нажатии ESC." #: pcsx2/gui/Panels/GameFixesPanel.cpp:67 msgid "!ContextTip:Gamefixes:EE Timing Hack" @@ -57,128 +203,165 @@ msgstr "" "* Growlanser II and III\n" "* Wizardry\"" -#: pcsx2/gui/Panels/GSWindowPanel.cpp:51 -msgid "!ContextTip:Window:Vsync" -msgstr "Устраняет \"излом\" изображения при активной смене картинки на экране, однако сия роскошь чревата общим понижением производительности. Актуально лишь при использовании полноэкранного режима и лишь в связке с теми видео-плагинами, которые его поддерживают." - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:56 -msgid "!ContextTip:Window:HideMouse" -msgstr "По умолчанию, курсор мыши скрывается после 2-ух секунд бездействия. Данная опция моментально скрывает курсор мыши в видеоокне. Удобно, если вы используете управление мышью в игре." - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:62 -msgid "!ContextTip:Window:Fullscreen" -msgstr "Автоматически переводит видеоокно в полный режим при запуске игры. Впрочем, вы всегда можете выйти из данного режима с помощью комбинации ALT+ENTER." - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:67 -msgid "!ContextTip:Window:FullscreenExclusive" -msgstr "Эксклюзивный полноэкранный режим немного улучшает качество видеоряда на старых CRT-мониторах и немного ускоряет отображение кадров на старых видеокартах. Однако, ввиду его особенностей, может приводить к утчекам памяти и вылетам при частой его активации/деактивации (alt+enter)." - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:72 -msgid "!ContextTip:Window:HideGS" -msgstr "Скрывает видеоокно при установке паузы или нажатии ESC." - -#: pcsx2/gui/Panels/PathsPanel.cpp:39 +#: pcsx2/gui/Panels/PathsPanel.cpp:40 msgid "!ContextTip:Folders:Savestates" msgstr "Папка, куда PCSX2 будет записывать ваши быстрые сохранения." -#: pcsx2/gui/Panels/PathsPanel.cpp:49 +#: pcsx2/gui/Panels/PathsPanel.cpp:50 msgid "!ContextTip:Folders:Snapshots" -msgstr "Папка, куда PCSX2 будет сохранять ваши скриншоты. Форма, размер и стиль скриншотов зависят от используемого плагина." +msgstr "" +"Папка, куда PCSX2 будет сохранять ваши скриншоты. Форма, размер и стиль " +"скриншотов зависят от используемого плагина." -#: pcsx2/gui/Panels/PathsPanel.cpp:59 +#: pcsx2/gui/Panels/PathsPanel.cpp:60 msgid "!ContextTip:Folders:Logs" -msgstr "Данная папка предназначена для сохранения логов и дампов PCSX2. Последние версии плагинов так же используют данную директорию для сохранения разной отладочной информации." +msgstr "" +"Данная папка предназначена для сохранения логов и дампов PCSX2. Последние " +"версии плагинов так же используют данную директорию для сохранения разной " +"отладочной информации." #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:27 msgid "!Panel:Speedhacks:EECycleX1" -msgstr "1 - Стандартное значение скорости работы виртуального процессора PS2 (нет прироста скорости)." +msgstr "" +"1 - Стандартное значение скорости работы виртуального процессора PS2 (нет " +"прироста скорости)." #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:32 msgid "!Panel:Speedhacks:EECycleX2" -msgstr "2 - понижает цикл работы EE примерно на 33%. Неплохое ускорение для большинства игр, без потери совместимости." +msgstr "" +"2 - понижает цикл работы EE примерно на 33%. Неплохое ускорение для " +"большинства игр, без потери совместимости." #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:37 msgid "!Panel:Speedhacks:EECycleX3" -msgstr "3 - понижает цикл работы EE примерно на 50%. Хорошее ускорение, чревато возможным заиканием звука." +msgstr "" +"3 - понижает цикл работы EE примерно на 50%. Хорошее ускорение, чревато " +"возможным заиканием звука." #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:54 msgid "!Panel:Speedhacks:VUCycleStealOff" -msgstr "0 - VU Cycle Stealing отключен. Наиболее безопасная опция в плане совместимости." +msgstr "" +"0 - VU Cycle Stealing отключен. Наиболее безопасная опция в плане " +"совместимости." #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:59 msgid "!Panel:Speedhacks:VUCycleSteal1" -msgstr "1 - среднее значение VU Cycle Stealing. Может повлиять на совместимость, но при этом ускоряет некоторые игры." +msgstr "" +"1 - среднее значение VU Cycle Stealing. Может повлиять на совместимость, но " +"при этом ускоряет некоторые игры." #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:64 msgid "!Panel:Speedhacks:VUCycleSteal2" -msgstr "2 - высокое значение VU Cycle Stealing. Наверняка скажется на совместимости, окупается неплохим ускорением эмуляции." +msgstr "" +"2 - высокое значение VU Cycle Stealing. Наверняка скажется на совместимости, " +"окупается неплохим ускорением эмуляции." #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:70 msgid "!Panel:Speedhacks:VUCycleSteal3" -msgstr "1 - максимальное значение VU Cycle Stealing. В этом режиме будет проявляться множество графических багов." +msgstr "" +"1 - максимальное значение VU Cycle Stealing. В этом режиме будет проявляться " +"множество графических багов." #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:129 msgid "!ContextTip:Speedhacks:EECycleRate Slider" -msgstr "Позволяет последовательно понизить цикл работы EmotionEngine процессора эмулируемой машины и тем самым ускорить игры, которые не полностью используют аппаратные ресурсы PS2." +msgstr "" +"Позволяет последовательно понизить цикл работы EmotionEngine процессора " +"эмулируемой машины и тем самым ускорить игры, которые не полностью " +"используют аппаратные ресурсы PS2." #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:150 msgid "!ContextTip:Speedhacks:VUCycleStealing Slider" -msgstr "Позволяет настроить количество циклов, \"воруемых\" VU-юнитом у EmotionEngine. Более высокое значение хака увеличивает количество циклов, которые будут \"позаимствованы\" у EE для обработки микропрограмм VU." +msgstr "" +"Позволяет настроить количество циклов, \"воруемых\" VU-юнитом у " +"EmotionEngine. Более высокое значение хака увеличивает количество циклов, " +"которые будут \"позаимствованы\" у EE для обработки микропрограмм VU." #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:172 msgid "!ContextTip:Speedhacks:vuFlagHack" -msgstr "Обновляет флаги состояния только на тех блоках, которые будут читать данные флаги (вместо постоянного обновления всех блоков). Вполне безопасный хак, SuperVU-рекомпилятор делает нечто подобное по-умолчанию." +msgstr "" +"Обновляет флаги состояния только на тех блоках, которые будут читать данные " +"флаги (вместо постоянного обновления всех блоков). Вполне безопасный хак, " +"SuperVU-рекомпилятор делает нечто подобное по-умолчанию." #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:177 msgid "!ContextTip:Speedhacks:vuBlockHack" -msgstr "Предугадывает, какие блоки микропрограмм не будут читать данные флагов в обозримом будущем. Неизвестно, провоцирует ли это какие-либо проблемы в каких-либо играх, посему, данный хак можно считать безопасным." +msgstr "" +"Предугадывает, какие блоки микропрограмм не будут читать данные флагов в " +"обозримом будущем. Неизвестно, провоцирует ли это какие-либо проблемы в " +"каких-либо играх, посему, данный хак можно считать безопасным." #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:182 msgid "!ContextTip:Speedhacks:vuMinMax" -msgstr "Использует SSEx-инструкции для Min/Max-операции с плавающей точкой, вместо дополнительных Min/Max-операций при просчете логики. \"Ломает\" Gran Turismo 4 и Tekken 5. Возможно что-то еще." +msgstr "" +"Использует SSEx-инструкции для Min/Max-операции с плавающей точкой, вместо " +"дополнительных Min/Max-операций при просчете логики. \"Ломает\" Gran Turismo " +"4 и Tekken 5. Возможно что-то еще." #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:202 msgid "!ContextTip:Speedhacks:INTC" -msgstr "Данный хак лучше всего применять для игр которые используют регистрацию статуса INTC при ожидании вертикального синхроимпульса. В основном это RPG, не использующие 3D. Все остальные игры либо не получат никакого ускорения, либо оно будет чрезвычайно мало." +msgstr "" +"Данный хак лучше всего применять для игр которые используют регистрацию " +"статуса INTC при ожидании вертикального синхроимпульса. В основном это RPG, " +"не использующие 3D. Все остальные игры либо не получат никакого ускорения, " +"либо оно будет чрезвычайно мало." #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:207 msgid "!ContextTip:Speedhacks:BIFC0" msgstr "" -"Изначально нацеленный на пустые циклы EE-рекомпилятора по адресу ядра 0x81FC0,\n" +"Изначально нацеленный на пустые циклы EE-рекомпилятора по адресу ядра " +"0x81FC0,\n" "данный хак пытается определить циклы, результат работы которых\n" -"(после каждой последующей итерации) никак не скажется на текущем состоянии машины\n" -"до тех пор, пока запланированое событие не запустит эмуляцию другого юнита. После\n" -"первой итерации таких \"пустых\" циклов, мы просто переходим к следующему событию или\n" +"(после каждой последующей итерации) никак не скажется на текущем состоянии " +"машины\n" +"до тех пор, пока запланированое событие не запустит эмуляцию другого юнита. " +"После\n" +"первой итерации таких \"пустых\" циклов, мы просто переходим к следующему " +"событию или\n" "вообще к концу процессорного интервала." #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:214 msgid "!ContextTip:Speedhacks:fastCDVD" -msgstr "Для получения списка игр, которые испытывают проблемы при использовании данного хака, вы можете обратитьcя к списку совмесимости HDLoader'а (смотрите по \"mode1\" и \"slow DVD\")." +msgstr "" +"Для получения списка игр, которые испытывают проблемы при использовании " +"данного хака, вы можете обратитьcя к списку совмесимости HDLoader'а " +"(смотрите по \"mode1\" и \"slow DVD\")." #: pcsx2/gui/Panels/VideoPanel.cpp:37 msgid "!ContextTip:Framelimiter:Disable" msgstr "Отключение лимита кадров отключит так же и Turbo-/Slowmotion-режимы." -#: pcsx2/gui/Panels/VideoPanel.cpp:299 -msgid "!ContextTip:GS:SyncMTGS" -msgstr "Включайте данную опцию только в том случае, если вы думаете что синхронизация потоков MTGS приводит к вылетам или графическим артефактам." +#: pcsx2/gui/Panels/VideoPanel.cpp:162 +msgid "" +"Error while parsing either NTSC or PAL framerate settings. Settings must be " +"valid floating point numerics." +msgstr "" -#: pcsx2/gui/Panels/VideoPanel.cpp:303 +#: pcsx2/gui/Panels/VideoPanel.cpp:295 +msgid "" +"For troubleshooting potential bugs in the MTGS only, as it is potentially " +"very slow." +msgstr "" + +#: pcsx2/gui/Panels/VideoPanel.cpp:299 +msgid "" +"Completely disables all GS plugin activity; ideal for benchmarking EEcore " +"components." +msgstr "" + +#: pcsx2/gui/Panels/VideoPanel.cpp:302 +msgid "!ContextTip:GS:SyncMTGS" +msgstr "" +"Включайте данную опцию только в том случае, если вы думаете что " +"синхронизация потоков MTGS приводит к вылетам или графическим артефактам." + +#: pcsx2/gui/Panels/VideoPanel.cpp:306 msgid "!ContextTip:GS:DisableOutput" msgstr "" -"Отключает обработку всех GS-данных, тем самым убирая возможный замедляющий фактор при замерах производительность остальных компонентов эмулятора. Идеально для использования в комбинации с быстрыми сохранениями: выберите нужную сцену в игре, сохранитесь, включите данную опцию и загрузите быстрое сохранение.\n" +"Отключает обработку всех GS-данных, тем самым убирая возможный замедляющий " +"фактор при замерах производительность остальных компонентов эмулятора. " +"Идеально для использования в комбинации с быстрыми сохранениями: выберите " +"нужную сцену в игре, сохранитесь, включите данную опцию и загрузите быстрое " +"сохранение.\n" "\n" -"Примечание: данная опция применяется \"на лету\", однако ее последующее отключение в реальном времени чревато появлением графического мусора в игре. " - -#: common/src/Utilities/ThreadTools.cpp:41 -msgid "Threading activity: start, detach, sync, deletion, etc." -msgstr "Потоковая акивность: start, detach, sync, deletion, и т.д." - -#: common/src/Utilities/wxAppWithHelpers.cpp:36 -msgid "Includes idle event processing and some other uncommon event usages." -msgstr "Включает в себя обработку событий ожидания и других редко используемых событий." - -#: common/include/Utilities/Exceptions.h:187 -msgid "No reason given." -msgstr "Причина неизвестна." - +"Примечание: данная опция применяется \"на лету\", однако ее последующее " +"отключение в реальном времени чревато появлением графического мусора в игре. " diff --git a/locales/templates/pcsx2_Devel.pot b/locales/templates/pcsx2_Devel.pot index 328b0ed6b7..1676b38960 100644 --- a/locales/templates/pcsx2_Devel.pot +++ b/locales/templates/pcsx2_Devel.pot @@ -1,148 +1,150 @@ -msgid "" -msgstr "" -"Project-Id-Version: PCSX2 0.9.7\n" -"Report-Msgid-Bugs-To: http://code.google.com/p/pcsx2/\n" -"POT-Creation-Date: 2010-12-26 09:58-0500\n" -"PO-Revision-Date: 2010-12-26 09:59-0500\n" -"Last-Translator: Jake Stine \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Poedit-KeywordsList: pxE_dev;pxDt\n" -"X-Poedit-SourceCharset: utf-8\n" -"X-Poedit-Basepath: trunk\\\n" -"X-Poedit-SearchPath-0: pcsx2\n" -"X-Poedit-SearchPath-1: common\n" - -#: pcsx2/SourceLog.cpp:96 -msgid "Dumps detailed information for PS2 executables (ELFs)." -msgstr "" - -#: pcsx2/SourceLog.cpp:101 -msgid "Logs manual protection, split blocks, and other things that might impact performance." -msgstr "" - -#: pcsx2/SourceLog.cpp:106 -msgid "Shows the game developer's logging text (EE processor)" -msgstr "" - -#: pcsx2/SourceLog.cpp:111 -msgid "Shows the game developer's logging text (IOP processor)" -msgstr "" - -#: pcsx2/SourceLog.cpp:116 -msgid "Shows DECI2 debugging logs (EE processor)" -msgstr "" - -#: pcsx2/SourceLog.cpp:145 -msgid "SYSCALL and DECI2 activity." -msgstr "" - -#: pcsx2/SourceLog.cpp:151 -msgid "Direct memory accesses to unknown or unmapped EE memory space." -msgstr "" - -#: pcsx2/SourceLog.cpp:157 -#: pcsx2/SourceLog.cpp:270 -msgid "Disasm of executing core instructions (excluding COPs and CACHE)." -msgstr "" - -#: pcsx2/SourceLog.cpp:163 -msgid "Disasm of COP0 instructions (MMU, cpu and dma status, etc)." -msgstr "" - -#: pcsx2/SourceLog.cpp:169 -msgid "Disasm of the EE's floating point unit (FPU) only." -msgstr "" - -#: pcsx2/SourceLog.cpp:175 -msgid "Disasm of the EE's VU0macro co-processor instructions." -msgstr "" - -#: pcsx2/SourceLog.cpp:181 -msgid "Execution of EE cache instructions." -msgstr "" - -#: pcsx2/SourceLog.cpp:187 -msgid "All known hardware register accesses (very slow!); not including sub filter options below." -msgstr "" - -#: pcsx2/SourceLog.cpp:193 -#: pcsx2/SourceLog.cpp:288 -msgid "Logs only unknown, unmapped, or unimplemented register accesses." -msgstr "" - -#: pcsx2/SourceLog.cpp:199 -#: pcsx2/SourceLog.cpp:294 -msgid "Logs only DMA-related registers." -msgstr "" - -#: pcsx2/SourceLog.cpp:205 -msgid "IPU activity: hardware registers, decoding operations, DMA status, etc." -msgstr "" - -#: pcsx2/SourceLog.cpp:211 -msgid "All GIFtag parse activity; path index, tag type, etc." -msgstr "" - -#: pcsx2/SourceLog.cpp:217 -msgid "All VIFcode processing; command, tag style, interrupts." -msgstr "" - -#: pcsx2/SourceLog.cpp:223 -msgid "Scratchpad's MFIFO activity." -msgstr "" - -#: pcsx2/SourceLog.cpp:229 -msgid "Actual data transfer logs, bus right arbitration, stalls, etc." -msgstr "" - -#: pcsx2/SourceLog.cpp:235 -msgid "Tracks all EE counters events and some counter register activity." -msgstr "" - -#: pcsx2/SourceLog.cpp:241 -msgid "Dumps various VIF and VIFcode processing data." -msgstr "" - -#: pcsx2/SourceLog.cpp:247 -msgid "Dumps various GIF and GIFtag parsing data." -msgstr "" - -#: pcsx2/SourceLog.cpp:258 -msgid "SYSCALL and IRX activity." -msgstr "" - -#: pcsx2/SourceLog.cpp:264 -msgid "Direct memory accesses to unknown or unmapped IOP memory space." -msgstr "" - -#: pcsx2/SourceLog.cpp:276 -msgid "Disasm of the IOP's GPU co-processor instructions." -msgstr "" - -#: pcsx2/SourceLog.cpp:282 -msgid "All known hardware register accesses, not including the sub-filters below." -msgstr "" - -#: pcsx2/SourceLog.cpp:300 -msgid "Memorycard reads, writes, erases, terminators, and other processing." -msgstr "" - -#: pcsx2/SourceLog.cpp:306 -msgid "Gamepad activity on the SIO." -msgstr "" - -#: pcsx2/SourceLog.cpp:312 -msgid "Actual DMA event processing and data transfer logs." -msgstr "" - -#: pcsx2/SourceLog.cpp:318 -msgid "Tracks all IOP counters events and some counter register activity." -msgstr "" - -#: pcsx2/SourceLog.cpp:324 -msgid "Detailed logging of CDVD hardware." -msgstr "" - +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR PCSX2_Dev_Team +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PCSX2 0.9.7\n" +"Report-Msgid-Bugs-To: http://code.google.com/p/pcsx2/\n" +"POT-Creation-Date: 2011-02-25 19:05+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: pcsx2/SourceLog.cpp:96 +msgid "Dumps detailed information for PS2 executables (ELFs)." +msgstr "" + +#: pcsx2/SourceLog.cpp:101 +msgid "Logs manual protection, split blocks, and other things that might impact performance." +msgstr "" + +#: pcsx2/SourceLog.cpp:106 +msgid "Shows the game developer's logging text (EE processor)" +msgstr "" + +#: pcsx2/SourceLog.cpp:111 +msgid "Shows the game developer's logging text (IOP processor)" +msgstr "" + +#: pcsx2/SourceLog.cpp:116 +msgid "Shows DECI2 debugging logs (EE processor)" +msgstr "" + +#: pcsx2/SourceLog.cpp:145 +msgid "SYSCALL and DECI2 activity." +msgstr "" + +#: pcsx2/SourceLog.cpp:151 +msgid "Direct memory accesses to unknown or unmapped EE memory space." +msgstr "" + +#: pcsx2/SourceLog.cpp:157 pcsx2/SourceLog.cpp:276 +msgid "Disasm of executing core instructions (excluding COPs and CACHE)." +msgstr "" + +#: pcsx2/SourceLog.cpp:163 +msgid "Disasm of COP0 instructions (MMU, cpu and dma status, etc)." +msgstr "" + +#: pcsx2/SourceLog.cpp:169 +msgid "Disasm of the EE's floating point unit (FPU) only." +msgstr "" + +#: pcsx2/SourceLog.cpp:175 +msgid "Disasm of the EE's VU0macro co-processor instructions." +msgstr "" + +#: pcsx2/SourceLog.cpp:181 +msgid "Execution of EE cache instructions." +msgstr "" + +#: pcsx2/SourceLog.cpp:187 +msgid "All known hardware register accesses (very slow!); not including sub filter options below." +msgstr "" + +#: pcsx2/SourceLog.cpp:193 pcsx2/SourceLog.cpp:294 +msgid "Logs only unknown, unmapped, or unimplemented register accesses." +msgstr "" + +#: pcsx2/SourceLog.cpp:199 pcsx2/SourceLog.cpp:300 +msgid "Logs only DMA-related registers." +msgstr "" + +#: pcsx2/SourceLog.cpp:205 +msgid "IPU activity: hardware registers, decoding operations, DMA status, etc." +msgstr "" + +#: pcsx2/SourceLog.cpp:211 +msgid "All GIFtag parse activity; path index, tag type, etc." +msgstr "" + +#: pcsx2/SourceLog.cpp:217 +msgid "All VIFcode processing; command, tag style, interrupts." +msgstr "" + +#: pcsx2/SourceLog.cpp:223 +msgid "All processing involved in Path3 Masking" +msgstr "" + +#: pcsx2/SourceLog.cpp:229 +msgid "Scratchpad's MFIFO activity." +msgstr "" + +#: pcsx2/SourceLog.cpp:235 +msgid "Actual data transfer logs, bus right arbitration, stalls, etc." +msgstr "" + +#: pcsx2/SourceLog.cpp:241 +msgid "Tracks all EE counters events and some counter register activity." +msgstr "" + +#: pcsx2/SourceLog.cpp:247 +msgid "Dumps various VIF and VIFcode processing data." +msgstr "" + +#: pcsx2/SourceLog.cpp:253 +msgid "Dumps various GIF and GIFtag parsing data." +msgstr "" + +#: pcsx2/SourceLog.cpp:264 +msgid "SYSCALL and IRX activity." +msgstr "" + +#: pcsx2/SourceLog.cpp:270 +msgid "Direct memory accesses to unknown or unmapped IOP memory space." +msgstr "" + +#: pcsx2/SourceLog.cpp:282 +msgid "Disasm of the IOP's GPU co-processor instructions." +msgstr "" + +#: pcsx2/SourceLog.cpp:288 +msgid "All known hardware register accesses, not including the sub-filters below." +msgstr "" + +#: pcsx2/SourceLog.cpp:306 +msgid "Memorycard reads, writes, erases, terminators, and other processing." +msgstr "" + +#: pcsx2/SourceLog.cpp:312 +msgid "Gamepad activity on the SIO." +msgstr "" + +#: pcsx2/SourceLog.cpp:318 +msgid "Actual DMA event processing and data transfer logs." +msgstr "" + +#: pcsx2/SourceLog.cpp:324 +msgid "Tracks all IOP counters events and some counter register activity." +msgstr "" + +#: pcsx2/SourceLog.cpp:330 +msgid "Detailed logging of CDVD hardware." +msgstr "" diff --git a/locales/templates/pcsx2_Iconized.pot b/locales/templates/pcsx2_Iconized.pot index e112a878f3..ca29dd6ef1 100644 --- a/locales/templates/pcsx2_Iconized.pot +++ b/locales/templates/pcsx2_Iconized.pot @@ -1,161 +1,162 @@ -msgid "" -msgstr "" -"Project-Id-Version: PCSX2 0.9.7\n" -"Report-Msgid-Bugs-To: http://code.google.com/p/pcsx2/\n" -"POT-Creation-Date: 2010-12-26 10:02-0500\n" -"PO-Revision-Date: 2010-12-26 10:02-0500\n" -"Last-Translator: Jake Stine \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Poedit-KeywordsList: pxE;pxExpandMsg\n" -"X-Poedit-SourceCharset: utf-8\n" -"X-Poedit-Basepath: trunk\\\n" -"X-Poedit-SearchPath-0: pcsx2\n" -"X-Poedit-SearchPath-1: common\n" - -#: pcsx2/System.cpp:114 -msgid "!Notice:Recompiler:VirtualMemoryAlloc" -msgstr "" - -#: pcsx2/System.cpp:346 -msgid "!Notice:EmuCore::MemoryForVM" -msgstr "" - -#: pcsx2/vtlb.cpp:588 -msgid "!Notice:HostVmReserve" -msgstr "" - -#: pcsx2/CDVD/CDVD.cpp:385 -msgid "!Notice:PsxDisc" -msgstr "" - -#: pcsx2/gui/AppInit.cpp:44 -msgid "!Notice:Startup:NoSSE2" -msgstr "" - -#: pcsx2/gui/AppInit.cpp:290 -msgid "!Notice:RecompilerInit:Header" -msgstr "" - -#: pcsx2/gui/AppInit.cpp:344 -msgid "!Notice:RecompilerInit:Footer" -msgstr "" - -#: pcsx2/gui/AppMain.cpp:483 -msgid "!Notice:BiosDumpRequired" -msgstr "" - -#: pcsx2/gui/AppMain.cpp:567 -msgid "!Notice Error:Thread Deadlock Actions" -msgstr "" - -#: pcsx2/gui/IsoDropTarget.cpp:28 -msgid "!Notice:ConfirmSysReset" -msgstr "" - -#: pcsx2/gui/MainMenuClicks.cpp:112 -msgid "!Notice:DeleteSettings" -msgstr "" - -#: pcsx2/gui/MemoryCardFile.cpp:77 -msgid "!Notice:Mcd:HasBeenDisabled" -msgstr "" - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:53 -msgid "!Panel:Folders:Settings" -msgstr "" - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:109 -msgid "!Notice:DocsFolderFileConflict" -msgstr "" - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:152 -msgid "!Wizard:Bios:Tutorial" -msgstr "" - -#: pcsx2/gui/Dialogs/ImportSettingsDialog.cpp:31 -msgid "!Notice:ImportExistingSettings" -msgstr "" - -#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:30 -msgid "!Panel:Mcd:NtfsCompress" -msgstr "" - -#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:41 -msgid "!Panel:Mcd:EnableEjection" -msgstr "" - -#: pcsx2/gui/Dialogs/StuckThreadDialog.cpp:33 -msgid "!Panel:StuckThread:Heading" -msgstr "" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:37 -msgid "!Panel:HasHacksOverrides" -msgstr "" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:57 -msgid "!Panel:HasPluginsOverrides" -msgstr "" - -#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:126 -msgid "!Notice:BIOS:InvalidSelection" -msgstr "" - -#: pcsx2/gui/Panels/DirPickerPanel.cpp:63 -msgid "!Notice:DirPicker:CreatePath" -msgstr "" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:96 -msgid "!Panel:Gamefixes:Compat Warning" -msgstr "" - -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:365 -msgid "!Notice:Mcd:Overwrite" -msgstr "" - -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:379 -msgid "!Notice:Mcd:Copy Failed" -msgstr "" - -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:585 -msgid "!Notice:Mcd:Delete" -msgstr "" - -#: pcsx2/gui/Panels/MiscPanelStuff.cpp:35 -msgid "!Panel:Usermode:Explained" -msgstr "" - -#: pcsx2/gui/Panels/MiscPanelStuff.cpp:41 -msgid "!Panel:Usermode:Warning" -msgstr "" - -#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:242 -msgid "!Notice:PluginSelector:ConfirmShutdown" -msgstr "" - -#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:458 -msgid "!Notice:PluginSelector:ApplyFailed" -msgstr "" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:97 -msgid "!Panel:Speedhacks:Overview" -msgstr "" - -#: pcsx2/gui/Panels/VideoPanel.cpp:106 -msgid "!Panel:Framelimiter:Heading" -msgstr "" - -#: pcsx2/gui/Panels/VideoPanel.cpp:230 -msgid "!Panel:Frameskip:Heading" -msgstr "" - -#: pcsx2/x86/sVU_zerorec.cpp:362 -msgid "!Notice:superVU:VirtualMemoryAlloc" -msgstr "" - -#: common/src/Utilities/Exceptions.cpp:254 -msgid "!Notice:VirtualMemoryMap" -msgstr "" - +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR PCSX2_Dev_Team +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PCSX2 0.9.7\n" +"Report-Msgid-Bugs-To: http://code.google.com/p/pcsx2/\n" +"POT-Creation-Date: 2011-02-25 19:05+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: common/src/Utilities/Exceptions.cpp:254 +msgid "!Notice:VirtualMemoryMap" +msgstr "" + +#: pcsx2/CDVD/CDVD.cpp:385 +msgid "!Notice:PsxDisc" +msgstr "" + +#: pcsx2/System.cpp:114 +msgid "!Notice:Recompiler:VirtualMemoryAlloc" +msgstr "" + +#: pcsx2/System.cpp:348 +msgid "!Notice:EmuCore::MemoryForVM" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:43 +msgid "!Notice:Startup:NoSSE2" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:162 +msgid "!Notice:RecompilerInit:Header" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:211 +msgid "!Notice:RecompilerInit:Footer" +msgstr "" + +#: pcsx2/gui/AppMain.cpp:476 +msgid "!Notice:BiosDumpRequired" +msgstr "" + +#: pcsx2/gui/AppMain.cpp:559 +msgid "!Notice Error:Thread Deadlock Actions" +msgstr "" + +#: pcsx2/gui/AppUserMode.cpp:59 +msgid "!Error:PortableModeRights" +msgstr "" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:54 +msgid "!Panel:Folders:Settings" +msgstr "" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:94 +msgid "!Wizard:Welcome" +msgstr "" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:140 +msgid "!Wizard:Bios:Tutorial" +msgstr "" + +#: pcsx2/gui/Dialogs/ImportSettingsDialog.cpp:31 +msgid "!Notice:ImportExistingSettings" +msgstr "" + +#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:30 +msgid "!Panel:Mcd:NtfsCompress" +msgstr "" + +#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:41 +msgid "!Panel:Mcd:EnableEjection" +msgstr "" + +#: pcsx2/gui/Dialogs/StuckThreadDialog.cpp:33 +msgid "!Panel:StuckThread:Heading" +msgstr "" + +#: pcsx2/gui/IsoDropTarget.cpp:28 +msgid "!Notice:ConfirmSysReset" +msgstr "" + +#: pcsx2/gui/MainMenuClicks.cpp:106 +msgid "!Notice:DeleteSettings" +msgstr "" + +#: pcsx2/gui/MemoryCardFile.cpp:77 +msgid "!Notice:Mcd:HasBeenDisabled" +msgstr "" + +#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:138 +msgid "!Notice:BIOS:InvalidSelection" +msgstr "" + +#: pcsx2/gui/Panels/CpuPanel.cpp:111 +msgid "!Panel:EE/IOP:Heading" +msgstr "" + +#: pcsx2/gui/Panels/CpuPanel.cpp:178 +msgid "!Panel:VUs:Heading" +msgstr "" + +#: pcsx2/gui/Panels/DirPickerPanel.cpp:69 +msgid "!Notice:DirPicker:CreatePath" +msgstr "" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:96 +msgid "!Panel:Gamefixes:Compat Warning" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:368 +msgid "!Notice:Mcd:Overwrite" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:384 +msgid "!Notice:Mcd:Copy Failed" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:596 +msgid "!Notice:Mcd:Delete" +msgstr "" + +#: pcsx2/gui/Panels/MiscPanelStuff.cpp:35 +msgid "!Panel:Usermode:Explained" +msgstr "" + +#: pcsx2/gui/Panels/MiscPanelStuff.cpp:41 +msgid "!Panel:Usermode:Warning" +msgstr "" + +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:242 +msgid "!Notice:PluginSelector:ConfirmShutdown" +msgstr "" + +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:457 +msgid "!Notice:PluginSelector:ApplyFailed" +msgstr "" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:97 +msgid "!Panel:Speedhacks:Overview" +msgstr "" + +#: pcsx2/gui/Panels/VideoPanel.cpp:223 +msgid "!Panel:Frameskip:Heading" +msgstr "" + +#: pcsx2/vtlb.cpp:698 +msgid "!Notice:HostVmReserve" +msgstr "" + +#: pcsx2/x86/sVU_zerorec.cpp:362 +msgid "!Notice:superVU:VirtualMemoryAlloc" +msgstr "" diff --git a/locales/templates/pcsx2_Main.pot b/locales/templates/pcsx2_Main.pot index 2e0dfd0547..530b634a9e 100644 --- a/locales/templates/pcsx2_Main.pot +++ b/locales/templates/pcsx2_Main.pot @@ -1,1838 +1,1924 @@ -msgid "" -msgstr "" -"Project-Id-Version: PCSX2 0.9.7\n" -"Report-Msgid-Bugs-To: http://code.google.com/p/pcsx2/\n" -"POT-Creation-Date: 2010-12-26 10:00-0500\n" -"PO-Revision-Date: 2010-12-26 10:00-0500\n" -"Last-Translator: Jake Stine \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Poedit-KeywordsList: _;pxL\n" -"X-Poedit-SourceCharset: utf-8\n" -"X-Poedit-Basepath: trunk\\\n" -"X-Poedit-SearchPath-0: pcsx2\n" -"X-Poedit-SearchPath-1: common\n" - -#: pcsx2/Elfheader.cpp:266 -msgid "Cannot load ELF binary image. The file may be corrupt or incomplete." -msgstr "" - -#: pcsx2/Elfheader.cpp:268 -msgid "If loading from an ISO image, this error may be caused by an unsupported ISO image type or bug in PCSX2 ISO image support." -msgstr "" - -#: pcsx2/PluginManager.cpp:692 -msgid "The savestate cannot be loaded, as it appears to be corrupt or incomplete." -msgstr "" - -#: pcsx2/PluginManager.cpp:702 -#, c-format -msgid "%s plugin failed to open. Your computer may have insufficient resources, or incompatible hardware/drivers." -msgstr "" - -#: pcsx2/PluginManager.cpp:709 -#, c-format -msgid "%s plugin failed to initialize. Your system may have insufficient memory or resources needed." -msgstr "" - -#: pcsx2/PluginManager.cpp:815 -#, c-format -msgid "The configured %s plugin file was not found" -msgstr "" - -#: pcsx2/PluginManager.cpp:819 -#, c-format -msgid "The configured %s plugin file is not a valid dynamic library" -msgstr "" - -#: pcsx2/PluginManager.cpp:837 -#, c-format -msgid "The configured %s plugin is not a PCSX2 plugin, or is for an older unsupported version of PCSX2." -msgstr "" - -#: pcsx2/PluginManager.cpp:862 -msgid "The plugin reports that your hardware or software/drivers are not supported." -msgstr "" - -#: pcsx2/PluginManager.cpp:883 -msgid "Configured plugin is not a PCSX2 plugin, or is for an older unsupported version of PCSX2." -msgstr "" - -#: pcsx2/PluginManager.cpp:909 -#, c-format -msgid "Configured %s plugin is not a valid PCSX2 plugin, or is for an older unsupported version of PCSX2." -msgstr "" - -#: pcsx2/PluginManager.cpp:1726 -msgid "Unloaded Plugin" -msgstr "" - -#: pcsx2/SaveState.cpp:338 -msgid "Cannot load savestate. It is of an unknown or unsupported version." -msgstr "" - -#: pcsx2/CDVD/IsoFileFormats.cpp:416 -msgid "ISO mounting failed: PCSX2 is unable to identify the ISO image type." -msgstr "" - -#: pcsx2/gui/AppConfig.cpp:769 -msgid "Failed to overwrite existing settings file; permission was denied." -msgstr "" - -#: pcsx2/gui/AppCorePlugins.cpp:404 -msgid "Loading PS2 system plugins..." -msgstr "" - -#: pcsx2/gui/AppInit.cpp:42 -msgid "PCSX2 - SSE2 Recommended" -msgstr "" - -#: pcsx2/gui/AppInit.cpp:208 -msgid "SSE extensions are not available. PCSX2 requires a cpu that supports the SSE instruction set." -msgstr "" - -#: pcsx2/gui/AppInit.cpp:287 -msgid "PCSX2 Recompiler Error(s)" -msgstr "" - -#: pcsx2/gui/AppInit.cpp:360 -msgid "All options are for the current session only and will not be saved.\n" -msgstr "" - -#: pcsx2/gui/AppInit.cpp:370 -#: pcsx2/gui/AppMain.cpp:297 -msgid "IsoFile" -msgstr "" - -#: pcsx2/gui/AppInit.cpp:371 -msgid "displays this list of command line options" -msgstr "" - -#: pcsx2/gui/AppInit.cpp:372 -msgid "forces the program log/console to be visible" -msgstr "" - -#: pcsx2/gui/AppInit.cpp:373 -msgid "use fullscreen GS mode" -msgstr "" - -#: pcsx2/gui/AppInit.cpp:374 -msgid "use windowed GS mode" -msgstr "" - -#: pcsx2/gui/AppInit.cpp:376 -msgid "disables display of the gui while running games" -msgstr "" - -#: pcsx2/gui/AppInit.cpp:377 -msgid "executes an ELF image" -msgstr "" - -#: pcsx2/gui/AppInit.cpp:378 -msgid "boots an empty dvd tray; use to enter the PS2 system menu" -msgstr "" - -#: pcsx2/gui/AppInit.cpp:379 -msgid "boots from the CDVD plugin (overrides IsoFile parameter)" -msgstr "" - -#: pcsx2/gui/AppInit.cpp:381 -msgid "disables all speedhacks" -msgstr "" - -#: pcsx2/gui/AppInit.cpp:382 -msgid "use the specified comma or pipe-delimited list of gamefixes." -msgstr "" - -#: pcsx2/gui/AppInit.cpp:383 -msgid "disables fast booting" -msgstr "" - -#: pcsx2/gui/AppInit.cpp:385 -msgid "changes the configuration file path" -msgstr "" - -#: pcsx2/gui/AppInit.cpp:386 -msgid "specifies the PCSX2 configuration file to use" -msgstr "" - -#: pcsx2/gui/AppInit.cpp:387 -#, c-format -msgid "forces %s to start the First-time Wizard" -msgstr "" - -#: pcsx2/gui/AppInit.cpp:391 -#, c-format -msgid "specify the file to use as the %s plugin" -msgstr "" - -#: pcsx2/gui/AppInit.cpp:439 -#, c-format -msgid "Plugin Override Error - %s" -msgstr "" - -#: pcsx2/gui/AppInit.cpp:442 -#, c-format -msgid "" -"%s Plugin Override Error! The following file does not exist or is not a valid %s plugin:\n" -"\n" -msgstr "" - -#: pcsx2/gui/AppInit.cpp:449 -#, c-format -msgid "Press OK to use the default configured plugin, or Cancel to close %s." -msgstr "" - -#: pcsx2/gui/AppInit.cpp:626 -#: pcsx2/gui/AppInit.cpp:638 -#, c-format -msgid "" -"\n" -"\n" -"Press OK to close %s." -msgstr "" - -#: pcsx2/gui/AppInit.cpp:626 -msgid "PCSX2 Error: Hardware Deficiency" -msgstr "" - -#: pcsx2/gui/AppInit.cpp:639 -#, c-format -msgid "%s Critical Error" -msgstr "" - -#: pcsx2/gui/AppInit.cpp:807 -msgid "OK" -msgstr "" - -#: pcsx2/gui/AppInit.cpp:808 -msgid "&OK" -msgstr "" - -#: pcsx2/gui/AppInit.cpp:809 -msgid "Cancel" -msgstr "" - -#: pcsx2/gui/AppInit.cpp:810 -msgid "&Cancel" -msgstr "" - -#: pcsx2/gui/AppInit.cpp:811 -msgid "&Apply" -msgstr "" - -#: pcsx2/gui/AppInit.cpp:812 -msgid "&Next >" -msgstr "" - -#: pcsx2/gui/AppInit.cpp:813 -msgid "&Back >" -msgstr "" - -#: pcsx2/gui/AppInit.cpp:814 -msgid "&Back" -msgstr "" - -#: pcsx2/gui/AppInit.cpp:815 -msgid "&Finish" -msgstr "" - -#: pcsx2/gui/AppInit.cpp:817 -msgid "&Save" -msgstr "" - -#: pcsx2/gui/AppInit.cpp:818 -msgid "Save &As..." -msgstr "" - -#: pcsx2/gui/AppInit.cpp:819 -msgid "&Help" -msgstr "" - -#: pcsx2/gui/AppInit.cpp:820 -msgid "&Home" -msgstr "" - -#: pcsx2/gui/AppMain.cpp:85 -msgid "" -"\n" -"\n" -"Press Ok to go to the Plugin Configuration Panel." -msgstr "" - -#: pcsx2/gui/AppMain.cpp:138 -#: pcsx2/gui/AppMain.cpp:152 -msgid "Warning! System plugins have not been loaded. PCSX2 may be inoperable." -msgstr "" - -#: pcsx2/gui/AppMain.cpp:307 -#, c-format -msgid "%s Commandline Options" -msgstr "" - -#: pcsx2/gui/AppMain.cpp:511 -msgid "PS2 BIOS Error" -msgstr "" - -#: pcsx2/gui/AppMain.cpp:512 -msgid "" -"\n" -"Press Ok to go to the BIOS Configuration Panel." -msgstr "" - -#: pcsx2/gui/AppMain.cpp:564 -msgid "PCSX2 Unresponsive Thread" -msgstr "" - -#: pcsx2/gui/AppMain.cpp:574 -msgid "Terminate" -msgstr "" - -#: pcsx2/gui/AppMain.cpp:884 -msgid "Executing PS2 Virtual Machine..." -msgstr "" - -#: pcsx2/gui/AppRes.cpp:72 -msgid "Browse..." -msgstr "" - -#: pcsx2/gui/AppRes.cpp:72 -msgid "Browse for an Iso that is not in your recent history." -msgstr "" - -#: pcsx2/gui/ConsoleLogger.cpp:120 -msgid "Save log question" -msgstr "" - -#: pcsx2/gui/ConsoleLogger.cpp:412 -msgid "Small" -msgstr "" - -#: pcsx2/gui/ConsoleLogger.cpp:414 -msgid "Normal" -msgstr "" - -#: pcsx2/gui/ConsoleLogger.cpp:416 -msgid "Large" -msgstr "" - -#: pcsx2/gui/ConsoleLogger.cpp:418 -msgid "Huge" -msgstr "" - -#: pcsx2/gui/ConsoleLogger.cpp:422 -msgid "Light theme" -msgstr "" - -#: pcsx2/gui/ConsoleLogger.cpp:423 -msgid "Dark theme" -msgstr "" - -#: pcsx2/gui/ConsoleLogger.cpp:426 -msgid "Always on Top" -msgstr "" - -#: pcsx2/gui/ConsoleLogger.cpp:429 -msgid "&Save..." -msgstr "" - -#: pcsx2/gui/ConsoleLogger.cpp:429 -msgid "Save log contents to file" -msgstr "" - -#: pcsx2/gui/ConsoleLogger.cpp:430 -msgid "C&lear" -msgstr "" - -#: pcsx2/gui/ConsoleLogger.cpp:430 -msgid "Clear the log window contents" -msgstr "" - -#: pcsx2/gui/ConsoleLogger.cpp:432 -msgid "Appearance" -msgstr "" - -#: pcsx2/gui/ConsoleLogger.cpp:434 -msgid "&Close" -msgstr "" - -#: pcsx2/gui/ConsoleLogger.cpp:434 -msgid "Close this log window; contents are preserved" -msgstr "" - -#: pcsx2/gui/ConsoleLogger.cpp:438 -msgid "Dev/Verbose" -msgstr "" - -#: pcsx2/gui/ConsoleLogger.cpp:438 -msgid "Shows PCSX2 developer logs" -msgstr "" - -#: pcsx2/gui/ConsoleLogger.cpp:454 -msgid "Enable all" -msgstr "" - -#: pcsx2/gui/ConsoleLogger.cpp:454 -msgid "Enables all log source filters." -msgstr "" - -#: pcsx2/gui/ConsoleLogger.cpp:455 -msgid "Disable all" -msgstr "" - -#: pcsx2/gui/ConsoleLogger.cpp:455 -msgid "Disables all log source filters." -msgstr "" - -#: pcsx2/gui/ConsoleLogger.cpp:457 -msgid "&Log" -msgstr "" - -#: pcsx2/gui/ConsoleLogger.cpp:458 -msgid "&Sources" -msgstr "" - -#: pcsx2/gui/ExecutorThread.cpp:432 -msgid "Press Cancel to attempt to cancel the action." -msgstr "" - -#: pcsx2/gui/ExecutorThread.cpp:433 -#, c-format -msgid "Press Terminate to kill %s immediately." -msgstr "" - -#: pcsx2/gui/ExecutorThread.cpp:436 -msgid "Terminate App" -msgstr "" - -#: pcsx2/gui/FrameForGS.cpp:254 -msgid "GS Output is Disabled!" -msgstr "" - -#: pcsx2/gui/GlobalCommands.cpp:243 -msgid "Save state" -msgstr "" - -#: pcsx2/gui/GlobalCommands.cpp:244 -msgid "Saves the virtual machine state to the current slot." -msgstr "" - -#: pcsx2/gui/GlobalCommands.cpp:249 -msgid "Load state" -msgstr "" - -#: pcsx2/gui/GlobalCommands.cpp:250 -msgid "Loads a virtual machine state from the current slot." -msgstr "" - -#: pcsx2/gui/GlobalCommands.cpp:255 -msgid "Cycle to next slot" -msgstr "" - -#: pcsx2/gui/GlobalCommands.cpp:256 -msgid "Cycles the current save slot in +1 fashion!" -msgstr "" - -#: pcsx2/gui/GlobalCommands.cpp:261 -msgid "Cycle to prev slot" -msgstr "" - -#: pcsx2/gui/GlobalCommands.cpp:262 -msgid "Cycles the current save slot in -1 fashion!" -msgstr "" - -#: pcsx2/gui/IsoDropTarget.cpp:57 -msgid "Drag and Drop Error" -msgstr "" - -#: pcsx2/gui/IsoDropTarget.cpp:58 -#, c-format -msgid "It is an error to drop multiple files onto a %s window. One at a time please, thank you." -msgstr "" - -#: pcsx2/gui/IsoDropTarget.cpp:89 -#: pcsx2/gui/MainMenuClicks.cpp:343 -msgid "Confirm PS2 Reset" -msgstr "" - -#: pcsx2/gui/IsoDropTarget.cpp:91 -#, c-format -msgid "" -"You have dropped the following ELF binary into %s:\n" -"\n" -msgstr "" - -#: pcsx2/gui/IsoDropTarget.cpp:135 -#, c-format -msgid "You have dropped the following ISO image into %s:" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:41 -msgid "Other..." -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:317 -msgid "Show Console" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:318 -msgid "Console to Stdio" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:331 -msgid "&System" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:332 -msgid "CD&VD" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:333 -msgid "&Config" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:334 -msgid "&Misc" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:336 -msgid "&Debug" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:348 -#, c-format -msgid "%s %d.%d.%d.%d%s (svn) %s" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:354 -#, c-format -msgid "%s %d.%d.%d %s" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:355 -msgid "(modded)" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:392 -#: pcsx2/gui/MainFrame.cpp:394 -#: pcsx2/gui/MainFrame.cpp:400 -msgid "Initializing..." -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:396 -msgid "Run ELF..." -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:397 -msgid "For running raw PS2 binaries directly" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:411 -msgid "Enable Patches" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:414 -msgid "Enable Cheats" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:417 -msgid "Enable Host Filesystem" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:422 -msgid "Shutdown" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:423 -msgid "Wipes all internal VM states and shuts down plugins." -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:425 -msgid "Exit" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:426 -#, c-format -msgid "Closing %s may be hazardous to your health" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:433 -msgid "Iso Selector" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:434 -msgid "Plugin Menu" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:437 -msgid "Iso" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:437 -msgid "Makes the specified ISO image the CDVD source." -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:438 -msgid "Plugin" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:438 -msgid "Uses an external plugin as the CDVD source." -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:439 -msgid "No disc" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:439 -msgid "Use this to boot into your virtual PS2's BIOS configuration." -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:447 -msgid "Emulation &Settings" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:448 -msgid "&Memory cards" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:449 -msgid "&Plugin/BIOS Selector" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:452 -msgid "Game Database Editor" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:453 -msgid "Appearance..." -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:458 -msgid "&Video (GS)" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:459 -msgid "&Audio (SPU2)" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:460 -msgid "&Controllers (PAD)" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:461 -msgid "Dev9" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:462 -msgid "USB" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:463 -msgid "Firewire" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:466 -msgid "Patches (unimplemented)" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:469 -msgid "Multitap 1" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:470 -msgid "Multitap 2" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:473 -msgid "Clear all settings..." -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:474 -#, c-format -msgid "Clears all %s settings and re-runs the startup wizard." -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:490 -msgid "Print CDVD Info" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:497 -msgid "About..." -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:499 -msgid "Open Debug Window..." -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:500 -msgid "Memory Dump..." -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:501 -msgid "Logging..." -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:578 -msgid "Suspend" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:579 -msgid "Safely pauses emulation and preserves the PS2 state." -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:586 -msgid "Resume" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:587 -msgid "Resumes the suspended emulation state." -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:591 -msgid "Suspend/Resume" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:592 -msgid "No emulation state is active; cannot suspend or resume." -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:601 -msgid "Restart" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:602 -msgid "Simulates hardware reset of the PS2 virtual machine." -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:607 -msgid "No emulation state is active; boot something first." -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:615 -msgid "Reboot CDVD (full)" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:616 -msgid "Hard reset of the active VM." -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:620 -msgid "Boot CDVD (full)" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:621 -msgid "Boot the VM using the current DVD or Iso source media" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:629 -msgid "Reboot CDVD (fast)" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:630 -msgid "Reboot using BOOT2 injection (skips splash screens)" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:634 -msgid "Boot CDVD (fast)" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:635 -msgid "Use BOOT2 injection to skip PS2 startup and splash screens" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:674 -#: pcsx2/gui/MainFrame.cpp:709 -msgid "No plugin loaded" -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:679 -msgid "Core GS Settings..." -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:680 -msgid "Modify hardware emulation settings regulated by the PCSX2 core virtual machine." -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:682 -msgid "Window Settings..." -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:683 -msgid "Modify window and appearance options, including aspect ratio." -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:690 -msgid "Plugin Settings..." -msgstr "" - -#: pcsx2/gui/MainFrame.cpp:691 -#, c-format -msgid "Opens the %s plugin's advanced settings dialog." -msgstr "" - -#: pcsx2/gui/MainMenuClicks.cpp:118 -msgid "Reset all settings?" -msgstr "" - -#: pcsx2/gui/MainMenuClicks.cpp:146 -msgid "Confirm ISO image change" -msgstr "" - -#: pcsx2/gui/MainMenuClicks.cpp:152 -msgid "Do you want to swap discs or boot the new image (via system reset)?" -msgstr "" - -#: pcsx2/gui/MainMenuClicks.cpp:154 -#: pcsx2/gui/MainMenuClicks.cpp:197 -msgid "Swap Disc" -msgstr "" - -#: pcsx2/gui/MainMenuClicks.cpp:187 -msgid "Confirm CDVD source change" -msgstr "" - -#: pcsx2/gui/MainMenuClicks.cpp:190 -#, c-format -msgid "You've selected to switch the CDVD source from %s to %s." -msgstr "" - -#: pcsx2/gui/MainMenuClicks.cpp:194 -msgid "Do you want to swap discs or boot the new image (system reset)?" -msgstr "" - -#: pcsx2/gui/MainMenuClicks.cpp:262 -#, c-format -msgid "All Supported (%s)" -msgstr "" - -#: pcsx2/gui/MainMenuClicks.cpp:265 -#, c-format -msgid "Disc Images (%s)" -msgstr "" - -#: pcsx2/gui/MainMenuClicks.cpp:268 -#, c-format -msgid "Blockdumps (%s)" -msgstr "" - -#: pcsx2/gui/MainMenuClicks.cpp:271 -#: pcsx2/gui/MainMenuClicks.cpp:292 -msgid "All Files (*.*)" -msgstr "" - -#: pcsx2/gui/MainMenuClicks.cpp:274 -msgid "Select CDVD source iso..." -msgstr "" - -#: pcsx2/gui/MainMenuClicks.cpp:291 -msgid "Select ELF file..." -msgstr "" - -#: pcsx2/gui/MainMenuClicks.cpp:317 -msgid "ISO file not found!" -msgstr "" - -#: pcsx2/gui/MainMenuClicks.cpp:319 -msgid "" -"An error occurred while trying to open the file:\n" -"\n" -msgstr "" - -#: pcsx2/gui/MainMenuClicks.cpp:320 -msgid "Error: The configured ISO file does not exist. Click OK to select a new ISO source for CDVD." -msgstr "" - -#: pcsx2/gui/MainMenuClicks.cpp:386 -msgid "" -"You have selected the following ISO image into PCSX2:\n" -"\n" -msgstr "" - -#: pcsx2/gui/MemoryCardFile.cpp:182 -#, c-format -msgid "" -"Could not create a memory card file: \n" -"\n" -"%s\n" -"\n" -msgstr "" - -#: pcsx2/gui/MemoryCardFile.cpp:200 -#, c-format -msgid "" -"Access denied to memory card file: \n" -"\n" -"%s\n" -"\n" -msgstr "" - -#: pcsx2/gui/SysState.cpp:283 -msgid "Cannot load this savestate. The state is from an incompatible edition of PCSX2 that is either newer than this version, or is no longer supported." -msgstr "" - -#: pcsx2/gui/SysState.cpp:290 -msgid "Cannot load this savestate. The state is an unsupported version, likely created by a newer edition of PCSX2." -msgstr "" - -#: pcsx2/gui/SysState.cpp:513 -msgid "This savestate cannot be loaded because it is not a valid gzip archive. It may have been created by an older unsupported version of PCSX2, or it may be corrupted." -msgstr "" - -#: pcsx2/gui/SysState.cpp:572 -msgid "This file is not a valid PCSX2 savestate. See the logfile for details." -msgstr "" - -#: pcsx2/gui/SysState.cpp:591 -msgid "This savestate cannot be loaded due to missing critical components. See the log file for details." -msgstr "" - -#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:35 -#, c-format -msgid "About %s" -msgstr "" - -#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:95 -msgid "A Playstation 2 Emulator" -msgstr "" - -#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:99 -msgid "PCSX2 Official Website and Forums" -msgstr "" - -#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:103 -msgid "PCSX2 Official Svn Repository at Googlecode" -msgstr "" - -#: pcsx2/gui/Dialogs/AssertionDialog.cpp:23 -msgid "Assertion Failure - " -msgstr "" - -#: pcsx2/gui/Dialogs/BaseConfigurationDialog.cpp:139 -msgid "Saves a snapshot of this settings panel to a PNG file." -msgstr "" - -#: pcsx2/gui/Dialogs/BaseConfigurationDialog.cpp:268 -msgid "Save dialog screenshots to..." -msgstr "" - -#: pcsx2/gui/Dialogs/BiosSelectorDialog.cpp:31 -msgid "BIOS Selector" -msgstr "" - -#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:193 -msgid "Do not show this dialog again." -msgstr "" - -#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:199 -msgid "Disables this popup and whatever response you select here will be automatically used from now on." -msgstr "" - -#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:201 -msgid "The popup will not be shown again. This setting can be undone from the settings panels." -msgstr "" - -#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:247 -#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:292 -msgid "Ignore" -msgstr "" - -#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:278 -msgid "Reset" -msgstr "" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:32 -#, c-format -msgid "Select memory card for Port %u / Slot %u" -msgstr "" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:41 -msgid "Create new memory card" -msgstr "" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:60 -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:123 -#: pcsx2/gui/Panels/DirPickerPanel.cpp:68 -#: pcsx2/gui/Panels/DirPickerPanel.cpp:228 -msgid "Create" -msgstr "" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:72 -msgid "New card will be saved to:" -msgstr "" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:135 -msgid "Error: The memory card could not be created." -msgstr "" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:136 -msgid "memory card creation error" -msgstr "" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:147 -msgid "Use NTFS compression when creating this card." -msgstr "" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:163 -msgid "8 MB [most compatible]" -msgstr "" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:163 -msgid "This is the standard Sony-provisioned size, and is supported by all games and BIOS versions." -msgstr "" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:167 -msgid "16 MB" -msgstr "" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:167 -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:171 -msgid "A typical size for 3rd-party memory cards which should work with most games." -msgstr "" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:171 -msgid "32 MB" -msgstr "" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:175 -msgid "64 MB" -msgstr "" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:175 -msgid "Low compatibility warning: Yes it's very big, but may not work with many games." -msgstr "" - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:46 -msgid "Settings" -msgstr "" - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:46 -#, c-format -msgid "Select a folder for %s settings" -msgstr "" - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:72 -#: pcsx2/gui/Dialogs/PickUserModeDialog.cpp:29 -#, c-format -msgid "%s is starting from a new or unknown folder and needs to be configured." -msgstr "" - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:118 -#: pcsx2/gui/Panels/DirPickerPanel.cpp:223 -msgid "Create folder?" -msgstr "" - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:119 -#, c-format -msgid "%s will create the following folder for documents. You can change this setting later, at any time." -msgstr "" - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:132 -#, c-format -msgid "%s First Time Configuration" -msgstr "" - -#: pcsx2/gui/Dialogs/GameDatabaseDialog.cpp:24 -#, c-format -msgid "Game database - %s" -msgstr "" - -#: pcsx2/gui/Dialogs/ImportSettingsDialog.cpp:24 -msgid "Import Existing Settings?" -msgstr "" - -#: pcsx2/gui/Dialogs/ImportSettingsDialog.cpp:39 -msgid "Import" -msgstr "" - -#: pcsx2/gui/Dialogs/ImportSettingsDialog.cpp:40 -msgid "Overwrite" -msgstr "" - -#: pcsx2/gui/Dialogs/LogOptionsDialog.cpp:27 -msgid "Trace Logging" -msgstr "" - -#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:40 -msgid "Auto-eject memory cards when loading savestates" -msgstr "" - -#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:47 -msgid "Backup existing Savestate when creating a new one" -msgstr "" - -#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:51 -#, c-format -msgid "Enable Multitap on Port %u" -msgstr "" - -#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:95 -msgid "MemoryCard Manager" -msgstr "" - -#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:102 -msgid "Drag items over other items in the list to swap or copy memory cards." -msgstr "" - -#: pcsx2/gui/Dialogs/PickUserModeDialog.cpp:24 -msgid "PCSX2 First Time configuration" -msgstr "" - -#: pcsx2/gui/Dialogs/StuckThreadDialog.cpp:28 -msgid "PCSX2 Thread is not responding" -msgstr "" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:35 -msgid "Config Overrides Warning" -msgstr "" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:55 -msgid "Components Overrides Warning" -msgstr "" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:69 -#, c-format -msgid "Emulation Settings - %s" -msgstr "" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:76 -msgid "EE/IOP" -msgstr "" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:77 -msgid "VUs" -msgstr "" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:78 -msgid "GS" -msgstr "" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:79 -msgid "GS Window" -msgstr "" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:80 -msgid "Speedhacks" -msgstr "" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:81 -msgid "Game Fixes" -msgstr "" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:91 -#, c-format -msgid "Components Selectors - %s" -msgstr "" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:98 -msgid "Plugins" -msgstr "" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:99 -msgid "BIOS" -msgstr "" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:109 -#, c-format -msgid "Language Selector - %s" -msgstr "" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:117 -msgid "Folders" -msgstr "" - -#: pcsx2/gui/Panels/BaseApplicableConfigPanel.cpp:97 -msgid "Cannot apply settings..." -msgstr "" - -#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:92 -msgid "BIOS Search Path:" -msgstr "" - -#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:93 -msgid "Select folder with PS2 BIOS roms" -msgstr "" - -#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:99 -msgid "Click the Browse button to select a different folder where PCSX2 will look for PS2 BIOS roms." -msgstr "" - -#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:101 -msgid "Refresh list" -msgstr "" - -#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:103 -msgid "Select a BIOS rom:" -msgstr "" - -#: pcsx2/gui/Panels/CpuPanel.cpp:24 -msgid "Round Mode" -msgstr "" - -#: pcsx2/gui/Panels/CpuPanel.cpp:25 -msgid "Clamping Mode" -msgstr "" - -#: pcsx2/gui/Panels/CpuPanel.cpp:27 -msgid "Flush to Zero" -msgstr "" - -#: pcsx2/gui/Panels/CpuPanel.cpp:28 -msgid "Denormals are Zero" -msgstr "" - -#: pcsx2/gui/Panels/CpuPanel.cpp:32 -msgid "Nearest" -msgstr "" - -#: pcsx2/gui/Panels/CpuPanel.cpp:33 -msgid "Negative" -msgstr "" - -#: pcsx2/gui/Panels/CpuPanel.cpp:34 -msgid "Positive" -msgstr "" - -#: pcsx2/gui/Panels/CpuPanel.cpp:35 -msgid "Chop / Zero" -msgstr "" - -#: pcsx2/gui/Panels/CpuPanel.cpp:40 -msgid "None" -msgstr "" - -#: pcsx2/gui/Panels/CpuPanel.cpp:102 -msgid "EE/FPU Advanced Recompiler Options" -msgstr "" - -#: pcsx2/gui/Panels/CpuPanel.cpp:104 -#: pcsx2/gui/Panels/CpuPanel.cpp:119 -msgid "Extra + Preserve Sign" -msgstr "" - -#: pcsx2/gui/Panels/CpuPanel.cpp:105 -msgid "Full" -msgstr "" - -#: pcsx2/gui/Panels/CpuPanel.cpp:116 -msgid "VU0 / VU1 Advanced Recompiler Options" -msgstr "" - -#: pcsx2/gui/Panels/CpuPanel.cpp:118 -msgid "Extra" -msgstr "" - -#: pcsx2/gui/Panels/CpuPanel.cpp:130 -#: pcsx2/gui/Panels/CpuPanel.cpp:139 -#: pcsx2/gui/Panels/CpuPanel.cpp:187 -msgid "Interpreter" -msgstr "" - -#: pcsx2/gui/Panels/CpuPanel.cpp:131 -msgid "Quite possibly the slowest thing in the universe." -msgstr "" - -#: pcsx2/gui/Panels/CpuPanel.cpp:133 -#: pcsx2/gui/Panels/CpuPanel.cpp:142 -msgid "Recompiler" -msgstr "" - -#: pcsx2/gui/Panels/CpuPanel.cpp:134 -msgid "Performs just-in-time binary translation of 64-bit MIPS-IV machine code to x86." -msgstr "" - -#: pcsx2/gui/Panels/CpuPanel.cpp:140 -msgid "Pretty slow; provided for diagnostic purposes only." -msgstr "" - -#: pcsx2/gui/Panels/CpuPanel.cpp:143 -msgid "Performs just-in-time binary translation of 32-bit MIPS-I machine code to x86." -msgstr "" - -#: pcsx2/gui/Panels/CpuPanel.cpp:177 -#: pcsx2/gui/Panels/CpuPanel.cpp:226 -msgid "Restore Defaults" -msgstr "" - -#: pcsx2/gui/Panels/CpuPanel.cpp:188 -msgid "Vector Unit Interpreter. Slow and not very compatible. Only use for diagnostics." -msgstr "" - -#: pcsx2/gui/Panels/CpuPanel.cpp:190 -msgid "microVU Recompiler" -msgstr "" - -#: pcsx2/gui/Panels/CpuPanel.cpp:191 -msgid "New Vector Unit recompiler with much improved compatibility. Recommended." -msgstr "" - -#: pcsx2/gui/Panels/CpuPanel.cpp:193 -msgid "superVU Recompiler [legacy]" -msgstr "" - -#: pcsx2/gui/Panels/CpuPanel.cpp:194 -msgid "Useful for diagnosing bugs or clamping issues in the new mVU recompiler." -msgstr "" - -#: pcsx2/gui/Panels/DirPickerPanel.cpp:58 -msgid "Path does not exist" -msgstr "" - -#: pcsx2/gui/Panels/DirPickerPanel.cpp:116 -msgid "Use default setting" -msgstr "" - -#: pcsx2/gui/Panels/DirPickerPanel.cpp:133 -msgid "Open in Explorer" -msgstr "" - -#: pcsx2/gui/Panels/DirPickerPanel.cpp:134 -msgid "Open an explorer window to this folder." -msgstr "" - -#: pcsx2/gui/Panels/DirPickerPanel.cpp:224 -#, c-format -msgid "A configured folder does not exist. Should %s try to create it?" -msgstr "" - -#: pcsx2/gui/Panels/GameDatabasePanel.cpp:336 -msgid "Search" -msgstr "" - -#: pcsx2/gui/Panels/GameDatabasePanel.cpp:370 -msgid "Gamefixes" -msgstr "" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:38 -msgid "VU Add Hack - Fixes Tri-Ace games boot crash." -msgstr "" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:39 -msgid "" -"Games that need this hack to boot:\n" -" * Star Ocean 3\n" -" * Radiata Stories\n" -" * Valkyrie Profile 2" -msgstr "" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:42 -msgid "VU Clip Flag Hack - For Persona games (SuperVU recompiler only!)" -msgstr "" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:46 -msgid "FPU Compare Hack - For Digimon Rumble Arena 2." -msgstr "" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:50 -msgid "FPU Multiply Hack - For Tales of Destiny." -msgstr "" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:54 -msgid "FPU Negative Div Hack - For Gundam games." -msgstr "" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:58 -msgid "VU XGkick Hack - For Erementar Gerad." -msgstr "" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:62 -msgid "FFX videos fix - Fixes bad graphics overlay in FFX videos." -msgstr "" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:66 -msgid "EE timing hack - Multi purpose hack. Try if all else fails." -msgstr "" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:75 -msgid "Skip MPEG hack - Skips videos/FMVs in games to avoid game hanging/freezes." -msgstr "" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:79 -msgid "OPH Flag hack - Try if your game freezes showing the same frame." -msgstr "" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:95 -msgid "Enable game fixes" -msgstr "" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:103 -msgid "The safest way to make sure that all game fixes are completely disabled." -msgstr "" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:30 -msgid "Fit to Window/Screen" -msgstr "" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:31 -msgid "Standard (4:3)" -msgstr "" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:32 -msgid "Widescreen (16:9)" -msgstr "" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:44 -msgid "Disable window resize border" -msgstr "" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:45 -msgid "Always hide mouse cursor" -msgstr "" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:46 -msgid "Hide window on suspend" -msgstr "" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:47 -msgid "Default to fullscreen mode on open" -msgstr "" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:48 -msgid "Wait for vsync on refresh" -msgstr "" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:49 -msgid "Use exclusive fullscreen mode (if available)" -msgstr "" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:89 -msgid "Aspect Ratio:" -msgstr "" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:91 -msgid "Custom Window Size:" -msgstr "" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:147 -msgid "Invalid window dimensions specified: Size cannot contain non-numeric digits! >_<" -msgstr "" - -#: pcsx2/gui/Panels/LogOptionsPanels.cpp:248 -msgid "Enable Trace Logging" -msgstr "" - -#: pcsx2/gui/Panels/LogOptionsPanels.cpp:249 -msgid "Trace logs are all written to emulog.txt. Toggle trace logging at any time using F10." -msgstr "" - -#: pcsx2/gui/Panels/LogOptionsPanels.cpp:250 -msgid "Warning: Enabling trace logs is typically very slow, and is a leading cause of 'What happened to my FPS?' problems. :)" -msgstr "" - -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:144 -msgid "Select folder with PS2 memory cards" -msgstr "" - -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:386 -msgid "Copy failed!" -msgstr "" - -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:454 -msgid "Mount" -msgstr "" - -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:500 -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:670 -msgid "Delete" -msgstr "" - -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:503 -msgid "Deletes the existing memory card from disk (all contents are lost)." -msgstr "" - -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:504 -msgid "Creates a new memory card in the empty slot." -msgstr "" - -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:508 -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:671 -msgid "Disable" -msgstr "" - -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:508 -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:671 -msgid "Enable" -msgstr "" - -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:511 -msgid "Disables the selected memory card, so that it will not be seen by games or BIOS." -msgstr "" - -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:512 -msgid "Mounts the selected memory card, so that games can see it again." -msgstr "" - -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:591 -msgid "Delete memory card?" -msgstr "" - -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:670 -msgid "Create new..." -msgstr "" - -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:672 -msgid "Relocate file..." -msgstr "" - -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:677 -msgid "Refresh List" -msgstr "" - -#: pcsx2/gui/Panels/MemoryCardListView.cpp:136 -msgid "Enabled" -msgstr "" - -#: pcsx2/gui/Panels/MemoryCardListView.cpp:136 -msgid "Disabled" -msgstr "" - -#: pcsx2/gui/Panels/MemoryCardListView.cpp:136 -msgid "Missing" -msgstr "" - -#: pcsx2/gui/Panels/MemoryCardListView.cpp:137 -#: pcsx2/gui/Panels/MemoryCardListView.cpp:139 -#: pcsx2/gui/Panels/MemoryCardListView.cpp:140 -msgid "N/A" -msgstr "" - -#: pcsx2/gui/Panels/MemoryCardListView.cpp:138 -msgid "Yes" -msgstr "" - -#: pcsx2/gui/Panels/MemoryCardListView.cpp:138 -msgid "No" -msgstr "" - -#: pcsx2/gui/Panels/MiscPanelStuff.cpp:33 -msgid "Usermode Selection" -msgstr "" - -#: pcsx2/gui/Panels/MiscPanelStuff.cpp:50 -msgid "User Documents (recommended)" -msgstr "" - -#: pcsx2/gui/Panels/MiscPanelStuff.cpp:51 -msgid "Location: " -msgstr "" - -#: pcsx2/gui/Panels/MiscPanelStuff.cpp:55 -msgid "Custom folder:" -msgstr "" - -#: pcsx2/gui/Panels/MiscPanelStuff.cpp:57 -msgid "This setting may require administration privileges from your operating system, depending on how your system is configured." -msgstr "" - -#: pcsx2/gui/Panels/MiscPanelStuff.cpp:66 -#, c-format -msgid "Select a document root for %s" -msgstr "" - -#: pcsx2/gui/Panels/MiscPanelStuff.cpp:124 -msgid "Apply" -msgstr "" - -#: pcsx2/gui/Panels/MiscPanelStuff.cpp:125 -msgid "Make this language my default right now!" -msgstr "" - -#: pcsx2/gui/Panels/MiscPanelStuff.cpp:127 -msgid "Select a language:" -msgstr "" - -#: pcsx2/gui/Panels/PathsPanel.cpp:37 -msgid "Savestates:" -msgstr "" - -#: pcsx2/gui/Panels/PathsPanel.cpp:38 -msgid "Select folder for Savestates" -msgstr "" - -#: pcsx2/gui/Panels/PathsPanel.cpp:47 -msgid "Snapshots:" -msgstr "" - -#: pcsx2/gui/Panels/PathsPanel.cpp:48 -msgid "Select a folder for Snapshots" -msgstr "" - -#: pcsx2/gui/Panels/PathsPanel.cpp:57 -msgid "Logs/Dumps:" -msgstr "" - -#: pcsx2/gui/Panels/PathsPanel.cpp:58 -msgid "Select a folder for logs/dumps" -msgstr "" - -#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:230 -msgid "Applying settings..." -msgstr "" - -#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:240 -msgid "Shutdown PS2 virtual machine?" -msgstr "" - -#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:321 -msgid "I'm givin' her all she's got, Captain!" -msgstr "" - -#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:323 -msgid "Enumerating available plugins..." -msgstr "" - -#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:356 -msgid "Plugins Search Path:" -msgstr "" - -#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:357 -msgid "Select a folder with PCSX2 plugins" -msgstr "" - -#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:378 -msgid "Click the Browse button to select a different folder for PCSX2 plugins." -msgstr "" - -#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:520 -#, c-format -msgid "" -"The selected %s plugin failed to load.\n" -"\n" -"Reason: %s\n" -"\n" -msgstr "" - -#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:730 -msgid "Completing tasks..." -msgstr "" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:96 -msgid "Enable speedhacks" -msgstr "" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:102 -msgid "A safe and easy way to make sure that all speedhacks are completely disabled." -msgstr "" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:111 -msgid "Resets all speedhack options to their defaults, which consequently turns them all OFF." -msgstr "" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:120 -msgid "EE Cyclerate [Not Recommended]" -msgstr "" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:141 -msgid "VU Cycle Stealing [Not Recommended]" -msgstr "" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:161 -msgid "microVU Hacks" -msgstr "" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:163 -msgid "mVU Flag Hack" -msgstr "" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:164 -msgid "Good Speedup and High Compatibility; may cause garbage graphics, SPS, etc... [Recommended]" -msgstr "" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:166 -msgid "mVU Block Hack" -msgstr "" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:167 -msgid "Good Speedup and High Compatibility; may cause garbage graphics, SPS, etc..." -msgstr "" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:169 -msgid "mVU Min/Max Hack" -msgstr "" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:170 -msgid "Small Speedup; may cause black screens, garbage graphics, SPS, etc... [Not Recommended]" -msgstr "" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:190 -msgid "Other Hacks" -msgstr "" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:192 -msgid "Enable INTC Spin Detection" -msgstr "" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:193 -msgid "Huge speedup for some games, with almost no compatibility side effects. [Recommended]" -msgstr "" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:195 -msgid "Enable Wait Loop Detection" -msgstr "" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:196 -msgid "Moderate speedup for some games, with no known side effects. [Recommended]" -msgstr "" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:198 -msgid "Enable fast CDVD" -msgstr "" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:199 -msgid "Fast disc access, less loading times. [Not Recommended]" -msgstr "" - -#: pcsx2/gui/Panels/VideoPanel.cpp:34 -msgid "Disable Framelimiting" -msgstr "" - -#: pcsx2/gui/Panels/VideoPanel.cpp:35 -msgid "Useful for running benchmarks. Toggle this option in-game by pressing F4." -msgstr "" - -#: pcsx2/gui/Panels/VideoPanel.cpp:61 -msgid "Base Framerate Adjust:" -msgstr "" - -#: pcsx2/gui/Panels/VideoPanel.cpp:67 -msgid "Slow Motion Adjust:" -msgstr "" - -#: pcsx2/gui/Panels/VideoPanel.cpp:73 -msgid "Turbo Adjust:" -msgstr "" - -#: pcsx2/gui/Panels/VideoPanel.cpp:88 -msgid "NTSC Framerate:" -msgstr "" - -#: pcsx2/gui/Panels/VideoPanel.cpp:91 -#: pcsx2/gui/Panels/VideoPanel.cpp:97 -msgid "FPS" -msgstr "" - -#: pcsx2/gui/Panels/VideoPanel.cpp:94 -msgid "PAL Framerate:" -msgstr "" - -#: pcsx2/gui/Panels/VideoPanel.cpp:184 -msgid "Disabled [default]" -msgstr "" - -#: pcsx2/gui/Panels/VideoPanel.cpp:188 -msgid "Skip when on Turbo only" -msgstr "" - -#: pcsx2/gui/Panels/VideoPanel.cpp:192 -msgid "Constant skipping" -msgstr "" - -#: pcsx2/gui/Panels/VideoPanel.cpp:194 -msgid "Normal and Turbo limit rates skip frames. Slow motion mode will still disable frameskipping." -msgstr "" - -#: pcsx2/gui/Panels/VideoPanel.cpp:220 -msgid "Frames to Draw" -msgstr "" - -#: pcsx2/gui/Panels/VideoPanel.cpp:225 -msgid "Frames to Skip" -msgstr "" - -#: pcsx2/gui/Panels/VideoPanel.cpp:291 -msgid "Use Synchronized MTGS" -msgstr "" - -#: pcsx2/gui/Panels/VideoPanel.cpp:295 -msgid "Disable all GS output" -msgstr "" - -#: pcsx2/gui/Panels/VideoPanel.cpp:313 -msgid "Frame Skipping" -msgstr "" - -#: pcsx2/gui/Panels/VideoPanel.cpp:316 -msgid "Framelimiter" -msgstr "" - -#: pcsx2/ps2/BiosTools.cpp:83 -#: pcsx2/ps2/BiosTools.cpp:151 -msgid "The selected BIOS file is not a valid PS2 BIOS. Please re-configure." -msgstr "" - -#: pcsx2/ps2/BiosTools.cpp:244 -msgid "The PS2 BIOS could not be loaded. The BIOS has not been configured, or the configuration has been corrupted. Please re-configure." -msgstr "" - -#: pcsx2/ps2/BiosTools.cpp:251 -msgid "The configured BIOS file does not exist. Please re-configure." -msgstr "" - -#: pcsx2/x86/microVU.cpp:85 -#, c-format -msgid "%s Extensions not found. microVU requires a host CPU with MMX, SSE, and SSE2 extensions." -msgstr "" - -#: pcsx2/x86/ix86-32/iR5900-32.cpp:578 -#, c-format -msgid "%s Extensions not found. The R5900-32 recompiler requires a host CPU with MMX, SSE, and SSE2 extensions." -msgstr "" - -#: pcsx2/ZipTools/thread_gzip.cpp:83 -msgid "The savestate was not properly saved. The temporary file was created successfully but could not be moved to its final resting place." -msgstr "" - -#: common/src/Utilities/Exceptions.cpp:219 -msgid "Oh noes! Out of memory!" -msgstr "" - -#: common/src/Utilities/Exceptions.cpp:234 -msgid "Virtual memory mapping failure! Your system may have conflicting device drivers, services, or may simply have insufficient memory or resources to meet PCSX2's lofty needs." -msgstr "" - -#: common/src/Utilities/Exceptions.cpp:309 -msgid "Path: " -msgstr "" - -#: common/src/Utilities/Exceptions.cpp:313 -msgid "[Unnamed or unknown]" -msgstr "" - -#: common/src/Utilities/Exceptions.cpp:333 -msgid "A file could not be created." -msgstr "" - -#: common/src/Utilities/Exceptions.cpp:353 -msgid "File not found." -msgstr "" - -#: common/src/Utilities/Exceptions.cpp:373 -msgid "Permission denied while trying to open file, likely due to insufficient user account rights." -msgstr "" - -#: common/src/Utilities/Exceptions.cpp:393 -msgid "Unexpected end of file or stream encountered. File is probably truncated or corrupted." -msgstr "" - -#: common/src/Utilities/ThreadingDialogs.cpp:30 -msgid "Waiting for tasks..." -msgstr "" - -#: common/src/Utilities/ThreadingDialogs.cpp:41 -msgid "Waiting for task..." -msgstr "" - -#: pcsx2/gui/ApplyState.h:55 -msgid "Cannot apply new settings, one of the settings is invalid." -msgstr "" - -#: common/include/Utilities/Exceptions.h:226 -msgid "Parse error" -msgstr "" - -#: common/include/Utilities/Exceptions.h:250 -msgid "Your machine's hardware is incapable of running PCSX2. Sorry dood." -msgstr "" - +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR PCSX2_Dev_Team +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PCSX2 0.9.7\n" +"Report-Msgid-Bugs-To: http://code.google.com/p/pcsx2/\n" +"POT-Creation-Date: 2011-02-25 19:05+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: common/include/Utilities/Exceptions.h:226 +msgid "Parse error" +msgstr "" + +#: common/include/Utilities/Exceptions.h:250 +msgid "Your machine's hardware is incapable of running PCSX2. Sorry dood." +msgstr "" + +#: common/src/Utilities/Exceptions.cpp:219 +msgid "Oh noes! Out of memory!" +msgstr "" + +#: common/src/Utilities/Exceptions.cpp:234 +msgid "Virtual memory mapping failure! Your system may have conflicting device drivers, services, or may simply have insufficient memory or resources to meet PCSX2's lofty needs." +msgstr "" + +#: common/src/Utilities/Exceptions.cpp:309 +msgid "Path: " +msgstr "" + +#: common/src/Utilities/Exceptions.cpp:313 +msgid "[Unnamed or unknown]" +msgstr "" + +#: common/src/Utilities/Exceptions.cpp:333 +msgid "A file could not be created." +msgstr "" + +#: common/src/Utilities/Exceptions.cpp:353 +msgid "File not found." +msgstr "" + +#: common/src/Utilities/Exceptions.cpp:373 +msgid "Permission denied while trying to open file, likely due to insufficient user account rights." +msgstr "" + +#: common/src/Utilities/Exceptions.cpp:393 +msgid "Unexpected end of file or stream encountered. File is probably truncated or corrupted." +msgstr "" + +#: common/src/Utilities/ThreadingDialogs.cpp:30 +msgid "Waiting for tasks..." +msgstr "" + +#: common/src/Utilities/ThreadingDialogs.cpp:41 +msgid "Waiting for task..." +msgstr "" + +#: pcsx2/CDVD/IsoFileFormats.cpp:416 +msgid "ISO mounting failed: PCSX2 is unable to identify the ISO image type." +msgstr "" + +#: pcsx2/Elfheader.cpp:266 +msgid "Cannot load ELF binary image. The file may be corrupt or incomplete." +msgstr "" + +#: pcsx2/Elfheader.cpp:268 +msgid "If loading from an ISO image, this error may be caused by an unsupported ISO image type or bug in PCSX2 ISO image support." +msgstr "" + +#: pcsx2/PluginManager.cpp:692 +msgid "The savestate cannot be loaded, as it appears to be corrupt or incomplete." +msgstr "" + +#: pcsx2/PluginManager.cpp:702 +#, c-format +msgid "%s plugin failed to open. Your computer may have insufficient resources, or incompatible hardware/drivers." +msgstr "" + +#: pcsx2/PluginManager.cpp:709 +#, c-format +msgid "%s plugin failed to initialize. Your system may have insufficient memory or resources needed." +msgstr "" + +#: pcsx2/PluginManager.cpp:815 +#, c-format +msgid "The configured %s plugin file was not found" +msgstr "" + +#: pcsx2/PluginManager.cpp:819 +#, c-format +msgid "The configured %s plugin file is not a valid dynamic library" +msgstr "" + +#: pcsx2/PluginManager.cpp:837 +#, c-format +msgid "The configured %s plugin is not a PCSX2 plugin, or is for an older unsupported version of PCSX2." +msgstr "" + +#: pcsx2/PluginManager.cpp:862 +msgid "The plugin reports that your hardware or software/drivers are not supported." +msgstr "" + +#: pcsx2/PluginManager.cpp:883 +msgid "Configured plugin is not a PCSX2 plugin, or is for an older unsupported version of PCSX2." +msgstr "" + +#: pcsx2/PluginManager.cpp:909 +#, c-format +msgid "Configured %s plugin is not a valid PCSX2 plugin, or is for an older unsupported version of PCSX2." +msgstr "" + +#: pcsx2/PluginManager.cpp:1726 +msgid "Unloaded Plugin" +msgstr "" + +#: pcsx2/SaveState.cpp:338 +msgid "Cannot load savestate. It is of an unknown or unsupported version." +msgstr "" + +#: pcsx2/ZipTools/thread_gzip.cpp:82 +msgid "The savestate was not properly saved. The temporary file was created successfully but could not be moved to its final resting place." +msgstr "" + +#: pcsx2/gui/AppConfig.cpp:937 pcsx2/gui/AppConfig.cpp:943 +msgid "Failed to overwrite existing settings file; permission was denied." +msgstr "" + +#: pcsx2/gui/AppCorePlugins.cpp:404 +msgid "Loading PS2 system plugins..." +msgstr "" + +#: pcsx2/gui/AppInit.cpp:41 +msgid "PCSX2 - SSE2 Recommended" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:71 +msgid "SSE extensions are not available. PCSX2 requires a cpu that supports the SSE instruction set." +msgstr "" + +#: pcsx2/gui/AppInit.cpp:154 +msgid "PCSX2 Recompiler Error(s)" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:227 +msgid "All options are for the current session only and will not be saved.\n" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:237 pcsx2/gui/AppMain.cpp:290 +msgid "IsoFile" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:238 +msgid "displays this list of command line options" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:239 +msgid "forces the program log/console to be visible" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:240 +msgid "use fullscreen GS mode" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:241 +msgid "use windowed GS mode" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:243 +msgid "disables display of the gui while running games" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:244 +msgid "executes an ELF image" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:245 +msgid "boots an empty dvd tray; use to enter the PS2 system menu" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:246 +msgid "boots from the CDVD plugin (overrides IsoFile parameter)" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:248 +msgid "disables all speedhacks" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:249 +msgid "use the specified comma or pipe-delimited list of gamefixes." +msgstr "" + +#: pcsx2/gui/AppInit.cpp:250 +msgid "disables fast booting" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:252 +msgid "changes the configuration file path" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:253 +msgid "specifies the PCSX2 configuration file to use" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:254 +#, c-format +msgid "forces %s to start the First-time Wizard" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:255 +msgid "enables portable mode operation (requires admin/root access)" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:259 +#, c-format +msgid "specify the file to use as the %s plugin" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:307 +#, c-format +msgid "Plugin Override Error - %s" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:310 +#, c-format +msgid "" +"%s Plugin Override Error! The following file does not exist or is not a valid %s plugin:\n" +"\n" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:317 +#, c-format +msgid "Press OK to use the default configured plugin, or Cancel to close %s." +msgstr "" + +#: pcsx2/gui/AppInit.cpp:495 +msgid "PCSX2 Error: Hardware Deficiency" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:495 pcsx2/gui/AppInit.cpp:507 +#, c-format +msgid "Press OK to close %s." +msgstr "" + +#: pcsx2/gui/AppInit.cpp:508 +#, c-format +msgid "%s Critical Error" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:676 +msgid "OK" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:677 +msgid "&OK" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:678 +msgid "Cancel" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:679 +msgid "&Cancel" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:680 +msgid "&Apply" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:681 +msgid "&Next >" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:682 +msgid "< &Back" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:683 +msgid "&Back" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:684 +msgid "&Finish" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:685 +msgid "&Yes" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:686 +msgid "&No" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:687 +msgid "Browse" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:689 +msgid "&Save" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:690 +msgid "Save &As..." +msgstr "" + +#: pcsx2/gui/AppInit.cpp:691 +msgid "&Help" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:692 +msgid "&Home" +msgstr "" + +#: pcsx2/gui/AppMain.cpp:78 +msgid "" +"\n" +"\n" +"Press Ok to go to the Plugin Configuration Panel." +msgstr "" + +#: pcsx2/gui/AppMain.cpp:131 pcsx2/gui/AppMain.cpp:145 +msgid "Warning! System plugins have not been loaded. PCSX2 may be inoperable." +msgstr "" + +#: pcsx2/gui/AppMain.cpp:300 +#, c-format +msgid "%s Commandline Options" +msgstr "" + +#: pcsx2/gui/AppMain.cpp:503 +msgid "PS2 BIOS Error" +msgstr "" + +#: pcsx2/gui/AppMain.cpp:504 +msgid "Press Ok to go to the BIOS Configuration Panel." +msgstr "" + +#: pcsx2/gui/AppMain.cpp:556 +msgid "PCSX2 Unresponsive Thread" +msgstr "" + +#: pcsx2/gui/AppMain.cpp:566 +msgid "Terminate" +msgstr "" + +#: pcsx2/gui/AppMain.cpp:876 +msgid "Executing PS2 Virtual Machine..." +msgstr "" + +#: pcsx2/gui/AppRes.cpp:72 +msgid "Browse for an Iso that is not in your recent history." +msgstr "" + +#: pcsx2/gui/AppRes.cpp:72 +msgid "Browse..." +msgstr "" + +#: pcsx2/gui/AppUserMode.cpp:101 +msgid "The following folders exist, but are not writable:" +msgstr "" + +#: pcsx2/gui/AppUserMode.cpp:106 +msgid "The following folders are missing and cannot be created:" +msgstr "" + +#: pcsx2/gui/AppUserMode.cpp:146 +#, c-format +msgid "Portable mode error - %s" +msgstr "" + +#: pcsx2/gui/AppUserMode.cpp:159 +msgid "PCSX2 has been installed as a portable application but cannot run due to the following errors:" +msgstr "" + +#: pcsx2/gui/AppUserMode.cpp:167 +msgid "Switch to User Documents Mode" +msgstr "" + +#: pcsx2/gui/ApplyState.h:55 +msgid "Cannot apply new settings, one of the settings is invalid." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:120 +msgid "Save log question" +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:412 +msgid "Small" +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:414 pcsx2/gui/Panels/CpuPanel.cpp:38 +msgid "Normal" +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:416 +msgid "Large" +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:418 +msgid "Huge" +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:422 +msgid "Light theme" +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:423 +msgid "Dark theme" +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:426 +msgid "Always on Top" +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:429 +msgid "&Save..." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:429 +msgid "Save log contents to file" +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:430 +msgid "C&lear" +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:430 +msgid "Clear the log window contents" +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:432 pcsx2/gui/Dialogs/SysConfigDialog.cpp:280 +msgid "Appearance" +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:434 +msgid "&Close" +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:434 +msgid "Close this log window; contents are preserved" +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:438 +msgid "Dev/Verbose" +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:438 +msgid "Shows PCSX2 developer logs" +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:454 +msgid "Enable all" +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:454 +msgid "Enables all log source filters." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:455 +msgid "Disable all" +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:455 +msgid "Disables all log source filters." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:457 +msgid "&Log" +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:458 +msgid "&Sources" +msgstr "" + +#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:35 +#, c-format +msgid "About %s" +msgstr "" + +#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:97 +msgid "A Playstation 2 Emulator" +msgstr "" + +#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:101 +msgid "PCSX2 Official Website and Forums" +msgstr "" + +#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:105 +msgid "PCSX2 Official Svn Repository at Googlecode" +msgstr "" + +#: pcsx2/gui/Dialogs/AssertionDialog.cpp:23 +msgid "Assertion Failure - " +msgstr "" + +#: pcsx2/gui/Dialogs/BaseConfigurationDialog.cpp:189 +msgid "Saves a snapshot of this settings panel to a PNG file." +msgstr "" + +#: pcsx2/gui/Dialogs/BaseConfigurationDialog.cpp:300 +msgid "Save dialog screenshots to..." +msgstr "" + +#: pcsx2/gui/Dialogs/BiosSelectorDialog.cpp:31 +msgid "BIOS Selector" +msgstr "" + +#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:193 +msgid "Do not show this dialog again." +msgstr "" + +#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:199 +msgid "Disables this popup and whatever response you select here will be automatically used from now on." +msgstr "" + +#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:201 +msgid "The popup will not be shown again. This setting can be undone from the settings panels." +msgstr "" + +#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:247 +#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:292 +msgid "Ignore" +msgstr "" + +#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:278 +msgid "Reset" +msgstr "" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:32 +#, c-format +msgid "Select memory card for Port %u / Slot %u" +msgstr "" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:41 +msgid "Create new memory card" +msgstr "" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:60 +#: pcsx2/gui/Panels/DirPickerPanel.cpp:74 +#: pcsx2/gui/Panels/DirPickerPanel.cpp:271 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:464 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:511 +msgid "Create" +msgstr "" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:72 +msgid "New card will be saved to:" +msgstr "" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:135 +msgid "Error: The memory card could not be created." +msgstr "" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:136 +msgid "memory card creation error" +msgstr "" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:147 +msgid "Use NTFS compression when creating this card." +msgstr "" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:163 +msgid "8 MB [most compatible]" +msgstr "" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:163 +msgid "This is the standard Sony-provisioned size, and is supported by all games and BIOS versions." +msgstr "" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:167 +msgid "16 MB" +msgstr "" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:167 +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:171 +msgid "A typical size for 3rd-party memory cards which should work with most games." +msgstr "" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:171 +msgid "32 MB" +msgstr "" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:175 +msgid "64 MB" +msgstr "" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:175 +msgid "Low compatibility warning: Yes it's very big, but may not work with many games." +msgstr "" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:47 +#, c-format +msgid "Select a folder for %s settings" +msgstr "" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:47 +msgid "Settings" +msgstr "" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:81 +msgid "Language selector" +msgstr "" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:84 +msgid "" +"Change the language only if you need to.\n" +"The system default should be fine for most operating systems." +msgstr "" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:104 +msgid "Configuration Guides (online)" +msgstr "" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:108 +msgid "Readme / FAQ (Offline/PDF)" +msgstr "" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:117 +#, c-format +msgid "%s First Time Configuration" +msgstr "" + +#: pcsx2/gui/Dialogs/GameDatabaseDialog.cpp:24 +#, c-format +msgid "Game database - %s" +msgstr "" + +#: pcsx2/gui/Dialogs/ImportSettingsDialog.cpp:24 +msgid "Import Existing Settings?" +msgstr "" + +#: pcsx2/gui/Dialogs/ImportSettingsDialog.cpp:39 +msgid "Import" +msgstr "" + +#: pcsx2/gui/Dialogs/ImportSettingsDialog.cpp:40 +msgid "Overwrite" +msgstr "" + +#: pcsx2/gui/Dialogs/LogOptionsDialog.cpp:27 +msgid "Trace Logging" +msgstr "" + +#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:40 +msgid "Auto-eject memory cards when loading savestates" +msgstr "" + +#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:47 +msgid "Backup existing Savestate when creating a new one" +msgstr "" + +#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:51 +#, c-format +msgid "Enable Multitap on Port %u" +msgstr "" + +#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:95 +msgid "MemoryCard Manager" +msgstr "" + +#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:102 +msgid "Drag items over other items in the list to swap or copy memory cards." +msgstr "" + +#: pcsx2/gui/Dialogs/PickUserModeDialog.cpp:24 +msgid "PCSX2 First Time configuration" +msgstr "" + +#: pcsx2/gui/Dialogs/PickUserModeDialog.cpp:29 +#, c-format +msgid "%s is starting from a new or unknown folder and needs to be configured." +msgstr "" + +#: pcsx2/gui/Dialogs/StuckThreadDialog.cpp:28 +msgid "PCSX2 Thread is not responding" +msgstr "" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:36 +msgid "Config Overrides Warning" +msgstr "" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:56 +msgid "Components Overrides Warning" +msgstr "" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:147 +msgid "Preset:" +msgstr "" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:228 +#, c-format +msgid "Emulation Settings - %s" +msgstr "" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:237 +msgid "EE/IOP" +msgstr "" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:238 +msgid "VUs" +msgstr "" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:239 +msgid "GS" +msgstr "" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:240 +msgid "GS Window" +msgstr "" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:241 +msgid "Speedhacks" +msgstr "" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:242 +msgid "Game Fixes" +msgstr "" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:253 +#, c-format +msgid "Components Selectors - %s" +msgstr "" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:260 +msgid "Plugins" +msgstr "" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:261 +msgid "BIOS" +msgstr "" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:262 +msgid "Folders" +msgstr "" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:273 +#, c-format +msgid "Appearance/Themes - %s" +msgstr "" + +#: pcsx2/gui/ExecutorThread.cpp:430 +msgid "Press Cancel to attempt to cancel the action." +msgstr "" + +#: pcsx2/gui/ExecutorThread.cpp:431 +#, c-format +msgid "Press Terminate to kill %s immediately." +msgstr "" + +#: pcsx2/gui/ExecutorThread.cpp:434 +msgid "Terminate App" +msgstr "" + +#: pcsx2/gui/FrameForGS.cpp:274 +msgid "GS Output is Disabled!" +msgstr "" + +#: pcsx2/gui/GlobalCommands.cpp:268 pcsx2/gui/MainFrame.cpp:402 +msgid "Save state" +msgstr "" + +#: pcsx2/gui/GlobalCommands.cpp:269 +msgid "Saves the virtual machine state to the current slot." +msgstr "" + +#: pcsx2/gui/GlobalCommands.cpp:274 pcsx2/gui/MainFrame.cpp:401 +msgid "Load state" +msgstr "" + +#: pcsx2/gui/GlobalCommands.cpp:275 +msgid "Loads a virtual machine state from the current slot." +msgstr "" + +#: pcsx2/gui/GlobalCommands.cpp:280 +msgid "Cycle to next slot" +msgstr "" + +#: pcsx2/gui/GlobalCommands.cpp:281 +msgid "Cycles the current save slot in +1 fashion!" +msgstr "" + +#: pcsx2/gui/GlobalCommands.cpp:286 +msgid "Cycle to prev slot" +msgstr "" + +#: pcsx2/gui/GlobalCommands.cpp:287 +msgid "Cycles the current save slot in -1 fashion!" +msgstr "" + +#: pcsx2/gui/IsoDropTarget.cpp:57 +msgid "Drag and Drop Error" +msgstr "" + +#: pcsx2/gui/IsoDropTarget.cpp:58 +#, c-format +msgid "It is an error to drop multiple files onto a %s window. One at a time please, thank you." +msgstr "" + +#: pcsx2/gui/IsoDropTarget.cpp:89 pcsx2/gui/MainMenuClicks.cpp:337 +msgid "Confirm PS2 Reset" +msgstr "" + +#: pcsx2/gui/IsoDropTarget.cpp:91 +#, c-format +msgid "" +"You have dropped the following ELF binary into %s:\n" +"\n" +msgstr "" + +#: pcsx2/gui/IsoDropTarget.cpp:135 +#, c-format +msgid "You have dropped the following ISO image into %s:" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:38 +#, c-format +msgid "Slot %d" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:41 +msgid "Other..." +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:312 +msgid "Show Console" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:313 +msgid "Console to Stdio" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:326 +msgid "&System" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:327 +msgid "CD&VD" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:328 +msgid "&Config" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:329 +msgid "&Misc" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:331 +msgid "&Debug" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:343 +#, c-format +msgid "%s %d.%d.%d.%d%s (svn) %s" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:349 +#, c-format +msgid "%s %d.%d.%d %s" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:350 +msgid "(modded)" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:387 pcsx2/gui/MainFrame.cpp:389 +#: pcsx2/gui/MainFrame.cpp:395 +msgid "Initializing..." +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:391 +msgid "Run ELF..." +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:392 +msgid "For running raw PS2 binaries directly" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:406 +msgid "Enable Patches" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:409 +msgid "Enable Cheats" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:412 +msgid "Enable Host Filesystem" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:417 +msgid "Shutdown" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:418 +msgid "Wipes all internal VM states and shuts down plugins." +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:420 +msgid "Exit" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:421 +#, c-format +msgid "Closing %s may be hazardous to your health" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:428 +msgid "Iso Selector" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:429 +msgid "Plugin Menu" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:432 +msgid "Iso" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:432 +msgid "Makes the specified ISO image the CDVD source." +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:433 +msgid "Plugin" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:433 +msgid "Uses an external plugin as the CDVD source." +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:434 +msgid "No disc" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:434 +msgid "Use this to boot into your virtual PS2's BIOS configuration." +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:442 +msgid "Emulation &Settings" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:443 +msgid "&Memory cards" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:444 +msgid "&Plugin/BIOS Selector" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:445 pcsx2/gui/Panels/GameDatabasePanel.cpp:348 +msgid "Game Database Editor" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:451 +msgid "&Video (GS)" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:452 +msgid "&Audio (SPU2)" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:453 +msgid "&Controllers (PAD)" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:454 +msgid "Dev9" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:455 +msgid "USB" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:456 +msgid "Firewire" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:459 +msgid "Patches (unimplemented)" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:462 +msgid "Multitap 1" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:463 +msgid "Multitap 2" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:466 +msgid "Clear all settings..." +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:467 +#, c-format +msgid "Clears all %s settings and re-runs the startup wizard." +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:483 +msgid "Print CDVD Info" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:490 +msgid "About..." +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:492 +msgid "Open Debug Window..." +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:493 +msgid "Memory Dump..." +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:494 +msgid "Logging..." +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:571 +msgid "Suspend" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:572 +msgid "Safely pauses emulation and preserves the PS2 state." +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:579 +msgid "Resume" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:580 +msgid "Resumes the suspended emulation state." +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:584 +msgid "Suspend/Resume" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:585 +msgid "No emulation state is active; cannot suspend or resume." +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:594 +msgid "Restart" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:595 +msgid "Simulates hardware reset of the PS2 virtual machine." +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:600 +msgid "No emulation state is active; boot something first." +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:608 +msgid "Reboot CDVD (full)" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:609 +msgid "Hard reset of the active VM." +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:613 +msgid "Boot CDVD (full)" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:614 +msgid "Boot the VM using the current DVD or Iso source media" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:622 +msgid "Reboot CDVD (fast)" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:623 +msgid "Reboot using fast BOOT (skips splash screens)" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:627 +msgid "Boot CDVD (fast)" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:628 +msgid "Use fast boot to skip PS2 startup and splash screens" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:689 pcsx2/gui/MainFrame.cpp:724 +msgid "No plugin loaded" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:694 +msgid "Core GS Settings..." +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:695 +msgid "Modify hardware emulation settings regulated by the PCSX2 core virtual machine." +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:697 +msgid "Window Settings..." +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:698 +msgid "Modify window and appearance options, including aspect ratio." +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:705 +msgid "Plugin Settings..." +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:706 +#, c-format +msgid "Opens the %s plugin's advanced settings dialog." +msgstr "" + +#: pcsx2/gui/MainMenuClicks.cpp:112 +msgid "Reset all settings?" +msgstr "" + +#: pcsx2/gui/MainMenuClicks.cpp:140 +msgid "Confirm ISO image change" +msgstr "" + +#: pcsx2/gui/MainMenuClicks.cpp:146 +msgid "Do you want to swap discs or boot the new image (via system reset)?" +msgstr "" + +#: pcsx2/gui/MainMenuClicks.cpp:148 pcsx2/gui/MainMenuClicks.cpp:191 +msgid "Swap Disc" +msgstr "" + +#: pcsx2/gui/MainMenuClicks.cpp:181 +msgid "Confirm CDVD source change" +msgstr "" + +#: pcsx2/gui/MainMenuClicks.cpp:184 +#, c-format +msgid "You've selected to switch the CDVD source from %s to %s." +msgstr "" + +#: pcsx2/gui/MainMenuClicks.cpp:188 +msgid "Do you want to swap discs or boot the new image (system reset)?" +msgstr "" + +#: pcsx2/gui/MainMenuClicks.cpp:256 +#, c-format +msgid "All Supported (%s)" +msgstr "" + +#: pcsx2/gui/MainMenuClicks.cpp:259 +#, c-format +msgid "Disc Images (%s)" +msgstr "" + +#: pcsx2/gui/MainMenuClicks.cpp:262 +#, c-format +msgid "Blockdumps (%s)" +msgstr "" + +#: pcsx2/gui/MainMenuClicks.cpp:265 pcsx2/gui/MainMenuClicks.cpp:286 +msgid "All Files (*.*)" +msgstr "" + +#: pcsx2/gui/MainMenuClicks.cpp:268 +msgid "Select CDVD source iso..." +msgstr "" + +#: pcsx2/gui/MainMenuClicks.cpp:285 +msgid "Select ELF file..." +msgstr "" + +#: pcsx2/gui/MainMenuClicks.cpp:311 +msgid "ISO file not found!" +msgstr "" + +#: pcsx2/gui/MainMenuClicks.cpp:313 +msgid "An error occurred while trying to open the file:" +msgstr "" + +#: pcsx2/gui/MainMenuClicks.cpp:314 +msgid "Error: The configured ISO file does not exist. Click OK to select a new ISO source for CDVD." +msgstr "" + +#: pcsx2/gui/MainMenuClicks.cpp:380 +msgid "" +"You have selected the following ISO image into PCSX2:\n" +"\n" +msgstr "" + +#: pcsx2/gui/MemoryCardFile.cpp:182 +#, c-format +msgid "" +"Could not create a memory card file: \n" +"\n" +"%s\n" +"\n" +msgstr "" + +#: pcsx2/gui/MemoryCardFile.cpp:200 +#, c-format +msgid "" +"Access denied to memory card file: \n" +"\n" +"%s\n" +"\n" +msgstr "" + +#: pcsx2/gui/Panels/BaseApplicableConfigPanel.cpp:97 +msgid "Cannot apply settings..." +msgstr "" + +#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:103 +msgid "BIOS Search Path:" +msgstr "" + +#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:104 +msgid "Select folder with PS2 BIOS roms" +msgstr "" + +#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:111 +msgid "Click the Browse button to select a different folder where PCSX2 will look for PS2 BIOS roms." +msgstr "" + +#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:113 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:149 +#: pcsx2/gui/Panels/ThemeSelectorPanel.cpp:47 +msgid "Refresh list" +msgstr "" + +#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:115 +msgid "Select a BIOS rom:" +msgstr "" + +#: pcsx2/gui/Panels/CpuPanel.cpp:24 +msgid "Round Mode" +msgstr "" + +#: pcsx2/gui/Panels/CpuPanel.cpp:25 +msgid "Clamping Mode" +msgstr "" + +#: pcsx2/gui/Panels/CpuPanel.cpp:29 +msgid "Nearest" +msgstr "" + +#: pcsx2/gui/Panels/CpuPanel.cpp:30 +msgid "Negative" +msgstr "" + +#: pcsx2/gui/Panels/CpuPanel.cpp:31 +msgid "Positive" +msgstr "" + +#: pcsx2/gui/Panels/CpuPanel.cpp:32 +msgid "Chop / Zero" +msgstr "" + +#: pcsx2/gui/Panels/CpuPanel.cpp:37 +msgid "None" +msgstr "" + +#: pcsx2/gui/Panels/CpuPanel.cpp:85 +msgid "EE/FPU Advanced Recompiler Options" +msgstr "" + +#: pcsx2/gui/Panels/CpuPanel.cpp:87 pcsx2/gui/Panels/CpuPanel.cpp:102 +msgid "Extra + Preserve Sign" +msgstr "" + +#: pcsx2/gui/Panels/CpuPanel.cpp:88 +msgid "Full" +msgstr "" + +#: pcsx2/gui/Panels/CpuPanel.cpp:99 +msgid "VU0 / VU1 Advanced Recompiler Options" +msgstr "" + +#: pcsx2/gui/Panels/CpuPanel.cpp:101 +msgid "Extra" +msgstr "" + +#: pcsx2/gui/Panels/CpuPanel.cpp:117 pcsx2/gui/Panels/CpuPanel.cpp:126 +#: pcsx2/gui/Panels/CpuPanel.cpp:184 +msgid "Interpreter" +msgstr "" + +#: pcsx2/gui/Panels/CpuPanel.cpp:118 +msgid "Quite possibly the slowest thing in the universe." +msgstr "" + +#: pcsx2/gui/Panels/CpuPanel.cpp:120 pcsx2/gui/Panels/CpuPanel.cpp:129 +msgid "Recompiler" +msgstr "" + +#: pcsx2/gui/Panels/CpuPanel.cpp:121 +msgid "Performs just-in-time binary translation of 64-bit MIPS-IV machine code to x86." +msgstr "" + +#: pcsx2/gui/Panels/CpuPanel.cpp:127 +msgid "Pretty slow; provided for diagnostic purposes only." +msgstr "" + +#: pcsx2/gui/Panels/CpuPanel.cpp:130 +msgid "Performs just-in-time binary translation of 32-bit MIPS-I machine code to x86." +msgstr "" + +#: pcsx2/gui/Panels/CpuPanel.cpp:154 +msgid "Enable EE Cache - Interpreter Only! (Slower)" +msgstr "" + +#: pcsx2/gui/Panels/CpuPanel.cpp:170 pcsx2/gui/Panels/CpuPanel.cpp:223 +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:110 +msgid "Restore Defaults" +msgstr "" + +#: pcsx2/gui/Panels/CpuPanel.cpp:185 +msgid "Vector Unit Interpreter. Slow and not very compatible. Only use for diagnostics." +msgstr "" + +#: pcsx2/gui/Panels/CpuPanel.cpp:187 +msgid "microVU Recompiler" +msgstr "" + +#: pcsx2/gui/Panels/CpuPanel.cpp:188 +msgid "New Vector Unit recompiler with much improved compatibility. Recommended." +msgstr "" + +#: pcsx2/gui/Panels/CpuPanel.cpp:190 +msgid "superVU Recompiler [legacy]" +msgstr "" + +#: pcsx2/gui/Panels/CpuPanel.cpp:191 +msgid "Useful for diagnosing bugs or clamping issues in the new mVU recompiler." +msgstr "" + +#: pcsx2/gui/Panels/DirPickerPanel.cpp:64 +msgid "Path does not exist" +msgstr "" + +#: pcsx2/gui/Panels/DirPickerPanel.cpp:154 +msgid "Use default setting" +msgstr "" + +#: pcsx2/gui/Panels/DirPickerPanel.cpp:174 +msgid "Open in Explorer" +msgstr "" + +#: pcsx2/gui/Panels/DirPickerPanel.cpp:175 +msgid "Open an explorer window to this folder." +msgstr "" + +#: pcsx2/gui/Panels/DirPickerPanel.cpp:266 +msgid "Create folder?" +msgstr "" + +#: pcsx2/gui/Panels/DirPickerPanel.cpp:267 +#, c-format +msgid "A configured folder does not exist. Should %s try to create it?" +msgstr "" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:30 +msgid "Fit to Window/Screen" +msgstr "" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:31 +msgid "Standard (4:3)" +msgstr "" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:32 +msgid "Widescreen (16:9)" +msgstr "" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:44 +msgid "Disable window resize border" +msgstr "" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:45 +msgid "Always hide mouse cursor" +msgstr "" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:46 +msgid "Hide window on suspend" +msgstr "" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:47 +msgid "Default to fullscreen mode on open" +msgstr "" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:48 +msgid "Wait for vsync on refresh" +msgstr "" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:49 +msgid "Double-click Toggles Full-Screen mode" +msgstr "" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:50 +msgid "Use exclusive fullscreen mode (if available)" +msgstr "" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:90 +msgid "Aspect Ratio:" +msgstr "" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:92 +msgid "Custom Window Size:" +msgstr "" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:164 +msgid "Invalid window dimensions specified: Size cannot contain non-numeric digits! >_<" +msgstr "" + +#: pcsx2/gui/Panels/GameDatabasePanel.cpp:336 +msgid "Search" +msgstr "" + +#: pcsx2/gui/Panels/GameDatabasePanel.cpp:370 +#: pcsx2/gui/Panels/GameFixesPanel.cpp:25 +msgid "Gamefixes" +msgstr "" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:38 +msgid "VU Add Hack - Fixes Tri-Ace games boot crash." +msgstr "" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:39 +msgid "" +"Games that need this hack to boot:\n" +" * Star Ocean 3\n" +" * Radiata Stories\n" +" * Valkyrie Profile 2" +msgstr "" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:42 +msgid "VU Clip Flag Hack - For Persona games (SuperVU recompiler only!)" +msgstr "" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:46 +msgid "FPU Compare Hack - For Digimon Rumble Arena 2." +msgstr "" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:50 +msgid "FPU Multiply Hack - For Tales of Destiny." +msgstr "" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:54 +msgid "FPU Negative Div Hack - For Gundam games." +msgstr "" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:58 +msgid "VU XGkick Hack - For Erementar Gerad." +msgstr "" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:62 +msgid "FFX videos fix - Fixes bad graphics overlay in FFX videos." +msgstr "" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:66 +msgid "EE timing hack - Multi purpose hack. Try if all else fails." +msgstr "" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:75 +msgid "Skip MPEG hack - Skips videos/FMVs in games to avoid game hanging/freezes." +msgstr "" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:79 +msgid "OPH Flag hack - Try if your game freezes showing the same frame." +msgstr "" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:95 +msgid "Enable game fixes" +msgstr "" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:103 +msgid "The safest way to make sure that all game fixes are completely disabled." +msgstr "" + +#: pcsx2/gui/Panels/LogOptionsPanels.cpp:249 +msgid "Enable Trace Logging" +msgstr "" + +#: pcsx2/gui/Panels/LogOptionsPanels.cpp:250 +msgid "Trace logs are all written to emulog.txt. Toggle trace logging at any time using F10." +msgstr "" + +#: pcsx2/gui/Panels/LogOptionsPanels.cpp:251 +msgid "Warning: Enabling trace logs is typically very slow, and is a leading cause of 'What happened to my FPS?' problems. :)" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:144 +msgid "Select folder with PS2 memory cards" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:374 +msgid "Overwrite memory card?" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:391 +msgid "Copy failed!" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:465 +msgid "Mount" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:511 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:681 +msgid "Delete" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:514 +msgid "Deletes the existing memory card from disk (all contents are lost)." +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:515 +msgid "Creates a new memory card in the empty slot." +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:519 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:682 +msgid "Disable" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:519 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:682 +msgid "Enable" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:522 +msgid "Disables the selected memory card, so that it will not be seen by games or BIOS." +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:523 +msgid "Mounts the selected memory card, so that games can see it again." +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:602 +msgid "Delete memory card?" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:681 +msgid "Create new..." +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:683 +msgid "Relocate file..." +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:688 +msgid "Refresh List" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:105 +msgid "Slot" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:106 +msgid "Status" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:107 +msgid "Size" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:108 +msgid "Formatted" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:109 +msgid "Modified" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:110 +msgid "Created" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:111 +msgid "Filename" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:136 +msgid "Disabled" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:136 +msgid "Enabled" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:136 +msgid "Missing" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:137 +#: pcsx2/gui/Panels/MemoryCardListView.cpp:139 +#: pcsx2/gui/Panels/MemoryCardListView.cpp:140 +msgid "N/A" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:138 +msgid "No" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:138 +msgid "Yes" +msgstr "" + +#: pcsx2/gui/Panels/MiscPanelStuff.cpp:33 +msgid "Usermode Selection" +msgstr "" + +#: pcsx2/gui/Panels/MiscPanelStuff.cpp:50 +msgid "User Documents (recommended)" +msgstr "" + +#: pcsx2/gui/Panels/MiscPanelStuff.cpp:51 +msgid "Location: " +msgstr "" + +#: pcsx2/gui/Panels/MiscPanelStuff.cpp:55 +msgid "Custom folder:" +msgstr "" + +#: pcsx2/gui/Panels/MiscPanelStuff.cpp:57 +msgid "This setting may require administration privileges from your operating system, depending on how your system is configured." +msgstr "" + +#: pcsx2/gui/Panels/MiscPanelStuff.cpp:66 +#, c-format +msgid "Select a document root for %s" +msgstr "" + +#: pcsx2/gui/Panels/MiscPanelStuff.cpp:124 +msgid "Apply" +msgstr "" + +#: pcsx2/gui/Panels/MiscPanelStuff.cpp:125 +msgid "Make this language my default right now!" +msgstr "" + +#: pcsx2/gui/Panels/PathsPanel.cpp:38 +msgid "Savestates:" +msgstr "" + +#: pcsx2/gui/Panels/PathsPanel.cpp:39 +msgid "Select folder for Savestates" +msgstr "" + +#: pcsx2/gui/Panels/PathsPanel.cpp:48 +msgid "Snapshots:" +msgstr "" + +#: pcsx2/gui/Panels/PathsPanel.cpp:49 +msgid "Select a folder for Snapshots" +msgstr "" + +#: pcsx2/gui/Panels/PathsPanel.cpp:58 +msgid "Logs/Dumps:" +msgstr "" + +#: pcsx2/gui/Panels/PathsPanel.cpp:59 +msgid "Select a folder for logs/dumps" +msgstr "" + +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:230 +msgid "Applying settings..." +msgstr "" + +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:240 +msgid "Shutdown PS2 virtual machine?" +msgstr "" + +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:321 +msgid "I'm givin' her all she's got, Captain!" +msgstr "" + +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:323 +msgid "Enumerating available plugins..." +msgstr "" + +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:356 +msgid "Plugins Search Path:" +msgstr "" + +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:357 +msgid "Select a folder with PCSX2 plugins" +msgstr "" + +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:370 +msgid "Configure..." +msgstr "" + +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:379 +msgid "Click the Browse button to select a different folder for PCSX2 plugins." +msgstr "" + +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:519 +#, c-format +msgid "" +"The selected %s plugin failed to load.\n" +"\n" +"Reason: %s\n" +"\n" +msgstr "" + +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:729 +msgid "Completing tasks..." +msgstr "" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:96 +msgid "Enable speedhacks" +msgstr "" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:102 +msgid "A safe and easy way to make sure that all speedhacks are completely disabled." +msgstr "" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:111 +msgid "Resets all speedhack options to their defaults, which consequently turns them all OFF." +msgstr "" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:120 +msgid "EE Cyclerate [Not Recommended]" +msgstr "" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:141 +msgid "VU Cycle Stealing [Not Recommended]" +msgstr "" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:161 +msgid "microVU Hacks" +msgstr "" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:163 +msgid "mVU Flag Hack" +msgstr "" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:164 +msgid "Good Speedup and High Compatibility; may cause garbage graphics, SPS, etc... [Recommended]" +msgstr "" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:166 +msgid "mVU Block Hack" +msgstr "" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:167 +msgid "Good Speedup and High Compatibility; may cause garbage graphics, SPS, etc..." +msgstr "" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:169 +msgid "mVU Min/Max Hack" +msgstr "" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:170 +msgid "Small Speedup; may cause black screens, garbage graphics, SPS, etc... [Not Recommended]" +msgstr "" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:190 +msgid "Other Hacks" +msgstr "" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:192 +msgid "Enable INTC Spin Detection" +msgstr "" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:193 +msgid "Huge speedup for some games, with almost no compatibility side effects. [Recommended]" +msgstr "" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:195 +msgid "Enable Wait Loop Detection" +msgstr "" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:196 +msgid "Moderate speedup for some games, with no known side effects. [Recommended]" +msgstr "" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:198 +msgid "Enable fast CDVD" +msgstr "" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:199 +msgid "Fast disc access, less loading times. [Not Recommended]" +msgstr "" + +#: pcsx2/gui/Panels/ThemeSelectorPanel.cpp:37 +msgid "Themes Search Path:" +msgstr "" + +#: pcsx2/gui/Panels/ThemeSelectorPanel.cpp:38 +msgid "Select folder containing PCSX2 visual themes" +msgstr "" + +#: pcsx2/gui/Panels/ThemeSelectorPanel.cpp:45 +msgid "Click the Browse button to select a different folder containing PCSX2 visual themes." +msgstr "" + +#: pcsx2/gui/Panels/ThemeSelectorPanel.cpp:49 +msgid "Select a visual theme:" +msgstr "" + +#: pcsx2/gui/Panels/VideoPanel.cpp:34 +msgid "Disable Framelimiting" +msgstr "" + +#: pcsx2/gui/Panels/VideoPanel.cpp:35 +msgid "Useful for running benchmarks. Toggle this option in-game by pressing F4." +msgstr "" + +#: pcsx2/gui/Panels/VideoPanel.cpp:61 +msgid "Base Framerate Adjust:" +msgstr "" + +#: pcsx2/gui/Panels/VideoPanel.cpp:67 +msgid "Slow Motion Adjust:" +msgstr "" + +#: pcsx2/gui/Panels/VideoPanel.cpp:73 +msgid "Turbo Adjust:" +msgstr "" + +#: pcsx2/gui/Panels/VideoPanel.cpp:88 +msgid "NTSC Framerate:" +msgstr "" + +#: pcsx2/gui/Panels/VideoPanel.cpp:91 pcsx2/gui/Panels/VideoPanel.cpp:97 +msgid "FPS" +msgstr "" + +#: pcsx2/gui/Panels/VideoPanel.cpp:94 +msgid "PAL Framerate:" +msgstr "" + +#: pcsx2/gui/Panels/VideoPanel.cpp:180 +msgid "Disabled [default]" +msgstr "" + +#: pcsx2/gui/Panels/VideoPanel.cpp:184 +msgid "Skip when on Turbo only (TAB to enable)" +msgstr "" + +#: pcsx2/gui/Panels/VideoPanel.cpp:188 +msgid "Constant skipping" +msgstr "" + +#: pcsx2/gui/Panels/VideoPanel.cpp:190 +msgid "Normal and Turbo limit rates skip frames. Slow motion mode will still disable frameskipping." +msgstr "" + +#: pcsx2/gui/Panels/VideoPanel.cpp:213 +msgid "Frames to Draw" +msgstr "" + +#: pcsx2/gui/Panels/VideoPanel.cpp:218 +msgid "Frames to Skip" +msgstr "" + +#: pcsx2/gui/Panels/VideoPanel.cpp:294 +msgid "Use Synchronized MTGS" +msgstr "" + +#: pcsx2/gui/Panels/VideoPanel.cpp:298 +msgid "Disable all GS output" +msgstr "" + +#: pcsx2/gui/Panels/VideoPanel.cpp:316 +msgid "Frame Skipping" +msgstr "" + +#: pcsx2/gui/Panels/VideoPanel.cpp:319 +msgid "Framelimiter" +msgstr "" + +#: pcsx2/gui/SysState.cpp:283 +msgid "Cannot load this savestate. The state is from an incompatible edition of PCSX2 that is either newer than this version, or is no longer supported." +msgstr "" + +#: pcsx2/gui/SysState.cpp:290 +msgid "Cannot load this savestate. The state is an unsupported version, likely created by a newer edition of PCSX2." +msgstr "" + +#: pcsx2/gui/SysState.cpp:520 +msgid "This savestate cannot be loaded because it is not a valid gzip archive. It may have been created by an older unsupported version of PCSX2, or it may be corrupted." +msgstr "" + +#: pcsx2/gui/SysState.cpp:579 +msgid "This file is not a valid PCSX2 savestate. See the logfile for details." +msgstr "" + +#: pcsx2/gui/SysState.cpp:598 +msgid "This savestate cannot be loaded due to missing critical components. See the log file for details." +msgstr "" + +#: pcsx2/ps2/BiosTools.cpp:83 pcsx2/ps2/BiosTools.cpp:151 +msgid "The selected BIOS file is not a valid PS2 BIOS. Please re-configure." +msgstr "" + +#: pcsx2/ps2/BiosTools.cpp:244 +msgid "The PS2 BIOS could not be loaded. The BIOS has not been configured, or the configuration has been corrupted. Please re-configure." +msgstr "" + +#: pcsx2/ps2/BiosTools.cpp:251 +msgid "The configured BIOS file does not exist. Please re-configure." +msgstr "" + +#: pcsx2/x86/ix86-32/iR5900-32.cpp:578 +#, c-format +msgid "%s Extensions not found. The R5900-32 recompiler requires a host CPU with MMX, SSE, and SSE2 extensions." +msgstr "" + +#: pcsx2/x86/microVU.cpp:85 +#, c-format +msgid "%s Extensions not found. microVU requires a host CPU with MMX, SSE, and SSE2 extensions." +msgstr "" diff --git a/locales/templates/pcsx2_Tertiary.pot b/locales/templates/pcsx2_Tertiary.pot index 039eff9905..1b5583b689 100644 --- a/locales/templates/pcsx2_Tertiary.pot +++ b/locales/templates/pcsx2_Tertiary.pot @@ -1,165 +1,259 @@ -msgid "" -msgstr "" -"Project-Id-Version: PCSX2 0.9.7\n" -"Report-Msgid-Bugs-To: http://code.google.com/p/pcsx2/\n" -"POT-Creation-Date: 2010-12-26 10:01-0500\n" -"PO-Revision-Date: 2010-12-26 10:01-0500\n" -"Last-Translator: Jake Stine \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Poedit-KeywordsList: pxEt;pxLt\n" -"X-Poedit-SourceCharset: utf-8\n" -"X-Poedit-Basepath: trunk\\\n" -"X-Poedit-SearchPath-0: pcsx2\n" -"X-Poedit-SearchPath-1: common\n" - -#: pcsx2/MTGS.cpp:809 -msgid "The MTGS thread has become unresponsive while waiting for the GS plugin to open." -msgstr "" - -#: pcsx2/PluginManager.cpp:1329 -msgid "Internal Memorycard Plugin failed to initialize." -msgstr "" - -#: pcsx2/gui/ExecutorThread.cpp:40 -msgid "Logs events as they are passed to the PS2 virtual machine." -msgstr "" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:151 -msgid "!ContextTip:ChangingNTFS" -msgstr "" - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:48 -msgid "!ContextTip:Folders:Settings" -msgstr "" - -#: pcsx2/gui/Panels/DirPickerPanel.cpp:118 -msgid "!ContextTip:DirPicker:UseDefault" -msgstr "" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:67 -msgid "!ContextTip:Gamefixes:EE Timing Hack" -msgstr "" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:80 -msgid "!ContextTip:Gamefixes:OPH Flag hack" -msgstr "" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:51 -msgid "!ContextTip:Window:Vsync" -msgstr "" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:56 -msgid "!ContextTip:Window:HideMouse" -msgstr "" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:62 -msgid "!ContextTip:Window:Fullscreen" -msgstr "" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:67 -msgid "!ContextTip:Window:FullscreenExclusive" -msgstr "" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:72 -msgid "!ContextTip:Window:HideGS" -msgstr "" - -#: pcsx2/gui/Panels/PathsPanel.cpp:39 -msgid "!ContextTip:Folders:Savestates" -msgstr "" - -#: pcsx2/gui/Panels/PathsPanel.cpp:49 -msgid "!ContextTip:Folders:Snapshots" -msgstr "" - -#: pcsx2/gui/Panels/PathsPanel.cpp:59 -msgid "!ContextTip:Folders:Logs" -msgstr "" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:27 -msgid "!Panel:Speedhacks:EECycleX1" -msgstr "" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:32 -msgid "!Panel:Speedhacks:EECycleX2" -msgstr "" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:37 -msgid "!Panel:Speedhacks:EECycleX3" -msgstr "" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:54 -msgid "!Panel:Speedhacks:VUCycleStealOff" -msgstr "" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:59 -msgid "!Panel:Speedhacks:VUCycleSteal1" -msgstr "" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:64 -msgid "!Panel:Speedhacks:VUCycleSteal2" -msgstr "" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:70 -msgid "!Panel:Speedhacks:VUCycleSteal3" -msgstr "" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:129 -msgid "!ContextTip:Speedhacks:EECycleRate Slider" -msgstr "" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:150 -msgid "!ContextTip:Speedhacks:VUCycleStealing Slider" -msgstr "" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:172 -msgid "!ContextTip:Speedhacks:vuFlagHack" -msgstr "" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:177 -msgid "!ContextTip:Speedhacks:vuBlockHack" -msgstr "" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:182 -msgid "!ContextTip:Speedhacks:vuMinMax" -msgstr "" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:202 -msgid "!ContextTip:Speedhacks:INTC" -msgstr "" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:207 -msgid "!ContextTip:Speedhacks:BIFC0" -msgstr "" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:214 -msgid "!ContextTip:Speedhacks:fastCDVD" -msgstr "" - -#: pcsx2/gui/Panels/VideoPanel.cpp:37 -msgid "!ContextTip:Framelimiter:Disable" -msgstr "" - -#: pcsx2/gui/Panels/VideoPanel.cpp:299 -msgid "!ContextTip:GS:SyncMTGS" -msgstr "" - -#: pcsx2/gui/Panels/VideoPanel.cpp:303 -msgid "!ContextTip:GS:DisableOutput" -msgstr "" - -#: common/src/Utilities/ThreadTools.cpp:41 -msgid "Threading activity: start, detach, sync, deletion, etc." -msgstr "" - -#: common/src/Utilities/wxAppWithHelpers.cpp:36 -msgid "Includes idle event processing and some other uncommon event usages." -msgstr "" - -#: common/include/Utilities/Exceptions.h:187 -msgid "No reason given." -msgstr "" - +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR PCSX2_Dev_Team +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PCSX2 0.9.7\n" +"Report-Msgid-Bugs-To: http://code.google.com/p/pcsx2/\n" +"POT-Creation-Date: 2011-02-25 19:05+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: common/include/Utilities/Exceptions.h:187 +msgid "No reason given." +msgstr "" + +#: common/src/Utilities/ThreadTools.cpp:41 +msgid "Threading activity: start, detach, sync, deletion, etc." +msgstr "" + +#: common/src/Utilities/wxAppWithHelpers.cpp:36 +msgid "Includes idle event processing and some other uncommon event usages." +msgstr "" + +#: pcsx2/MTGS.cpp:809 +msgid "The MTGS thread has become unresponsive while waiting for the GS plugin to open." +msgstr "" + +#: pcsx2/PluginManager.cpp:1329 +msgid "Internal Memorycard Plugin failed to initialize." +msgstr "" + +#: pcsx2/gui/AppConfig.cpp:776 +msgid "Safest" +msgstr "" + +#: pcsx2/gui/AppConfig.cpp:777 +msgid "Safe (faster)" +msgstr "" + +#: pcsx2/gui/AppConfig.cpp:778 +msgid "Balanced" +msgstr "" + +#: pcsx2/gui/AppConfig.cpp:779 +msgid "Aggressive" +msgstr "" + +#: pcsx2/gui/AppConfig.cpp:780 +msgid "Aggressive plus" +msgstr "" + +#: pcsx2/gui/AppConfig.cpp:781 +msgid "Mostly Harmful" +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:412 +msgid "Fits a lot of log in a microcosmically small area." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:414 +msgid "It's what I use (the programmer guy)." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:416 +msgid "Its nice and readable." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:418 +msgid "In case you have a really high res display." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:422 +msgid "Default soft-tone color scheme." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:423 +msgid "Classic black color scheme for people who enjoy having text seared into their optic nerves." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:427 +msgid "When checked the log window will be visible over other foreground windows." +msgstr "" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:151 +msgid "!ContextTip:ChangingNTFS" +msgstr "" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:164 +msgid "Always use this option if you want the safest and surest memory card behavior." +msgstr "" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:168 +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:172 +msgid "16 and 32 MB cards have roughly the same compatibility factor." +msgstr "" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:176 +msgid "Use at your own risk. Erratic memory card behavior is possible (though unlikely)." +msgstr "" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:49 +msgid "!ContextTip:Folders:Settings" +msgstr "" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:38 +msgid "!Panel:HasHacksOverrides" +msgstr "" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:58 +msgid "!Panel:HasPluginsOverrides" +msgstr "" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:135 +msgid "!Notice:Tooltip:Presets:Slider" +msgstr "" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:149 +msgid "!Notice:Tooltip:Presets:Checkbox" +msgstr "" + +#: pcsx2/gui/ExecutorThread.cpp:40 +msgid "Logs events as they are passed to the PS2 virtual machine." +msgstr "" + +#: pcsx2/gui/Panels/DirPickerPanel.cpp:156 +msgid "!ContextTip:DirPicker:UseDefault" +msgstr "" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:52 +msgid "!ContextTip:Window:Vsync" +msgstr "" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:57 +msgid "!ContextTip:Window:HideMouse" +msgstr "" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:63 +msgid "!ContextTip:Window:Fullscreen" +msgstr "" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:68 +msgid "!ContextTip:Window:FullscreenExclusive" +msgstr "" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:73 +msgid "!ContextTip:Window:HideGS" +msgstr "" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:67 +msgid "!ContextTip:Gamefixes:EE Timing Hack" +msgstr "" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:80 +msgid "!ContextTip:Gamefixes:OPH Flag hack" +msgstr "" + +#: pcsx2/gui/Panels/PathsPanel.cpp:40 +msgid "!ContextTip:Folders:Savestates" +msgstr "" + +#: pcsx2/gui/Panels/PathsPanel.cpp:50 +msgid "!ContextTip:Folders:Snapshots" +msgstr "" + +#: pcsx2/gui/Panels/PathsPanel.cpp:60 +msgid "!ContextTip:Folders:Logs" +msgstr "" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:27 +msgid "!Panel:Speedhacks:EECycleX1" +msgstr "" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:32 +msgid "!Panel:Speedhacks:EECycleX2" +msgstr "" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:37 +msgid "!Panel:Speedhacks:EECycleX3" +msgstr "" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:54 +msgid "!Panel:Speedhacks:VUCycleStealOff" +msgstr "" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:59 +msgid "!Panel:Speedhacks:VUCycleSteal1" +msgstr "" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:64 +msgid "!Panel:Speedhacks:VUCycleSteal2" +msgstr "" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:70 +msgid "!Panel:Speedhacks:VUCycleSteal3" +msgstr "" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:129 +msgid "!ContextTip:Speedhacks:EECycleRate Slider" +msgstr "" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:150 +msgid "!ContextTip:Speedhacks:VUCycleStealing Slider" +msgstr "" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:172 +msgid "!ContextTip:Speedhacks:vuFlagHack" +msgstr "" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:177 +msgid "!ContextTip:Speedhacks:vuBlockHack" +msgstr "" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:182 +msgid "!ContextTip:Speedhacks:vuMinMax" +msgstr "" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:202 +msgid "!ContextTip:Speedhacks:INTC" +msgstr "" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:207 +msgid "!ContextTip:Speedhacks:BIFC0" +msgstr "" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:214 +msgid "!ContextTip:Speedhacks:fastCDVD" +msgstr "" + +#: pcsx2/gui/Panels/VideoPanel.cpp:37 +msgid "!ContextTip:Framelimiter:Disable" +msgstr "" + +#: pcsx2/gui/Panels/VideoPanel.cpp:162 +msgid "Error while parsing either NTSC or PAL framerate settings. Settings must be valid floating point numerics." +msgstr "" + +#: pcsx2/gui/Panels/VideoPanel.cpp:295 +msgid "For troubleshooting potential bugs in the MTGS only, as it is potentially very slow." +msgstr "" + +#: pcsx2/gui/Panels/VideoPanel.cpp:299 +msgid "Completely disables all GS plugin activity; ideal for benchmarking EEcore components." +msgstr "" + +#: pcsx2/gui/Panels/VideoPanel.cpp:302 +msgid "!ContextTip:GS:SyncMTGS" +msgstr "" + +#: pcsx2/gui/Panels/VideoPanel.cpp:306 +msgid "!ContextTip:GS:DisableOutput" +msgstr "" diff --git a/locales/tr_TR/pcsx2_Devel.po b/locales/tr_TR/pcsx2_Devel.po index 7d1765989f..0e2bb3c422 100644 --- a/locales/tr_TR/pcsx2_Devel.po +++ b/locales/tr_TR/pcsx2_Devel.po @@ -2,10 +2,11 @@ msgid "" msgstr "" "Project-Id-Version: PCSX2 0.9.7\n" "Report-Msgid-Bugs-To: http://code.google.com/p/pcsx2/\n" -"POT-Creation-Date: 2010-12-26 09:58-0500\n" +"POT-Creation-Date: 2011-02-25 18:54+0100\n" "PO-Revision-Date: 2011-01-19 15:21+0200\n" "Last-Translator: PyramidHead \n" "Language-Team: PyramidHead \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -22,8 +23,12 @@ msgid "Dumps detailed information for PS2 executables (ELFs)." msgstr "PS2 ELF dosyalarını ayrıntılı olarak günlükle." #: pcsx2/SourceLog.cpp:101 -msgid "Logs manual protection, split blocks, and other things that might impact performance." -msgstr "Manual koruma, blok ayırma ve diğer performansı etkileyecek zamazingoları günlükler." +msgid "" +"Logs manual protection, split blocks, and other things that might impact " +"performance." +msgstr "" +"Manual koruma, blok ayırma ve diğer performansı etkileyecek zamazingoları " +"günlükler." #: pcsx2/SourceLog.cpp:106 msgid "Shows the game developer's logging text (EE processor)" @@ -45,8 +50,7 @@ msgstr "SYSCALL ve DECI2 etkinliği." msgid "Direct memory accesses to unknown or unmapped EE memory space." msgstr "Bilinmeyen ya da belirtilmemiş EE hafıza konumuna doğrudan erişim." -#: pcsx2/SourceLog.cpp:157 -#: pcsx2/SourceLog.cpp:270 +#: pcsx2/SourceLog.cpp:157 pcsx2/SourceLog.cpp:276 msgid "Disasm of executing core instructions (excluding COPs and CACHE)." msgstr "Yürütme yönergelerinin ayrımı (COPs ve CACHE hariç)" @@ -67,22 +71,26 @@ msgid "Execution of EE cache instructions." msgstr "EE önbellek yönergelerinin yürütülmesi." #: pcsx2/SourceLog.cpp:187 -msgid "All known hardware register accesses (very slow!); not including sub filter options below." -msgstr "Altta belirtilen filtreler hariç tüm bilinen donanım erişimleri (ÇOK YAVAŞ!)." +msgid "" +"All known hardware register accesses (very slow!); not including sub filter " +"options below." +msgstr "" +"Altta belirtilen filtreler hariç tüm bilinen donanım erişimleri (ÇOK YAVAŞ!)." -#: pcsx2/SourceLog.cpp:193 -#: pcsx2/SourceLog.cpp:288 +#: pcsx2/SourceLog.cpp:193 pcsx2/SourceLog.cpp:294 msgid "Logs only unknown, unmapped, or unimplemented register accesses." -msgstr "Yalnızca bilinmeyen, ayarlanmamış ve düzenlenmemiş erişim girdilerini günlükler." +msgstr "" +"Yalnızca bilinmeyen, ayarlanmamış ve düzenlenmemiş erişim girdilerini " +"günlükler." -#: pcsx2/SourceLog.cpp:199 -#: pcsx2/SourceLog.cpp:294 +#: pcsx2/SourceLog.cpp:199 pcsx2/SourceLog.cpp:300 msgid "Logs only DMA-related registers." msgstr "Yalnızca DMA ile ilgili girişleri günlükler." #: pcsx2/SourceLog.cpp:205 msgid "IPU activity: hardware registers, decoding operations, DMA status, etc." -msgstr "IPU etkinliği: donanım erişimleri, çözümleme işlemleri, DMA durumu vb..." +msgstr "" +"IPU etkinliği: donanım erişimleri, çözümleme işlemleri, DMA durumu vb..." #: pcsx2/SourceLog.cpp:211 msgid "All GIFtag parse activity; path index, tag type, etc." @@ -93,58 +101,62 @@ msgid "All VIFcode processing; command, tag style, interrupts." msgstr "Tüm VIFcode işlemleri; komutlar, tag türü, hatalar." #: pcsx2/SourceLog.cpp:223 +msgid "All processing involved in Path3 Masking" +msgstr "" + +#: pcsx2/SourceLog.cpp:229 msgid "Scratchpad's MFIFO activity." msgstr "Scratchpad'in MFIFO etkinliği." -#: pcsx2/SourceLog.cpp:229 +#: pcsx2/SourceLog.cpp:235 msgid "Actual data transfer logs, bus right arbitration, stalls, etc." msgstr "Dosya transfer günlükleri, beklemeler vb." -#: pcsx2/SourceLog.cpp:235 +#: pcsx2/SourceLog.cpp:241 msgid "Tracks all EE counters events and some counter register activity." msgstr "Tüm EE sayaç olaylarını ve bazı girdi etkinliklerini izler." -#: pcsx2/SourceLog.cpp:241 +#: pcsx2/SourceLog.cpp:247 msgid "Dumps various VIF and VIFcode processing data." msgstr "Çeşitli VIF ve VIFcode işlemlerini yığınlar." -#: pcsx2/SourceLog.cpp:247 +#: pcsx2/SourceLog.cpp:253 msgid "Dumps various GIF and GIFtag parsing data." msgstr "Çeşitlli GIF ve GIFtag verilerini yığınlar." -#: pcsx2/SourceLog.cpp:258 +#: pcsx2/SourceLog.cpp:264 msgid "SYSCALL and IRX activity." msgstr "SYSCALL ve IRX etkinliği." -#: pcsx2/SourceLog.cpp:264 +#: pcsx2/SourceLog.cpp:270 msgid "Direct memory accesses to unknown or unmapped IOP memory space." msgstr "Bilinmeyen ya da belirtilmemiş IOP hafıza konumuna doğrudan erişim." -#: pcsx2/SourceLog.cpp:276 +#: pcsx2/SourceLog.cpp:282 msgid "Disasm of the IOP's GPU co-processor instructions." msgstr "IOS'nin GPU işlemcili yönergelerininin ayrımı." -#: pcsx2/SourceLog.cpp:282 -msgid "All known hardware register accesses, not including the sub-filters below." +#: pcsx2/SourceLog.cpp:288 +msgid "" +"All known hardware register accesses, not including the sub-filters below." msgstr "Alttaki filtreleri içermeyen tüm bilinen donanım erişimleri." -#: pcsx2/SourceLog.cpp:300 +#: pcsx2/SourceLog.cpp:306 msgid "Memorycard reads, writes, erases, terminators, and other processing." msgstr "Hafıza kartı okumaları, yazmaları, silmeleri ve diğer işlemler." -#: pcsx2/SourceLog.cpp:306 +#: pcsx2/SourceLog.cpp:312 msgid "Gamepad activity on the SIO." msgstr "SIO'daki oyun kolu etkinliği." -#: pcsx2/SourceLog.cpp:312 +#: pcsx2/SourceLog.cpp:318 msgid "Actual DMA event processing and data transfer logs." msgstr "DMA olay işlemi ve dosya transfer günlükleri." -#: pcsx2/SourceLog.cpp:318 +#: pcsx2/SourceLog.cpp:324 msgid "Tracks all IOP counters events and some counter register activity." msgstr "Tüm IOP sayaç olaylarını ve diğer sayaç girdisi etkinliklerini izler." -#: pcsx2/SourceLog.cpp:324 +#: pcsx2/SourceLog.cpp:330 msgid "Detailed logging of CDVD hardware." msgstr "CDVD donanımının detaylı günlüklemesi." - diff --git a/locales/tr_TR/pcsx2_Iconized.po b/locales/tr_TR/pcsx2_Iconized.po index 11ab6c322f..9069c4ae0b 100644 --- a/locales/tr_TR/pcsx2_Iconized.po +++ b/locales/tr_TR/pcsx2_Iconized.po @@ -2,10 +2,11 @@ msgid "" msgstr "" "Project-Id-Version: PCSX2 0.9.7\n" "Report-Msgid-Bugs-To: http://code.google.com/p/pcsx2/\n" -"POT-Creation-Date: 2010-12-26 10:02-0500\n" +"POT-Creation-Date: 2011-02-25 18:54+0100\n" "PO-Revision-Date: 2011-01-19 15:15+0200\n" "Last-Translator: PyramidHead \n" "Language-Team: PyramidHead \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -17,63 +18,55 @@ msgstr "" "X-Poedit-SearchPath-0: pcsx2\n" "X-Poedit-SearchPath-1: common\n" -#: pcsx2/System.cpp:114 -msgid "!Notice:Recompiler:VirtualMemoryAlloc" -msgstr "!Notice:Recompiler:VirtualMemoryAlloc" - -#: pcsx2/System.cpp:346 -msgid "!Notice:EmuCore::MemoryForVM" -msgstr "!Notice:EmuCore::MemoryForVM" - -#: pcsx2/vtlb.cpp:588 -msgid "!Notice:HostVmReserve" -msgstr "!Notice:HostVmReserve" +#: common/src/Utilities/Exceptions.cpp:254 +msgid "!Notice:VirtualMemoryMap" +msgstr "!Notice:VirtualMemoryMap" #: pcsx2/CDVD/CDVD.cpp:385 msgid "!Notice:PsxDisc" msgstr "!Notice:PsxDisc" -#: pcsx2/gui/AppInit.cpp:44 +#: pcsx2/System.cpp:114 +msgid "!Notice:Recompiler:VirtualMemoryAlloc" +msgstr "!Notice:Recompiler:VirtualMemoryAlloc" + +#: pcsx2/System.cpp:348 +msgid "!Notice:EmuCore::MemoryForVM" +msgstr "!Notice:EmuCore::MemoryForVM" + +#: pcsx2/gui/AppInit.cpp:43 msgid "!Notice:Startup:NoSSE2" msgstr "!Notice:Startup:NoSSE2" -#: pcsx2/gui/AppInit.cpp:290 +#: pcsx2/gui/AppInit.cpp:162 msgid "!Notice:RecompilerInit:Header" msgstr "!Notice:RecompilerInit:Header" -#: pcsx2/gui/AppInit.cpp:344 +#: pcsx2/gui/AppInit.cpp:211 msgid "!Notice:RecompilerInit:Footer" msgstr "!Notice:RecompilerInit:Footer" -#: pcsx2/gui/AppMain.cpp:483 +#: pcsx2/gui/AppMain.cpp:476 msgid "!Notice:BiosDumpRequired" msgstr "!Notice:BiosDumpRequired" -#: pcsx2/gui/AppMain.cpp:567 +#: pcsx2/gui/AppMain.cpp:559 msgid "!Notice Error:Thread Deadlock Actions" msgstr "!Notice Error:Thread Deadlock Actions" -#: pcsx2/gui/IsoDropTarget.cpp:28 -msgid "!Notice:ConfirmSysReset" -msgstr "!Notice:ConfirmSysReset" +#: pcsx2/gui/AppUserMode.cpp:59 +msgid "!Error:PortableModeRights" +msgstr "" -#: pcsx2/gui/MainMenuClicks.cpp:112 -msgid "!Notice:DeleteSettings" -msgstr "!Notice:DeleteSettings" - -#: pcsx2/gui/MemoryCardFile.cpp:77 -msgid "!Notice:Mcd:HasBeenDisabled" -msgstr "!Notice:Mcd:HasBeenDisabled" - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:53 +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:54 msgid "!Panel:Folders:Settings" msgstr "!Panel:Folders:Settings" -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:109 -msgid "!Notice:DocsFolderFileConflict" -msgstr "!Notice:DocsFolderFileConflict" +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:94 +msgid "!Wizard:Welcome" +msgstr "" -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:152 +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:140 msgid "!Wizard:Bios:Tutorial" msgstr "!Wizard:Bios:Tutorial" @@ -93,19 +86,33 @@ msgstr "!Panel:Mcd:EnableEjection" msgid "!Panel:StuckThread:Heading" msgstr "!Panel:StuckThread:Heading" -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:37 -msgid "!Panel:HasHacksOverrides" -msgstr "!Panel:HasHacksOverrides" +#: pcsx2/gui/IsoDropTarget.cpp:28 +msgid "!Notice:ConfirmSysReset" +msgstr "!Notice:ConfirmSysReset" -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:57 -msgid "!Panel:HasPluginsOverrides" -msgstr "!Panel:HasPluginsOverrides" +#: pcsx2/gui/MainMenuClicks.cpp:106 +msgid "!Notice:DeleteSettings" +msgstr "!Notice:DeleteSettings" -#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:126 +#: pcsx2/gui/MemoryCardFile.cpp:77 +msgid "!Notice:Mcd:HasBeenDisabled" +msgstr "!Notice:Mcd:HasBeenDisabled" + +#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:138 msgid "!Notice:BIOS:InvalidSelection" msgstr "!Notice:BIOS:InvalidSelection" -#: pcsx2/gui/Panels/DirPickerPanel.cpp:63 +#: pcsx2/gui/Panels/CpuPanel.cpp:111 +#, fuzzy +msgid "!Panel:EE/IOP:Heading" +msgstr "!Panel:Frameskip:Heading" + +#: pcsx2/gui/Panels/CpuPanel.cpp:178 +#, fuzzy +msgid "!Panel:VUs:Heading" +msgstr "!Panel:Frameskip:Heading" + +#: pcsx2/gui/Panels/DirPickerPanel.cpp:69 msgid "!Notice:DirPicker:CreatePath" msgstr "!Notice:DirPicker:CreatePath" @@ -113,15 +120,15 @@ msgstr "!Notice:DirPicker:CreatePath" msgid "!Panel:Gamefixes:Compat Warning" msgstr "!Panel:Gamefixes:Compat Warning" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:365 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:368 msgid "!Notice:Mcd:Overwrite" msgstr "!Notice:Mcd:Overwrite" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:379 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:384 msgid "!Notice:Mcd:Copy Failed" msgstr "!Notice:Mcd:Copy Failed" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:585 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:596 msgid "!Notice:Mcd:Delete" msgstr "!Notice:Mcd:Delete" @@ -137,7 +144,7 @@ msgstr "!Panel:Usermode:Warning" msgid "!Notice:PluginSelector:ConfirmShutdown" msgstr "!Notice:PluginSelector:ConfirmShutdown" -#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:458 +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:457 msgid "!Notice:PluginSelector:ApplyFailed" msgstr "!Notice:PluginSelector:ApplyFailed" @@ -145,19 +152,26 @@ msgstr "!Notice:PluginSelector:ApplyFailed" msgid "!Panel:Speedhacks:Overview" msgstr "!Panel:Speedhacks:Overview" -#: pcsx2/gui/Panels/VideoPanel.cpp:106 -msgid "!Panel:Framelimiter:Heading" -msgstr "!Panel:Framelimiter:Heading" - -#: pcsx2/gui/Panels/VideoPanel.cpp:230 +#: pcsx2/gui/Panels/VideoPanel.cpp:223 msgid "!Panel:Frameskip:Heading" msgstr "!Panel:Frameskip:Heading" +#: pcsx2/vtlb.cpp:698 +msgid "!Notice:HostVmReserve" +msgstr "!Notice:HostVmReserve" + #: pcsx2/x86/sVU_zerorec.cpp:362 msgid "!Notice:superVU:VirtualMemoryAlloc" msgstr "!Notice:superVU:VirtualMemoryAlloc" -#: common/src/Utilities/Exceptions.cpp:254 -msgid "!Notice:VirtualMemoryMap" -msgstr "!Notice:VirtualMemoryMap" +#~ msgid "!Notice:DocsFolderFileConflict" +#~ msgstr "!Notice:DocsFolderFileConflict" +#~ msgid "!Panel:HasHacksOverrides" +#~ msgstr "!Panel:HasHacksOverrides" + +#~ msgid "!Panel:HasPluginsOverrides" +#~ msgstr "!Panel:HasPluginsOverrides" + +#~ msgid "!Panel:Framelimiter:Heading" +#~ msgstr "!Panel:Framelimiter:Heading" diff --git a/locales/tr_TR/pcsx2_Main.po b/locales/tr_TR/pcsx2_Main.po index 765fa73d90..daa613f0d9 100644 --- a/locales/tr_TR/pcsx2_Main.po +++ b/locales/tr_TR/pcsx2_Main.po @@ -2,12 +2,13 @@ msgid "" msgstr "" "Project-Id-Version: PCSX2 0.9.7\n" "Report-Msgid-Bugs-To: http://code.google.com/p/pcsx2/\n" -"POT-Creation-Date: 2010-12-26 10:00-0500\n" +"POT-Creation-Date: 2011-02-25 18:54+0100\n" "PO-Revision-Date: 2011-01-26 12:40+0200\n" "Last-Translator: PyramidHead \n" "Language-Team: PyramidHead \n" +"Language: \n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-KeywordsList: _;pxL\n" "X-Poedit-SourceCharset: utf-8\n" @@ -17,27 +18,100 @@ msgstr "" "X-Poedit-SearchPath-0: pcsx2\n" "X-Poedit-SearchPath-1: common\n" +#: common/include/Utilities/Exceptions.h:226 +msgid "Parse error" +msgstr "Çözümleme hatası" + +#: common/include/Utilities/Exceptions.h:250 +msgid "Your machine's hardware is incapable of running PCSX2. Sorry dood." +msgstr "Bilgisayarınızın donanımı PCSX2'ye uyumsuz. Kusura bakma birader." + +#: common/src/Utilities/Exceptions.cpp:219 +msgid "Oh noes! Out of memory!" +msgstr "Olamaz! Hafıza hatası!" + +#: common/src/Utilities/Exceptions.cpp:234 +msgid "" +"Virtual memory mapping failure! Your system may have conflicting device " +"drivers, services, or may simply have insufficient memory or resources to " +"meet PCSX2's lofty needs." +msgstr "" +"Sanal hafıza hatası! Sisteminizde çakışan sürücüler ya da hizmetler " +"bulunabilir ya da sisteminiz PCSX2'nin gerektirdiği donanımları " +"karşılayamıyor." + +#: common/src/Utilities/Exceptions.cpp:309 +msgid "Path: " +msgstr "Klasör:" + +#: common/src/Utilities/Exceptions.cpp:313 +msgid "[Unnamed or unknown]" +msgstr "[İsimsiz ya da bilinmeyen]" + +#: common/src/Utilities/Exceptions.cpp:333 +msgid "A file could not be created." +msgstr "Dosya oluşturulamadı." + +#: common/src/Utilities/Exceptions.cpp:353 +msgid "File not found." +msgstr "Dosya bulunamadı." + +#: common/src/Utilities/Exceptions.cpp:373 +msgid "" +"Permission denied while trying to open file, likely due to insufficient user " +"account rights." +msgstr "Dosya açılamadı, muhtemelen hesap ayarlarına göre izniniz yok." + +#: common/src/Utilities/Exceptions.cpp:393 +msgid "" +"Unexpected end of file or stream encountered. File is probably truncated or " +"corrupted." +msgstr "Dosya bozuk." + +#: common/src/Utilities/ThreadingDialogs.cpp:30 +msgid "Waiting for tasks..." +msgstr "İşlemler bekleniyor..." + +#: common/src/Utilities/ThreadingDialogs.cpp:41 +msgid "Waiting for task..." +msgstr "İşlem bekleniyor..." + +#: pcsx2/CDVD/IsoFileFormats.cpp:416 +msgid "ISO mounting failed: PCSX2 is unable to identify the ISO image type." +msgstr "ISO yüklemesi başarısız: PCSX2 ISO dosyası türünü tanımlayamıyor." + #: pcsx2/Elfheader.cpp:266 msgid "Cannot load ELF binary image. The file may be corrupt or incomplete." msgstr "ELF dosyası yüklenemiyor. Dosya bozuk olabilir." #: pcsx2/Elfheader.cpp:268 -msgid "If loading from an ISO image, this error may be caused by an unsupported ISO image type or bug in PCSX2 ISO image support." -msgstr "Eğer bir ISO dosyası yüklemeye çalışıyorsanız bu hata desteklenmeyen dosya formatı ya da PCSX2'deki bir bug'dan kaynaklanıyor olabilir." +msgid "" +"If loading from an ISO image, this error may be caused by an unsupported ISO " +"image type or bug in PCSX2 ISO image support." +msgstr "" +"Eğer bir ISO dosyası yüklemeye çalışıyorsanız bu hata desteklenmeyen dosya " +"formatı ya da PCSX2'deki bir bug'dan kaynaklanıyor olabilir." #: pcsx2/PluginManager.cpp:692 -msgid "The savestate cannot be loaded, as it appears to be corrupt or incomplete." +msgid "" +"The savestate cannot be loaded, as it appears to be corrupt or incomplete." msgstr "Kayıt konumu yüklenemiyor. Dosya bozuk olabilir." #: pcsx2/PluginManager.cpp:702 #, c-format -msgid "%s plugin failed to open. Your computer may have insufficient resources, or incompatible hardware/drivers." -msgstr "%s eklentisi açılamıyor. Bilgisayarınızın donanımı yeterli olmayabilir." +msgid "" +"%s plugin failed to open. Your computer may have insufficient resources, or " +"incompatible hardware/drivers." +msgstr "" +"%s eklentisi açılamıyor. Bilgisayarınızın donanımı yeterli olmayabilir." #: pcsx2/PluginManager.cpp:709 #, c-format -msgid "%s plugin failed to initialize. Your system may have insufficient memory or resources needed." -msgstr "%s eklentisi çalışmıyor. Bilgisayarınızın donanımı yeterli olmayabilir." +msgid "" +"%s plugin failed to initialize. Your system may have insufficient memory or " +"resources needed." +msgstr "" +"%s eklentisi çalışmıyor. Bilgisayarınızın donanımı yeterli olmayabilir." #: pcsx2/PluginManager.cpp:815 #, c-format @@ -51,21 +125,34 @@ msgstr "Seçili %s eklentisi geçerli bir kütüphaneye sahip değil" #: pcsx2/PluginManager.cpp:837 #, c-format -msgid "The configured %s plugin is not a PCSX2 plugin, or is for an older unsupported version of PCSX2." -msgstr "Seçili %s eklentisi geçerli bir PCSX2 eklentisi değil ya da eski ve desteklenmeyen bir PCSX2 sürümüne ait." +msgid "" +"The configured %s plugin is not a PCSX2 plugin, or is for an older " +"unsupported version of PCSX2." +msgstr "" +"Seçili %s eklentisi geçerli bir PCSX2 eklentisi değil ya da eski ve " +"desteklenmeyen bir PCSX2 sürümüne ait." #: pcsx2/PluginManager.cpp:862 -msgid "The plugin reports that your hardware or software/drivers are not supported." +msgid "" +"The plugin reports that your hardware or software/drivers are not supported." msgstr "Donanım, yazılım ya da sürücüleriniz desteklenmiyor." #: pcsx2/PluginManager.cpp:883 -msgid "Configured plugin is not a PCSX2 plugin, or is for an older unsupported version of PCSX2." -msgstr "Seçili eklenti bir PCSX2 eklentisi değil ya da desteklenmeyen eski bir sürüme ait." +msgid "" +"Configured plugin is not a PCSX2 plugin, or is for an older unsupported " +"version of PCSX2." +msgstr "" +"Seçili eklenti bir PCSX2 eklentisi değil ya da desteklenmeyen eski bir " +"sürüme ait." #: pcsx2/PluginManager.cpp:909 #, c-format -msgid "Configured %s plugin is not a valid PCSX2 plugin, or is for an older unsupported version of PCSX2." -msgstr "Ayarlanmış %s eklentisi geçerli bir PCSX2 eklentisi değil ya da eski ve artık desteklenmeyen bir PCSX2 sürümüne ait." +msgid "" +"Configured %s plugin is not a valid PCSX2 plugin, or is for an older " +"unsupported version of PCSX2." +msgstr "" +"Ayarlanmış %s eklentisi geçerli bir PCSX2 eklentisi değil ya da eski ve " +"artık desteklenmeyen bir PCSX2 sürümüne ait." #: pcsx2/PluginManager.cpp:1726 msgid "Unloaded Plugin" @@ -73,13 +160,19 @@ msgstr "Yüklenmemiş Eklenti" #: pcsx2/SaveState.cpp:338 msgid "Cannot load savestate. It is of an unknown or unsupported version." -msgstr "Kayıt konumu yüklenemiyor. Dosya bilinmeyen ya da desteklenmeyen bir sürüme ait." +msgstr "" +"Kayıt konumu yüklenemiyor. Dosya bilinmeyen ya da desteklenmeyen bir sürüme " +"ait." -#: pcsx2/CDVD/IsoFileFormats.cpp:416 -msgid "ISO mounting failed: PCSX2 is unable to identify the ISO image type." -msgstr "ISO yüklemesi başarısız: PCSX2 ISO dosyası türünü tanımlayamıyor." +#: pcsx2/ZipTools/thread_gzip.cpp:82 +msgid "" +"The savestate was not properly saved. The temporary file was created " +"successfully but could not be moved to its final resting place." +msgstr "" +"Kayıt konumu doğru şekilde kaydedilemedi. Geçici dosya oluşturuldu fakat " +"tamamlanamadı." -#: pcsx2/gui/AppConfig.cpp:769 +#: pcsx2/gui/AppConfig.cpp:937 pcsx2/gui/AppConfig.cpp:943 msgid "Failed to overwrite existing settings file; permission was denied." msgstr "Dosya üzerine yazmak için yetkiniz yok." @@ -87,182 +180,204 @@ msgstr "Dosya üzerine yazmak için yetkiniz yok." msgid "Loading PS2 system plugins..." msgstr "PS2 sistem eklentileri yükleniyor..." -#: pcsx2/gui/AppInit.cpp:42 +#: pcsx2/gui/AppInit.cpp:41 msgid "PCSX2 - SSE2 Recommended" msgstr "PCSX2 - SSE2 Önerilir" -#: pcsx2/gui/AppInit.cpp:208 -msgid "SSE extensions are not available. PCSX2 requires a cpu that supports the SSE instruction set." -msgstr "Hiçbir SSE uzantısı desteklenmiyor. PCSX2 SSE destekleyen bir işlemci gerektirir." +#: pcsx2/gui/AppInit.cpp:71 +msgid "" +"SSE extensions are not available. PCSX2 requires a cpu that supports the " +"SSE instruction set." +msgstr "" +"Hiçbir SSE uzantısı desteklenmiyor. PCSX2 SSE destekleyen bir işlemci " +"gerektirir." -#: pcsx2/gui/AppInit.cpp:287 +#: pcsx2/gui/AppInit.cpp:154 msgid "PCSX2 Recompiler Error(s)" msgstr "PCSX2 Derleyici Hataları" -#: pcsx2/gui/AppInit.cpp:360 +#: pcsx2/gui/AppInit.cpp:227 msgid "All options are for the current session only and will not be saved.\n" msgstr "Tüm ayarlar şimdiki oturum için geçerlidir ve kaydedilmeyecektir.\n" -#: pcsx2/gui/AppInit.cpp:370 -#: pcsx2/gui/AppMain.cpp:297 +#: pcsx2/gui/AppInit.cpp:237 pcsx2/gui/AppMain.cpp:290 msgid "IsoFile" msgstr "IsoFile" -#: pcsx2/gui/AppInit.cpp:371 +#: pcsx2/gui/AppInit.cpp:238 msgid "displays this list of command line options" msgstr "komut satırı komutlarının listesini gösterir" -#: pcsx2/gui/AppInit.cpp:372 +#: pcsx2/gui/AppInit.cpp:239 msgid "forces the program log/console to be visible" msgstr "program günlüğünün ya da konsolunun gösterilmesini zorlar" -#: pcsx2/gui/AppInit.cpp:373 +#: pcsx2/gui/AppInit.cpp:240 msgid "use fullscreen GS mode" msgstr "tam ekran GS modu kullan" -#: pcsx2/gui/AppInit.cpp:374 +#: pcsx2/gui/AppInit.cpp:241 msgid "use windowed GS mode" msgstr "pencere GS modu kullan" -#: pcsx2/gui/AppInit.cpp:376 +#: pcsx2/gui/AppInit.cpp:243 msgid "disables display of the gui while running games" msgstr "oyun esnasında kullanıcı panelini gizler" -#: pcsx2/gui/AppInit.cpp:377 +#: pcsx2/gui/AppInit.cpp:244 msgid "executes an ELF image" msgstr "ELF dosyalarını açar" -#: pcsx2/gui/AppInit.cpp:378 +#: pcsx2/gui/AppInit.cpp:245 msgid "boots an empty dvd tray; use to enter the PS2 system menu" msgstr "PS2 sistem menüsünü açmak için boş bir dvd sürücüsünü yürütür" -#: pcsx2/gui/AppInit.cpp:379 +#: pcsx2/gui/AppInit.cpp:246 msgid "boots from the CDVD plugin (overrides IsoFile parameter)" msgstr "CDVD eklentisini çalıştırır (IsoFile parametresini zorlar)" -#: pcsx2/gui/AppInit.cpp:381 +#: pcsx2/gui/AppInit.cpp:248 msgid "disables all speedhacks" msgstr "tüm hız hacklerini devre dışı bırakır" -#: pcsx2/gui/AppInit.cpp:382 +#: pcsx2/gui/AppInit.cpp:249 msgid "use the specified comma or pipe-delimited list of gamefixes." -msgstr "oyun yamaları için belirli nokta ya da virgülle ayrılmış listeyi kullan." +msgstr "" +"oyun yamaları için belirli nokta ya da virgülle ayrılmış listeyi kullan." -#: pcsx2/gui/AppInit.cpp:383 +#: pcsx2/gui/AppInit.cpp:250 msgid "disables fast booting" msgstr "çabuk çalıştırmayı devre dışı bırakır" -#: pcsx2/gui/AppInit.cpp:385 +#: pcsx2/gui/AppInit.cpp:252 msgid "changes the configuration file path" msgstr "ayar dosyasının konumunu değiştirir" -#: pcsx2/gui/AppInit.cpp:386 +#: pcsx2/gui/AppInit.cpp:253 msgid "specifies the PCSX2 configuration file to use" msgstr "kullanılacak PCSX2 ayar dosyasını belirler" -#: pcsx2/gui/AppInit.cpp:387 +#: pcsx2/gui/AppInit.cpp:254 #, c-format msgid "forces %s to start the First-time Wizard" msgstr "%s 'nın İlk Ayar Sihirbazının çalıştırmasını zorlar" -#: pcsx2/gui/AppInit.cpp:391 +#: pcsx2/gui/AppInit.cpp:255 +msgid "enables portable mode operation (requires admin/root access)" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:259 #, c-format msgid "specify the file to use as the %s plugin" msgstr "%s eklentisi olarak kullanılacak dosyayı belirle" -#: pcsx2/gui/AppInit.cpp:439 +#: pcsx2/gui/AppInit.cpp:307 #, c-format msgid "Plugin Override Error - %s" msgstr "Eklenti Hatası - %s" -#: pcsx2/gui/AppInit.cpp:442 +#: pcsx2/gui/AppInit.cpp:310 #, c-format msgid "" -"%s Plugin Override Error! The following file does not exist or is not a valid %s plugin:\n" +"%s Plugin Override Error! The following file does not exist or is not a " +"valid %s plugin:\n" "\n" msgstr "" "%s Eklenti Hatası! %s eklentisi bulunamıyor ya da bozuk:\n" "\n" -#: pcsx2/gui/AppInit.cpp:449 +#: pcsx2/gui/AppInit.cpp:317 #, c-format msgid "Press OK to use the default configured plugin, or Cancel to close %s." -msgstr "Varsayılan eklentiyi kullanmak için Tamam'a basın ya da %s 'ı kapatmak için İptal'e basın. " +msgstr "" +"Varsayılan eklentiyi kullanmak için Tamam'a basın ya da %s 'ı kapatmak için " +"İptal'e basın. " -#: pcsx2/gui/AppInit.cpp:626 -#: pcsx2/gui/AppInit.cpp:638 -#, c-format -msgid "" -"\n" -"\n" -"Press OK to close %s." +#: pcsx2/gui/AppInit.cpp:495 +msgid "PCSX2 Error: Hardware Deficiency" +msgstr "PCSX2 Hatası: Donanım Yetersiz" + +#: pcsx2/gui/AppInit.cpp:495 pcsx2/gui/AppInit.cpp:507 +#, fuzzy, c-format +msgid "Press OK to close %s." msgstr "" "\n" "\n" " %s 'ı kapatmak için Tamam'a basın." -#: pcsx2/gui/AppInit.cpp:626 -msgid "PCSX2 Error: Hardware Deficiency" -msgstr "PCSX2 Hatası: Donanım Yetersiz" - -#: pcsx2/gui/AppInit.cpp:639 +#: pcsx2/gui/AppInit.cpp:508 #, c-format msgid "%s Critical Error" msgstr "%s Önemli Hata" -#: pcsx2/gui/AppInit.cpp:807 +#: pcsx2/gui/AppInit.cpp:676 msgid "OK" msgstr "Tamam" -#: pcsx2/gui/AppInit.cpp:808 +#: pcsx2/gui/AppInit.cpp:677 msgid "&OK" msgstr "&Tamam" -#: pcsx2/gui/AppInit.cpp:809 +#: pcsx2/gui/AppInit.cpp:678 msgid "Cancel" msgstr "İptal" -#: pcsx2/gui/AppInit.cpp:810 +#: pcsx2/gui/AppInit.cpp:679 msgid "&Cancel" msgstr "&İptal" -#: pcsx2/gui/AppInit.cpp:811 +#: pcsx2/gui/AppInit.cpp:680 msgid "&Apply" msgstr "&Uygula" -#: pcsx2/gui/AppInit.cpp:812 +#: pcsx2/gui/AppInit.cpp:681 msgid "&Next >" msgstr "&İleri >" -#: pcsx2/gui/AppInit.cpp:813 -msgid "&Back >" -msgstr "&Geri >" +#: pcsx2/gui/AppInit.cpp:682 +#, fuzzy +msgid "< &Back" +msgstr "&Geri" -#: pcsx2/gui/AppInit.cpp:814 +#: pcsx2/gui/AppInit.cpp:683 msgid "&Back" msgstr "&Geri" -#: pcsx2/gui/AppInit.cpp:815 +#: pcsx2/gui/AppInit.cpp:684 msgid "&Finish" msgstr "&Tamamla" -#: pcsx2/gui/AppInit.cpp:817 +#: pcsx2/gui/AppInit.cpp:685 +msgid "&Yes" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:686 +#, fuzzy +msgid "&No" +msgstr "Hayır" + +#: pcsx2/gui/AppInit.cpp:687 +#, fuzzy +msgid "Browse" +msgstr "Göz at..." + +#: pcsx2/gui/AppInit.cpp:689 msgid "&Save" msgstr "&Kaydet" -#: pcsx2/gui/AppInit.cpp:818 +#: pcsx2/gui/AppInit.cpp:690 msgid "Save &As..." msgstr "&Farklı Kaydet" -#: pcsx2/gui/AppInit.cpp:819 +#: pcsx2/gui/AppInit.cpp:691 msgid "&Help" msgstr "&Yardım" -#: pcsx2/gui/AppInit.cpp:820 +#: pcsx2/gui/AppInit.cpp:692 msgid "&Home" msgstr "Web Sayfası" -#: pcsx2/gui/AppMain.cpp:85 +#: pcsx2/gui/AppMain.cpp:78 msgid "" "\n" "\n" @@ -272,47 +387,74 @@ msgstr "" "\n" "Eklenti Ayarlama Paneli'ne gitmek için Tamam'a basın." -#: pcsx2/gui/AppMain.cpp:138 -#: pcsx2/gui/AppMain.cpp:152 -msgid "Warning! System plugins have not been loaded. PCSX2 may be inoperable." +#: pcsx2/gui/AppMain.cpp:131 pcsx2/gui/AppMain.cpp:145 +msgid "" +"Warning! System plugins have not been loaded. PCSX2 may be inoperable." msgstr "Dikkat! Eklentiler yüklenemedi. PCSX2 çalışmayabilir." -#: pcsx2/gui/AppMain.cpp:307 +#: pcsx2/gui/AppMain.cpp:300 #, c-format msgid "%s Commandline Options" msgstr "%s Konsol Ayarları" -#: pcsx2/gui/AppMain.cpp:511 +#: pcsx2/gui/AppMain.cpp:503 msgid "PS2 BIOS Error" msgstr "PS2 BIOS Hatası" -#: pcsx2/gui/AppMain.cpp:512 -msgid "" -"\n" -"Press Ok to go to the BIOS Configuration Panel." +#: pcsx2/gui/AppMain.cpp:504 +#, fuzzy +msgid "Press Ok to go to the BIOS Configuration Panel." msgstr "" "\n" "BIOS Ayarlama Paneli'ne gitmek için Tamam'a basın." -#: pcsx2/gui/AppMain.cpp:564 +#: pcsx2/gui/AppMain.cpp:556 msgid "PCSX2 Unresponsive Thread" msgstr "PCSX2 Yanıt Vermeyen İşlem" -#: pcsx2/gui/AppMain.cpp:574 +#: pcsx2/gui/AppMain.cpp:566 msgid "Terminate" msgstr "Sonlandır" -#: pcsx2/gui/AppMain.cpp:884 +#: pcsx2/gui/AppMain.cpp:876 msgid "Executing PS2 Virtual Machine..." msgstr "Sanal PS2 çalıştırılıyor..." +#: pcsx2/gui/AppRes.cpp:72 +msgid "Browse for an Iso that is not in your recent history." +msgstr "Bir ISO dosyası seçmek için." + #: pcsx2/gui/AppRes.cpp:72 msgid "Browse..." msgstr "Göz at..." -#: pcsx2/gui/AppRes.cpp:72 -msgid "Browse for an Iso that is not in your recent history." -msgstr "Bir ISO dosyası seçmek için." +#: pcsx2/gui/AppUserMode.cpp:101 +msgid "The following folders exist, but are not writable:" +msgstr "" + +#: pcsx2/gui/AppUserMode.cpp:106 +msgid "The following folders are missing and cannot be created:" +msgstr "" + +#: pcsx2/gui/AppUserMode.cpp:146 +#, fuzzy, c-format +msgid "Portable mode error - %s" +msgstr "Eklenti Hatası - %s" + +#: pcsx2/gui/AppUserMode.cpp:159 +msgid "" +"PCSX2 has been installed as a portable application but cannot run due to the " +"following errors:" +msgstr "" + +#: pcsx2/gui/AppUserMode.cpp:167 +#, fuzzy +msgid "Switch to User Documents Mode" +msgstr "Belgelerim (önerilen)" + +#: pcsx2/gui/ApplyState.h:55 +msgid "Cannot apply new settings, one of the settings is invalid." +msgstr "Ayarlar uygulanamıyor. Yanlış ayar yapılmış olabilir." #: pcsx2/gui/ConsoleLogger.cpp:120 msgid "Save log question" @@ -322,7 +464,7 @@ msgstr "Günlük sorgulamasını kaydet" msgid "Small" msgstr "Küçük" -#: pcsx2/gui/ConsoleLogger.cpp:414 +#: pcsx2/gui/ConsoleLogger.cpp:414 pcsx2/gui/Panels/CpuPanel.cpp:38 msgid "Normal" msgstr "Normal" @@ -362,7 +504,7 @@ msgstr "Temizle" msgid "Clear the log window contents" msgstr "Günlük penceresini temizle" -#: pcsx2/gui/ConsoleLogger.cpp:432 +#: pcsx2/gui/ConsoleLogger.cpp:432 pcsx2/gui/Dialogs/SysConfigDialog.cpp:280 msgid "Appearance" msgstr "Görünüm" @@ -406,529 +548,20 @@ msgstr "Günlük" msgid "&Sources" msgstr "Kaynaklar" -#: pcsx2/gui/ExecutorThread.cpp:432 -msgid "Press Cancel to attempt to cancel the action." -msgstr "İşlemi iptal etmek için İptal'e tıklayın" - -#: pcsx2/gui/ExecutorThread.cpp:433 -#, c-format -msgid "Press Terminate to kill %s immediately." -msgstr "%s 'ı sonlandırmak için Sonlandır'a basın." - -#: pcsx2/gui/ExecutorThread.cpp:436 -msgid "Terminate App" -msgstr "İşlemi Sonlandır" - -#: pcsx2/gui/FrameForGS.cpp:254 -msgid "GS Output is Disabled!" -msgstr "GS Çıkışı devre dışı!" - -#: pcsx2/gui/GlobalCommands.cpp:243 -msgid "Save state" -msgstr "Kayıt konumu" - -#: pcsx2/gui/GlobalCommands.cpp:244 -msgid "Saves the virtual machine state to the current slot." -msgstr "Oyun konumunu şimdiki slota kaydeder." - -#: pcsx2/gui/GlobalCommands.cpp:249 -msgid "Load state" -msgstr "Konum yükle" - -#: pcsx2/gui/GlobalCommands.cpp:250 -msgid "Loads a virtual machine state from the current slot." -msgstr "Oyun konumunu şimdiki slottan yükler." - -#: pcsx2/gui/GlobalCommands.cpp:255 -msgid "Cycle to next slot" -msgstr "Bir sonraki slota geç" - -#: pcsx2/gui/GlobalCommands.cpp:256 -msgid "Cycles the current save slot in +1 fashion!" -msgstr "Kayıt işlemini sürekli bir sonraki slota kaydederek yapar." - -#: pcsx2/gui/GlobalCommands.cpp:261 -msgid "Cycle to prev slot" -msgstr "Önceki slota geç" - -#: pcsx2/gui/GlobalCommands.cpp:262 -msgid "Cycles the current save slot in -1 fashion!" -msgstr "Kayıt işlemini sürekli bir önceki slota kaydederek yapar." - -#: pcsx2/gui/IsoDropTarget.cpp:57 -msgid "Drag and Drop Error" -msgstr "Sürükle-Bırak Hatası" - -#: pcsx2/gui/IsoDropTarget.cpp:58 -#, c-format -msgid "It is an error to drop multiple files onto a %s window. One at a time please, thank you." -msgstr "%s ekranına çok fazla dosya sürüklediğinizde böyle bir hata oluşur. Tek seferde tek dosya, teşekkürler." - -#: pcsx2/gui/IsoDropTarget.cpp:89 -#: pcsx2/gui/MainMenuClicks.cpp:343 -msgid "Confirm PS2 Reset" -msgstr "PS2 yeniden başlatmayı onayla" - -#: pcsx2/gui/IsoDropTarget.cpp:91 -#, c-format -msgid "" -"You have dropped the following ELF binary into %s:\n" -"\n" -msgstr "" -"%s ELF dosyasını şuraya sürüklediniz:\n" -"\n" - -#: pcsx2/gui/IsoDropTarget.cpp:135 -#, c-format -msgid "You have dropped the following ISO image into %s:" -msgstr "%s ISO dosyasını şuraya sürüklediniz:" - -#: pcsx2/gui/MainFrame.cpp:41 -msgid "Other..." -msgstr "Diğer..." - -#: pcsx2/gui/MainFrame.cpp:317 -msgid "Show Console" -msgstr "Konsolu göster" - -#: pcsx2/gui/MainFrame.cpp:318 -msgid "Console to Stdio" -msgstr "Console'dan Stdio'ya" - -#: pcsx2/gui/MainFrame.cpp:331 -msgid "&System" -msgstr "Sistem" - -#: pcsx2/gui/MainFrame.cpp:332 -msgid "CD&VD" -msgstr "CDVD" - -#: pcsx2/gui/MainFrame.cpp:333 -msgid "&Config" -msgstr "Ayarlar" - -#: pcsx2/gui/MainFrame.cpp:334 -msgid "&Misc" -msgstr "Diğer Ayarlar" - -#: pcsx2/gui/MainFrame.cpp:336 -msgid "&Debug" -msgstr "Günlükleme" - -#: pcsx2/gui/MainFrame.cpp:348 -#, c-format -msgid "%s %d.%d.%d.%d%s (svn) %s" -msgstr "%s %d.%d.%d.%d%s (svn) %s" - -#: pcsx2/gui/MainFrame.cpp:354 -#, c-format -msgid "%s %d.%d.%d %s" -msgstr "%s %d.%d.%d %s" - -#: pcsx2/gui/MainFrame.cpp:355 -msgid "(modded)" -msgstr "(modded)" - -#: pcsx2/gui/MainFrame.cpp:392 -#: pcsx2/gui/MainFrame.cpp:394 -#: pcsx2/gui/MainFrame.cpp:400 -msgid "Initializing..." -msgstr "Başlatılıyor..." - -#: pcsx2/gui/MainFrame.cpp:396 -msgid "Run ELF..." -msgstr "ELF Dosyası Aç" - -#: pcsx2/gui/MainFrame.cpp:397 -msgid "For running raw PS2 binaries directly" -msgstr "Ham PS2 kütüphanelerini doğrudan yürütmek için" - -#: pcsx2/gui/MainFrame.cpp:411 -msgid "Enable Patches" -msgstr "Yamaları Etkinleştir" - -#: pcsx2/gui/MainFrame.cpp:414 -msgid "Enable Cheats" -msgstr "Hileleri Etkinleştir" - -#: pcsx2/gui/MainFrame.cpp:417 -msgid "Enable Host Filesystem" -msgstr "Ana Sistem Dosyasını Etkinleştir" - -#: pcsx2/gui/MainFrame.cpp:422 -msgid "Shutdown" -msgstr "Kapat" - -#: pcsx2/gui/MainFrame.cpp:423 -msgid "Wipes all internal VM states and shuts down plugins." -msgstr "Tüm PS2 konumlarını temizler ve eklentileri kapatır." - -#: pcsx2/gui/MainFrame.cpp:425 -msgid "Exit" -msgstr "Çıkış" - -#: pcsx2/gui/MainFrame.cpp:426 -#, c-format -msgid "Closing %s may be hazardous to your health" -msgstr "%s 'yi kapatmak sağlığınız için zararlı olabilir" - -#: pcsx2/gui/MainFrame.cpp:433 -msgid "Iso Selector" -msgstr "Iso Seçici" - -#: pcsx2/gui/MainFrame.cpp:434 -msgid "Plugin Menu" -msgstr "Eklenti Menüsü" - -#: pcsx2/gui/MainFrame.cpp:437 -msgid "Iso" -msgstr "Iso" - -#: pcsx2/gui/MainFrame.cpp:437 -msgid "Makes the specified ISO image the CDVD source." -msgstr "Seçili ISO dosyasını CDVD için kullanır." - -#: pcsx2/gui/MainFrame.cpp:438 -msgid "Plugin" -msgstr "Eklenti" - -#: pcsx2/gui/MainFrame.cpp:438 -msgid "Uses an external plugin as the CDVD source." -msgstr "CDVD kaynağı olarak seçili eklentiyi kullanır." - -#: pcsx2/gui/MainFrame.cpp:439 -msgid "No disc" -msgstr "CD'siz" - -#: pcsx2/gui/MainFrame.cpp:439 -msgid "Use this to boot into your virtual PS2's BIOS configuration." -msgstr "Sanal PS2'nin BIOS ayarlarını açmak için bunu kullanın." - -#: pcsx2/gui/MainFrame.cpp:447 -msgid "Emulation &Settings" -msgstr "Emülatör Ayarları" - -#: pcsx2/gui/MainFrame.cpp:448 -msgid "&Memory cards" -msgstr "Hafıza Kartları" - -#: pcsx2/gui/MainFrame.cpp:449 -msgid "&Plugin/BIOS Selector" -msgstr "Eklenti/BIOS Seçici" - -#: pcsx2/gui/MainFrame.cpp:452 -msgid "Game Database Editor" -msgstr "Oyun Veritabanı Düzenleyici" - -#: pcsx2/gui/MainFrame.cpp:453 -msgid "Appearance..." -msgstr "Görünüm..." - -#: pcsx2/gui/MainFrame.cpp:458 -msgid "&Video (GS)" -msgstr "Video (GS)" - -#: pcsx2/gui/MainFrame.cpp:459 -msgid "&Audio (SPU2)" -msgstr "Ses (SPU2)" - -#: pcsx2/gui/MainFrame.cpp:460 -msgid "&Controllers (PAD)" -msgstr "Kontroller (PAD)" - -#: pcsx2/gui/MainFrame.cpp:461 -msgid "Dev9" -msgstr "Dev9" - -#: pcsx2/gui/MainFrame.cpp:462 -msgid "USB" -msgstr "USB" - -#: pcsx2/gui/MainFrame.cpp:463 -msgid "Firewire" -msgstr "Firewire" - -#: pcsx2/gui/MainFrame.cpp:466 -msgid "Patches (unimplemented)" -msgstr "Yamalar (düzenlenmedi)" - -#: pcsx2/gui/MainFrame.cpp:469 -msgid "Multitap 1" -msgstr "Multitap 1" - -#: pcsx2/gui/MainFrame.cpp:470 -msgid "Multitap 2" -msgstr "Multitap 2" - -#: pcsx2/gui/MainFrame.cpp:473 -msgid "Clear all settings..." -msgstr "Tüm ayarları sil..." - -#: pcsx2/gui/MainFrame.cpp:474 -#, c-format -msgid "Clears all %s settings and re-runs the startup wizard." -msgstr "Tüm %s ayarlarını siler ve başlangıç sihirbazını çalıştırır." - -#: pcsx2/gui/MainFrame.cpp:490 -msgid "Print CDVD Info" -msgstr "CDVD bilgisini yazdır" - -#: pcsx2/gui/MainFrame.cpp:497 -msgid "About..." -msgstr "Hakkında..." - -#: pcsx2/gui/MainFrame.cpp:499 -msgid "Open Debug Window..." -msgstr "Geliştirici Ekranı Açılıyor..." - -#: pcsx2/gui/MainFrame.cpp:500 -msgid "Memory Dump..." -msgstr "Hafıza Dökümü..." - -#: pcsx2/gui/MainFrame.cpp:501 -msgid "Logging..." -msgstr "Günlükleniyor..." - -#: pcsx2/gui/MainFrame.cpp:578 -msgid "Suspend" -msgstr "Duraklat" - -#: pcsx2/gui/MainFrame.cpp:579 -msgid "Safely pauses emulation and preserves the PS2 state." -msgstr "Emülatörü güvenli bir şekilde duraklatır." - -#: pcsx2/gui/MainFrame.cpp:586 -msgid "Resume" -msgstr "Devam Et" - -#: pcsx2/gui/MainFrame.cpp:587 -msgid "Resumes the suspended emulation state." -msgstr "Emülatörün çalışmasını kaldığı yerden devam ettirir." - -#: pcsx2/gui/MainFrame.cpp:591 -msgid "Suspend/Resume" -msgstr "Duraklat/Devam Et" - -#: pcsx2/gui/MainFrame.cpp:592 -msgid "No emulation state is active; cannot suspend or resume." -msgstr "Etkin bir emülatör konumu yok; duraklatma ya da devam etme mümkün değil." - -#: pcsx2/gui/MainFrame.cpp:601 -msgid "Restart" -msgstr "Yeniden Başlat" - -#: pcsx2/gui/MainFrame.cpp:602 -msgid "Simulates hardware reset of the PS2 virtual machine." -msgstr "PS2'deki yeniden başlatma işlevinin aynısını yapar." - -#: pcsx2/gui/MainFrame.cpp:607 -msgid "No emulation state is active; boot something first." -msgstr "Etkin bir emülatör konumu yok; önce bir şeyler başlatın." - -#: pcsx2/gui/MainFrame.cpp:615 -msgid "Reboot CDVD (full)" -msgstr "CDVD'yi yeniden başlat (Tam)" - -#: pcsx2/gui/MainFrame.cpp:616 -msgid "Hard reset of the active VM." -msgstr "Seçili Sanal Makineyi tamamen yeniden başlatır." - -#: pcsx2/gui/MainFrame.cpp:620 -msgid "Boot CDVD (full)" -msgstr "CDVD'yi çalıştır (Tam)" - -#: pcsx2/gui/MainFrame.cpp:621 -msgid "Boot the VM using the current DVD or Iso source media" -msgstr "Seçili DVD ya da Iso ortamı kaynağını kullanarak sanal makineyi başlat" - -#: pcsx2/gui/MainFrame.cpp:629 -msgid "Reboot CDVD (fast)" -msgstr "CDVD'yi yeniden başlat (Hızlı)" - -#: pcsx2/gui/MainFrame.cpp:630 -msgid "Reboot using BOOT2 injection (skips splash screens)" -msgstr "Başlangıç ekranlarını doğrudan atlar" - -#: pcsx2/gui/MainFrame.cpp:634 -msgid "Boot CDVD (fast)" -msgstr "CDVD'yi çalıştır (Hızlı)" - -#: pcsx2/gui/MainFrame.cpp:635 -msgid "Use BOOT2 injection to skip PS2 startup and splash screens" -msgstr "PS2 başlangıc ekranlarını ve BIOS'u atlar" - -#: pcsx2/gui/MainFrame.cpp:674 -#: pcsx2/gui/MainFrame.cpp:709 -msgid "No plugin loaded" -msgstr "Yüklü eklenti yok" - -#: pcsx2/gui/MainFrame.cpp:679 -msgid "Core GS Settings..." -msgstr "GS ayarları..." - -#: pcsx2/gui/MainFrame.cpp:680 -msgid "Modify hardware emulation settings regulated by the PCSX2 core virtual machine." -msgstr "PCSX2'nin PS2 donanım taklidi seçeneklerini düzenleyin" - -#: pcsx2/gui/MainFrame.cpp:682 -msgid "Window Settings..." -msgstr "Pencere Ayarları..." - -#: pcsx2/gui/MainFrame.cpp:683 -msgid "Modify window and appearance options, including aspect ratio." -msgstr "Görüntü" - -#: pcsx2/gui/MainFrame.cpp:690 -msgid "Plugin Settings..." -msgstr "Eklenti Ayarları..." - -#: pcsx2/gui/MainFrame.cpp:691 -#, c-format -msgid "Opens the %s plugin's advanced settings dialog." -msgstr "%s eklentisinin gelişmiş ayarlar iletisini açar." - -#: pcsx2/gui/MainMenuClicks.cpp:118 -msgid "Reset all settings?" -msgstr "Tüm ayarları silmek istediğinden emin misin?" - -#: pcsx2/gui/MainMenuClicks.cpp:146 -msgid "Confirm ISO image change" -msgstr "ISO kalıpı değiştirmeyi onayla" - -#: pcsx2/gui/MainMenuClicks.cpp:152 -msgid "Do you want to swap discs or boot the new image (via system reset)?" -msgstr "CD mi değiştirmek yoksa programı yeniden başlatarak yeni bir kalıp dosyası mı açmak istiyorsunuz?" - -#: pcsx2/gui/MainMenuClicks.cpp:154 -#: pcsx2/gui/MainMenuClicks.cpp:197 -msgid "Swap Disc" -msgstr "CD Değiştir" - -#: pcsx2/gui/MainMenuClicks.cpp:187 -msgid "Confirm CDVD source change" -msgstr "CDVD kaynak değişimini onayla" - -#: pcsx2/gui/MainMenuClicks.cpp:190 -#, c-format -msgid "You've selected to switch the CDVD source from %s to %s." -msgstr "CDVD kaynağını %s 'dan %s 'a değiştirdiniz." - -#: pcsx2/gui/MainMenuClicks.cpp:194 -msgid "Do you want to swap discs or boot the new image (system reset)?" -msgstr "CD mi değiştirmek istiyorsunuz yoksa yeni bir kalıp dosyası açmak mı (yeniden başlatır)?" - -#: pcsx2/gui/MainMenuClicks.cpp:262 -#, c-format -msgid "All Supported (%s)" -msgstr "Tüm Desteklenenler (%s)" - -#: pcsx2/gui/MainMenuClicks.cpp:265 -#, c-format -msgid "Disc Images (%s)" -msgstr "CD Kalıpları (%s)" - -#: pcsx2/gui/MainMenuClicks.cpp:268 -#, c-format -msgid "Blockdumps (%s)" -msgstr "Yığınlar (%s)" - -#: pcsx2/gui/MainMenuClicks.cpp:271 -#: pcsx2/gui/MainMenuClicks.cpp:292 -msgid "All Files (*.*)" -msgstr "Tüm Dosyalar (*.*)" - -#: pcsx2/gui/MainMenuClicks.cpp:274 -msgid "Select CDVD source iso..." -msgstr "CDVD nin çalıştıracağı ISO'yu seçin..." - -#: pcsx2/gui/MainMenuClicks.cpp:291 -msgid "Select ELF file..." -msgstr "ELF dosyası seçin..." - -#: pcsx2/gui/MainMenuClicks.cpp:317 -msgid "ISO file not found!" -msgstr "ISO dosyası bulunamadı!" - -#: pcsx2/gui/MainMenuClicks.cpp:319 -msgid "" -"An error occurred while trying to open the file:\n" -"\n" -msgstr "" -"Dosyayı açmaya çalışırken bir hata oluştu:\n" -"\n" - -#: pcsx2/gui/MainMenuClicks.cpp:320 -msgid "Error: The configured ISO file does not exist. Click OK to select a new ISO source for CDVD." -msgstr "Hata: Seçili ISO dosyası bulunamıyor. CDVD için yeni bir ISO kaynağı seçmek için Tamam'a basın." - -#: pcsx2/gui/MainMenuClicks.cpp:386 -msgid "" -"You have selected the following ISO image into PCSX2:\n" -"\n" -msgstr "" -"PCSX2 için şu ISO kalıbını seçtiniz:\n" -"\n" - -#: pcsx2/gui/MemoryCardFile.cpp:182 -#, c-format -msgid "" -"Could not create a memory card file: \n" -"\n" -"%s\n" -"\n" -msgstr "" -"Hafıza kartı oluşturulamıyor: \n" -"\n" -"%s\n" -"\n" - -#: pcsx2/gui/MemoryCardFile.cpp:200 -#, c-format -msgid "" -"Access denied to memory card file: \n" -"\n" -"%s\n" -"\n" -msgstr "" -"Hafıza kartına erilemiyor: \n" -"\n" -"%s\n" -"\n" - -#: pcsx2/gui/SysState.cpp:283 -msgid "Cannot load this savestate. The state is from an incompatible edition of PCSX2 that is either newer than this version, or is no longer supported." -msgstr "Yüklü konum yüklenemiyor. Dosya büyük ihtimalle farklı bir PCSX2 sürümüyle kaydedilmiş." - -#: pcsx2/gui/SysState.cpp:290 -msgid "Cannot load this savestate. The state is an unsupported version, likely created by a newer edition of PCSX2." -msgstr "Yüklü konum yüklenemiyor. Dosya büyük ihtimalle farklı bir PCSX2 sürümüyle kaydedilmiş." - -#: pcsx2/gui/SysState.cpp:513 -msgid "This savestate cannot be loaded because it is not a valid gzip archive. It may have been created by an older unsupported version of PCSX2, or it may be corrupted." -msgstr "Kayıt konumu geçerli bir gzip arşivi olmadığından yüklenemedi. Dosya muhtemelen farklı bir PCSX2 sürümünde oluşturulmuş ya da bozuk." - -#: pcsx2/gui/SysState.cpp:572 -msgid "This file is not a valid PCSX2 savestate. See the logfile for details." -msgstr "Bu kayıt konumu geçerli bir PCSX2 dosyası değil. Ayrıntılar için günlük dosyasına bakın." - -#: pcsx2/gui/SysState.cpp:591 -msgid "This savestate cannot be loaded due to missing critical components. See the log file for details." -msgstr "Kayıt konumu bazı kritik bileşenler eksik olduğundan yüklenemedi. Ayrıntılar için günlük dosyasına bakın." - #: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:35 #, c-format msgid "About %s" msgstr "%s Hakkında" -#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:95 +#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:97 msgid "A Playstation 2 Emulator" msgstr "Playstation 2 Emülatörü" -#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:99 +#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:101 msgid "PCSX2 Official Website and Forums" msgstr "PCSX2 Resmi Website ve Forumu" -#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:103 +#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:105 msgid "PCSX2 Official Svn Repository at Googlecode" msgstr "PCSX2 Resmi SVN Sayfası" @@ -936,11 +569,11 @@ msgstr "PCSX2 Resmi SVN Sayfası" msgid "Assertion Failure - " msgstr "Onaylama İşlemi Hatası" -#: pcsx2/gui/Dialogs/BaseConfigurationDialog.cpp:139 +#: pcsx2/gui/Dialogs/BaseConfigurationDialog.cpp:189 msgid "Saves a snapshot of this settings panel to a PNG file." msgstr "Bu ayarlar ekranını bir PNG olarak kaydeder." -#: pcsx2/gui/Dialogs/BaseConfigurationDialog.cpp:268 +#: pcsx2/gui/Dialogs/BaseConfigurationDialog.cpp:300 msgid "Save dialog screenshots to..." msgstr "İleti ekran görüntülerini şu klasöre kaydet..." @@ -953,12 +586,20 @@ msgid "Do not show this dialog again." msgstr "Bu iletiyi bir daha gösterme." #: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:199 -msgid "Disables this popup and whatever response you select here will be automatically used from now on." -msgstr "Bu pencerenin çıkmasını engeller ve bundan sonra bu seçim geçerli olarak kullanılır." +msgid "" +"Disables this popup and whatever response you select here will be " +"automatically used from now on." +msgstr "" +"Bu pencerenin çıkmasını engeller ve bundan sonra bu seçim geçerli olarak " +"kullanılır." #: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:201 -msgid "The popup will not be shown again. This setting can be undone from the settings panels." -msgstr "Bu pencere bir daha gösterilmeyecek. Bu ayar ayarlar panelinden değiştirilebilir." +msgid "" +"The popup will not be shown again. This setting can be undone from the " +"settings panels." +msgstr "" +"Bu pencere bir daha gösterilmeyecek. Bu ayar ayarlar panelinden " +"değiştirilebilir." #: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:247 #: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:292 @@ -979,9 +620,10 @@ msgid "Create new memory card" msgstr "Hafıza kartı oluştur" #: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:60 -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:123 -#: pcsx2/gui/Panels/DirPickerPanel.cpp:68 -#: pcsx2/gui/Panels/DirPickerPanel.cpp:228 +#: pcsx2/gui/Panels/DirPickerPanel.cpp:74 +#: pcsx2/gui/Panels/DirPickerPanel.cpp:271 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:464 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:511 msgid "Create" msgstr "Oluştur" @@ -1006,8 +648,12 @@ msgid "8 MB [most compatible]" msgstr "8 MB [en uyumlusu]" #: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:163 -msgid "This is the standard Sony-provisioned size, and is supported by all games and BIOS versions." -msgstr "Standart Sony boyutu. Tüm BIOS versiyonları ve oyunlar tarafından desteklenir." +msgid "" +"This is the standard Sony-provisioned size, and is supported by all games " +"and BIOS versions." +msgstr "" +"Standart Sony boyutu. Tüm BIOS versiyonları ve oyunlar tarafından " +"desteklenir." #: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:167 msgid "16 MB" @@ -1015,8 +661,11 @@ msgstr "16 MB" #: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:167 #: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:171 -msgid "A typical size for 3rd-party memory cards which should work with most games." -msgstr "3. parti hafıza kartlarının genel boyutu. Çoğu oyunda sorun çıkarmaması gerekir." +msgid "" +"A typical size for 3rd-party memory cards which should work with most games." +msgstr "" +"3. parti hafıza kartlarının genel boyutu. Çoğu oyunda sorun çıkarmaması " +"gerekir." #: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:171 msgid "32 MB" @@ -1027,35 +676,42 @@ msgid "64 MB" msgstr "64 MB" #: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:175 -msgid "Low compatibility warning: Yes it's very big, but may not work with many games." -msgstr "Düşük uyumluluk uyarısı: Evet hız artışı çok fazla fakat çoğu oyunla çalışmayabilir." +msgid "" +"Low compatibility warning: Yes it's very big, but may not work with many " +"games." +msgstr "" +"Düşük uyumluluk uyarısı: Evet hız artışı çok fazla fakat çoğu oyunla " +"çalışmayabilir." -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:46 -msgid "Settings" -msgstr "Ayarlar" - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:46 +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:47 #, c-format msgid "Select a folder for %s settings" msgstr "%s ayarları için bir klasör seçin" -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:72 -#: pcsx2/gui/Dialogs/PickUserModeDialog.cpp:29 -#, c-format -msgid "%s is starting from a new or unknown folder and needs to be configured." -msgstr "%s bilinmeyen ya da yeni bir klasörden başlatıldı ve ayarlanması gerekiyor." +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:47 +msgid "Settings" +msgstr "Ayarlar" -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:118 -#: pcsx2/gui/Panels/DirPickerPanel.cpp:223 -msgid "Create folder?" -msgstr "Klasörü oluşturmak istediğinizden emin misiniz?" +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:81 +#, fuzzy +msgid "Language selector" +msgstr "Dil Seçici - %s" -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:119 -#, c-format -msgid "%s will create the following folder for documents. You can change this setting later, at any time." -msgstr "%s bu klasörleri oluşturacak. Bu ayarları daha sonra istediğiniz zaman değiştirebilirsiniz." +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:84 +msgid "" +"Change the language only if you need to.\n" +"The system default should be fine for most operating systems." +msgstr "" -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:132 +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:104 +msgid "Configuration Guides (online)" +msgstr "" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:108 +msgid "Readme / FAQ (Offline/PDF)" +msgstr "" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:117 #, c-format msgid "%s First Time Configuration" msgstr "%s İlk Kullanım Ayarları Sihirbazı" @@ -1106,90 +762,606 @@ msgstr "Hafıza kartlarını kopyalamak ya da değiştirmek için sürükleyin." msgid "PCSX2 First Time configuration" msgstr "PCSX2 İlk Kullanım ayarları" +#: pcsx2/gui/Dialogs/PickUserModeDialog.cpp:29 +#, c-format +msgid "%s is starting from a new or unknown folder and needs to be configured." +msgstr "" +"%s bilinmeyen ya da yeni bir klasörden başlatıldı ve ayarlanması gerekiyor." + #: pcsx2/gui/Dialogs/StuckThreadDialog.cpp:28 msgid "PCSX2 Thread is not responding" msgstr "PCSX2 İşlemi yanıt vermiyor" -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:35 +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:36 msgid "Config Overrides Warning" msgstr "Ayar Geçersiz Kılma Uyarısı" -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:55 +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:56 msgid "Components Overrides Warning" msgstr "Bileşen Geçersiz Kulma Uyarısı" -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:69 +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:147 +#, fuzzy +msgid "Preset:" +msgstr "Yeniden Başlat" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:228 #, c-format msgid "Emulation Settings - %s" msgstr "Emülatör Ayarları - %s" -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:76 +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:237 msgid "EE/IOP" msgstr "EE/IOP" -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:77 +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:238 msgid "VUs" msgstr "VUs" -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:78 +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:239 msgid "GS" msgstr "GS" -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:79 +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:240 msgid "GS Window" msgstr "GS Ekranı" -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:80 +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:241 msgid "Speedhacks" msgstr "Hız Hackleri" -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:81 +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:242 msgid "Game Fixes" msgstr "Oyun Yamaları" -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:91 +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:253 #, c-format msgid "Components Selectors - %s" msgstr "Bileşen Seçicileri - %s" -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:98 +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:260 msgid "Plugins" msgstr "Eklentiler" -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:99 +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:261 msgid "BIOS" msgstr "BIOS" -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:109 -#, c-format -msgid "Language Selector - %s" -msgstr "Dil Seçici - %s" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:117 +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:262 msgid "Folders" msgstr "Klasörler" +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:273 +#, fuzzy, c-format +msgid "Appearance/Themes - %s" +msgstr "Görünüm" + +#: pcsx2/gui/ExecutorThread.cpp:430 +msgid "Press Cancel to attempt to cancel the action." +msgstr "İşlemi iptal etmek için İptal'e tıklayın" + +#: pcsx2/gui/ExecutorThread.cpp:431 +#, c-format +msgid "Press Terminate to kill %s immediately." +msgstr "%s 'ı sonlandırmak için Sonlandır'a basın." + +#: pcsx2/gui/ExecutorThread.cpp:434 +msgid "Terminate App" +msgstr "İşlemi Sonlandır" + +#: pcsx2/gui/FrameForGS.cpp:274 +msgid "GS Output is Disabled!" +msgstr "GS Çıkışı devre dışı!" + +#: pcsx2/gui/GlobalCommands.cpp:268 pcsx2/gui/MainFrame.cpp:402 +msgid "Save state" +msgstr "Kayıt konumu" + +#: pcsx2/gui/GlobalCommands.cpp:269 +msgid "Saves the virtual machine state to the current slot." +msgstr "Oyun konumunu şimdiki slota kaydeder." + +#: pcsx2/gui/GlobalCommands.cpp:274 pcsx2/gui/MainFrame.cpp:401 +msgid "Load state" +msgstr "Konum yükle" + +#: pcsx2/gui/GlobalCommands.cpp:275 +msgid "Loads a virtual machine state from the current slot." +msgstr "Oyun konumunu şimdiki slottan yükler." + +#: pcsx2/gui/GlobalCommands.cpp:280 +msgid "Cycle to next slot" +msgstr "Bir sonraki slota geç" + +#: pcsx2/gui/GlobalCommands.cpp:281 +msgid "Cycles the current save slot in +1 fashion!" +msgstr "Kayıt işlemini sürekli bir sonraki slota kaydederek yapar." + +#: pcsx2/gui/GlobalCommands.cpp:286 +msgid "Cycle to prev slot" +msgstr "Önceki slota geç" + +#: pcsx2/gui/GlobalCommands.cpp:287 +msgid "Cycles the current save slot in -1 fashion!" +msgstr "Kayıt işlemini sürekli bir önceki slota kaydederek yapar." + +#: pcsx2/gui/IsoDropTarget.cpp:57 +msgid "Drag and Drop Error" +msgstr "Sürükle-Bırak Hatası" + +#: pcsx2/gui/IsoDropTarget.cpp:58 +#, c-format +msgid "" +"It is an error to drop multiple files onto a %s window. One at a time " +"please, thank you." +msgstr "" +"%s ekranına çok fazla dosya sürüklediğinizde böyle bir hata oluşur. Tek " +"seferde tek dosya, teşekkürler." + +#: pcsx2/gui/IsoDropTarget.cpp:89 pcsx2/gui/MainMenuClicks.cpp:337 +msgid "Confirm PS2 Reset" +msgstr "PS2 yeniden başlatmayı onayla" + +#: pcsx2/gui/IsoDropTarget.cpp:91 +#, c-format +msgid "" +"You have dropped the following ELF binary into %s:\n" +"\n" +msgstr "" +"%s ELF dosyasını şuraya sürüklediniz:\n" +"\n" + +#: pcsx2/gui/IsoDropTarget.cpp:135 +#, c-format +msgid "You have dropped the following ISO image into %s:" +msgstr "%s ISO dosyasını şuraya sürüklediniz:" + +#: pcsx2/gui/MainFrame.cpp:38 +#, c-format +msgid "Slot %d" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:41 +msgid "Other..." +msgstr "Diğer..." + +#: pcsx2/gui/MainFrame.cpp:312 +msgid "Show Console" +msgstr "Konsolu göster" + +#: pcsx2/gui/MainFrame.cpp:313 +msgid "Console to Stdio" +msgstr "Console'dan Stdio'ya" + +#: pcsx2/gui/MainFrame.cpp:326 +msgid "&System" +msgstr "Sistem" + +#: pcsx2/gui/MainFrame.cpp:327 +msgid "CD&VD" +msgstr "CDVD" + +#: pcsx2/gui/MainFrame.cpp:328 +msgid "&Config" +msgstr "Ayarlar" + +#: pcsx2/gui/MainFrame.cpp:329 +msgid "&Misc" +msgstr "Diğer Ayarlar" + +#: pcsx2/gui/MainFrame.cpp:331 +msgid "&Debug" +msgstr "Günlükleme" + +#: pcsx2/gui/MainFrame.cpp:343 +#, c-format +msgid "%s %d.%d.%d.%d%s (svn) %s" +msgstr "%s %d.%d.%d.%d%s (svn) %s" + +#: pcsx2/gui/MainFrame.cpp:349 +#, c-format +msgid "%s %d.%d.%d %s" +msgstr "%s %d.%d.%d %s" + +#: pcsx2/gui/MainFrame.cpp:350 +msgid "(modded)" +msgstr "(modded)" + +#: pcsx2/gui/MainFrame.cpp:387 pcsx2/gui/MainFrame.cpp:389 +#: pcsx2/gui/MainFrame.cpp:395 +msgid "Initializing..." +msgstr "Başlatılıyor..." + +#: pcsx2/gui/MainFrame.cpp:391 +msgid "Run ELF..." +msgstr "ELF Dosyası Aç" + +#: pcsx2/gui/MainFrame.cpp:392 +msgid "For running raw PS2 binaries directly" +msgstr "Ham PS2 kütüphanelerini doğrudan yürütmek için" + +#: pcsx2/gui/MainFrame.cpp:406 +msgid "Enable Patches" +msgstr "Yamaları Etkinleştir" + +#: pcsx2/gui/MainFrame.cpp:409 +msgid "Enable Cheats" +msgstr "Hileleri Etkinleştir" + +#: pcsx2/gui/MainFrame.cpp:412 +msgid "Enable Host Filesystem" +msgstr "Ana Sistem Dosyasını Etkinleştir" + +#: pcsx2/gui/MainFrame.cpp:417 +msgid "Shutdown" +msgstr "Kapat" + +#: pcsx2/gui/MainFrame.cpp:418 +msgid "Wipes all internal VM states and shuts down plugins." +msgstr "Tüm PS2 konumlarını temizler ve eklentileri kapatır." + +#: pcsx2/gui/MainFrame.cpp:420 +msgid "Exit" +msgstr "Çıkış" + +#: pcsx2/gui/MainFrame.cpp:421 +#, c-format +msgid "Closing %s may be hazardous to your health" +msgstr "%s 'yi kapatmak sağlığınız için zararlı olabilir" + +#: pcsx2/gui/MainFrame.cpp:428 +msgid "Iso Selector" +msgstr "Iso Seçici" + +#: pcsx2/gui/MainFrame.cpp:429 +msgid "Plugin Menu" +msgstr "Eklenti Menüsü" + +#: pcsx2/gui/MainFrame.cpp:432 +msgid "Iso" +msgstr "Iso" + +#: pcsx2/gui/MainFrame.cpp:432 +msgid "Makes the specified ISO image the CDVD source." +msgstr "Seçili ISO dosyasını CDVD için kullanır." + +#: pcsx2/gui/MainFrame.cpp:433 +msgid "Plugin" +msgstr "Eklenti" + +#: pcsx2/gui/MainFrame.cpp:433 +msgid "Uses an external plugin as the CDVD source." +msgstr "CDVD kaynağı olarak seçili eklentiyi kullanır." + +#: pcsx2/gui/MainFrame.cpp:434 +msgid "No disc" +msgstr "CD'siz" + +#: pcsx2/gui/MainFrame.cpp:434 +msgid "Use this to boot into your virtual PS2's BIOS configuration." +msgstr "Sanal PS2'nin BIOS ayarlarını açmak için bunu kullanın." + +#: pcsx2/gui/MainFrame.cpp:442 +msgid "Emulation &Settings" +msgstr "Emülatör Ayarları" + +#: pcsx2/gui/MainFrame.cpp:443 +msgid "&Memory cards" +msgstr "Hafıza Kartları" + +#: pcsx2/gui/MainFrame.cpp:444 +msgid "&Plugin/BIOS Selector" +msgstr "Eklenti/BIOS Seçici" + +#: pcsx2/gui/MainFrame.cpp:445 pcsx2/gui/Panels/GameDatabasePanel.cpp:348 +msgid "Game Database Editor" +msgstr "Oyun Veritabanı Düzenleyici" + +#: pcsx2/gui/MainFrame.cpp:451 +msgid "&Video (GS)" +msgstr "Video (GS)" + +#: pcsx2/gui/MainFrame.cpp:452 +msgid "&Audio (SPU2)" +msgstr "Ses (SPU2)" + +#: pcsx2/gui/MainFrame.cpp:453 +msgid "&Controllers (PAD)" +msgstr "Kontroller (PAD)" + +#: pcsx2/gui/MainFrame.cpp:454 +msgid "Dev9" +msgstr "Dev9" + +#: pcsx2/gui/MainFrame.cpp:455 +msgid "USB" +msgstr "USB" + +#: pcsx2/gui/MainFrame.cpp:456 +msgid "Firewire" +msgstr "Firewire" + +#: pcsx2/gui/MainFrame.cpp:459 +msgid "Patches (unimplemented)" +msgstr "Yamalar (düzenlenmedi)" + +#: pcsx2/gui/MainFrame.cpp:462 +msgid "Multitap 1" +msgstr "Multitap 1" + +#: pcsx2/gui/MainFrame.cpp:463 +msgid "Multitap 2" +msgstr "Multitap 2" + +#: pcsx2/gui/MainFrame.cpp:466 +msgid "Clear all settings..." +msgstr "Tüm ayarları sil..." + +#: pcsx2/gui/MainFrame.cpp:467 +#, c-format +msgid "Clears all %s settings and re-runs the startup wizard." +msgstr "Tüm %s ayarlarını siler ve başlangıç sihirbazını çalıştırır." + +#: pcsx2/gui/MainFrame.cpp:483 +msgid "Print CDVD Info" +msgstr "CDVD bilgisini yazdır" + +#: pcsx2/gui/MainFrame.cpp:490 +msgid "About..." +msgstr "Hakkında..." + +#: pcsx2/gui/MainFrame.cpp:492 +msgid "Open Debug Window..." +msgstr "Geliştirici Ekranı Açılıyor..." + +#: pcsx2/gui/MainFrame.cpp:493 +msgid "Memory Dump..." +msgstr "Hafıza Dökümü..." + +#: pcsx2/gui/MainFrame.cpp:494 +msgid "Logging..." +msgstr "Günlükleniyor..." + +#: pcsx2/gui/MainFrame.cpp:571 +msgid "Suspend" +msgstr "Duraklat" + +#: pcsx2/gui/MainFrame.cpp:572 +msgid "Safely pauses emulation and preserves the PS2 state." +msgstr "Emülatörü güvenli bir şekilde duraklatır." + +#: pcsx2/gui/MainFrame.cpp:579 +msgid "Resume" +msgstr "Devam Et" + +#: pcsx2/gui/MainFrame.cpp:580 +msgid "Resumes the suspended emulation state." +msgstr "Emülatörün çalışmasını kaldığı yerden devam ettirir." + +#: pcsx2/gui/MainFrame.cpp:584 +msgid "Suspend/Resume" +msgstr "Duraklat/Devam Et" + +#: pcsx2/gui/MainFrame.cpp:585 +msgid "No emulation state is active; cannot suspend or resume." +msgstr "" +"Etkin bir emülatör konumu yok; duraklatma ya da devam etme mümkün değil." + +#: pcsx2/gui/MainFrame.cpp:594 +msgid "Restart" +msgstr "Yeniden Başlat" + +#: pcsx2/gui/MainFrame.cpp:595 +msgid "Simulates hardware reset of the PS2 virtual machine." +msgstr "PS2'deki yeniden başlatma işlevinin aynısını yapar." + +#: pcsx2/gui/MainFrame.cpp:600 +msgid "No emulation state is active; boot something first." +msgstr "Etkin bir emülatör konumu yok; önce bir şeyler başlatın." + +#: pcsx2/gui/MainFrame.cpp:608 +msgid "Reboot CDVD (full)" +msgstr "CDVD'yi yeniden başlat (Tam)" + +#: pcsx2/gui/MainFrame.cpp:609 +msgid "Hard reset of the active VM." +msgstr "Seçili Sanal Makineyi tamamen yeniden başlatır." + +#: pcsx2/gui/MainFrame.cpp:613 +msgid "Boot CDVD (full)" +msgstr "CDVD'yi çalıştır (Tam)" + +#: pcsx2/gui/MainFrame.cpp:614 +msgid "Boot the VM using the current DVD or Iso source media" +msgstr "Seçili DVD ya da Iso ortamı kaynağını kullanarak sanal makineyi başlat" + +#: pcsx2/gui/MainFrame.cpp:622 +msgid "Reboot CDVD (fast)" +msgstr "CDVD'yi yeniden başlat (Hızlı)" + +#: pcsx2/gui/MainFrame.cpp:623 +#, fuzzy +msgid "Reboot using fast BOOT (skips splash screens)" +msgstr "Başlangıç ekranlarını doğrudan atlar" + +#: pcsx2/gui/MainFrame.cpp:627 +msgid "Boot CDVD (fast)" +msgstr "CDVD'yi çalıştır (Hızlı)" + +#: pcsx2/gui/MainFrame.cpp:628 +#, fuzzy +msgid "Use fast boot to skip PS2 startup and splash screens" +msgstr "PS2 başlangıc ekranlarını ve BIOS'u atlar" + +#: pcsx2/gui/MainFrame.cpp:689 pcsx2/gui/MainFrame.cpp:724 +msgid "No plugin loaded" +msgstr "Yüklü eklenti yok" + +#: pcsx2/gui/MainFrame.cpp:694 +msgid "Core GS Settings..." +msgstr "GS ayarları..." + +#: pcsx2/gui/MainFrame.cpp:695 +msgid "" +"Modify hardware emulation settings regulated by the PCSX2 core virtual " +"machine." +msgstr "PCSX2'nin PS2 donanım taklidi seçeneklerini düzenleyin" + +#: pcsx2/gui/MainFrame.cpp:697 +msgid "Window Settings..." +msgstr "Pencere Ayarları..." + +#: pcsx2/gui/MainFrame.cpp:698 +msgid "Modify window and appearance options, including aspect ratio." +msgstr "Görüntü" + +#: pcsx2/gui/MainFrame.cpp:705 +msgid "Plugin Settings..." +msgstr "Eklenti Ayarları..." + +#: pcsx2/gui/MainFrame.cpp:706 +#, c-format +msgid "Opens the %s plugin's advanced settings dialog." +msgstr "%s eklentisinin gelişmiş ayarlar iletisini açar." + +#: pcsx2/gui/MainMenuClicks.cpp:112 +msgid "Reset all settings?" +msgstr "Tüm ayarları silmek istediğinden emin misin?" + +#: pcsx2/gui/MainMenuClicks.cpp:140 +msgid "Confirm ISO image change" +msgstr "ISO kalıpı değiştirmeyi onayla" + +#: pcsx2/gui/MainMenuClicks.cpp:146 +msgid "Do you want to swap discs or boot the new image (via system reset)?" +msgstr "" +"CD mi değiştirmek yoksa programı yeniden başlatarak yeni bir kalıp dosyası " +"mı açmak istiyorsunuz?" + +#: pcsx2/gui/MainMenuClicks.cpp:148 pcsx2/gui/MainMenuClicks.cpp:191 +msgid "Swap Disc" +msgstr "CD Değiştir" + +#: pcsx2/gui/MainMenuClicks.cpp:181 +msgid "Confirm CDVD source change" +msgstr "CDVD kaynak değişimini onayla" + +#: pcsx2/gui/MainMenuClicks.cpp:184 +#, c-format +msgid "You've selected to switch the CDVD source from %s to %s." +msgstr "CDVD kaynağını %s 'dan %s 'a değiştirdiniz." + +#: pcsx2/gui/MainMenuClicks.cpp:188 +msgid "Do you want to swap discs or boot the new image (system reset)?" +msgstr "" +"CD mi değiştirmek istiyorsunuz yoksa yeni bir kalıp dosyası açmak mı " +"(yeniden başlatır)?" + +#: pcsx2/gui/MainMenuClicks.cpp:256 +#, c-format +msgid "All Supported (%s)" +msgstr "Tüm Desteklenenler (%s)" + +#: pcsx2/gui/MainMenuClicks.cpp:259 +#, c-format +msgid "Disc Images (%s)" +msgstr "CD Kalıpları (%s)" + +#: pcsx2/gui/MainMenuClicks.cpp:262 +#, c-format +msgid "Blockdumps (%s)" +msgstr "Yığınlar (%s)" + +#: pcsx2/gui/MainMenuClicks.cpp:265 pcsx2/gui/MainMenuClicks.cpp:286 +msgid "All Files (*.*)" +msgstr "Tüm Dosyalar (*.*)" + +#: pcsx2/gui/MainMenuClicks.cpp:268 +msgid "Select CDVD source iso..." +msgstr "CDVD nin çalıştıracağı ISO'yu seçin..." + +#: pcsx2/gui/MainMenuClicks.cpp:285 +msgid "Select ELF file..." +msgstr "ELF dosyası seçin..." + +#: pcsx2/gui/MainMenuClicks.cpp:311 +msgid "ISO file not found!" +msgstr "ISO dosyası bulunamadı!" + +#: pcsx2/gui/MainMenuClicks.cpp:313 +#, fuzzy +msgid "An error occurred while trying to open the file:" +msgstr "" +"Dosyayı açmaya çalışırken bir hata oluştu:\n" +"\n" + +#: pcsx2/gui/MainMenuClicks.cpp:314 +msgid "" +"Error: The configured ISO file does not exist. Click OK to select a new ISO " +"source for CDVD." +msgstr "" +"Hata: Seçili ISO dosyası bulunamıyor. CDVD için yeni bir ISO kaynağı seçmek " +"için Tamam'a basın." + +#: pcsx2/gui/MainMenuClicks.cpp:380 +msgid "" +"You have selected the following ISO image into PCSX2:\n" +"\n" +msgstr "" +"PCSX2 için şu ISO kalıbını seçtiniz:\n" +"\n" + +#: pcsx2/gui/MemoryCardFile.cpp:182 +#, c-format +msgid "" +"Could not create a memory card file: \n" +"\n" +"%s\n" +"\n" +msgstr "" +"Hafıza kartı oluşturulamıyor: \n" +"\n" +"%s\n" +"\n" + +#: pcsx2/gui/MemoryCardFile.cpp:200 +#, c-format +msgid "" +"Access denied to memory card file: \n" +"\n" +"%s\n" +"\n" +msgstr "" +"Hafıza kartına erilemiyor: \n" +"\n" +"%s\n" +"\n" + #: pcsx2/gui/Panels/BaseApplicableConfigPanel.cpp:97 msgid "Cannot apply settings..." msgstr "Ayarlar uygulanamıyor..." -#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:92 +#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:103 msgid "BIOS Search Path:" msgstr "BIOS Klasörü:" -#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:93 +#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:104 msgid "Select folder with PS2 BIOS roms" msgstr "PS2 BIOS rom'larının olduğu klasörü seçin" -#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:99 -msgid "Click the Browse button to select a different folder where PCSX2 will look for PS2 BIOS roms." +#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:111 +msgid "" +"Click the Browse button to select a different folder where PCSX2 will look " +"for PS2 BIOS roms." msgstr "Başka bir BIOS klasörü seçmek için Göz at'a basın." -#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:101 +#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:113 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:149 +#: pcsx2/gui/Panels/ThemeSelectorPanel.cpp:47 msgid "Refresh list" msgstr "Listeyi yenile" -#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:103 +#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:115 msgid "Select a BIOS rom:" msgstr "BIOS seçin:" @@ -1201,196 +1373,133 @@ msgstr "Round Mode" msgid "Clamping Mode" msgstr "Clamping Mode" -#: pcsx2/gui/Panels/CpuPanel.cpp:27 -msgid "Flush to Zero" -msgstr "Flush to Zero" - -#: pcsx2/gui/Panels/CpuPanel.cpp:28 -msgid "Denormals are Zero" -msgstr "Denormals are Zero" - -#: pcsx2/gui/Panels/CpuPanel.cpp:32 +#: pcsx2/gui/Panels/CpuPanel.cpp:29 msgid "Nearest" msgstr "Nearest" -#: pcsx2/gui/Panels/CpuPanel.cpp:33 +#: pcsx2/gui/Panels/CpuPanel.cpp:30 msgid "Negative" msgstr "Negative" -#: pcsx2/gui/Panels/CpuPanel.cpp:34 +#: pcsx2/gui/Panels/CpuPanel.cpp:31 msgid "Positive" msgstr "Positive" -#: pcsx2/gui/Panels/CpuPanel.cpp:35 +#: pcsx2/gui/Panels/CpuPanel.cpp:32 msgid "Chop / Zero" msgstr "Chop / Zero" -#: pcsx2/gui/Panels/CpuPanel.cpp:40 +#: pcsx2/gui/Panels/CpuPanel.cpp:37 msgid "None" msgstr "Hiçbiri" -#: pcsx2/gui/Panels/CpuPanel.cpp:102 +#: pcsx2/gui/Panels/CpuPanel.cpp:85 msgid "EE/FPU Advanced Recompiler Options" msgstr "EE/FPU Gelişmiş Derleyici Ayarları" -#: pcsx2/gui/Panels/CpuPanel.cpp:104 -#: pcsx2/gui/Panels/CpuPanel.cpp:119 +#: pcsx2/gui/Panels/CpuPanel.cpp:87 pcsx2/gui/Panels/CpuPanel.cpp:102 msgid "Extra + Preserve Sign" msgstr "Extra + Preserve Sign" -#: pcsx2/gui/Panels/CpuPanel.cpp:105 +#: pcsx2/gui/Panels/CpuPanel.cpp:88 msgid "Full" msgstr "Full" -#: pcsx2/gui/Panels/CpuPanel.cpp:116 +#: pcsx2/gui/Panels/CpuPanel.cpp:99 msgid "VU0 / VU1 Advanced Recompiler Options" msgstr "VUo / VU1 Gelişmiş Derleyici Ayarları" -#: pcsx2/gui/Panels/CpuPanel.cpp:118 +#: pcsx2/gui/Panels/CpuPanel.cpp:101 msgid "Extra" msgstr "Ekstar" -#: pcsx2/gui/Panels/CpuPanel.cpp:130 -#: pcsx2/gui/Panels/CpuPanel.cpp:139 -#: pcsx2/gui/Panels/CpuPanel.cpp:187 +#: pcsx2/gui/Panels/CpuPanel.cpp:117 pcsx2/gui/Panels/CpuPanel.cpp:126 +#: pcsx2/gui/Panels/CpuPanel.cpp:184 msgid "Interpreter" msgstr "Yorumlayıcı" -#: pcsx2/gui/Panels/CpuPanel.cpp:131 +#: pcsx2/gui/Panels/CpuPanel.cpp:118 msgid "Quite possibly the slowest thing in the universe." msgstr "Muhtemelen evrendeki en yavaş şey." -#: pcsx2/gui/Panels/CpuPanel.cpp:133 -#: pcsx2/gui/Panels/CpuPanel.cpp:142 +#: pcsx2/gui/Panels/CpuPanel.cpp:120 pcsx2/gui/Panels/CpuPanel.cpp:129 msgid "Recompiler" msgstr "Derleyici" -#: pcsx2/gui/Panels/CpuPanel.cpp:134 -msgid "Performs just-in-time binary translation of 64-bit MIPS-IV machine code to x86." +#: pcsx2/gui/Panels/CpuPanel.cpp:121 +msgid "" +"Performs just-in-time binary translation of 64-bit MIPS-IV machine code to " +"x86." msgstr "x86 işlemler için doğru zamanlı 64 bit MIPS-IV kodu dönüşümü sağlar." -#: pcsx2/gui/Panels/CpuPanel.cpp:140 +#: pcsx2/gui/Panels/CpuPanel.cpp:127 msgid "Pretty slow; provided for diagnostic purposes only." msgstr "Olabildiğince yavaştır; yalnızca test amaçlı." -#: pcsx2/gui/Panels/CpuPanel.cpp:143 -msgid "Performs just-in-time binary translation of 32-bit MIPS-I machine code to x86." +#: pcsx2/gui/Panels/CpuPanel.cpp:130 +msgid "" +"Performs just-in-time binary translation of 32-bit MIPS-I machine code to " +"x86." msgstr "x86 işlemler için doğru zamanlı 32 bit MIPS-IV kodu dönüşümü sağlar." -#: pcsx2/gui/Panels/CpuPanel.cpp:177 -#: pcsx2/gui/Panels/CpuPanel.cpp:226 +#: pcsx2/gui/Panels/CpuPanel.cpp:154 +msgid "Enable EE Cache - Interpreter Only! (Slower)" +msgstr "" + +#: pcsx2/gui/Panels/CpuPanel.cpp:170 pcsx2/gui/Panels/CpuPanel.cpp:223 +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:110 msgid "Restore Defaults" msgstr "Varsayılan Ayarları Yükle" -#: pcsx2/gui/Panels/CpuPanel.cpp:188 -msgid "Vector Unit Interpreter. Slow and not very compatible. Only use for diagnostics." +#: pcsx2/gui/Panels/CpuPanel.cpp:185 +msgid "" +"Vector Unit Interpreter. Slow and not very compatible. Only use for " +"diagnostics." msgstr "VU Yorumlayıcısı. Yavaş ve uyumsuzdur. Yalnızca test için kullanın." -#: pcsx2/gui/Panels/CpuPanel.cpp:190 +#: pcsx2/gui/Panels/CpuPanel.cpp:187 msgid "microVU Recompiler" msgstr "microVU Derleyicisi" -#: pcsx2/gui/Panels/CpuPanel.cpp:191 -msgid "New Vector Unit recompiler with much improved compatibility. Recommended." +#: pcsx2/gui/Panels/CpuPanel.cpp:188 +msgid "" +"New Vector Unit recompiler with much improved compatibility. Recommended." msgstr "Daha uyumlu olan yeni VU derleyicisi. Önerilir." -#: pcsx2/gui/Panels/CpuPanel.cpp:193 +#: pcsx2/gui/Panels/CpuPanel.cpp:190 msgid "superVU Recompiler [legacy]" msgstr "superVU Derleyicisi [Eski]" -#: pcsx2/gui/Panels/CpuPanel.cpp:194 -msgid "Useful for diagnosing bugs or clamping issues in the new mVU recompiler." +#: pcsx2/gui/Panels/CpuPanel.cpp:191 +msgid "" +"Useful for diagnosing bugs or clamping issues in the new mVU recompiler." msgstr "Yeni mVU derleyicisindeki hataları tanımlamak için." -#: pcsx2/gui/Panels/DirPickerPanel.cpp:58 +#: pcsx2/gui/Panels/DirPickerPanel.cpp:64 msgid "Path does not exist" msgstr "Konum bulunamıyor" -#: pcsx2/gui/Panels/DirPickerPanel.cpp:116 +#: pcsx2/gui/Panels/DirPickerPanel.cpp:154 msgid "Use default setting" msgstr "Varsayılan ayarları kullan" -#: pcsx2/gui/Panels/DirPickerPanel.cpp:133 +#: pcsx2/gui/Panels/DirPickerPanel.cpp:174 msgid "Open in Explorer" msgstr "Gezgin'de aç" -#: pcsx2/gui/Panels/DirPickerPanel.cpp:134 +#: pcsx2/gui/Panels/DirPickerPanel.cpp:175 msgid "Open an explorer window to this folder." msgstr "Bu klasörü gezginde göster" -#: pcsx2/gui/Panels/DirPickerPanel.cpp:224 +#: pcsx2/gui/Panels/DirPickerPanel.cpp:266 +msgid "Create folder?" +msgstr "Klasörü oluşturmak istediğinizden emin misiniz?" + +#: pcsx2/gui/Panels/DirPickerPanel.cpp:267 #, c-format msgid "A configured folder does not exist. Should %s try to create it?" msgstr "Klasör bulunamıyor. %s bu klasörü oluştursun mu?" -#: pcsx2/gui/Panels/GameDatabasePanel.cpp:336 -msgid "Search" -msgstr "Ara" - -#: pcsx2/gui/Panels/GameDatabasePanel.cpp:370 -msgid "Gamefixes" -msgstr "Oyun Yamaları" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:38 -msgid "VU Add Hack - Fixes Tri-Ace games boot crash." -msgstr "VU Add Hack - Tri-Ace oyunları açılış hatasını düzeltir." - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:39 -msgid "" -"Games that need this hack to boot:\n" -" * Star Ocean 3\n" -" * Radiata Stories\n" -" * Valkyrie Profile 2" -msgstr "" -"Çalışması için bu hack'i açmanız gereken oyunlar:\n" -"*Star Ocean 3\n" -"*Radiata Stories\n" -"*Valkyrie Profile 2" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:42 -msgid "VU Clip Flag Hack - For Persona games (SuperVU recompiler only!)" -msgstr "VU Clip Flag Hack - Persona oyunları için (Yalnızca SuperVU derleyicisi etkinse kullanın!)" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:46 -msgid "FPU Compare Hack - For Digimon Rumble Arena 2." -msgstr "FPU Compare Hack - Digimon Rumble Arena 2 için." - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:50 -msgid "FPU Multiply Hack - For Tales of Destiny." -msgstr "FPU Multiply Hack - Tales of Destiny için." - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:54 -msgid "FPU Negative Div Hack - For Gundam games." -msgstr "FPU Negative Div Hack - Gundam oyunları için." - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:58 -msgid "VU XGkick Hack - For Erementar Gerad." -msgstr "VU XGkick hack - Erementar Gerad oyunları için." - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:62 -msgid "FFX videos fix - Fixes bad graphics overlay in FFX videos." -msgstr "FFX videos fix - FFX videolarındaki bozuk görüntü sorununu düzeltir." - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:66 -msgid "EE timing hack - Multi purpose hack. Try if all else fails." -msgstr "EE timing hack - Çok amaçlı bir hack. Diğer hiçbir hack çalışmazsa bunu deneyin." - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:75 -msgid "Skip MPEG hack - Skips videos/FMVs in games to avoid game hanging/freezes." -msgstr "Skip MPEG hack - Donmaları önlemek için oyunlardaki videoları atlar." - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:79 -msgid "OPH Flag hack - Try if your game freezes showing the same frame." -msgstr "OPH Flag hack - Oyun aynı kare hızında kalıp donuyorsa bunu etkinleştirmeyi deneyin." - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:95 -msgid "Enable game fixes" -msgstr "Oyun yamalarını etkinleştir" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:103 -msgid "The safest way to make sure that all game fixes are completely disabled." -msgstr "Tüm oyun yamalarının kapalı olduğuna emin olmak için en garanti yol." - #: pcsx2/gui/Panels/GSWindowPanel.cpp:30 msgid "Fit to Window/Screen" msgstr "Ekrana/Pencereye sığdır" @@ -1424,100 +1533,228 @@ msgid "Wait for vsync on refresh" msgstr "Vsync'i etkinleştir" #: pcsx2/gui/Panels/GSWindowPanel.cpp:49 +msgid "Double-click Toggles Full-Screen mode" +msgstr "" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:50 msgid "Use exclusive fullscreen mode (if available)" msgstr "Tam ekran işlemci önceliğini kullan" -#: pcsx2/gui/Panels/GSWindowPanel.cpp:89 +#: pcsx2/gui/Panels/GSWindowPanel.cpp:90 msgid "Aspect Ratio:" msgstr "En Boy Oranı:" -#: pcsx2/gui/Panels/GSWindowPanel.cpp:91 +#: pcsx2/gui/Panels/GSWindowPanel.cpp:92 msgid "Custom Window Size:" msgstr "Özel Pencere Boyutu:" -#: pcsx2/gui/Panels/GSWindowPanel.cpp:147 -msgid "Invalid window dimensions specified: Size cannot contain non-numeric digits! >_<" -msgstr "Yanlış pencere boyutu: Pencere boyutu denen şeyde yalnızca rakamlar olur -_-" +#: pcsx2/gui/Panels/GSWindowPanel.cpp:164 +msgid "" +"Invalid window dimensions specified: Size cannot contain non-numeric digits! " +">_<" +msgstr "" +"Yanlış pencere boyutu: Pencere boyutu denen şeyde yalnızca rakamlar olur -_-" -#: pcsx2/gui/Panels/LogOptionsPanels.cpp:248 +#: pcsx2/gui/Panels/GameDatabasePanel.cpp:336 +msgid "Search" +msgstr "Ara" + +#: pcsx2/gui/Panels/GameDatabasePanel.cpp:370 +#: pcsx2/gui/Panels/GameFixesPanel.cpp:25 +msgid "Gamefixes" +msgstr "Oyun Yamaları" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:38 +msgid "VU Add Hack - Fixes Tri-Ace games boot crash." +msgstr "VU Add Hack - Tri-Ace oyunları açılış hatasını düzeltir." + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:39 +msgid "" +"Games that need this hack to boot:\n" +" * Star Ocean 3\n" +" * Radiata Stories\n" +" * Valkyrie Profile 2" +msgstr "" +"Çalışması için bu hack'i açmanız gereken oyunlar:\n" +"*Star Ocean 3\n" +"*Radiata Stories\n" +"*Valkyrie Profile 2" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:42 +msgid "VU Clip Flag Hack - For Persona games (SuperVU recompiler only!)" +msgstr "" +"VU Clip Flag Hack - Persona oyunları için (Yalnızca SuperVU derleyicisi " +"etkinse kullanın!)" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:46 +msgid "FPU Compare Hack - For Digimon Rumble Arena 2." +msgstr "FPU Compare Hack - Digimon Rumble Arena 2 için." + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:50 +msgid "FPU Multiply Hack - For Tales of Destiny." +msgstr "FPU Multiply Hack - Tales of Destiny için." + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:54 +msgid "FPU Negative Div Hack - For Gundam games." +msgstr "FPU Negative Div Hack - Gundam oyunları için." + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:58 +msgid "VU XGkick Hack - For Erementar Gerad." +msgstr "VU XGkick hack - Erementar Gerad oyunları için." + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:62 +msgid "FFX videos fix - Fixes bad graphics overlay in FFX videos." +msgstr "FFX videos fix - FFX videolarındaki bozuk görüntü sorununu düzeltir." + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:66 +msgid "EE timing hack - Multi purpose hack. Try if all else fails." +msgstr "" +"EE timing hack - Çok amaçlı bir hack. Diğer hiçbir hack çalışmazsa bunu " +"deneyin." + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:75 +msgid "" +"Skip MPEG hack - Skips videos/FMVs in games to avoid game hanging/freezes." +msgstr "Skip MPEG hack - Donmaları önlemek için oyunlardaki videoları atlar." + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:79 +msgid "OPH Flag hack - Try if your game freezes showing the same frame." +msgstr "" +"OPH Flag hack - Oyun aynı kare hızında kalıp donuyorsa bunu etkinleştirmeyi " +"deneyin." + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:95 +msgid "Enable game fixes" +msgstr "Oyun yamalarını etkinleştir" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:103 +msgid "" +"The safest way to make sure that all game fixes are completely disabled." +msgstr "Tüm oyun yamalarının kapalı olduğuna emin olmak için en garanti yol." + +#: pcsx2/gui/Panels/LogOptionsPanels.cpp:249 msgid "Enable Trace Logging" msgstr "İz Günlüklemeyi Etkinleştir" -#: pcsx2/gui/Panels/LogOptionsPanels.cpp:249 -msgid "Trace logs are all written to emulog.txt. Toggle trace logging at any time using F10." -msgstr "İz günlüklerinin tamamı emulog.txt'de tutulur. Bu ayarı açıp kapamak için F10 tuşunu kullanın." - #: pcsx2/gui/Panels/LogOptionsPanels.cpp:250 -msgid "Warning: Enabling trace logs is typically very slow, and is a leading cause of 'What happened to my FPS?' problems. :)" -msgstr "Dikkat: İz günlükleme çoğu zaman programı yavaşlatır sonra gelip \"Neden bu kadar az FPS alıyorum?\" gibi sorular sorarsınız. :)" +msgid "" +"Trace logs are all written to emulog.txt. Toggle trace logging at any time " +"using F10." +msgstr "" +"İz günlüklerinin tamamı emulog.txt'de tutulur. Bu ayarı açıp kapamak için " +"F10 tuşunu kullanın." + +#: pcsx2/gui/Panels/LogOptionsPanels.cpp:251 +msgid "" +"Warning: Enabling trace logs is typically very slow, and is a leading cause " +"of 'What happened to my FPS?' problems. :)" +msgstr "" +"Dikkat: İz günlükleme çoğu zaman programı yavaşlatır sonra gelip \"Neden bu " +"kadar az FPS alıyorum?\" gibi sorular sorarsınız. :)" #: pcsx2/gui/Panels/MemoryCardListPanel.cpp:144 msgid "Select folder with PS2 memory cards" msgstr "PS2 hafıza kartlarının bulunduğu klasörü seçin" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:386 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:374 +#, fuzzy +msgid "Overwrite memory card?" +msgstr "Hafıza kartını silmek istediğinizden emin misiniz?" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:391 msgid "Copy failed!" msgstr "Kopyalama başarısız!" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:454 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:465 msgid "Mount" msgstr "Oluştur" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:500 -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:670 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:511 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:681 msgid "Delete" msgstr "Sil" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:503 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:514 msgid "Deletes the existing memory card from disk (all contents are lost)." msgstr "Seçili hafıza kartını siler (tüm içerik kaybedilir)" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:504 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:515 msgid "Creates a new memory card in the empty slot." msgstr "Boş bir slotta yeni bir hafıza kartı oluşturur." -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:508 -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:671 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:519 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:682 msgid "Disable" msgstr "Devre Dışı Bırak" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:508 -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:671 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:519 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:682 msgid "Enable" msgstr "Etkinleştir" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:511 -msgid "Disables the selected memory card, so that it will not be seen by games or BIOS." +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:522 +msgid "" +"Disables the selected memory card, so that it will not be seen by games or " +"BIOS." msgstr "Seçili hafıza kartını devre dışı bırakır." -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:512 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:523 msgid "Mounts the selected memory card, so that games can see it again." msgstr "Seçili hafıza kartını etkinleştirir." -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:591 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:602 msgid "Delete memory card?" msgstr "Hafıza kartını silmek istediğinizden emin misiniz?" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:670 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:681 msgid "Create new..." msgstr "Yeni oluştur..." -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:672 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:683 msgid "Relocate file..." msgstr "Konumu yeniden belirle..." -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:677 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:688 msgid "Refresh List" msgstr "Listeyi Yenile" -#: pcsx2/gui/Panels/MemoryCardListView.cpp:136 -msgid "Enabled" -msgstr "Etkin" +#: pcsx2/gui/Panels/MemoryCardListView.cpp:105 +msgid "Slot" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:106 +msgid "Status" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:107 +msgid "Size" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:108 +msgid "Formatted" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:109 +msgid "Modified" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:110 +#, fuzzy +msgid "Created" +msgstr "Oluştur" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:111 +msgid "Filename" +msgstr "" #: pcsx2/gui/Panels/MemoryCardListView.cpp:136 msgid "Disabled" msgstr "Devre Dışı" +#: pcsx2/gui/Panels/MemoryCardListView.cpp:136 +msgid "Enabled" +msgstr "Etkin" + #: pcsx2/gui/Panels/MemoryCardListView.cpp:136 msgid "Missing" msgstr "Kayıp" @@ -1528,14 +1765,14 @@ msgstr "Kayıp" msgid "N/A" msgstr "Hiçbiri" -#: pcsx2/gui/Panels/MemoryCardListView.cpp:138 -msgid "Yes" -msgstr "Evet" - #: pcsx2/gui/Panels/MemoryCardListView.cpp:138 msgid "No" msgstr "Hayır" +#: pcsx2/gui/Panels/MemoryCardListView.cpp:138 +msgid "Yes" +msgstr "Evet" + #: pcsx2/gui/Panels/MiscPanelStuff.cpp:33 msgid "Usermode Selection" msgstr "Kullanıcı Modu Seçimi" @@ -1553,7 +1790,9 @@ msgid "Custom folder:" msgstr "Seçili klasör:" #: pcsx2/gui/Panels/MiscPanelStuff.cpp:57 -msgid "This setting may require administration privileges from your operating system, depending on how your system is configured." +msgid "" +"This setting may require administration privileges from your operating " +"system, depending on how your system is configured." msgstr "Bu ayar kullanıcı izni gerektirebilir." #: pcsx2/gui/Panels/MiscPanelStuff.cpp:66 @@ -1569,31 +1808,27 @@ msgstr "Uygula" msgid "Make this language my default right now!" msgstr "Bu dili şimdi varsayılan yap!" -#: pcsx2/gui/Panels/MiscPanelStuff.cpp:127 -msgid "Select a language:" -msgstr "Dil seçiniz:" - -#: pcsx2/gui/Panels/PathsPanel.cpp:37 +#: pcsx2/gui/Panels/PathsPanel.cpp:38 msgid "Savestates:" msgstr "Kayıt konumları:" -#: pcsx2/gui/Panels/PathsPanel.cpp:38 +#: pcsx2/gui/Panels/PathsPanel.cpp:39 msgid "Select folder for Savestates" msgstr "Kayıt konumları için bir klasör seçin" -#: pcsx2/gui/Panels/PathsPanel.cpp:47 +#: pcsx2/gui/Panels/PathsPanel.cpp:48 msgid "Snapshots:" msgstr "Ekran görüntüleri:" -#: pcsx2/gui/Panels/PathsPanel.cpp:48 +#: pcsx2/gui/Panels/PathsPanel.cpp:49 msgid "Select a folder for Snapshots" msgstr "Ekran görüntüleri için bir klasör seçin" -#: pcsx2/gui/Panels/PathsPanel.cpp:57 +#: pcsx2/gui/Panels/PathsPanel.cpp:58 msgid "Logs/Dumps:" msgstr "Günlükler/Yığınlar:" -#: pcsx2/gui/Panels/PathsPanel.cpp:58 +#: pcsx2/gui/Panels/PathsPanel.cpp:59 msgid "Select a folder for logs/dumps" msgstr "Günlük ve yığın dosyaları için bir klasör seçin" @@ -1621,11 +1856,16 @@ msgstr "Eklenti Klasörü:" msgid "Select a folder with PCSX2 plugins" msgstr "PCSX2 eklentilerinin olduğu bir klasör seçin" -#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:378 +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:370 +#, fuzzy +msgid "Configure..." +msgstr "Ayarlar" + +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:379 msgid "Click the Browse button to select a different folder for PCSX2 plugins." msgstr "Eklentiler için farklı bir klasör seçmek istiyorsanız Göz at'a basın." -#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:520 +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:519 #, c-format msgid "" "The selected %s plugin failed to load.\n" @@ -1638,7 +1878,7 @@ msgstr "" "Sebep: %s\n" "\n" -#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:730 +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:729 msgid "Completing tasks..." msgstr "İşlemler tamamlanıyor..." @@ -1647,12 +1887,16 @@ msgid "Enable speedhacks" msgstr "Hız hacklerini etkinleştir" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:102 -msgid "A safe and easy way to make sure that all speedhacks are completely disabled." +msgid "" +"A safe and easy way to make sure that all speedhacks are completely disabled." msgstr "Tüm hız hacklerinin kapalı olduğunu garantilemek için" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:111 -msgid "Resets all speedhack options to their defaults, which consequently turns them all OFF." -msgstr "Tüm hız hackleri ayarlarını varsayılan ayarlara alır, yani hepsini kapatır." +msgid "" +"Resets all speedhack options to their defaults, which consequently turns " +"them all OFF." +msgstr "" +"Tüm hız hackleri ayarlarını varsayılan ayarlara alır, yani hepsini kapatır." #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:120 msgid "EE Cyclerate [Not Recommended]" @@ -1671,24 +1915,35 @@ msgid "mVU Flag Hack" msgstr "mVU Flag Hack" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:164 -msgid "Good Speedup and High Compatibility; may cause garbage graphics, SPS, etc... [Recommended]" -msgstr "Hızı oldukça artırır ve uyumluluğu yüksektir; görüntü ya da ses hatalarına neden olabilir [Önerilir]" +msgid "" +"Good Speedup and High Compatibility; may cause garbage graphics, SPS, etc... " +"[Recommended]" +msgstr "" +"Hızı oldukça artırır ve uyumluluğu yüksektir; görüntü ya da ses hatalarına " +"neden olabilir [Önerilir]" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:166 msgid "mVU Block Hack" msgstr "mVU Block Hack" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:167 -msgid "Good Speedup and High Compatibility; may cause garbage graphics, SPS, etc..." -msgstr "Hızı oldukça artırır ve uyumluluğu yüksektir; görüntü ya da ses hatalarına neden olabilir." +msgid "" +"Good Speedup and High Compatibility; may cause garbage graphics, SPS, etc..." +msgstr "" +"Hızı oldukça artırır ve uyumluluğu yüksektir; görüntü ya da ses hatalarına " +"neden olabilir." #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:169 msgid "mVU Min/Max Hack" msgstr "mVU Min/Max Hack" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:170 -msgid "Small Speedup; may cause black screens, garbage graphics, SPS, etc... [Not Recommended]" -msgstr "Hızı biraz artırır; saçma sapan ses ya da görüntü hatalarına neden olabilir [Önerilmez]" +msgid "" +"Small Speedup; may cause black screens, garbage graphics, SPS, etc... [Not " +"Recommended]" +msgstr "" +"Hızı biraz artırır; saçma sapan ses ya da görüntü hatalarına neden olabilir " +"[Önerilmez]" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:190 msgid "Other Hacks" @@ -1699,15 +1954,19 @@ msgid "Enable INTC Spin Detection" msgstr "INTC Spin Tanımlamasını Etkinleştir" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:193 -msgid "Huge speedup for some games, with almost no compatibility side effects. [Recommended]" -msgstr "Bazı oyunlarda hiçbir soruna yol açmadan büyük hız artışı sağlar. [Önerilir]" +msgid "" +"Huge speedup for some games, with almost no compatibility side effects. " +"[Recommended]" +msgstr "" +"Bazı oyunlarda hiçbir soruna yol açmadan büyük hız artışı sağlar. [Önerilir]" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:195 msgid "Enable Wait Loop Detection" msgstr "Wait Loop Tanımlamasını Etkinleştir" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:196 -msgid "Moderate speedup for some games, with no known side effects. [Recommended]" +msgid "" +"Moderate speedup for some games, with no known side effects. [Recommended]" msgstr "Bazı oyunlarda hiçvir soruna yol açmadan hız artışı sağlar. [Önerilir]" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:198 @@ -1718,13 +1977,38 @@ msgstr "Hızlı CDVD'yi etkinleştir" msgid "Fast disc access, less loading times. [Not Recommended]" msgstr "CD'ye daha hızlı ulaşarak yükleme süresini azaltır. [Önerilmez]" +#: pcsx2/gui/Panels/ThemeSelectorPanel.cpp:37 +#, fuzzy +msgid "Themes Search Path:" +msgstr "BIOS Klasörü:" + +#: pcsx2/gui/Panels/ThemeSelectorPanel.cpp:38 +#, fuzzy +msgid "Select folder containing PCSX2 visual themes" +msgstr "Kayıt konumları için bir klasör seçin" + +#: pcsx2/gui/Panels/ThemeSelectorPanel.cpp:45 +#, fuzzy +msgid "" +"Click the Browse button to select a different folder containing PCSX2 visual " +"themes." +msgstr "Eklentiler için farklı bir klasör seçmek istiyorsanız Göz at'a basın." + +#: pcsx2/gui/Panels/ThemeSelectorPanel.cpp:49 +#, fuzzy +msgid "Select a visual theme:" +msgstr "Dil seçiniz:" + #: pcsx2/gui/Panels/VideoPanel.cpp:34 msgid "Disable Framelimiting" msgstr "Kare Sınırlamasını Devre Dışı Bırak" #: pcsx2/gui/Panels/VideoPanel.cpp:35 -msgid "Useful for running benchmarks. Toggle this option in-game by pressing F4." -msgstr "Donanım testi için kullanışlıdır. Oyun içinde F4'e basarak bu seçeneği açıp kapatabilirsiniz." +msgid "" +"Useful for running benchmarks. Toggle this option in-game by pressing F4." +msgstr "" +"Donanım testi için kullanışlıdır. Oyun içinde F4'e basarak bu seçeneği açıp " +"kapatabilirsiniz." #: pcsx2/gui/Panels/VideoPanel.cpp:61 msgid "Base Framerate Adjust:" @@ -1742,8 +2026,7 @@ msgstr "Turbo Hızı:" msgid "NTSC Framerate:" msgstr "NTSC Kare hızı:" -#: pcsx2/gui/Panels/VideoPanel.cpp:91 -#: pcsx2/gui/Panels/VideoPanel.cpp:97 +#: pcsx2/gui/Panels/VideoPanel.cpp:91 pcsx2/gui/Panels/VideoPanel.cpp:97 msgid "FPS" msgstr "FPS" @@ -1751,122 +2034,138 @@ msgstr "FPS" msgid "PAL Framerate:" msgstr "PAL Kare hızı:" -#: pcsx2/gui/Panels/VideoPanel.cpp:184 +#: pcsx2/gui/Panels/VideoPanel.cpp:180 msgid "Disabled [default]" msgstr "Devre dışı [varsayılan]" -#: pcsx2/gui/Panels/VideoPanel.cpp:188 -msgid "Skip when on Turbo only" +#: pcsx2/gui/Panels/VideoPanel.cpp:184 +#, fuzzy +msgid "Skip when on Turbo only (TAB to enable)" msgstr "Yalnızca Turbo açıkken kare atla" -#: pcsx2/gui/Panels/VideoPanel.cpp:192 +#: pcsx2/gui/Panels/VideoPanel.cpp:188 msgid "Constant skipping" msgstr "Sürekli kare atlama" -#: pcsx2/gui/Panels/VideoPanel.cpp:194 -msgid "Normal and Turbo limit rates skip frames. Slow motion mode will still disable frameskipping." -msgstr "Normal ve Turbo kare atlar. Ağır çekim modu kare atlamayı devre dışı bırakır." +#: pcsx2/gui/Panels/VideoPanel.cpp:190 +msgid "" +"Normal and Turbo limit rates skip frames. Slow motion mode will still " +"disable frameskipping." +msgstr "" +"Normal ve Turbo kare atlar. Ağır çekim modu kare atlamayı devre dışı bırakır." -#: pcsx2/gui/Panels/VideoPanel.cpp:220 +#: pcsx2/gui/Panels/VideoPanel.cpp:213 msgid "Frames to Draw" msgstr "Çizilecek Kare Sayısı" -#: pcsx2/gui/Panels/VideoPanel.cpp:225 +#: pcsx2/gui/Panels/VideoPanel.cpp:218 msgid "Frames to Skip" msgstr "Atlanacak Kare Sayısı" -#: pcsx2/gui/Panels/VideoPanel.cpp:291 +#: pcsx2/gui/Panels/VideoPanel.cpp:294 msgid "Use Synchronized MTGS" msgstr "Senkronize MTGS Kullan" -#: pcsx2/gui/Panels/VideoPanel.cpp:295 +#: pcsx2/gui/Panels/VideoPanel.cpp:298 msgid "Disable all GS output" msgstr "Tüm GS çıkışını devre dışı bırak" -#: pcsx2/gui/Panels/VideoPanel.cpp:313 +#: pcsx2/gui/Panels/VideoPanel.cpp:316 msgid "Frame Skipping" msgstr "Kare Atlama" -#: pcsx2/gui/Panels/VideoPanel.cpp:316 +#: pcsx2/gui/Panels/VideoPanel.cpp:319 msgid "Framelimiter" msgstr "Kare Sınırlama" -#: pcsx2/ps2/BiosTools.cpp:83 -#: pcsx2/ps2/BiosTools.cpp:151 +#: pcsx2/gui/SysState.cpp:283 +msgid "" +"Cannot load this savestate. The state is from an incompatible edition of " +"PCSX2 that is either newer than this version, or is no longer supported." +msgstr "" +"Yüklü konum yüklenemiyor. Dosya büyük ihtimalle farklı bir PCSX2 sürümüyle " +"kaydedilmiş." + +#: pcsx2/gui/SysState.cpp:290 +msgid "" +"Cannot load this savestate. The state is an unsupported version, likely " +"created by a newer edition of PCSX2." +msgstr "" +"Yüklü konum yüklenemiyor. Dosya büyük ihtimalle farklı bir PCSX2 sürümüyle " +"kaydedilmiş." + +#: pcsx2/gui/SysState.cpp:520 +msgid "" +"This savestate cannot be loaded because it is not a valid gzip archive. It " +"may have been created by an older unsupported version of PCSX2, or it may be " +"corrupted." +msgstr "" +"Kayıt konumu geçerli bir gzip arşivi olmadığından yüklenemedi. Dosya " +"muhtemelen farklı bir PCSX2 sürümünde oluşturulmuş ya da bozuk." + +#: pcsx2/gui/SysState.cpp:579 +msgid "This file is not a valid PCSX2 savestate. See the logfile for details." +msgstr "" +"Bu kayıt konumu geçerli bir PCSX2 dosyası değil. Ayrıntılar için günlük " +"dosyasına bakın." + +#: pcsx2/gui/SysState.cpp:598 +msgid "" +"This savestate cannot be loaded due to missing critical components. See the " +"log file for details." +msgstr "" +"Kayıt konumu bazı kritik bileşenler eksik olduğundan yüklenemedi. Ayrıntılar " +"için günlük dosyasına bakın." + +#: pcsx2/ps2/BiosTools.cpp:83 pcsx2/ps2/BiosTools.cpp:151 msgid "The selected BIOS file is not a valid PS2 BIOS. Please re-configure." msgstr "Seçili BIOS dosyası geçerli değil. Lütfen ayarları tekrar yapın." #: pcsx2/ps2/BiosTools.cpp:244 -msgid "The PS2 BIOS could not be loaded. The BIOS has not been configured, or the configuration has been corrupted. Please re-configure." -msgstr "PS2 BIOS'u yüklenemedi. BIOS ayarları yapılmamış ya da bozulmuş. Lütfen ayarları tekrar yapın." +msgid "" +"The PS2 BIOS could not be loaded. The BIOS has not been configured, or the " +"configuration has been corrupted. Please re-configure." +msgstr "" +"PS2 BIOS'u yüklenemedi. BIOS ayarları yapılmamış ya da bozulmuş. Lütfen " +"ayarları tekrar yapın." #: pcsx2/ps2/BiosTools.cpp:251 msgid "The configured BIOS file does not exist. Please re-configure." msgstr "Seçili BIOS dosyası bulunamıyor. Lütfen ayarları kontrol edin." -#: pcsx2/x86/microVU.cpp:85 -#, c-format -msgid "%s Extensions not found. microVU requires a host CPU with MMX, SSE, and SSE2 extensions." -msgstr "%s Uzantıları bulunamıyor. microVU MMX, SSE ve SSE2 destekleyen bir işlemci gerektirir." - #: pcsx2/x86/ix86-32/iR5900-32.cpp:578 #, c-format -msgid "%s Extensions not found. The R5900-32 recompiler requires a host CPU with MMX, SSE, and SSE2 extensions." -msgstr "%s Uzantıları bulunamıyor. R5900-32 derleyicisi MMX, SSE ve SSE2 gerektiren bir işlemci gerektirir." +msgid "" +"%s Extensions not found. The R5900-32 recompiler requires a host CPU with " +"MMX, SSE, and SSE2 extensions." +msgstr "" +"%s Uzantıları bulunamıyor. R5900-32 derleyicisi MMX, SSE ve SSE2 gerektiren " +"bir işlemci gerektirir." -#: pcsx2/ZipTools/thread_gzip.cpp:83 -msgid "The savestate was not properly saved. The temporary file was created successfully but could not be moved to its final resting place." -msgstr "Kayıt konumu doğru şekilde kaydedilemedi. Geçici dosya oluşturuldu fakat tamamlanamadı." +#: pcsx2/x86/microVU.cpp:85 +#, c-format +msgid "" +"%s Extensions not found. microVU requires a host CPU with MMX, SSE, and " +"SSE2 extensions." +msgstr "" +"%s Uzantıları bulunamıyor. microVU MMX, SSE ve SSE2 destekleyen bir işlemci " +"gerektirir." -#: common/src/Utilities/Exceptions.cpp:219 -msgid "Oh noes! Out of memory!" -msgstr "Olamaz! Hafıza hatası!" +#~ msgid "&Back >" +#~ msgstr "&Geri >" -#: common/src/Utilities/Exceptions.cpp:234 -msgid "Virtual memory mapping failure! Your system may have conflicting device drivers, services, or may simply have insufficient memory or resources to meet PCSX2's lofty needs." -msgstr "Sanal hafıza hatası! Sisteminizde çakışan sürücüler ya da hizmetler bulunabilir ya da sisteminiz PCSX2'nin gerektirdiği donanımları karşılayamıyor." +#~ msgid "Appearance..." +#~ msgstr "Görünüm..." -#: common/src/Utilities/Exceptions.cpp:309 -msgid "Path: " -msgstr "Klasör:" +#~ msgid "" +#~ "%s will create the following folder for documents. You can change this " +#~ "setting later, at any time." +#~ msgstr "" +#~ "%s bu klasörleri oluşturacak. Bu ayarları daha sonra istediğiniz zaman " +#~ "değiştirebilirsiniz." -#: common/src/Utilities/Exceptions.cpp:313 -msgid "[Unnamed or unknown]" -msgstr "[İsimsiz ya da bilinmeyen]" - -#: common/src/Utilities/Exceptions.cpp:333 -msgid "A file could not be created." -msgstr "Dosya oluşturulamadı." - -#: common/src/Utilities/Exceptions.cpp:353 -msgid "File not found." -msgstr "Dosya bulunamadı." - -#: common/src/Utilities/Exceptions.cpp:373 -msgid "Permission denied while trying to open file, likely due to insufficient user account rights." -msgstr "Dosya açılamadı, muhtemelen hesap ayarlarına göre izniniz yok." - -#: common/src/Utilities/Exceptions.cpp:393 -msgid "Unexpected end of file or stream encountered. File is probably truncated or corrupted." -msgstr "Dosya bozuk." - -#: common/src/Utilities/ThreadingDialogs.cpp:30 -msgid "Waiting for tasks..." -msgstr "İşlemler bekleniyor..." - -#: common/src/Utilities/ThreadingDialogs.cpp:41 -msgid "Waiting for task..." -msgstr "İşlem bekleniyor..." - -#: pcsx2/gui/ApplyState.h:55 -msgid "Cannot apply new settings, one of the settings is invalid." -msgstr "Ayarlar uygulanamıyor. Yanlış ayar yapılmış olabilir." - -#: common/include/Utilities/Exceptions.h:226 -msgid "Parse error" -msgstr "Çözümleme hatası" - -#: common/include/Utilities/Exceptions.h:250 -msgid "Your machine's hardware is incapable of running PCSX2. Sorry dood." -msgstr "Bilgisayarınızın donanımı PCSX2'ye uyumsuz. Kusura bakma birader." +#~ msgid "Flush to Zero" +#~ msgstr "Flush to Zero" +#~ msgid "Denormals are Zero" +#~ msgstr "Denormals are Zero" diff --git a/locales/tr_TR/pcsx2_Tertiary.po b/locales/tr_TR/pcsx2_Tertiary.po index 22465dec22..f3bcee9786 100644 --- a/locales/tr_TR/pcsx2_Tertiary.po +++ b/locales/tr_TR/pcsx2_Tertiary.po @@ -2,10 +2,11 @@ msgid "" msgstr "" "Project-Id-Version: PCSX2 0.9.7\n" "Report-Msgid-Bugs-To: http://code.google.com/p/pcsx2/\n" -"POT-Creation-Date: 2010-12-26 10:01-0500\n" +"POT-Creation-Date: 2011-02-25 18:54+0100\n" "PO-Revision-Date: 2011-01-19 15:18+0200\n" "Last-Translator: PyramidHead \n" "Language-Team: PyramidHead \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -17,30 +18,153 @@ msgstr "" "X-Poedit-SearchPath-0: pcsx2\n" "X-Poedit-SearchPath-1: common\n" +#: common/include/Utilities/Exceptions.h:187 +msgid "No reason given." +msgstr "Sebep yok." + +#: common/src/Utilities/ThreadTools.cpp:41 +msgid "Threading activity: start, detach, sync, deletion, etc." +msgstr "İşlem etkinliği; başalt, çıkart, eşleştir, sil vb..." + +#: common/src/Utilities/wxAppWithHelpers.cpp:36 +msgid "Includes idle event processing and some other uncommon event usages." +msgstr "Includes idle event processing and some other uncommon event usages." + #: pcsx2/MTGS.cpp:809 -msgid "The MTGS thread has become unresponsive while waiting for the GS plugin to open." -msgstr "MTGS işlemcisi GS eklentisinin açılmasını beklerken yanıt vermeyi durdurdu." +msgid "" +"The MTGS thread has become unresponsive while waiting for the GS plugin to " +"open." +msgstr "" +"MTGS işlemcisi GS eklentisinin açılmasını beklerken yanıt vermeyi durdurdu." #: pcsx2/PluginManager.cpp:1329 msgid "Internal Memorycard Plugin failed to initialize." msgstr "Hafıza kartı eklentisi başlatılamadı." -#: pcsx2/gui/ExecutorThread.cpp:40 -msgid "Logs events as they are passed to the PS2 virtual machine." -msgstr "Olayları PS2 sanal makinesindeki gibi günlükler." +#: pcsx2/gui/AppConfig.cpp:776 +msgid "Safest" +msgstr "" + +#: pcsx2/gui/AppConfig.cpp:777 +msgid "Safe (faster)" +msgstr "" + +#: pcsx2/gui/AppConfig.cpp:778 +msgid "Balanced" +msgstr "" + +#: pcsx2/gui/AppConfig.cpp:779 +msgid "Aggressive" +msgstr "" + +#: pcsx2/gui/AppConfig.cpp:780 +msgid "Aggressive plus" +msgstr "" + +#: pcsx2/gui/AppConfig.cpp:781 +msgid "Mostly Harmful" +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:412 +msgid "Fits a lot of log in a microcosmically small area." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:414 +msgid "It's what I use (the programmer guy)." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:416 +msgid "Its nice and readable." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:418 +msgid "In case you have a really high res display." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:422 +msgid "Default soft-tone color scheme." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:423 +msgid "" +"Classic black color scheme for people who enjoy having text seared into " +"their optic nerves." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:427 +msgid "" +"When checked the log window will be visible over other foreground windows." +msgstr "" #: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:151 msgid "!ContextTip:ChangingNTFS" msgstr "!ContextTip:ChangingNTFS" -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:48 +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:164 +msgid "" +"Always use this option if you want the safest and surest memory card " +"behavior." +msgstr "" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:168 +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:172 +msgid "16 and 32 MB cards have roughly the same compatibility factor." +msgstr "" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:176 +msgid "" +"Use at your own risk. Erratic memory card behavior is possible (though " +"unlikely)." +msgstr "" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:49 msgid "!ContextTip:Folders:Settings" msgstr "!ContextTip:Folders:Settings" -#: pcsx2/gui/Panels/DirPickerPanel.cpp:118 +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:38 +msgid "!Panel:HasHacksOverrides" +msgstr "" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:58 +msgid "!Panel:HasPluginsOverrides" +msgstr "" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:135 +msgid "!Notice:Tooltip:Presets:Slider" +msgstr "" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:149 +msgid "!Notice:Tooltip:Presets:Checkbox" +msgstr "" + +#: pcsx2/gui/ExecutorThread.cpp:40 +msgid "Logs events as they are passed to the PS2 virtual machine." +msgstr "Olayları PS2 sanal makinesindeki gibi günlükler." + +#: pcsx2/gui/Panels/DirPickerPanel.cpp:156 msgid "!ContextTip:DirPicker:UseDefault" msgstr "!ContextTip:DirPicker:UseDefault" +#: pcsx2/gui/Panels/GSWindowPanel.cpp:52 +msgid "!ContextTip:Window:Vsync" +msgstr "!ContextTip:Window:Vsync" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:57 +msgid "!ContextTip:Window:HideMouse" +msgstr "!ContextTip:Window:HideMouse" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:63 +msgid "!ContextTip:Window:Fullscreen" +msgstr "!ContextTip:Window:Fullscreen" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:68 +msgid "!ContextTip:Window:FullscreenExclusive" +msgstr "!ContextTip:Window:FullscreenExclusive" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:73 +msgid "!ContextTip:Window:HideGS" +msgstr "!ContextTip:Window:HideGS" + #: pcsx2/gui/Panels/GameFixesPanel.cpp:67 msgid "!ContextTip:Gamefixes:EE Timing Hack" msgstr "!ContextTip:Gamefixes:EE Timing Hack" @@ -49,35 +173,15 @@ msgstr "!ContextTip:Gamefixes:EE Timing Hack" msgid "!ContextTip:Gamefixes:OPH Flag hack" msgstr "!ContextTip:Gamefixes:OPH Flag hack" -#: pcsx2/gui/Panels/GSWindowPanel.cpp:51 -msgid "!ContextTip:Window:Vsync" -msgstr "!ContextTip:Window:Vsync" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:56 -msgid "!ContextTip:Window:HideMouse" -msgstr "!ContextTip:Window:HideMouse" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:62 -msgid "!ContextTip:Window:Fullscreen" -msgstr "!ContextTip:Window:Fullscreen" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:67 -msgid "!ContextTip:Window:FullscreenExclusive" -msgstr "!ContextTip:Window:FullscreenExclusive" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:72 -msgid "!ContextTip:Window:HideGS" -msgstr "!ContextTip:Window:HideGS" - -#: pcsx2/gui/Panels/PathsPanel.cpp:39 +#: pcsx2/gui/Panels/PathsPanel.cpp:40 msgid "!ContextTip:Folders:Savestates" msgstr "!ContextTip:Folders:Savestates" -#: pcsx2/gui/Panels/PathsPanel.cpp:49 +#: pcsx2/gui/Panels/PathsPanel.cpp:50 msgid "!ContextTip:Folders:Snapshots" msgstr "!ContextTip:Folders:Snapshots" -#: pcsx2/gui/Panels/PathsPanel.cpp:59 +#: pcsx2/gui/Panels/PathsPanel.cpp:60 msgid "!ContextTip:Folders:Logs" msgstr "!ContextTip:Folders:Logs" @@ -145,23 +249,28 @@ msgstr "!ContextTip:Speedhacks:fastCDVD" msgid "!ContextTip:Framelimiter:Disable" msgstr "!ContextTip:Framelimiter:Disable" +#: pcsx2/gui/Panels/VideoPanel.cpp:162 +msgid "" +"Error while parsing either NTSC or PAL framerate settings. Settings must be " +"valid floating point numerics." +msgstr "" + +#: pcsx2/gui/Panels/VideoPanel.cpp:295 +msgid "" +"For troubleshooting potential bugs in the MTGS only, as it is potentially " +"very slow." +msgstr "" + #: pcsx2/gui/Panels/VideoPanel.cpp:299 +msgid "" +"Completely disables all GS plugin activity; ideal for benchmarking EEcore " +"components." +msgstr "" + +#: pcsx2/gui/Panels/VideoPanel.cpp:302 msgid "!ContextTip:GS:SyncMTGS" msgstr "!ContextTip:GS:SyncMTGS" -#: pcsx2/gui/Panels/VideoPanel.cpp:303 +#: pcsx2/gui/Panels/VideoPanel.cpp:306 msgid "!ContextTip:GS:DisableOutput" msgstr "!ContextTip:GS:DisableOutput" - -#: common/src/Utilities/ThreadTools.cpp:41 -msgid "Threading activity: start, detach, sync, deletion, etc." -msgstr "İşlem etkinliği; başalt, çıkart, eşleştir, sil vb..." - -#: common/src/Utilities/wxAppWithHelpers.cpp:36 -msgid "Includes idle event processing and some other uncommon event usages." -msgstr "Includes idle event processing and some other uncommon event usages." - -#: common/include/Utilities/Exceptions.h:187 -msgid "No reason given." -msgstr "Sebep yok." - diff --git a/locales/zh_CN/pcsx2_Devel.po b/locales/zh_CN/pcsx2_Devel.po index 85ac51295a..52a91d4947 100644 --- a/locales/zh_CN/pcsx2_Devel.po +++ b/locales/zh_CN/pcsx2_Devel.po @@ -1,11 +1,12 @@ msgid "" msgstr "" "Project-Id-Version: PCSX2 0.9.7\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-27 15:28+0800\n" +"Report-Msgid-Bugs-To: http://code.google.com/p/pcsx2/\n" +"POT-Creation-Date: 2011-02-25 18:54+0100\n" "PO-Revision-Date: 2011-01-27 15:28+0800\n" "Last-Translator: Wei Mingzhi \n" "Language-Team: \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -20,7 +21,9 @@ msgid "Dumps detailed information for PS2 executables (ELFs)." msgstr "转储 PS2 可执行文件 (ELF) 的详细信息。" #: pcsx2/SourceLog.cpp:101 -msgid "Logs manual protection, split blocks, and other things that might impact performance." +msgid "" +"Logs manual protection, split blocks, and other things that might impact " +"performance." msgstr "记录手动保护、分割块以及其它可能影响性能的东西。" #: pcsx2/SourceLog.cpp:106 @@ -43,8 +46,7 @@ msgstr "SYSCALL 及 DECI2 活动。" msgid "Direct memory accesses to unknown or unmapped EE memory space." msgstr "到未知或未映射的内存空间的直接内存访问。" -#: pcsx2/SourceLog.cpp:157 -#: pcsx2/SourceLog.cpp:270 +#: pcsx2/SourceLog.cpp:157 pcsx2/SourceLog.cpp:276 msgid "Disasm of executing core instructions (excluding COPs and CACHE)." msgstr "反汇编执行核心指令 (除了 COP 指令及 CACHE 指令)。" @@ -65,16 +67,16 @@ msgid "Execution of EE cache instructions." msgstr "EE 缓存指令的执行。" #: pcsx2/SourceLog.cpp:187 -msgid "All known hardware register accesses (very slow!); not including sub filter options below." +msgid "" +"All known hardware register accesses (very slow!); not including sub filter " +"options below." msgstr "全部已知硬件寄存器访问 (很慢!);不包括以下子过滤器选项。" -#: pcsx2/SourceLog.cpp:193 -#: pcsx2/SourceLog.cpp:288 +#: pcsx2/SourceLog.cpp:193 pcsx2/SourceLog.cpp:294 msgid "Logs only unknown, unmapped, or unimplemented register accesses." msgstr "仅记录未知、未映射或未实现的寄存器访问。" -#: pcsx2/SourceLog.cpp:199 -#: pcsx2/SourceLog.cpp:294 +#: pcsx2/SourceLog.cpp:199 pcsx2/SourceLog.cpp:300 msgid "Logs only DMA-related registers." msgstr "仅记录 DMA 相关寄存器。" @@ -91,58 +93,62 @@ msgid "All VIFcode processing; command, tag style, interrupts." msgstr "全部 VIF 代码处理;命令、标签风格、中断。" #: pcsx2/SourceLog.cpp:223 +msgid "All processing involved in Path3 Masking" +msgstr "" + +#: pcsx2/SourceLog.cpp:229 msgid "Scratchpad's MFIFO activity." msgstr "暂存器的 MFIFO 活动。" -#: pcsx2/SourceLog.cpp:229 +#: pcsx2/SourceLog.cpp:235 msgid "Actual data transfer logs, bus right arbitration, stalls, etc." msgstr "实际的数据传输日志、总线权限仲裁、总线阻塞等等。" -#: pcsx2/SourceLog.cpp:235 +#: pcsx2/SourceLog.cpp:241 msgid "Tracks all EE counters events and some counter register activity." msgstr "跟踪所有的 EE 计数器事件和一些计数器寄存器活动。" -#: pcsx2/SourceLog.cpp:241 +#: pcsx2/SourceLog.cpp:247 msgid "Dumps various VIF and VIFcode processing data." msgstr "转储各种 VIF 和 VIF 代码处理数据。" -#: pcsx2/SourceLog.cpp:247 +#: pcsx2/SourceLog.cpp:253 msgid "Dumps various GIF and GIFtag parsing data." msgstr "转储各种 GIF 和 GIF 标签解析数据。" -#: pcsx2/SourceLog.cpp:258 +#: pcsx2/SourceLog.cpp:264 msgid "SYSCALL and IRX activity." msgstr "SYSCALL 及 IRX 活动。" -#: pcsx2/SourceLog.cpp:264 +#: pcsx2/SourceLog.cpp:270 msgid "Direct memory accesses to unknown or unmapped IOP memory space." msgstr "到未知或未映射的内存空间的直接内存访问。" -#: pcsx2/SourceLog.cpp:276 +#: pcsx2/SourceLog.cpp:282 msgid "Disasm of the IOP's GPU co-processor instructions." msgstr "反汇编 IOP GPU 协处理器指令。" -#: pcsx2/SourceLog.cpp:282 -msgid "All known hardware register accesses, not including the sub-filters below." +#: pcsx2/SourceLog.cpp:288 +msgid "" +"All known hardware register accesses, not including the sub-filters below." msgstr "全部已知硬件寄存器访问,不包括以下子过滤器。" -#: pcsx2/SourceLog.cpp:300 +#: pcsx2/SourceLog.cpp:306 msgid "Memorycard reads, writes, erases, terminators, and other processing." msgstr "记忆卡读取、写入、擦除、终止符,及其它操作。" -#: pcsx2/SourceLog.cpp:306 +#: pcsx2/SourceLog.cpp:312 msgid "Gamepad activity on the SIO." msgstr "SIO 上的手柄活动。" -#: pcsx2/SourceLog.cpp:312 +#: pcsx2/SourceLog.cpp:318 msgid "Actual DMA event processing and data transfer logs." msgstr "实际的 DMA 事件处理及数据传输日志。" -#: pcsx2/SourceLog.cpp:318 +#: pcsx2/SourceLog.cpp:324 msgid "Tracks all IOP counters events and some counter register activity." msgstr "跟踪所有 IOP 计数器事件和一些计数器寄存器活动。" -#: pcsx2/SourceLog.cpp:324 +#: pcsx2/SourceLog.cpp:330 msgid "Detailed logging of CDVD hardware." msgstr "详细记录 CDVD 硬件信息。" - diff --git a/locales/zh_CN/pcsx2_Iconized.po b/locales/zh_CN/pcsx2_Iconized.po index 488ee00885..6f65dc33d3 100644 --- a/locales/zh_CN/pcsx2_Iconized.po +++ b/locales/zh_CN/pcsx2_Iconized.po @@ -1,11 +1,12 @@ msgid "" msgstr "" "Project-Id-Version: PCSX2 0.9.7\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-27 15:28+0800\n" +"Report-Msgid-Bugs-To: http://code.google.com/p/pcsx2/\n" +"POT-Creation-Date: 2011-02-25 18:54+0100\n" "PO-Revision-Date: 2011-01-27 15:29+0800\n" "Last-Translator: Wei Mingzhi \n" "Language-Team: \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -15,25 +16,34 @@ msgstr "" "X-Poedit-SearchPath-0: pcsx2\n" "X-Poedit-SearchPath-1: common\n" -#: pcsx2/System.cpp:114 -msgid "!Notice:Recompiler:VirtualMemoryAlloc" -msgstr "重编译器无法保留内部缓存所需的连续内存空间。此错误可能是由虚拟内存资源不足引起,如交换文件过小或未使用交换文件、某个其它程序正占用过大内存。您也可以尝试减少 PCSX2 重编译器的缓存大小,可在主机设置中找到。" - -#: pcsx2/System.cpp:346 -msgid "!Notice:EmuCore::MemoryForVM" -msgstr "PCSX2 无法分配 PS2 虚拟机所需内存。请关闭一些占用内存的后台任务后重试。" - -#: pcsx2/vtlb.cpp:588 -msgid "!Notice:HostVmReserve" -msgstr "您的系统没有足够的资源运行 PCSX2。可能是由于交换文件过小或未使用,或其它占用资源的程序。" +#: common/src/Utilities/Exceptions.cpp:254 +msgid "!Notice:VirtualMemoryMap" +msgstr "" +"没有足够的虚拟内存可用,或所需的虚拟内存映射已经被其它进程、服务或 DLL 保留。" #: pcsx2/CDVD/CDVD.cpp:385 msgid "!Notice:PsxDisc" -msgstr "PCSX2 不支持 Playstation 1 游戏。如果您想模拟 PS1 游戏请下载一个 PS1 模拟器,如 ePSXe 或 PCSX。" +msgstr "" +"PCSX2 不支持 Playstation 1 游戏。如果您想模拟 PS1 游戏请下载一个 PS1 模拟器," +"如 ePSXe 或 PCSX。" + +#: pcsx2/System.cpp:114 +msgid "!Notice:Recompiler:VirtualMemoryAlloc" +msgstr "" +"重编译器无法保留内部缓存所需的连续内存空间。此错误可能是由虚拟内存资源不足引" +"起,如交换文件过小或未使用交换文件、某个其它程序正占用过大内存。您也可以尝试" +"减少 PCSX2 重编译器的缓存大小,可在主机设置中找到。" + +#: pcsx2/System.cpp:348 +msgid "!Notice:EmuCore::MemoryForVM" +msgstr "" +"PCSX2 无法分配 PS2 虚拟机所需内存。请关闭一些占用内存的后台任务后重试。" #: pcsx2/gui/AppInit.cpp:43 msgid "!Notice:Startup:NoSSE2" -msgstr "警告: 您的计算机不支持 SSE2。PCSX2 重编译器及插件需要 SSE2 才可以运行。很多选项将会不可用且模拟速度将会*非常*慢。" +msgstr "" +"警告: 您的计算机不支持 SSE2。PCSX2 重编译器及插件需要 SSE2 才可以运行。很多选" +"项将会不可用且模拟速度将会*非常*慢。" #: pcsx2/gui/AppInit.cpp:162 msgid "!Notice:RecompilerInit:Header" @@ -41,11 +51,15 @@ msgstr "警告: 部分已配置的 PS2 重编译器初始化失败且已被禁 #: pcsx2/gui/AppInit.cpp:211 msgid "!Notice:RecompilerInit:Footer" -msgstr "注意: 重编译器对 PCSX2 非必需,但是它们通常可大大提升模拟速度。如错误已解决,您可能要手动重新启用以上列出的重编译器。" +msgstr "" +"注意: 重编译器对 PCSX2 非必需,但是它们通常可大大提升模拟速度。如错误已解决," +"您可能要手动重新启用以上列出的重编译器。" #: pcsx2/gui/AppMain.cpp:476 msgid "!Notice:BiosDumpRequired" -msgstr "PCSX2 需要一个 PS2 BIOS 才可以运行。由于法律问题,您必须从一台属于您的 PS2 实机中取得一个 BIOS 文件。请参考常见问题及教程以获取进一步的说明。" +msgstr "" +"PCSX2 需要一个 PS2 BIOS 才可以运行。由于法律问题,您必须从一台属于您的 PS2 实" +"机中取得一个 BIOS 文件。请参考常见问题及教程以获取进一步的说明。" #: pcsx2/gui/AppMain.cpp:559 msgid "!Notice Error:Thread Deadlock Actions" @@ -56,36 +70,28 @@ msgstr "" #: pcsx2/gui/AppUserMode.cpp:59 msgid "!Error:PortableModeRights" -msgstr "请确保这些文件夹已被建立且您的用户账户对它们有写入权限 -- 或使用管理员权限重新运行 PCSX2 (可以使 PCSX2 能够自动建立必要的文件夹)。如果您没有此计算机的管理员权限,您需要切换至用户文件模式 (单击下面的按钮)。" - -#: pcsx2/gui/IsoDropTarget.cpp:28 -msgid "!Notice:ConfirmSysReset" -msgstr "此动作将复位当前的 PS2 虚拟机状态;当前进度将丢失。是否确认?" - -#: pcsx2/gui/MainMenuClicks.cpp:106 -msgid "!Notice:DeleteSettings" msgstr "" -"此命令将清除 %s 的设置且允许您重新运行首次运行向导。您需要在此操作完成后重新启动 %s。\n" -"\n" -"警告!! 单击确定将删除全部 %s 的设置且强制关闭应用程序,当前模拟进度将丢失。是否确定?\n" -"\n" -"(注: 插件设置将不受影响)" - -#: pcsx2/gui/MemoryCardFile.cpp:77 -msgid "!Notice:Mcd:HasBeenDisabled" -msgstr "%d 插槽上的记忆卡已自动被禁用。您可以随时在主菜单上的配置:记忆卡中改正问题并重新启用记忆卡。" +"请确保这些文件夹已被建立且您的用户账户对它们有写入权限 -- 或使用管理员权限重" +"新运行 PCSX2 (可以使 PCSX2 能够自动建立必要的文件夹)。如果您没有此计算机的管" +"理员权限,您需要切换至用户文件模式 (单击下面的按钮)。" #: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:54 msgid "!Panel:Folders:Settings" -msgstr "您可以指定一个您的 PCSX2 设置选项所在位置。如果此位置包含已有的 PCSX2 设置,您可以选择导入或覆盖它们。" +msgstr "" +"您可以指定一个您的 PCSX2 设置选项所在位置。如果此位置包含已有的 PCSX2 设置," +"您可以选择导入或覆盖它们。" #: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:94 msgid "!Wizard:Welcome" -msgstr "此向导将引导您配置插件、记忆卡及 BIOS。如果您是第一次运行 %s,建议您先查看自述文件及配置说明。" +msgstr "" +"此向导将引导您配置插件、记忆卡及 BIOS。如果您是第一次运行 %s,建议您先查看自" +"述文件及配置说明。" #: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:140 msgid "!Wizard:Bios:Tutorial" -msgstr "PCSX2 需要一个合法的 PS2 BIOS 副本来运行游戏。使用非法复制或下载的副本为侵权行为。您必须从您自己的 Playstation 2 实机中取得 BIOS。" +msgstr "" +"PCSX2 需要一个合法的 PS2 BIOS 副本来运行游戏。使用非法复制或下载的副本为侵权" +"行为。您必须从您自己的 Playstation 2 实机中取得 BIOS。" #: pcsx2/gui/Dialogs/ImportSettingsDialog.cpp:31 msgid "!Notice:ImportExistingSettings" @@ -96,82 +102,128 @@ msgstr "" #: pcsx2/gui/Dialogs/McdConfigDialog.cpp:30 msgid "!Panel:Mcd:NtfsCompress" -msgstr "NTFS 压缩是内置、高效、可靠的;通常对于记忆卡文件压缩比非常高 (强烈建议使用此选项)。" +msgstr "" +"NTFS 压缩是内置、高效、可靠的;通常对于记忆卡文件压缩比非常高 (强烈建议使用此" +"选项)。" #: pcsx2/gui/Dialogs/McdConfigDialog.cpp:41 msgid "!Panel:Mcd:EnableEjection" -msgstr "以强制游戏在读取即时存档后重新检索记忆卡内容的方式避免记忆卡损坏。可能不与所有游戏兼容 (如 Guitar Hero 《吉他英雄》)。" +msgstr "" +"以强制游戏在读取即时存档后重新检索记忆卡内容的方式避免记忆卡损坏。可能不与所" +"有游戏兼容 (如 Guitar Hero 《吉他英雄》)。" #: pcsx2/gui/Dialogs/StuckThreadDialog.cpp:33 msgid "!Panel:StuckThread:Heading" msgstr "线程 '%d' 没有响应。它可能出现死锁,或可能仅仅是运行得*非常*慢。" -#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:137 +#: pcsx2/gui/IsoDropTarget.cpp:28 +msgid "!Notice:ConfirmSysReset" +msgstr "此动作将复位当前的 PS2 虚拟机状态;当前进度将丢失。是否确认?" + +#: pcsx2/gui/MainMenuClicks.cpp:106 +msgid "!Notice:DeleteSettings" +msgstr "" +"此命令将清除 %s 的设置且允许您重新运行首次运行向导。您需要在此操作完成后重新" +"启动 %s。\n" +"\n" +"警告!! 单击确定将删除全部 %s 的设置且强制关闭应用程序,当前模拟进度将丢失。是" +"否确定?\n" +"\n" +"(注: 插件设置将不受影响)" + +#: pcsx2/gui/MemoryCardFile.cpp:77 +msgid "!Notice:Mcd:HasBeenDisabled" +msgstr "" +"%d 插槽上的记忆卡已自动被禁用。您可以随时在主菜单上的配置:记忆卡中改正问题并" +"重新启用记忆卡。" + +#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:138 msgid "!Notice:BIOS:InvalidSelection" -msgstr "请选择一个合法的 BIOS。如果您不能作出合法的选择请单击取消来关闭配置面板。" +msgstr "" +"请选择一个合法的 BIOS。如果您不能作出合法的选择请单击取消来关闭配置面板。" #: pcsx2/gui/Panels/CpuPanel.cpp:111 msgid "!Panel:EE/IOP:Heading" msgstr "注: 大多数游戏使用默认选项即可。" -#: pcsx2/gui/Panels/CpuPanel.cpp:175 +#: pcsx2/gui/Panels/CpuPanel.cpp:178 msgid "!Panel:VUs:Heading" msgstr "注: 大多数游戏使用默认选项即可。" -#: pcsx2/gui/Panels/DirPickerPanel.cpp:63 +#: pcsx2/gui/Panels/DirPickerPanel.cpp:69 msgid "!Notice:DirPicker:CreatePath" msgstr "指定的路径/目录不存在。是否需要创建?" #: pcsx2/gui/Panels/GameFixesPanel.cpp:96 msgid "!Panel:Gamefixes:Compat Warning" -msgstr "游戏特殊修正可以修正一些游戏中的模拟错误。但它也可能在其它游戏中导致兼容或性能问题。您需要在更换游戏时手动开关相应选项。" +msgstr "" +"游戏特殊修正可以修正一些游戏中的模拟错误。但它也可能在其它游戏中导致兼容或性" +"能问题。您需要在更换游戏时手动开关相应选项。" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:365 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:368 msgid "!Notice:Mcd:Overwrite" -msgstr "此操作将把 %u 插槽上的记忆卡内容复制到 %u 插槽。目标插槽记忆卡的数据将丢失。是否确认?" +msgstr "" +"此操作将把 %u 插槽上的记忆卡内容复制到 %u 插槽。目标插槽记忆卡的数据将丢失。" +"是否确认?" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:379 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:384 msgid "!Notice:Mcd:Copy Failed" msgstr "错误! 无法将记忆卡复到到插槽 %u。目标文件正在使用。" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:585 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:596 msgid "!Notice:Mcd:Delete" -msgstr "即将删除已格式化的位于 %u 插柄上的记忆卡。此记忆卡中所有数据将丢失! 是否确定?" +msgstr "" +"即将删除已格式化的位于 %u 插柄上的记忆卡。此记忆卡中所有数据将丢失! 是否确定?" #: pcsx2/gui/Panels/MiscPanelStuff.cpp:35 msgid "!Panel:Usermode:Explained" -msgstr "请在下面选择您偏好的 PCSX2 用户文档默认位置 (包括记忆卡、截图、设置选项及即时存档)。这些文件夹位置可以随时在核心设置面板中更改。" +msgstr "" +"请在下面选择您偏好的 PCSX2 用户文档默认位置 (包括记忆卡、截图、设置选项及即时" +"存档)。这些文件夹位置可以随时在核心设置面板中更改。" #: pcsx2/gui/Panels/MiscPanelStuff.cpp:41 msgid "!Panel:Usermode:Warning" -msgstr "您可以在此更改 PCSX2 用户文档的默认位置 (包括记忆卡、截图、设置选项及即时存档)。此选项仅对由安装时的默认值设定的标准路径有效。" +msgstr "" +"您可以在此更改 PCSX2 用户文档的默认位置 (包括记忆卡、截图、设置选项及即时存" +"档)。此选项仅对由安装时的默认值设定的标准路径有效。" #: pcsx2/gui/Panels/PluginSelectorPanel.cpp:242 msgid "!Notice:PluginSelector:ConfirmShutdown" msgstr "" -"警告! 更换插件需要彻底关闭并重新启动 PS2 虚拟机。PCSX2 将尝试保存即时存档并读取,但如果新选择的插件不兼容将失败,当前进度将丢失。\n" +"警告! 更换插件需要彻底关闭并重新启动 PS2 虚拟机。PCSX2 将尝试保存即时存档并读" +"取,但如果新选择的插件不兼容将失败,当前进度将丢失。\n" "\n" "是否确认应用这些设置?" -#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:456 +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:457 msgid "!Notice:PluginSelector:ApplyFailed" -msgstr "要运行 %s,所有插件必须有合法选择。如果由于插件缺失或不完整的安装您不能做出合法选择,请单击取消关闭配置面板。" +msgstr "" +"要运行 %s,所有插件必须有合法选择。如果由于插件缺失或不完整的安装您不能做出合" +"法选择,请单击取消关闭配置面板。" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:97 msgid "!Panel:Speedhacks:Overview" -msgstr "速度 Hack 通常可以提升模拟速度,但也可能导致错误、声音问题或虚帧。如模拟有问题请先尝试禁用此面板。" +msgstr "" +"速度 Hack 通常可以提升模拟速度,但也可能导致错误、声音问题或虚帧。如模拟有问" +"题请先尝试禁用此面板。" #: pcsx2/gui/Panels/VideoPanel.cpp:223 msgid "!Panel:Frameskip:Heading" -msgstr "注意: 由于 PS2 硬件设计,不可以准确跳帧。启用此选项可能在某些游戏中导致严重图像错误。" +msgstr "" +"注意: 由于 PS2 硬件设计,不可以准确跳帧。启用此选项可能在某些游戏中导致严重图" +"像错误。" + +#: pcsx2/vtlb.cpp:698 +msgid "!Notice:HostVmReserve" +msgstr "" +"您的系统没有足够的资源运行 PCSX2。可能是由于交换文件过小或未使用,或其它占用" +"资源的程序。" #: pcsx2/x86/sVU_zerorec.cpp:362 msgid "!Notice:superVU:VirtualMemoryAlloc" -msgstr "内存溢出 (一点点): SuperVU 重编译器无法保留所需的指定内存范围,且将不可用。这不是一个严重错误,sVU 重编译器已过时,您应该使用 microVU。:)" - -#: common/src/Utilities/Exceptions.cpp:254 -msgid "!Notice:VirtualMemoryMap" -msgstr "没有足够的虚拟内存可用,或所需的虚拟内存映射已经被其它进程、服务或 DLL 保留。" +msgstr "" +"内存溢出 (一点点): SuperVU 重编译器无法保留所需的指定内存范围,且将不可用。这" +"不是一个严重错误,sVU 重编译器已过时,您应该使用 microVU。:)" #~ msgid "!Panel:Framelimiter:Heading" #~ msgstr "" diff --git a/locales/zh_CN/pcsx2_Main.po b/locales/zh_CN/pcsx2_Main.po index db8a99074c..e71f9ab44d 100644 --- a/locales/zh_CN/pcsx2_Main.po +++ b/locales/zh_CN/pcsx2_Main.po @@ -1,11 +1,12 @@ msgid "" msgstr "" "Project-Id-Version: PCSX2 0.9.7\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-27 15:29+0800\n" +"Report-Msgid-Bugs-To: http://code.google.com/p/pcsx2/\n" +"POT-Creation-Date: 2011-02-25 18:54+0100\n" "PO-Revision-Date: 2011-01-27 15:29+0800\n" "Last-Translator: Wei Mingzhi \n" "Language-Team: \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -15,26 +16,97 @@ msgstr "" "X-Poedit-SearchPath-0: pcsx2\n" "X-Poedit-SearchPath-1: common\n" +#: common/include/Utilities/Exceptions.h:226 +msgid "Parse error" +msgstr "解析错误" + +#: common/include/Utilities/Exceptions.h:250 +msgid "Your machine's hardware is incapable of running PCSX2. Sorry dood." +msgstr "您的硬件不可以运行 PCSX2。抱歉。" + +#: common/src/Utilities/Exceptions.cpp:219 +msgid "Oh noes! Out of memory!" +msgstr "不好! 内存不够!" + +#: common/src/Utilities/Exceptions.cpp:234 +msgid "" +"Virtual memory mapping failure! Your system may have conflicting device " +"drivers, services, or may simply have insufficient memory or resources to " +"meet PCSX2's lofty needs." +msgstr "" +"虚拟内存映射错误! 您的系统可能有冲突的硬件驱动程序、服务,或者没有足够的内存" +"或资源来满足 PCSX2 的要求。" + +#: common/src/Utilities/Exceptions.cpp:309 +msgid "Path: " +msgstr "路径:" + +#: common/src/Utilities/Exceptions.cpp:313 +msgid "[Unnamed or unknown]" +msgstr "[未命名或未知]" + +#: common/src/Utilities/Exceptions.cpp:333 +msgid "A file could not be created." +msgstr "文件无法建立。" + +#: common/src/Utilities/Exceptions.cpp:353 +msgid "File not found." +msgstr "文件未找到。" + +#: common/src/Utilities/Exceptions.cpp:373 +msgid "" +"Permission denied while trying to open file, likely due to insufficient user " +"account rights." +msgstr "打开文件时拒绝访问,可能是由于用户账户权限限制。" + +#: common/src/Utilities/Exceptions.cpp:393 +msgid "" +"Unexpected end of file or stream encountered. File is probably truncated or " +"corrupted." +msgstr "遇到非预期的文件或串流结尾。文件可能被截断或被破坏。" + +#: common/src/Utilities/ThreadingDialogs.cpp:30 +msgid "Waiting for tasks..." +msgstr "正在等待任务..." + +#: common/src/Utilities/ThreadingDialogs.cpp:41 +msgid "Waiting for task..." +msgstr "正在等待任务..." + +#: pcsx2/CDVD/IsoFileFormats.cpp:416 +msgid "ISO mounting failed: PCSX2 is unable to identify the ISO image type." +msgstr "ISO 挂载失败: PCSX2 无法识别 ISO 镜像类型。" + #: pcsx2/Elfheader.cpp:266 msgid "Cannot load ELF binary image. The file may be corrupt or incomplete." msgstr "无法加载 ELF 二进制映像。文件可能已损坏或不完整。" #: pcsx2/Elfheader.cpp:268 -msgid "If loading from an ISO image, this error may be caused by an unsupported ISO image type or bug in PCSX2 ISO image support." -msgstr "如从一个 ISO 镜像加载,此错误可能由一个不被支持的 ISO 镜像类型或 PCSX2 ISO 镜像支持的 bug 引起。" +msgid "" +"If loading from an ISO image, this error may be caused by an unsupported ISO " +"image type or bug in PCSX2 ISO image support." +msgstr "" +"如从一个 ISO 镜像加载,此错误可能由一个不被支持的 ISO 镜像类型或 PCSX2 ISO 镜" +"像支持的 bug 引起。" #: pcsx2/PluginManager.cpp:692 -msgid "The savestate cannot be loaded, as it appears to be corrupt or incomplete." +msgid "" +"The savestate cannot be loaded, as it appears to be corrupt or incomplete." msgstr "即时存档无法读取,文件可能已损坏或不完整。" #: pcsx2/PluginManager.cpp:702 #, c-format -msgid "%s plugin failed to open. Your computer may have insufficient resources, or incompatible hardware/drivers." -msgstr "打开 %s 插件失败。您的计算机可能没有可用资源,或由不兼容的硬件/驱动程序导致。" +msgid "" +"%s plugin failed to open. Your computer may have insufficient resources, or " +"incompatible hardware/drivers." +msgstr "" +"打开 %s 插件失败。您的计算机可能没有可用资源,或由不兼容的硬件/驱动程序导致。" #: pcsx2/PluginManager.cpp:709 #, c-format -msgid "%s plugin failed to initialize. Your system may have insufficient memory or resources needed." +msgid "" +"%s plugin failed to initialize. Your system may have insufficient memory or " +"resources needed." msgstr "%s 插件初始化失败。您的系统可能没有足够的内存或资源。" #: pcsx2/PluginManager.cpp:815 @@ -49,21 +121,33 @@ msgstr "配置的 %s 插件文件不是一个合法的动态链接库" #: pcsx2/PluginManager.cpp:837 #, c-format -msgid "The configured %s plugin is not a PCSX2 plugin, or is for an older unsupported version of PCSX2." -msgstr "配置的 %s 插件不是一个合法的 PCSX2 插件,或是为一个不受支持的 PCSX2 旧版本设计的。" +msgid "" +"The configured %s plugin is not a PCSX2 plugin, or is for an older " +"unsupported version of PCSX2." +msgstr "" +"配置的 %s 插件不是一个合法的 PCSX2 插件,或是为一个不受支持的 PCSX2 旧版本设" +"计的。" #: pcsx2/PluginManager.cpp:862 -msgid "The plugin reports that your hardware or software/drivers are not supported." +msgid "" +"The plugin reports that your hardware or software/drivers are not supported." msgstr "插件报告您的硬件或软件/驱动程序不受支持。" #: pcsx2/PluginManager.cpp:883 -msgid "Configured plugin is not a PCSX2 plugin, or is for an older unsupported version of PCSX2." -msgstr "配置的插件不是一个 PCSX2 插件,或是为一个不受支持的 PCSX2 旧版本设计的。" +msgid "" +"Configured plugin is not a PCSX2 plugin, or is for an older unsupported " +"version of PCSX2." +msgstr "" +"配置的插件不是一个 PCSX2 插件,或是为一个不受支持的 PCSX2 旧版本设计的。" #: pcsx2/PluginManager.cpp:909 #, c-format -msgid "Configured %s plugin is not a valid PCSX2 plugin, or is for an older unsupported version of PCSX2." -msgstr "配置的 %s 插件不是一个合法的 PCSX2 插件,或是为一个不受支持的 PCSX2 旧版本设计的。" +msgid "" +"Configured %s plugin is not a valid PCSX2 plugin, or is for an older " +"unsupported version of PCSX2." +msgstr "" +"配置的 %s 插件不是一个合法的 PCSX2 插件,或是为一个不受支持的 PCSX2 旧版本设" +"计的。" #: pcsx2/PluginManager.cpp:1726 msgid "Unloaded Plugin" @@ -73,12 +157,13 @@ msgstr "已卸载插件" msgid "Cannot load savestate. It is of an unknown or unsupported version." msgstr "无法加载即时存档。存档为一个未知或不支持的版本。" -#: pcsx2/CDVD/IsoFileFormats.cpp:416 -msgid "ISO mounting failed: PCSX2 is unable to identify the ISO image type." -msgstr "ISO 挂载失败: PCSX2 无法识别 ISO 镜像类型。" +#: pcsx2/ZipTools/thread_gzip.cpp:82 +msgid "" +"The savestate was not properly saved. The temporary file was created " +"successfully but could not be moved to its final resting place." +msgstr "即时存档未正确保存。临时文件建立成功但无法移至存档位置。" -#: pcsx2/gui/AppConfig.cpp:926 -#: pcsx2/gui/AppConfig.cpp:932 +#: pcsx2/gui/AppConfig.cpp:937 pcsx2/gui/AppConfig.cpp:943 msgid "Failed to overwrite existing settings file; permission was denied." msgstr "覆盖已存在文件失败;权限被拒绝。" @@ -91,7 +176,9 @@ msgid "PCSX2 - SSE2 Recommended" msgstr "PCSX2 - 推荐使用 SSE2" #: pcsx2/gui/AppInit.cpp:71 -msgid "SSE extensions are not available. PCSX2 requires a cpu that supports the SSE instruction set." +msgid "" +"SSE extensions are not available. PCSX2 requires a cpu that supports the " +"SSE instruction set." msgstr "SSE 扩展不可用。PCSX2 需要一个支持 SSE 指令集的 CPU。" #: pcsx2/gui/AppInit.cpp:154 @@ -102,8 +189,7 @@ msgstr "PCSX2 重编译器错误" msgid "All options are for the current session only and will not be saved.\n" msgstr "全部选项仅对当前会话有效,不会被保存。\n" -#: pcsx2/gui/AppInit.cpp:237 -#: pcsx2/gui/AppMain.cpp:290 +#: pcsx2/gui/AppInit.cpp:237 pcsx2/gui/AppMain.cpp:290 msgid "IsoFile" msgstr "Iso 文件" @@ -181,7 +267,8 @@ msgstr "插件覆盖错误 - %s" #: pcsx2/gui/AppInit.cpp:310 #, c-format msgid "" -"%s Plugin Override Error! The following file does not exist or is not a valid %s plugin:\n" +"%s Plugin Override Error! The following file does not exist or is not a " +"valid %s plugin:\n" "\n" msgstr "" "%s 插件覆盖错误! 以下文件不存在或不是一个合法的 %s 插件:\n" @@ -193,15 +280,14 @@ msgid "Press OK to use the default configured plugin, or Cancel to close %s." msgstr "单击确定使用默认配置的插件,或取消关闭 %s。" #: pcsx2/gui/AppInit.cpp:495 -#: pcsx2/gui/AppInit.cpp:507 +msgid "PCSX2 Error: Hardware Deficiency" +msgstr "PCSX2 错误: 硬件缺陷" + +#: pcsx2/gui/AppInit.cpp:495 pcsx2/gui/AppInit.cpp:507 #, c-format msgid "Press OK to close %s." msgstr "请单击 \"确定\" 来关闭 %s。" -#: pcsx2/gui/AppInit.cpp:495 -msgid "PCSX2 Error: Hardware Deficiency" -msgstr "PCSX2 错误: 硬件缺陷" - #: pcsx2/gui/AppInit.cpp:508 #, c-format msgid "%s Critical Error" @@ -232,8 +318,9 @@ msgid "&Next >" msgstr "下一步(&N) >" #: pcsx2/gui/AppInit.cpp:682 -msgid "&Back >" -msgstr "上一步(&B) >" +#, fuzzy +msgid "< &Back" +msgstr "上一步(&B)" #: pcsx2/gui/AppInit.cpp:683 msgid "&Back" @@ -243,19 +330,33 @@ msgstr "上一步(&B)" msgid "&Finish" msgstr "完成(&F)" +#: pcsx2/gui/AppInit.cpp:685 +msgid "&Yes" +msgstr "" + #: pcsx2/gui/AppInit.cpp:686 +#, fuzzy +msgid "&No" +msgstr "否" + +#: pcsx2/gui/AppInit.cpp:687 +#, fuzzy +msgid "Browse" +msgstr "浏览..." + +#: pcsx2/gui/AppInit.cpp:689 msgid "&Save" msgstr "保存(&S)" -#: pcsx2/gui/AppInit.cpp:687 +#: pcsx2/gui/AppInit.cpp:690 msgid "Save &As..." msgstr "另存为(&A)..." -#: pcsx2/gui/AppInit.cpp:688 +#: pcsx2/gui/AppInit.cpp:691 msgid "&Help" msgstr "帮助(&H)" -#: pcsx2/gui/AppInit.cpp:689 +#: pcsx2/gui/AppInit.cpp:692 msgid "&Home" msgstr "首页(&H)" @@ -269,9 +370,9 @@ msgstr "" "\n" "单击确定进入插件配置面板。" -#: pcsx2/gui/AppMain.cpp:131 -#: pcsx2/gui/AppMain.cpp:145 -msgid "Warning! System plugins have not been loaded. PCSX2 may be inoperable." +#: pcsx2/gui/AppMain.cpp:131 pcsx2/gui/AppMain.cpp:145 +msgid "" +"Warning! System plugins have not been loaded. PCSX2 may be inoperable." msgstr "警告! 系统插件未被加载。PCSX2 可能不可使用。" #: pcsx2/gui/AppMain.cpp:300 @@ -299,14 +400,14 @@ msgstr "终止" msgid "Executing PS2 Virtual Machine..." msgstr "正在执行 PS2 虚拟机..." -#: pcsx2/gui/AppRes.cpp:72 -msgid "Browse..." -msgstr "浏览..." - #: pcsx2/gui/AppRes.cpp:72 msgid "Browse for an Iso that is not in your recent history." msgstr "打开一个最近历史记录中没有的 Iso 文件。" +#: pcsx2/gui/AppRes.cpp:72 +msgid "Browse..." +msgstr "浏览..." + #: pcsx2/gui/AppUserMode.cpp:101 msgid "The following folders exist, but are not writable:" msgstr "以下文件夹已存在,但无法写入:" @@ -321,13 +422,19 @@ msgid "Portable mode error - %s" msgstr "绿色模式错误 - %s" #: pcsx2/gui/AppUserMode.cpp:159 -msgid "PCSX2 has been installed as a portable application but cannot run due to the following errors:" +msgid "" +"PCSX2 has been installed as a portable application but cannot run due to the " +"following errors:" msgstr "PCSX2 已被安装为一个绿色软件,但由于以下错误无法运行:" #: pcsx2/gui/AppUserMode.cpp:167 msgid "Switch to User Documents Mode" msgstr "切换至用户文档模式" +#: pcsx2/gui/ApplyState.h:55 +msgid "Cannot apply new settings, one of the settings is invalid." +msgstr "无法应用新的设置选项,某一个设置选项非法。" + #: pcsx2/gui/ConsoleLogger.cpp:120 msgid "Save log question" msgstr "保存日志问题" @@ -336,7 +443,7 @@ msgstr "保存日志问题" msgid "Small" msgstr "小" -#: pcsx2/gui/ConsoleLogger.cpp:414 +#: pcsx2/gui/ConsoleLogger.cpp:414 pcsx2/gui/Panels/CpuPanel.cpp:38 msgid "Normal" msgstr "正常" @@ -376,7 +483,7 @@ msgstr "清除(&L)" msgid "Clear the log window contents" msgstr "清除日志窗口内容" -#: pcsx2/gui/ConsoleLogger.cpp:432 +#: pcsx2/gui/ConsoleLogger.cpp:432 pcsx2/gui/Dialogs/SysConfigDialog.cpp:280 msgid "Appearance" msgstr "外观" @@ -420,6 +527,283 @@ msgstr "日志(&L)" msgid "&Sources" msgstr "来源(&S)" +#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:35 +#, c-format +msgid "About %s" +msgstr "关于 %s" + +#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:97 +msgid "A Playstation 2 Emulator" +msgstr "一个 PlayStation 2 模拟器" + +#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:101 +msgid "PCSX2 Official Website and Forums" +msgstr "PCSX2 官方网站和论坛" + +#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:105 +msgid "PCSX2 Official Svn Repository at Googlecode" +msgstr "位于 Googlecode 的 PCSX2 官方 svn 仓库" + +#: pcsx2/gui/Dialogs/AssertionDialog.cpp:23 +msgid "Assertion Failure - " +msgstr "断言失败 - " + +#: pcsx2/gui/Dialogs/BaseConfigurationDialog.cpp:189 +msgid "Saves a snapshot of this settings panel to a PNG file." +msgstr "将此设置面板的截图保存为 PNG 文件。" + +#: pcsx2/gui/Dialogs/BaseConfigurationDialog.cpp:300 +msgid "Save dialog screenshots to..." +msgstr "将对话框截图保存到..." + +#: pcsx2/gui/Dialogs/BiosSelectorDialog.cpp:31 +msgid "BIOS Selector" +msgstr "BIOS 选择器" + +#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:193 +msgid "Do not show this dialog again." +msgstr "不再显示此对话框。" + +#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:199 +msgid "" +"Disables this popup and whatever response you select here will be " +"automatically used from now on." +msgstr "禁用弹出提示,以后任何您选定的内容将被自动使用。" + +#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:201 +msgid "" +"The popup will not be shown again. This setting can be undone from the " +"settings panels." +msgstr "此提示框将不会再被显示。此设定可以从设置面板中撤消。" + +#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:247 +#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:292 +msgid "Ignore" +msgstr "忽略" + +#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:278 +msgid "Reset" +msgstr "重置" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:32 +#, c-format +msgid "Select memory card for Port %u / Slot %u" +msgstr "选择端口 %u / 插槽 %u 上的记忆卡" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:41 +msgid "Create new memory card" +msgstr "创建新的记忆卡" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:60 +#: pcsx2/gui/Panels/DirPickerPanel.cpp:74 +#: pcsx2/gui/Panels/DirPickerPanel.cpp:271 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:464 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:511 +msgid "Create" +msgstr "创建" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:72 +msgid "New card will be saved to:" +msgstr "新记忆卡将被保存为:" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:135 +msgid "Error: The memory card could not be created." +msgstr "错误: 记忆卡文件无法建立。" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:136 +msgid "memory card creation error" +msgstr "记忆卡建立错误" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:147 +msgid "Use NTFS compression when creating this card." +msgstr "创建此记忆卡时使用 NTFS 压缩。" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:163 +msgid "8 MB [most compatible]" +msgstr "8 MB [兼容性最高]" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:163 +msgid "" +"This is the standard Sony-provisioned size, and is supported by all games " +"and BIOS versions." +msgstr "索尼的标准大小,支持所有游戏和 BIOS 版本。" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:167 +msgid "16 MB" +msgstr "16 MB" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:167 +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:171 +msgid "" +"A typical size for 3rd-party memory cards which should work with most games." +msgstr "一个通常的第三方记忆卡大小,应该可以兼容大多数游戏。" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:171 +msgid "32 MB" +msgstr "32 MB" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:175 +msgid "64 MB" +msgstr "64 MB" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:175 +msgid "" +"Low compatibility warning: Yes it's very big, but may not work with many " +"games." +msgstr "兼容性低: 容量较大,但可能在很多游戏中不可用。" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:47 +#, c-format +msgid "Select a folder for %s settings" +msgstr "选择一个 %s 设置的文件夹" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:47 +msgid "Settings" +msgstr "设置" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:81 +msgid "Language selector" +msgstr "语言选择器" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:84 +msgid "" +"Change the language only if you need to.\n" +"The system default should be fine for most operating systems." +msgstr "" +"请仅在需要时更换语言。\n" +"系统默认语言应对大多数操作系统有效。" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:104 +msgid "Configuration Guides (online)" +msgstr "配置说明 (在线)" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:108 +msgid "Readme / FAQ (Offline/PDF)" +msgstr "自述文件 / 常见问题 (离线/PDF)" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:117 +#, c-format +msgid "%s First Time Configuration" +msgstr "%s 首次运行向导" + +#: pcsx2/gui/Dialogs/GameDatabaseDialog.cpp:24 +#, c-format +msgid "Game database - %s" +msgstr "游戏数据库 - %s" + +#: pcsx2/gui/Dialogs/ImportSettingsDialog.cpp:24 +msgid "Import Existing Settings?" +msgstr "导入已存在设置?" + +#: pcsx2/gui/Dialogs/ImportSettingsDialog.cpp:39 +msgid "Import" +msgstr "导入" + +#: pcsx2/gui/Dialogs/ImportSettingsDialog.cpp:40 +msgid "Overwrite" +msgstr "覆盖" + +#: pcsx2/gui/Dialogs/LogOptionsDialog.cpp:27 +msgid "Trace Logging" +msgstr "跟踪日志" + +#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:40 +msgid "Auto-eject memory cards when loading savestates" +msgstr "即时读档时自动退出记忆卡" + +#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:47 +msgid "Backup existing Savestate when creating a new one" +msgstr "即时存档时备份原有存档" + +#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:51 +#, c-format +msgid "Enable Multitap on Port %u" +msgstr "对端口 %u 启用多分插" + +#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:95 +msgid "MemoryCard Manager" +msgstr "记忆卡管理器" + +#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:102 +msgid "Drag items over other items in the list to swap or copy memory cards." +msgstr "将列表中的一项拖动至另一项上面可交换或复制记忆卡。" + +#: pcsx2/gui/Dialogs/PickUserModeDialog.cpp:24 +msgid "PCSX2 First Time configuration" +msgstr "PCSX2 首次运行配置" + +#: pcsx2/gui/Dialogs/PickUserModeDialog.cpp:29 +#, c-format +msgid "%s is starting from a new or unknown folder and needs to be configured." +msgstr "%s 正在从一个新的或未知的文件夹启动,需要被配置。" + +#: pcsx2/gui/Dialogs/StuckThreadDialog.cpp:28 +msgid "PCSX2 Thread is not responding" +msgstr "PCSX2 线程没有响应" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:36 +msgid "Config Overrides Warning" +msgstr "配置覆盖警告" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:56 +msgid "Components Overrides Warning" +msgstr "组件覆盖警告" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:147 +msgid "Preset:" +msgstr "预置:" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:228 +#, c-format +msgid "Emulation Settings - %s" +msgstr "模拟设置 - %s" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:237 +msgid "EE/IOP" +msgstr "EE/IOP" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:238 +msgid "VUs" +msgstr "VU" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:239 +msgid "GS" +msgstr "GS" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:240 +msgid "GS Window" +msgstr "GS 窗口" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:241 +msgid "Speedhacks" +msgstr "速度 Hack" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:242 +msgid "Game Fixes" +msgstr "游戏特殊修正" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:253 +#, c-format +msgid "Components Selectors - %s" +msgstr "组件选择器 - %s" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:260 +msgid "Plugins" +msgstr "插件" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:261 +msgid "BIOS" +msgstr "BIOS" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:262 +msgid "Folders" +msgstr "文件夹" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:273 +#, c-format +msgid "Appearance/Themes - %s" +msgstr "外观/主题 - %s" + #: pcsx2/gui/ExecutorThread.cpp:430 msgid "Press Cancel to attempt to cancel the action." msgstr "单击取消可尝试取消动作。" @@ -437,7 +821,7 @@ msgstr "终止应用程序" msgid "GS Output is Disabled!" msgstr "GS 输出已禁用!" -#: pcsx2/gui/GlobalCommands.cpp:268 +#: pcsx2/gui/GlobalCommands.cpp:268 pcsx2/gui/MainFrame.cpp:402 msgid "Save state" msgstr "即时存档" @@ -445,7 +829,7 @@ msgstr "即时存档" msgid "Saves the virtual machine state to the current slot." msgstr "将虚拟机的状态保存至当前存档位置。" -#: pcsx2/gui/GlobalCommands.cpp:274 +#: pcsx2/gui/GlobalCommands.cpp:274 pcsx2/gui/MainFrame.cpp:401 msgid "Load state" msgstr "即时读档" @@ -475,11 +859,12 @@ msgstr "拖放错误" #: pcsx2/gui/IsoDropTarget.cpp:58 #, c-format -msgid "It is an error to drop multiple files onto a %s window. One at a time please, thank you." +msgid "" +"It is an error to drop multiple files onto a %s window. One at a time " +"please, thank you." msgstr "不可以将多个文件同时拖到到 %s 窗口上。一次只能拖动一个文件。" -#: pcsx2/gui/IsoDropTarget.cpp:89 -#: pcsx2/gui/MainMenuClicks.cpp:337 +#: pcsx2/gui/IsoDropTarget.cpp:89 pcsx2/gui/MainMenuClicks.cpp:337 msgid "Confirm PS2 Reset" msgstr "确认 PS2 重启" @@ -497,6 +882,11 @@ msgstr "" msgid "You have dropped the following ISO image into %s:" msgstr "您已将以下 ISO 镜像拖放至 %s:" +#: pcsx2/gui/MainFrame.cpp:38 +#, c-format +msgid "Slot %d" +msgstr "" + #: pcsx2/gui/MainFrame.cpp:41 msgid "Other..." msgstr "其它..." @@ -543,8 +933,7 @@ msgstr "%s %d.%d.%d %s" msgid "(modded)" msgstr "(已修改)" -#: pcsx2/gui/MainFrame.cpp:387 -#: pcsx2/gui/MainFrame.cpp:389 +#: pcsx2/gui/MainFrame.cpp:387 pcsx2/gui/MainFrame.cpp:389 #: pcsx2/gui/MainFrame.cpp:395 msgid "Initializing..." msgstr "正在初始化..." @@ -630,7 +1019,7 @@ msgstr "记忆卡(&M)" msgid "&Plugin/BIOS Selector" msgstr "插件/BIOS 选择器(&P)" -#: pcsx2/gui/MainFrame.cpp:445 +#: pcsx2/gui/MainFrame.cpp:445 pcsx2/gui/Panels/GameDatabasePanel.cpp:348 msgid "Game Database Editor" msgstr "游戏数据库编辑器" @@ -756,7 +1145,8 @@ msgid "Reboot CDVD (fast)" msgstr "重新启动 CDVD (快速模式)" #: pcsx2/gui/MainFrame.cpp:623 -msgid "Reboot using BOOT2 injection (skips splash screens)" +#, fuzzy +msgid "Reboot using fast BOOT (skips splash screens)" msgstr "使用 BOOT2 注入重启 (跳过 PS2 启动画面)" #: pcsx2/gui/MainFrame.cpp:627 @@ -764,11 +1154,11 @@ msgid "Boot CDVD (fast)" msgstr "启动 CDVD (快速模式)" #: pcsx2/gui/MainFrame.cpp:628 -msgid "Use BOOT2 injection to skip PS2 startup and splash screens" +#, fuzzy +msgid "Use fast boot to skip PS2 startup and splash screens" msgstr "使用 BOOT2 注入来跳过 PS2 启动画面" -#: pcsx2/gui/MainFrame.cpp:689 -#: pcsx2/gui/MainFrame.cpp:724 +#: pcsx2/gui/MainFrame.cpp:689 pcsx2/gui/MainFrame.cpp:724 msgid "No plugin loaded" msgstr "未加载插件" @@ -777,7 +1167,9 @@ msgid "Core GS Settings..." msgstr "核心 GS 设置..." #: pcsx2/gui/MainFrame.cpp:695 -msgid "Modify hardware emulation settings regulated by the PCSX2 core virtual machine." +msgid "" +"Modify hardware emulation settings regulated by the PCSX2 core virtual " +"machine." msgstr "修改 PCSX2 核心虚拟机相关的硬件模拟设置。" #: pcsx2/gui/MainFrame.cpp:697 @@ -809,8 +1201,7 @@ msgstr "确认 ISO 镜像更改" msgid "Do you want to swap discs or boot the new image (via system reset)?" msgstr "是否要更换光盘或启动新光盘镜像 (通过系统复位)?" -#: pcsx2/gui/MainMenuClicks.cpp:148 -#: pcsx2/gui/MainMenuClicks.cpp:191 +#: pcsx2/gui/MainMenuClicks.cpp:148 pcsx2/gui/MainMenuClicks.cpp:191 msgid "Swap Disc" msgstr "更换光盘" @@ -842,8 +1233,7 @@ msgstr "光盘映像 (%s)" msgid "Blockdumps (%s)" msgstr "块转储 (%s)" -#: pcsx2/gui/MainMenuClicks.cpp:265 -#: pcsx2/gui/MainMenuClicks.cpp:286 +#: pcsx2/gui/MainMenuClicks.cpp:265 pcsx2/gui/MainMenuClicks.cpp:286 msgid "All Files (*.*)" msgstr "全部文件 (*.*)" @@ -864,7 +1254,9 @@ msgid "An error occurred while trying to open the file:" msgstr "打开文件时出现一个错误:" #: pcsx2/gui/MainMenuClicks.cpp:314 -msgid "Error: The configured ISO file does not exist. Click OK to select a new ISO source for CDVD." +msgid "" +"Error: The configured ISO file does not exist. Click OK to select a new ISO " +"source for CDVD." msgstr "错误: 配置的 ISO 文件不存在。单击确定为 CDVD 选择一个新的 ISO 源。" #: pcsx2/gui/MainMenuClicks.cpp:380 @@ -901,292 +1293,6 @@ msgstr "" "%s\n" "\n" -#: pcsx2/gui/SysState.cpp:283 -msgid "Cannot load this savestate. The state is from an incompatible edition of PCSX2 that is either newer than this version, or is no longer supported." -msgstr "无法读取即时存档。即时存档是由一个不兼容的 PCSX2 版本 (或新或旧) 创建的,或已经不再支持。" - -#: pcsx2/gui/SysState.cpp:290 -msgid "Cannot load this savestate. The state is an unsupported version, likely created by a newer edition of PCSX2." -msgstr "无法读取即时存档。即时存档是一个不支持的版本。可能是由一个较新版本的 PCSX2 创建。" - -#: pcsx2/gui/SysState.cpp:520 -msgid "This savestate cannot be loaded because it is not a valid gzip archive. It may have been created by an older unsupported version of PCSX2, or it may be corrupted." -msgstr "此即时存档无法加载。它不是一个合法的 gzip 归档。它可能是由一个旧的不受支持的 PCSX2 版本创建的,或可能已损坏。" - -#: pcsx2/gui/SysState.cpp:579 -msgid "This file is not a valid PCSX2 savestate. See the logfile for details." -msgstr "这不是一个合法的 PCSX2 即时存档。请查看日志文件以获取详细信息。" - -#: pcsx2/gui/SysState.cpp:598 -msgid "This savestate cannot be loaded due to missing critical components. See the log file for details." -msgstr "此即时存档无法加载。关键组件缺失。请参看日志文件以获取详细信息。" - -#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:35 -#, c-format -msgid "About %s" -msgstr "关于 %s" - -#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:97 -msgid "A Playstation 2 Emulator" -msgstr "一个 PlayStation 2 模拟器" - -#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:101 -msgid "PCSX2 Official Website and Forums" -msgstr "PCSX2 官方网站和论坛" - -#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:105 -msgid "PCSX2 Official Svn Repository at Googlecode" -msgstr "位于 Googlecode 的 PCSX2 官方 svn 仓库" - -#: pcsx2/gui/Dialogs/AssertionDialog.cpp:23 -msgid "Assertion Failure - " -msgstr "断言失败 - " - -#: pcsx2/gui/Dialogs/BaseConfigurationDialog.cpp:189 -msgid "Saves a snapshot of this settings panel to a PNG file." -msgstr "将此设置面板的截图保存为 PNG 文件。" - -#: pcsx2/gui/Dialogs/BaseConfigurationDialog.cpp:300 -msgid "Save dialog screenshots to..." -msgstr "将对话框截图保存到..." - -#: pcsx2/gui/Dialogs/BiosSelectorDialog.cpp:31 -msgid "BIOS Selector" -msgstr "BIOS 选择器" - -#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:193 -msgid "Do not show this dialog again." -msgstr "不再显示此对话框。" - -#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:199 -msgid "Disables this popup and whatever response you select here will be automatically used from now on." -msgstr "禁用弹出提示,以后任何您选定的内容将被自动使用。" - -#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:201 -msgid "The popup will not be shown again. This setting can be undone from the settings panels." -msgstr "此提示框将不会再被显示。此设定可以从设置面板中撤消。" - -#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:247 -#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:292 -msgid "Ignore" -msgstr "忽略" - -#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:278 -msgid "Reset" -msgstr "重置" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:32 -#, c-format -msgid "Select memory card for Port %u / Slot %u" -msgstr "选择端口 %u / 插槽 %u 上的记忆卡" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:41 -msgid "Create new memory card" -msgstr "创建新的记忆卡" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:60 -#: pcsx2/gui/Panels/DirPickerPanel.cpp:68 -#: pcsx2/gui/Panels/DirPickerPanel.cpp:228 -msgid "Create" -msgstr "创建" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:72 -msgid "New card will be saved to:" -msgstr "新记忆卡将被保存为:" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:135 -msgid "Error: The memory card could not be created." -msgstr "错误: 记忆卡文件无法建立。" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:136 -msgid "memory card creation error" -msgstr "记忆卡建立错误" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:147 -msgid "Use NTFS compression when creating this card." -msgstr "创建此记忆卡时使用 NTFS 压缩。" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:163 -msgid "8 MB [most compatible]" -msgstr "8 MB [兼容性最高]" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:163 -msgid "This is the standard Sony-provisioned size, and is supported by all games and BIOS versions." -msgstr "索尼的标准大小,支持所有游戏和 BIOS 版本。" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:167 -msgid "16 MB" -msgstr "16 MB" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:167 -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:171 -msgid "A typical size for 3rd-party memory cards which should work with most games." -msgstr "一个通常的第三方记忆卡大小,应该可以兼容大多数游戏。" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:171 -msgid "32 MB" -msgstr "32 MB" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:175 -msgid "64 MB" -msgstr "64 MB" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:175 -msgid "Low compatibility warning: Yes it's very big, but may not work with many games." -msgstr "兼容性低: 容量较大,但可能在很多游戏中不可用。" - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:47 -msgid "Settings" -msgstr "设置" - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:47 -#, c-format -msgid "Select a folder for %s settings" -msgstr "选择一个 %s 设置的文件夹" - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:81 -msgid "Language selector" -msgstr "语言选择器" - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:84 -msgid "" -"Change the language only if you need to.\n" -"The system default should be fine for most operating systems." -msgstr "" -"请仅在需要时更换语言。\n" -"系统默认语言应对大多数操作系统有效。" - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:104 -msgid "Configuration Guides (online)" -msgstr "配置说明 (在线)" - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:108 -msgid "Readme / FAQ (Offline/PDF)" -msgstr "自述文件 / 常见问题 (离线/PDF)" - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:117 -#, c-format -msgid "%s First Time Configuration" -msgstr "%s 首次运行向导" - -#: pcsx2/gui/Dialogs/GameDatabaseDialog.cpp:24 -#, c-format -msgid "Game database - %s" -msgstr "游戏数据库 - %s" - -#: pcsx2/gui/Dialogs/ImportSettingsDialog.cpp:24 -msgid "Import Existing Settings?" -msgstr "导入已存在设置?" - -#: pcsx2/gui/Dialogs/ImportSettingsDialog.cpp:39 -msgid "Import" -msgstr "导入" - -#: pcsx2/gui/Dialogs/ImportSettingsDialog.cpp:40 -msgid "Overwrite" -msgstr "覆盖" - -#: pcsx2/gui/Dialogs/LogOptionsDialog.cpp:27 -msgid "Trace Logging" -msgstr "跟踪日志" - -#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:40 -msgid "Auto-eject memory cards when loading savestates" -msgstr "即时读档时自动退出记忆卡" - -#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:47 -msgid "Backup existing Savestate when creating a new one" -msgstr "即时存档时备份原有存档" - -#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:51 -#, c-format -msgid "Enable Multitap on Port %u" -msgstr "对端口 %u 启用多分插" - -#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:95 -msgid "MemoryCard Manager" -msgstr "记忆卡管理器" - -#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:102 -msgid "Drag items over other items in the list to swap or copy memory cards." -msgstr "将列表中的一项拖动至另一项上面可交换或复制记忆卡。" - -#: pcsx2/gui/Dialogs/PickUserModeDialog.cpp:24 -msgid "PCSX2 First Time configuration" -msgstr "PCSX2 首次运行配置" - -#: pcsx2/gui/Dialogs/PickUserModeDialog.cpp:29 -#, c-format -msgid "%s is starting from a new or unknown folder and needs to be configured." -msgstr "%s 正在从一个新的或未知的文件夹启动,需要被配置。" - -#: pcsx2/gui/Dialogs/StuckThreadDialog.cpp:28 -msgid "PCSX2 Thread is not responding" -msgstr "PCSX2 线程没有响应" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:36 -msgid "Config Overrides Warning" -msgstr "配置覆盖警告" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:56 -msgid "Components Overrides Warning" -msgstr "组件覆盖警告" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:146 -msgid "Preset:" -msgstr "预置:" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:233 -#, c-format -msgid "Emulation Settings - %s" -msgstr "模拟设置 - %s" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:242 -msgid "EE/IOP" -msgstr "EE/IOP" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:243 -msgid "VUs" -msgstr "VU" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:244 -msgid "GS" -msgstr "GS" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:245 -msgid "GS Window" -msgstr "GS 窗口" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:246 -msgid "Speedhacks" -msgstr "速度 Hack" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:247 -msgid "Game Fixes" -msgstr "游戏特殊修正" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:258 -#, c-format -msgid "Components Selectors - %s" -msgstr "组件选择器 - %s" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:265 -msgid "Plugins" -msgstr "插件" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:266 -msgid "BIOS" -msgstr "BIOS" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:267 -msgid "Folders" -msgstr "文件夹" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:278 -#, c-format -msgid "Appearance/Themes - %s" -msgstr "外观/主题 - %s" - #: pcsx2/gui/Panels/BaseApplicableConfigPanel.cpp:97 msgid "Cannot apply settings..." msgstr "无法应用设置..." @@ -1199,15 +1305,19 @@ msgstr "BIOS 搜索路径:" msgid "Select folder with PS2 BIOS roms" msgstr "选择 PS2 BIOS 文件所在文件夹" -#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:110 -msgid "Click the Browse button to select a different folder where PCSX2 will look for PS2 BIOS roms." +#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:111 +msgid "" +"Click the Browse button to select a different folder where PCSX2 will look " +"for PS2 BIOS roms." msgstr "单击浏览按钮可选择一个 PS2 BIOS 所在的不同文件夹。" -#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:112 +#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:113 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:149 +#: pcsx2/gui/Panels/ThemeSelectorPanel.cpp:47 msgid "Refresh list" msgstr "刷新列表" -#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:114 +#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:115 msgid "Select a BIOS rom:" msgstr "选择一个 BIOS 文件:" @@ -1243,8 +1353,7 @@ msgstr "无" msgid "EE/FPU Advanced Recompiler Options" msgstr "EE/FPU 高级重编译器选项" -#: pcsx2/gui/Panels/CpuPanel.cpp:87 -#: pcsx2/gui/Panels/CpuPanel.cpp:102 +#: pcsx2/gui/Panels/CpuPanel.cpp:87 pcsx2/gui/Panels/CpuPanel.cpp:102 msgid "Extra + Preserve Sign" msgstr "额外 + 保留符号" @@ -1260,9 +1369,8 @@ msgstr "VU0 / VU1 高级重编译器选项" msgid "Extra" msgstr "额外" -#: pcsx2/gui/Panels/CpuPanel.cpp:117 -#: pcsx2/gui/Panels/CpuPanel.cpp:126 -#: pcsx2/gui/Panels/CpuPanel.cpp:181 +#: pcsx2/gui/Panels/CpuPanel.cpp:117 pcsx2/gui/Panels/CpuPanel.cpp:126 +#: pcsx2/gui/Panels/CpuPanel.cpp:184 msgid "Interpreter" msgstr "解释器" @@ -1270,13 +1378,14 @@ msgstr "解释器" msgid "Quite possibly the slowest thing in the universe." msgstr "很有可能是宇宙中最慢的东西。" -#: pcsx2/gui/Panels/CpuPanel.cpp:120 -#: pcsx2/gui/Panels/CpuPanel.cpp:129 +#: pcsx2/gui/Panels/CpuPanel.cpp:120 pcsx2/gui/Panels/CpuPanel.cpp:129 msgid "Recompiler" msgstr "重编译器" #: pcsx2/gui/Panels/CpuPanel.cpp:121 -msgid "Performs just-in-time binary translation of 64-bit MIPS-IV machine code to x86." +msgid "" +"Performs just-in-time binary translation of 64-bit MIPS-IV machine code to " +"x86." msgstr "进行从 64 位 MIPS-IV 机器代码到 x86 的即时代码翻译。" #: pcsx2/gui/Panels/CpuPanel.cpp:127 @@ -1284,59 +1393,123 @@ msgid "Pretty slow; provided for diagnostic purposes only." msgstr "很慢;仅供诊断用途。" #: pcsx2/gui/Panels/CpuPanel.cpp:130 -msgid "Performs just-in-time binary translation of 32-bit MIPS-I machine code to x86." +msgid "" +"Performs just-in-time binary translation of 32-bit MIPS-I machine code to " +"x86." msgstr "进行从 32 位 MIPS-IV 机器代码到 x86 的即时代码翻译。" -#: pcsx2/gui/Panels/CpuPanel.cpp:167 -#: pcsx2/gui/Panels/CpuPanel.cpp:220 +#: pcsx2/gui/Panels/CpuPanel.cpp:154 +msgid "Enable EE Cache - Interpreter Only! (Slower)" +msgstr "" + +#: pcsx2/gui/Panels/CpuPanel.cpp:170 pcsx2/gui/Panels/CpuPanel.cpp:223 +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:110 msgid "Restore Defaults" msgstr "恢复默认值" -#: pcsx2/gui/Panels/CpuPanel.cpp:182 -msgid "Vector Unit Interpreter. Slow and not very compatible. Only use for diagnostics." +#: pcsx2/gui/Panels/CpuPanel.cpp:185 +msgid "" +"Vector Unit Interpreter. Slow and not very compatible. Only use for " +"diagnostics." msgstr "矢量单元解释器。速度慢且兼容性低。仅供诊断用途。" -#: pcsx2/gui/Panels/CpuPanel.cpp:184 +#: pcsx2/gui/Panels/CpuPanel.cpp:187 msgid "microVU Recompiler" msgstr "microVU 重编译器" -#: pcsx2/gui/Panels/CpuPanel.cpp:185 -msgid "New Vector Unit recompiler with much improved compatibility. Recommended." +#: pcsx2/gui/Panels/CpuPanel.cpp:188 +msgid "" +"New Vector Unit recompiler with much improved compatibility. Recommended." msgstr "新版矢量单元重编译器,兼容性有较大提升。推荐。" -#: pcsx2/gui/Panels/CpuPanel.cpp:187 +#: pcsx2/gui/Panels/CpuPanel.cpp:190 msgid "superVU Recompiler [legacy]" msgstr "superVU 重编译器 [旧式]" -#: pcsx2/gui/Panels/CpuPanel.cpp:188 -msgid "Useful for diagnosing bugs or clamping issues in the new mVU recompiler." +#: pcsx2/gui/Panels/CpuPanel.cpp:191 +msgid "" +"Useful for diagnosing bugs or clamping issues in the new mVU recompiler." msgstr "可用于诊断新的 mVU 重编译器的 bug 或限值问题。" -#: pcsx2/gui/Panels/DirPickerPanel.cpp:58 +#: pcsx2/gui/Panels/DirPickerPanel.cpp:64 msgid "Path does not exist" msgstr "路径不存在" -#: pcsx2/gui/Panels/DirPickerPanel.cpp:116 +#: pcsx2/gui/Panels/DirPickerPanel.cpp:154 msgid "Use default setting" msgstr "使用默认设置" -#: pcsx2/gui/Panels/DirPickerPanel.cpp:133 +#: pcsx2/gui/Panels/DirPickerPanel.cpp:174 msgid "Open in Explorer" msgstr "在资源管理器中打开" -#: pcsx2/gui/Panels/DirPickerPanel.cpp:134 +#: pcsx2/gui/Panels/DirPickerPanel.cpp:175 msgid "Open an explorer window to this folder." msgstr "打开到此文件夹的一个资源管理器窗口。" -#: pcsx2/gui/Panels/DirPickerPanel.cpp:223 +#: pcsx2/gui/Panels/DirPickerPanel.cpp:266 msgid "Create folder?" msgstr "创建文件夹?" -#: pcsx2/gui/Panels/DirPickerPanel.cpp:224 +#: pcsx2/gui/Panels/DirPickerPanel.cpp:267 #, c-format msgid "A configured folder does not exist. Should %s try to create it?" msgstr "配置的文件夹不存在。%s 是否应该创建它?" +#: pcsx2/gui/Panels/GSWindowPanel.cpp:30 +msgid "Fit to Window/Screen" +msgstr "适合窗口/屏幕大小" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:31 +msgid "Standard (4:3)" +msgstr "标准 (4:3)" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:32 +msgid "Widescreen (16:9)" +msgstr "宽屏 (16:9)" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:44 +msgid "Disable window resize border" +msgstr "禁用窗口调整大小边框" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:45 +msgid "Always hide mouse cursor" +msgstr "总是隐藏鼠标指针" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:46 +msgid "Hide window on suspend" +msgstr "挂起时隐藏窗口" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:47 +msgid "Default to fullscreen mode on open" +msgstr "打开时默认为全屏幕模式" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:48 +msgid "Wait for vsync on refresh" +msgstr "等待垂直同步刷新" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:49 +msgid "Double-click Toggles Full-Screen mode" +msgstr "双击切换全屏模式" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:50 +msgid "Use exclusive fullscreen mode (if available)" +msgstr "使用独占全屏幕模式 (如可用)" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:90 +msgid "Aspect Ratio:" +msgstr "纵横比:" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:92 +msgid "Custom Window Size:" +msgstr "自定义窗口大小:" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:164 +msgid "" +"Invalid window dimensions specified: Size cannot contain non-numeric digits! " +">_<" +msgstr "指定了非法的数值: 大小数值不能包含非数字内容! >_<" + #: pcsx2/gui/Panels/GameDatabasePanel.cpp:336 msgid "Search" msgstr "搜索" @@ -1391,7 +1564,8 @@ msgid "EE timing hack - Multi purpose hack. Try if all else fails." msgstr "EE 定时 Hack - 有多种用途。如以上皆失败请尝试。" #: pcsx2/gui/Panels/GameFixesPanel.cpp:75 -msgid "Skip MPEG hack - Skips videos/FMVs in games to avoid game hanging/freezes." +msgid "" +"Skip MPEG hack - Skips videos/FMVs in games to avoid game hanging/freezes." msgstr "跳过 MPEG hack - 跳过游戏中的 CG 以避免游戏挂起或失去响应。" #: pcsx2/gui/Panels/GameFixesPanel.cpp:79 @@ -1403,140 +1577,129 @@ msgid "Enable game fixes" msgstr "启用游戏特殊修正" #: pcsx2/gui/Panels/GameFixesPanel.cpp:103 -msgid "The safest way to make sure that all game fixes are completely disabled." +msgid "" +"The safest way to make sure that all game fixes are completely disabled." msgstr "确保所有游戏特殊修正被禁用的最安全的方法。" -#: pcsx2/gui/Panels/GSWindowPanel.cpp:30 -msgid "Fit to Window/Screen" -msgstr "适合窗口/屏幕大小" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:31 -msgid "Standard (4:3)" -msgstr "标准 (4:3)" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:32 -msgid "Widescreen (16:9)" -msgstr "宽屏 (16:9)" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:44 -msgid "Disable window resize border" -msgstr "禁用窗口调整大小边框" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:45 -msgid "Always hide mouse cursor" -msgstr "总是隐藏鼠标指针" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:46 -msgid "Hide window on suspend" -msgstr "挂起时隐藏窗口" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:47 -msgid "Default to fullscreen mode on open" -msgstr "打开时默认为全屏幕模式" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:48 -msgid "Wait for vsync on refresh" -msgstr "等待垂直同步刷新" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:49 -msgid "Double-click Toggles Full-Screen mode" -msgstr "双击切换全屏模式" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:50 -msgid "Use exclusive fullscreen mode (if available)" -msgstr "使用独占全屏幕模式 (如可用)" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:90 -msgid "Aspect Ratio:" -msgstr "纵横比:" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:92 -msgid "Custom Window Size:" -msgstr "自定义窗口大小:" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:164 -msgid "Invalid window dimensions specified: Size cannot contain non-numeric digits! >_<" -msgstr "指定了非法的数值: 大小数值不能包含非数字内容! >_<" - -#: pcsx2/gui/Panels/LogOptionsPanels.cpp:248 +#: pcsx2/gui/Panels/LogOptionsPanels.cpp:249 msgid "Enable Trace Logging" msgstr "启用跟踪日志" -#: pcsx2/gui/Panels/LogOptionsPanels.cpp:249 -msgid "Trace logs are all written to emulog.txt. Toggle trace logging at any time using F10." +#: pcsx2/gui/Panels/LogOptionsPanels.cpp:250 +msgid "" +"Trace logs are all written to emulog.txt. Toggle trace logging at any time " +"using F10." msgstr "跟踪记录将被写到 emuLog.txt 文件中。可随时用 F10 切换跟踪记录。" -#: pcsx2/gui/Panels/LogOptionsPanels.cpp:250 -msgid "Warning: Enabling trace logs is typically very slow, and is a leading cause of 'What happened to my FPS?' problems. :)" +#: pcsx2/gui/Panels/LogOptionsPanels.cpp:251 +msgid "" +"Warning: Enabling trace logs is typically very slow, and is a leading cause " +"of 'What happened to my FPS?' problems. :)" msgstr "警告: 启用跟踪记录通常非常慢,且可能导致 \"FPS 怎么回事\" 类问题。:)" #: pcsx2/gui/Panels/MemoryCardListPanel.cpp:144 msgid "Select folder with PS2 memory cards" msgstr "选择 PS2 记忆卡所在文件夹" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:386 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:374 +#, fuzzy +msgid "Overwrite memory card?" +msgstr "删除记忆卡?" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:391 msgid "Copy failed!" msgstr "复制失败!" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:454 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:465 msgid "Mount" msgstr "挂载" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:500 -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:670 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:511 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:681 msgid "Delete" msgstr "删除" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:503 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:514 msgid "Deletes the existing memory card from disk (all contents are lost)." msgstr "从磁盘删除已存在的记忆卡 (将丢失全部内容)。" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:504 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:515 msgid "Creates a new memory card in the empty slot." msgstr "在空位置上创建一个新的记忆卡。" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:508 -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:671 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:519 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:682 msgid "Disable" msgstr "禁用" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:508 -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:671 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:519 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:682 msgid "Enable" msgstr "启用" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:511 -msgid "Disables the selected memory card, so that it will not be seen by games or BIOS." +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:522 +msgid "" +"Disables the selected memory card, so that it will not be seen by games or " +"BIOS." msgstr "对游戏或 BIOS 禁用选中的记忆卡。" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:512 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:523 msgid "Mounts the selected memory card, so that games can see it again." msgstr "加载所选的记忆卡,游戏将可以检测到它。" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:591 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:602 msgid "Delete memory card?" msgstr "删除记忆卡?" -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:670 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:681 msgid "Create new..." msgstr "新建..." -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:672 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:683 msgid "Relocate file..." msgstr "重新定位文件..." -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:677 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:688 msgid "Refresh List" msgstr "刷新列表" -#: pcsx2/gui/Panels/MemoryCardListView.cpp:136 -msgid "Enabled" -msgstr "已启用" +#: pcsx2/gui/Panels/MemoryCardListView.cpp:105 +msgid "Slot" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:106 +msgid "Status" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:107 +msgid "Size" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:108 +msgid "Formatted" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:109 +msgid "Modified" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:110 +#, fuzzy +msgid "Created" +msgstr "创建" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:111 +msgid "Filename" +msgstr "" #: pcsx2/gui/Panels/MemoryCardListView.cpp:136 msgid "Disabled" msgstr "已禁用" +#: pcsx2/gui/Panels/MemoryCardListView.cpp:136 +msgid "Enabled" +msgstr "已启用" + #: pcsx2/gui/Panels/MemoryCardListView.cpp:136 msgid "Missing" msgstr "丢失" @@ -1547,14 +1710,14 @@ msgstr "丢失" msgid "N/A" msgstr "无效" -#: pcsx2/gui/Panels/MemoryCardListView.cpp:138 -msgid "Yes" -msgstr "是" - #: pcsx2/gui/Panels/MemoryCardListView.cpp:138 msgid "No" msgstr "否" +#: pcsx2/gui/Panels/MemoryCardListView.cpp:138 +msgid "Yes" +msgstr "是" + #: pcsx2/gui/Panels/MiscPanelStuff.cpp:33 msgid "Usermode Selection" msgstr "用户模式选择" @@ -1572,7 +1735,9 @@ msgid "Custom folder:" msgstr "自定义文件夹:" #: pcsx2/gui/Panels/MiscPanelStuff.cpp:57 -msgid "This setting may require administration privileges from your operating system, depending on how your system is configured." +msgid "" +"This setting may require administration privileges from your operating " +"system, depending on how your system is configured." msgstr "此设置可能需要操作系统管理员权限,取决于您的操作系统的配置。" #: pcsx2/gui/Panels/MiscPanelStuff.cpp:66 @@ -1636,11 +1801,16 @@ msgstr "插件搜索路径:" msgid "Select a folder with PCSX2 plugins" msgstr "选择一个 PCSX2 插件所在文件夹" -#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:378 +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:370 +#, fuzzy +msgid "Configure..." +msgstr "配置(&C)" + +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:379 msgid "Click the Browse button to select a different folder for PCSX2 plugins." msgstr "单击浏览按钮来选择一个不同的 PCSX2 插件文件夹。" -#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:518 +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:519 #, c-format msgid "" "The selected %s plugin failed to load.\n" @@ -1653,7 +1823,7 @@ msgstr "" "理由: %s\n" "\n" -#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:728 +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:729 msgid "Completing tasks..." msgstr "正在完成任务..." @@ -1662,11 +1832,14 @@ msgid "Enable speedhacks" msgstr "启用速度 Hack" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:102 -msgid "A safe and easy way to make sure that all speedhacks are completely disabled." +msgid "" +"A safe and easy way to make sure that all speedhacks are completely disabled." msgstr "确认全部速度 Hack 被禁用的一个安全简易的方法。" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:111 -msgid "Resets all speedhack options to their defaults, which consequently turns them all OFF." +msgid "" +"Resets all speedhack options to their defaults, which consequently turns " +"them all OFF." msgstr "将所有速度 Hack 选项重置到默认值,即关闭所有选项。" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:120 @@ -1686,7 +1859,9 @@ msgid "mVU Flag Hack" msgstr "mVU 标志位 Hack" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:164 -msgid "Good Speedup and High Compatibility; may cause garbage graphics, SPS, etc... [Recommended]" +msgid "" +"Good Speedup and High Compatibility; may cause garbage graphics, SPS, etc... " +"[Recommended]" msgstr "提速效果较好,兼容性较高;可能导致图像错误、模型错误等等。[推荐]" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:166 @@ -1694,7 +1869,8 @@ msgid "mVU Block Hack" msgstr "mVU 数据块 Hack" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:167 -msgid "Good Speedup and High Compatibility; may cause garbage graphics, SPS, etc..." +msgid "" +"Good Speedup and High Compatibility; may cause garbage graphics, SPS, etc..." msgstr "提速效果较好,兼容性较高;可能导致图像错误、模型错误等等。" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:169 @@ -1702,7 +1878,9 @@ msgid "mVU Min/Max Hack" msgstr "mVU 最小/最大值 Hack" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:170 -msgid "Small Speedup; may cause black screens, garbage graphics, SPS, etc... [Not Recommended]" +msgid "" +"Small Speedup; may cause black screens, garbage graphics, SPS, etc... [Not " +"Recommended]" msgstr "提速效果较小;可能导致黑屏、图像错误、模型错误等等。[不推荐]" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:190 @@ -1714,7 +1892,9 @@ msgid "Enable INTC Spin Detection" msgstr "启用 INTC Spin 检测" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:193 -msgid "Huge speedup for some games, with almost no compatibility side effects. [Recommended]" +msgid "" +"Huge speedup for some games, with almost no compatibility side effects. " +"[Recommended]" msgstr "对部分游戏有显著提速,基本无副作用。[推荐]" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:195 @@ -1722,7 +1902,8 @@ msgid "Enable Wait Loop Detection" msgstr "启用等待循环检测" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:196 -msgid "Moderate speedup for some games, with no known side effects. [Recommended]" +msgid "" +"Moderate speedup for some games, with no known side effects. [Recommended]" msgstr "对部分游戏有中等提速,无已知副作用。[推荐]" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:198 @@ -1741,11 +1922,13 @@ msgstr "主题搜索路径:" msgid "Select folder containing PCSX2 visual themes" msgstr "选择存放 PCSX2 视觉主题的文件夹" -#: pcsx2/gui/Panels/ThemeSelectorPanel.cpp:44 -msgid "Click the Browse button to select a different folder containing PCSX2 visual themes." +#: pcsx2/gui/Panels/ThemeSelectorPanel.cpp:45 +msgid "" +"Click the Browse button to select a different folder containing PCSX2 visual " +"themes." msgstr "单击浏览按钮来选择一个不同的 PCSX2 视觉主题文件夹。" -#: pcsx2/gui/Panels/ThemeSelectorPanel.cpp:48 +#: pcsx2/gui/Panels/ThemeSelectorPanel.cpp:49 msgid "Select a visual theme:" msgstr "选择视觉主题:" @@ -1754,7 +1937,8 @@ msgid "Disable Framelimiting" msgstr "禁用限帧" #: pcsx2/gui/Panels/VideoPanel.cpp:35 -msgid "Useful for running benchmarks. Toggle this option in-game by pressing F4." +msgid "" +"Useful for running benchmarks. Toggle this option in-game by pressing F4." msgstr "在进行评测时有用。游戏中可按 F4 开关此选项。" #: pcsx2/gui/Panels/VideoPanel.cpp:61 @@ -1773,8 +1957,7 @@ msgstr "快速模式速率调整:" msgid "NTSC Framerate:" msgstr "NTSC 帧率:" -#: pcsx2/gui/Panels/VideoPanel.cpp:91 -#: pcsx2/gui/Panels/VideoPanel.cpp:97 +#: pcsx2/gui/Panels/VideoPanel.cpp:91 pcsx2/gui/Panels/VideoPanel.cpp:97 msgid "FPS" msgstr "FPS" @@ -1795,7 +1978,9 @@ msgid "Constant skipping" msgstr "常数跳帧" #: pcsx2/gui/Panels/VideoPanel.cpp:190 -msgid "Normal and Turbo limit rates skip frames. Slow motion mode will still disable frameskipping." +msgid "" +"Normal and Turbo limit rates skip frames. Slow motion mode will still " +"disable frameskipping." msgstr "正常及加速模式帧率跳帧。慢动作模式仍将禁用跳帧。" #: pcsx2/gui/Panels/VideoPanel.cpp:213 @@ -1822,84 +2007,73 @@ msgstr "跳帧" msgid "Framelimiter" msgstr "限帧" -#: pcsx2/ps2/BiosTools.cpp:83 -#: pcsx2/ps2/BiosTools.cpp:151 +#: pcsx2/gui/SysState.cpp:283 +msgid "" +"Cannot load this savestate. The state is from an incompatible edition of " +"PCSX2 that is either newer than this version, or is no longer supported." +msgstr "" +"无法读取即时存档。即时存档是由一个不兼容的 PCSX2 版本 (或新或旧) 创建的,或已" +"经不再支持。" + +#: pcsx2/gui/SysState.cpp:290 +msgid "" +"Cannot load this savestate. The state is an unsupported version, likely " +"created by a newer edition of PCSX2." +msgstr "" +"无法读取即时存档。即时存档是一个不支持的版本。可能是由一个较新版本的 PCSX2 创" +"建。" + +#: pcsx2/gui/SysState.cpp:520 +msgid "" +"This savestate cannot be loaded because it is not a valid gzip archive. It " +"may have been created by an older unsupported version of PCSX2, or it may be " +"corrupted." +msgstr "" +"此即时存档无法加载。它不是一个合法的 gzip 归档。它可能是由一个旧的不受支持的 " +"PCSX2 版本创建的,或可能已损坏。" + +#: pcsx2/gui/SysState.cpp:579 +msgid "This file is not a valid PCSX2 savestate. See the logfile for details." +msgstr "这不是一个合法的 PCSX2 即时存档。请查看日志文件以获取详细信息。" + +#: pcsx2/gui/SysState.cpp:598 +msgid "" +"This savestate cannot be loaded due to missing critical components. See the " +"log file for details." +msgstr "此即时存档无法加载。关键组件缺失。请参看日志文件以获取详细信息。" + +#: pcsx2/ps2/BiosTools.cpp:83 pcsx2/ps2/BiosTools.cpp:151 msgid "The selected BIOS file is not a valid PS2 BIOS. Please re-configure." msgstr "选择的 BIOS 文件不是一个合法的 PS2 BIOS。请重新配置。" #: pcsx2/ps2/BiosTools.cpp:244 -msgid "The PS2 BIOS could not be loaded. The BIOS has not been configured, or the configuration has been corrupted. Please re-configure." +msgid "" +"The PS2 BIOS could not be loaded. The BIOS has not been configured, or the " +"configuration has been corrupted. Please re-configure." msgstr "PS2 BIOS 不可加载。BIOS 未被配置,或配置已被破坏。请重新配置。" #: pcsx2/ps2/BiosTools.cpp:251 msgid "The configured BIOS file does not exist. Please re-configure." msgstr "配置的 BIOS 文件不存在。请重新配置。" -#: pcsx2/x86/microVU.cpp:85 -#, c-format -msgid "%s Extensions not found. microVU requires a host CPU with MMX, SSE, and SSE2 extensions." -msgstr "%s 扩展未找到。microVU 需要一个带有 MMX, SSE 及 SSE2 扩展的主机 CPU。" - #: pcsx2/x86/ix86-32/iR5900-32.cpp:578 #, c-format -msgid "%s Extensions not found. The R5900-32 recompiler requires a host CPU with MMX, SSE, and SSE2 extensions." -msgstr "%s 扩展未找到。R5900-32 重编译器需要一个带有 MMX, SSE 及 SSE2 扩展的主机 CPU。" +msgid "" +"%s Extensions not found. The R5900-32 recompiler requires a host CPU with " +"MMX, SSE, and SSE2 extensions." +msgstr "" +"%s 扩展未找到。R5900-32 重编译器需要一个带有 MMX, SSE 及 SSE2 扩展的主机 " +"CPU。" -#: pcsx2/ZipTools/thread_gzip.cpp:82 -msgid "The savestate was not properly saved. The temporary file was created successfully but could not be moved to its final resting place." -msgstr "即时存档未正确保存。临时文件建立成功但无法移至存档位置。" +#: pcsx2/x86/microVU.cpp:85 +#, c-format +msgid "" +"%s Extensions not found. microVU requires a host CPU with MMX, SSE, and " +"SSE2 extensions." +msgstr "%s 扩展未找到。microVU 需要一个带有 MMX, SSE 及 SSE2 扩展的主机 CPU。" -#: common/src/Utilities/Exceptions.cpp:219 -msgid "Oh noes! Out of memory!" -msgstr "不好! 内存不够!" - -#: common/src/Utilities/Exceptions.cpp:234 -msgid "Virtual memory mapping failure! Your system may have conflicting device drivers, services, or may simply have insufficient memory or resources to meet PCSX2's lofty needs." -msgstr "虚拟内存映射错误! 您的系统可能有冲突的硬件驱动程序、服务,或者没有足够的内存或资源来满足 PCSX2 的要求。" - -#: common/src/Utilities/Exceptions.cpp:309 -msgid "Path: " -msgstr "路径:" - -#: common/src/Utilities/Exceptions.cpp:313 -msgid "[Unnamed or unknown]" -msgstr "[未命名或未知]" - -#: common/src/Utilities/Exceptions.cpp:333 -msgid "A file could not be created." -msgstr "文件无法建立。" - -#: common/src/Utilities/Exceptions.cpp:353 -msgid "File not found." -msgstr "文件未找到。" - -#: common/src/Utilities/Exceptions.cpp:373 -msgid "Permission denied while trying to open file, likely due to insufficient user account rights." -msgstr "打开文件时拒绝访问,可能是由于用户账户权限限制。" - -#: common/src/Utilities/Exceptions.cpp:393 -msgid "Unexpected end of file or stream encountered. File is probably truncated or corrupted." -msgstr "遇到非预期的文件或串流结尾。文件可能被截断或被破坏。" - -#: common/src/Utilities/ThreadingDialogs.cpp:30 -msgid "Waiting for tasks..." -msgstr "正在等待任务..." - -#: common/src/Utilities/ThreadingDialogs.cpp:41 -msgid "Waiting for task..." -msgstr "正在等待任务..." - -#: pcsx2/gui/ApplyState.h:55 -msgid "Cannot apply new settings, one of the settings is invalid." -msgstr "无法应用新的设置选项,某一个设置选项非法。" - -#: common/include/Utilities/Exceptions.h:226 -msgid "Parse error" -msgstr "解析错误" - -#: common/include/Utilities/Exceptions.h:250 -msgid "Your machine's hardware is incapable of running PCSX2. Sorry dood." -msgstr "您的硬件不可以运行 PCSX2。抱歉。" +#~ msgid "&Back >" +#~ msgstr "上一步(&B) >" #~ msgid "Appearance..." #~ msgstr "外观..." diff --git a/locales/zh_CN/pcsx2_Tertiary.po b/locales/zh_CN/pcsx2_Tertiary.po index 728b1b07e7..1399d80af3 100644 --- a/locales/zh_CN/pcsx2_Tertiary.po +++ b/locales/zh_CN/pcsx2_Tertiary.po @@ -1,11 +1,12 @@ msgid "" msgstr "" "Project-Id-Version: PCSX2 0.9.7\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-27 15:29+0800\n" +"Report-Msgid-Bugs-To: http://code.google.com/p/pcsx2/\n" +"POT-Creation-Date: 2011-02-25 18:54+0100\n" "PO-Revision-Date: 2011-01-27 15:29+0800\n" "Last-Translator: Wei Mingzhi \n" "Language-Team: \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -15,23 +16,124 @@ msgstr "" "X-Poedit-SearchPath-0: pcsx2\n" "X-Poedit-SearchPath-1: common\n" +#: common/include/Utilities/Exceptions.h:187 +msgid "No reason given." +msgstr "" + +#: common/src/Utilities/ThreadTools.cpp:41 +msgid "Threading activity: start, detach, sync, deletion, etc." +msgstr "" + +#: common/src/Utilities/wxAppWithHelpers.cpp:36 +msgid "Includes idle event processing and some other uncommon event usages." +msgstr "" + +#: pcsx2/MTGS.cpp:809 +msgid "" +"The MTGS thread has become unresponsive while waiting for the GS plugin to " +"open." +msgstr "" + +#: pcsx2/PluginManager.cpp:1329 +msgid "Internal Memorycard Plugin failed to initialize." +msgstr "" + +#: pcsx2/gui/AppConfig.cpp:776 +msgid "Safest" +msgstr "" + +#: pcsx2/gui/AppConfig.cpp:777 +msgid "Safe (faster)" +msgstr "" + +#: pcsx2/gui/AppConfig.cpp:778 +msgid "Balanced" +msgstr "" + +#: pcsx2/gui/AppConfig.cpp:779 +msgid "Aggressive" +msgstr "" + +#: pcsx2/gui/AppConfig.cpp:780 +msgid "Aggressive plus" +msgstr "" + +#: pcsx2/gui/AppConfig.cpp:781 +msgid "Mostly Harmful" +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:412 +msgid "Fits a lot of log in a microcosmically small area." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:414 +msgid "It's what I use (the programmer guy)." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:416 +msgid "Its nice and readable." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:418 +msgid "In case you have a really high res display." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:422 +msgid "Default soft-tone color scheme." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:423 +msgid "" +"Classic black color scheme for people who enjoy having text seared into " +"their optic nerves." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:427 +msgid "" +"When checked the log window will be visible over other foreground windows." +msgstr "" + #: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:151 msgid "!ContextTip:ChangingNTFS" msgstr "NTFS 压缩可以随时使用 Windows 资源管理器中的文件属性更改。" +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:164 +msgid "" +"Always use this option if you want the safest and surest memory card " +"behavior." +msgstr "" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:168 +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:172 +msgid "16 and 32 MB cards have roughly the same compatibility factor." +msgstr "" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:176 +msgid "" +"Use at your own risk. Erratic memory card behavior is possible (though " +"unlikely)." +msgstr "" + #: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:49 msgid "!ContextTip:Folders:Settings" -msgstr "这是 PCSX2 保存您的设置选项的文件夹,包括大多数插件生成的设置选项 (此选项对于一些旧的插件可能无效)。" +msgstr "" +"这是 PCSX2 保存您的设置选项的文件夹,包括大多数插件生成的设置选项 (此选项对于" +"一些旧的插件可能无效)。" #: pcsx2/gui/Dialogs/SysConfigDialog.cpp:38 msgid "!Panel:HasHacksOverrides" -msgstr "警告! 您正在使用命令行选项运行 PCSX2,这将覆盖您已配置的设定。这些命令行选项将不会在设置对话框中反映,且如果您更改了任何选项的话命令行选项将失效。" +msgstr "" +"警告! 您正在使用命令行选项运行 PCSX2,这将覆盖您已配置的设定。这些命令行选项" +"将不会在设置对话框中反映,且如果您更改了任何选项的话命令行选项将失效。" #: pcsx2/gui/Dialogs/SysConfigDialog.cpp:58 msgid "!Panel:HasPluginsOverrides" -msgstr "警告! 您正在使用命令行选项运行 PCSX2,这将覆盖您已配置的插件或文件夹设定。这些命令行选项将不会在设置对话框中反映,且如果您更改了任何选项的话命令行选项将失效。" +msgstr "" +"警告! 您正在使用命令行选项运行 PCSX2,这将覆盖您已配置的插件或文件夹设定。这" +"些命令行选项将不会在设置对话框中反映,且如果您更改了任何选项的话命令行选项将" +"失效。" -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:134 +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:135 msgid "!Notice:Tooltip:Presets:Slider" msgstr "" "预置将影响速度 Hack、一些重编译器选项及一些已经可提升速度的游戏特殊修补。\n" @@ -43,7 +145,7 @@ msgstr "" "4 - 一些更多的 Hack。\n" "6 - 过多 Hack,有可能拖慢大多数游戏的速度。" -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:148 +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:149 msgid "!Notice:Tooltip:Presets:Checkbox" msgstr "" "预置将影响速度 Hack、一些重编译器选项及一些已经可提升速度的游戏特殊修补。\n" @@ -51,10 +153,41 @@ msgstr "" "\n" "--> 取消此项可手动修改设置 (基于当前预置)" -#: pcsx2/gui/Panels/DirPickerPanel.cpp:118 +#: pcsx2/gui/ExecutorThread.cpp:40 +msgid "Logs events as they are passed to the PS2 virtual machine." +msgstr "" + +#: pcsx2/gui/Panels/DirPickerPanel.cpp:156 msgid "!ContextTip:DirPicker:UseDefault" msgstr "选中时此文件夹将自动反映当前 PCSX2 用户设置选项相关的默认值。" +#: pcsx2/gui/Panels/GSWindowPanel.cpp:52 +msgid "!ContextTip:Window:Vsync" +msgstr "" +"垂直同步可以消除花屏但通常对性能有较大影响。通常仅应用于全屏幕模式,且不一定" +"对所有的 GS 插件都有效。" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:57 +msgid "!ContextTip:Window:HideMouse" +msgstr "" +"选中此项强制 GS 窗口中不显示鼠标光标。在使用鼠标控制游戏时比较有用。默认状态" +"鼠标在 2 秒不活动后隐藏。" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:63 +msgid "!ContextTip:Window:Fullscreen" +msgstr "" +"启动或恢复模拟时自动切换至全屏。您可以使用 Alt+Enter 随时切换全屏或窗口模式。" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:68 +msgid "!ContextTip:Window:FullscreenExclusive" +msgstr "" +"独占全屏模式可能在旧的 CRT 显示器上效果较好,对一些旧显卡速度较快。但通常可能" +"在进入或退出全屏模式时导致内存泄露或随机崩溃。" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:73 +msgid "!ContextTip:Window:HideGS" +msgstr "在按 ESC 或挂起模拟器时彻底关闭 GS 窗口。" + #: pcsx2/gui/Panels/GameFixesPanel.cpp:67 msgid "!ContextTip:Gamefixes:EE Timing Hack" msgstr "" @@ -71,37 +204,23 @@ msgstr "" " * 梦幻骑士 2 和 3\n" " * 巫术" -#: pcsx2/gui/Panels/GSWindowPanel.cpp:52 -msgid "!ContextTip:Window:Vsync" -msgstr "垂直同步可以消除花屏但通常对性能有较大影响。通常仅应用于全屏幕模式,且不一定对所有的 GS 插件都有效。" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:57 -msgid "!ContextTip:Window:HideMouse" -msgstr "选中此项强制 GS 窗口中不显示鼠标光标。在使用鼠标控制游戏时比较有用。默认状态鼠标在 2 秒不活动后隐藏。" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:63 -msgid "!ContextTip:Window:Fullscreen" -msgstr "启动或恢复模拟时自动切换至全屏。您可以使用 Alt+Enter 随时切换全屏或窗口模式。" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:68 -msgid "!ContextTip:Window:FullscreenExclusive" -msgstr "独占全屏模式可能在旧的 CRT 显示器上效果较好,对一些旧显卡速度较快。但通常可能在进入或退出全屏模式时导致内存泄露或随机崩溃。" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:73 -msgid "!ContextTip:Window:HideGS" -msgstr "在按 ESC 或挂起模拟器时彻底关闭 GS 窗口。" - #: pcsx2/gui/Panels/PathsPanel.cpp:40 msgid "!ContextTip:Folders:Savestates" -msgstr "此文件夹是 PCSX2 保存即时存档的位置;即时存档可使用菜单/工具栏或 F1/F3 (保存/读取) 使用。" +msgstr "" +"此文件夹是 PCSX2 保存即时存档的位置;即时存档可使用菜单/工具栏或 F1/F3 (保存/" +"读取) 使用。" #: pcsx2/gui/Panels/PathsPanel.cpp:50 msgid "!ContextTip:Folders:Snapshots" -msgstr "此文件夹是 PCSX2 保存截图的位置。实际截图格式和风格对于不同的 GS 插件可能不同。" +msgstr "" +"此文件夹是 PCSX2 保存截图的位置。实际截图格式和风格对于不同的 GS 插件可能不" +"同。" #: pcsx2/gui/Panels/PathsPanel.cpp:60 msgid "!ContextTip:Folders:Logs" -msgstr "此文件夹是 PCSX2 保存日志记录和诊断转储的位置。大多数插件也将使用此文件夹,但是一些旧的插件可能会忽略它。" +msgstr "" +"此文件夹是 PCSX2 保存日志记录和诊断转储的位置。大多数插件也将使用此文件夹,但" +"是一些旧的插件可能会忽略它。" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:27 msgid "!Panel:Speedhacks:EECycleX1" @@ -113,7 +232,9 @@ msgstr "2 - 将 EE 周期频率减少约 33%。对大多数游戏有轻微提速 #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:37 msgid "!Panel:Speedhacks:EECycleX3" -msgstr "3 - 将 EE 周期频率减少约 50%。中等提速效果,但将导致很多 CG 动画中的音频出现间断。" +msgstr "" +"3 - 将 EE 周期频率减少约 50%。中等提速效果,但将导致很多 CG 动画中的音频出现" +"间断。" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:54 msgid "!Panel:Speedhacks:VUCycleStealOff" @@ -129,44 +250,80 @@ msgstr "2 - 中等 VU 周期挪用。兼容性更低,但对一些游戏有较 #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:70 msgid "!Panel:Speedhacks:VUCycleSteal3" -msgstr "3 - 最大的 VU 周期挪用。对大多数游戏将造成图像闪烁或速度拖慢,用途有限。" +msgstr "" +"3 - 最大的 VU 周期挪用。对大多数游戏将造成图像闪烁或速度拖慢,用途有限。" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:129 msgid "!ContextTip:Speedhacks:EECycleRate Slider" -msgstr "提高此数值可减少情感引擎的 R5900 CPU 的时钟速度,通常对于未完全使用 PS2 实机硬件全部潜能的游戏有较大提速效果。" +msgstr "" +"提高此数值可减少情感引擎的 R5900 CPU 的时钟速度,通常对于未完全使用 PS2 实机" +"硬件全部潜能的游戏有较大提速效果。" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:150 msgid "!ContextTip:Speedhacks:VUCycleStealing Slider" -msgstr "此选项控制 VU 单元从情感引擎挪用的时钟周期数目。较高数值将增加各个被游戏执行的 VU 微程序从 EE 挪用的周期数目。" +msgstr "" +"此选项控制 VU 单元从情感引擎挪用的时钟周期数目。较高数值将增加各个被游戏执行" +"的 VU 微程序从 EE 挪用的周期数目。" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:172 msgid "!ContextTip:Speedhacks:vuFlagHack" -msgstr "仅在标志位被读取时更新,而不是总是更新。此选项通常是安全的,Super VU 默认会以相似的方式处理。" +msgstr "" +"仅在标志位被读取时更新,而不是总是更新。此选项通常是安全的,Super VU 默认会以" +"相似的方式处理。" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:177 msgid "!ContextTip:Speedhacks:vuBlockHack" -msgstr "假定未来的块不需要旧的标志实例数据。这应该是安全的。是否导致游戏出现问题仍然未知。" +msgstr "" +"假定未来的块不需要旧的标志实例数据。这应该是安全的。是否导致游戏出现问题仍然" +"未知。" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:182 msgid "!ContextTip:Speedhacks:vuMinMax" -msgstr "使用 SSE 的浮点最大值/最小值操作来代替自定义的最大值/最小值过程。已经导致 GT 赛车和铁拳 5 出现问题。" +msgstr "" +"使用 SSE 的浮点最大值/最小值操作来代替自定义的最大值/最小值过程。已经导致 GT " +"赛车和铁拳 5 出现问题。" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:202 msgid "!ContextTip:Speedhacks:INTC" -msgstr "此 hack 对于使用 INTC 状态寄存器来等待垂直同步的游戏效果较好,包括一些主要的 3D RPG 游戏。对于不使用此方法的游戏没有提速效果。" +msgstr "" +"此 hack 对于使用 INTC 状态寄存器来等待垂直同步的游戏效果较好,包括一些主要的 " +"3D RPG 游戏。对于不使用此方法的游戏没有提速效果。" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:207 msgid "!ContextTip:Speedhacks:BIFC0" -msgstr "主要针对于位置内核地址 0x81FC0 的 EE 空闲循环,此 hack 试图检测循环体在一个另外的模拟单元计划的事件处理过程之前不保证产生相同结果的循环。在一次循环体执行之后,将下一事件的时间或处理器的时间片结束时间 (孰早) 做出更新。" +msgstr "" +"主要针对于位置内核地址 0x81FC0 的 EE 空闲循环,此 hack 试图检测循环体在一个另" +"外的模拟单元计划的事件处理过程之前不保证产生相同结果的循环。在一次循环体执行" +"之后,将下一事件的时间或处理器的时间片结束时间 (孰早) 做出更新。" #: pcsx2/gui/Panels/SpeedhacksPanel.cpp:214 msgid "!ContextTip:Speedhacks:fastCDVD" -msgstr "请参看 HDLoader 兼容性列表以获取启用此项会出现问题的游戏列表。(通常标记为需要 'mode 1' 或 '慢速 DVD')" +msgstr "" +"请参看 HDLoader 兼容性列表以获取启用此项会出现问题的游戏列表。(通常标记为需" +"要 'mode 1' 或 '慢速 DVD')" #: pcsx2/gui/Panels/VideoPanel.cpp:37 msgid "!ContextTip:Framelimiter:Disable" msgstr "注意: 如限帧被禁用,快速模式和慢动作模式将不可用。" +#: pcsx2/gui/Panels/VideoPanel.cpp:162 +msgid "" +"Error while parsing either NTSC or PAL framerate settings. Settings must be " +"valid floating point numerics." +msgstr "" + +#: pcsx2/gui/Panels/VideoPanel.cpp:295 +msgid "" +"For troubleshooting potential bugs in the MTGS only, as it is potentially " +"very slow." +msgstr "" + +#: pcsx2/gui/Panels/VideoPanel.cpp:299 +msgid "" +"Completely disables all GS plugin activity; ideal for benchmarking EEcore " +"components." +msgstr "" + #: pcsx2/gui/Panels/VideoPanel.cpp:302 msgid "!ContextTip:GS:SyncMTGS" msgstr "如您认为 MTGS 线程同步导致崩溃或图像错误,请启用此项。" @@ -174,7 +331,7 @@ msgstr "如您认为 MTGS 线程同步导致崩溃或图像错误,请启用此 #: pcsx2/gui/Panels/VideoPanel.cpp:306 msgid "!ContextTip:GS:DisableOutput" msgstr "" -"禁用全部由 MTGS 线程或 GPU 开销导致的测试信息。此选项可与即时存档配合使用: 在理想的场景中存档,启用此选项,读档。\n" +"禁用全部由 MTGS 线程或 GPU 开销导致的测试信息。此选项可与即时存档配合使用: 在" +"理想的场景中存档,启用此选项,读档。\n" "\n" "警告: 此选项可以即时启用但通常不能即时关闭 (通常会导致图像损坏)。" - diff --git a/locales/zh_TW/pcsx2_Devel.po b/locales/zh_TW/pcsx2_Devel.po index 31557e17f5..151e0900b8 100644 --- a/locales/zh_TW/pcsx2_Devel.po +++ b/locales/zh_TW/pcsx2_Devel.po @@ -1,150 +1,156 @@ -msgid "" -msgstr "" -"Project-Id-Version: PCSX2 0.9.7\n" -"Report-Msgid-Bugs-To: http://code.google.com/p/pcsx2/\n" -"POT-Creation-Date: 2010-12-26 09:58-0500\n" -"PO-Revision-Date: 2011-01-06 05:53+0800\n" -"Last-Translator: 呆丸北拜\n" -"Language-Team: pcsx2fan\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Poedit-KeywordsList: pxE_dev;pxDt\n" -"X-Poedit-SourceCharset: utf-8\n" -"X-Poedit-Basepath: F:\\PCSX2_0.9.7_GUI_翻譯\\SRC_4152\\\n" -"X-Poedit-Language: Chinese\n" -"X-Poedit-Country: TAIWAN\n" -"X-Poedit-SearchPath-0: pcsx2\n" -"X-Poedit-SearchPath-1: common\n" - -#: pcsx2/SourceLog.cpp:96 -msgid "Dumps detailed information for PS2 executables (ELFs)." -msgstr "擷取 PS2 執行檔(ELF)的詳細資訊" - -#: pcsx2/SourceLog.cpp:101 -msgid "Logs manual protection, split blocks, and other things that might impact performance." -msgstr "記錄手動保護、分塊,以及其他可能影響效能的東西。" - -#: pcsx2/SourceLog.cpp:106 -msgid "Shows the game developer's logging text (EE processor)" -msgstr "顯示遊戲開發人員的日誌(EE processor)" - -#: pcsx2/SourceLog.cpp:111 -msgid "Shows the game developer's logging text (IOP processor)" -msgstr "顯示遊戲開發人員的日誌(IOP processor)" - -#: pcsx2/SourceLog.cpp:116 -msgid "Shows DECI2 debugging logs (EE processor)" -msgstr "顯示 DECI2 偵錯日誌(EE processor)" - -#: pcsx2/SourceLog.cpp:145 -msgid "SYSCALL and DECI2 activity." -msgstr "SYSCALL 和 DECI2 的活動。" - -#: pcsx2/SourceLog.cpp:151 -msgid "Direct memory accesses to unknown or unmapped EE memory space." -msgstr "直接記憶體存取至未知或未映射的 EE 記憶體空間。" - -#: pcsx2/SourceLog.cpp:157 -#: pcsx2/SourceLog.cpp:270 -msgid "Disasm of executing core instructions (excluding COPs and CACHE)." -msgstr "執行核心指令集的反組譯(不包含 COP 和 CACHE)。" - -#: pcsx2/SourceLog.cpp:163 -msgid "Disasm of COP0 instructions (MMU, cpu and dma status, etc)." -msgstr "COP0 指令集的反組譯(MMU、cpu 和 dma 的狀態,以及其他)。" - -#: pcsx2/SourceLog.cpp:169 -msgid "Disasm of the EE's floating point unit (FPU) only." -msgstr "僅 EE 浮點運算器的反組譯。" - -#: pcsx2/SourceLog.cpp:175 -msgid "Disasm of the EE's VU0macro co-processor instructions." -msgstr "EE 的 VU0macro 輔助處理器指令集的反組譯。" - -#: pcsx2/SourceLog.cpp:181 -msgid "Execution of EE cache instructions." -msgstr "EE 快取指令集的執行。" - -#: pcsx2/SourceLog.cpp:187 -msgid "All known hardware register accesses (very slow!); not including sub filter options below." -msgstr "所有已知的硬體暫存器存取(非常慢!);不包括下面的分項選項。" - -#: pcsx2/SourceLog.cpp:193 -#: pcsx2/SourceLog.cpp:288 -msgid "Logs only unknown, unmapped, or unimplemented register accesses." -msgstr "僅記錄未知、未映射,或未實現的暫存器存取。" - -#: pcsx2/SourceLog.cpp:199 -#: pcsx2/SourceLog.cpp:294 -msgid "Logs only DMA-related registers." -msgstr "僅記錄 DMA 相關的暫存器。" - -#: pcsx2/SourceLog.cpp:205 -msgid "IPU activity: hardware registers, decoding operations, DMA status, etc." -msgstr "IPU 活動:硬體暫存器、解碼操作、DMA 狀態,以及其他。" - -#: pcsx2/SourceLog.cpp:211 -msgid "All GIFtag parse activity; path index, tag type, etc." -msgstr "全部 GIFtag 解析活動;路徑索引,標籤類型,以及其他。" - -#: pcsx2/SourceLog.cpp:217 -msgid "All VIFcode processing; command, tag style, interrupts." -msgstr "全部 VIFcode 處理;命令,標籤風格,中斷。" - -#: pcsx2/SourceLog.cpp:223 -msgid "Scratchpad's MFIFO activity." -msgstr "便條式暫存的 MFIFO 活動。" - -#: pcsx2/SourceLog.cpp:229 -msgid "Actual data transfer logs, bus right arbitration, stalls, etc." -msgstr "實際的資料傳輸日誌、匯流排正確的仲裁、停頓,以及其他。" - -#: pcsx2/SourceLog.cpp:235 -msgid "Tracks all EE counters events and some counter register activity." -msgstr "追蹤全部 EE 計數器事件以及一些計數器暫存器活動。" - -#: pcsx2/SourceLog.cpp:241 -msgid "Dumps various VIF and VIFcode processing data." -msgstr "擷取各種各樣的 VIF 和 VIFcode 處理資料。" - -#: pcsx2/SourceLog.cpp:247 -msgid "Dumps various GIF and GIFtag parsing data." -msgstr "擷取各種各樣的 GIF 和 GIFtag 解析資料。" - -#: pcsx2/SourceLog.cpp:258 -msgid "SYSCALL and IRX activity." -msgstr "SYSCALL 和 IRX 的活動。" - -#: pcsx2/SourceLog.cpp:264 -msgid "Direct memory accesses to unknown or unmapped IOP memory space." -msgstr "直接記憶體存取至未知或未映射的 IOP 記憶體空間。" - -#: pcsx2/SourceLog.cpp:276 -msgid "Disasm of the IOP's GPU co-processor instructions." -msgstr "IOP 的 GPU 輔助處理器指令集的反組譯。" - -#: pcsx2/SourceLog.cpp:282 -msgid "All known hardware register accesses, not including the sub-filters below." -msgstr "所有已知的硬體暫存器存取,不包括下面的分項。" - -#: pcsx2/SourceLog.cpp:300 -msgid "Memorycard reads, writes, erases, terminators, and other processing." -msgstr "記憶卡的讀取、寫入、清除、終結者,以及其他處理。" - -#: pcsx2/SourceLog.cpp:306 -msgid "Gamepad activity on the SIO." -msgstr "SIO 上的遊戲手把活動。" - -#: pcsx2/SourceLog.cpp:312 -msgid "Actual DMA event processing and data transfer logs." -msgstr "實際的直接記憶體存取事件處理和資料傳輸日誌。" - -#: pcsx2/SourceLog.cpp:318 -msgid "Tracks all IOP counters events and some counter register activity." -msgstr "追蹤全部 IOP 計數器事件以及一些計數器暫存器活動。" - -#: pcsx2/SourceLog.cpp:324 -msgid "Detailed logging of CDVD hardware." -msgstr "CDVD 硬體的詳細日誌紀錄。" - +msgid "" +msgstr "" +"Project-Id-Version: PCSX2 0.9.7\n" +"Report-Msgid-Bugs-To: http://code.google.com/p/pcsx2/\n" +"POT-Creation-Date: 2011-02-25 18:54+0100\n" +"PO-Revision-Date: 2011-01-06 05:53+0800\n" +"Last-Translator: 呆丸北拜\n" +"Language-Team: pcsx2fan\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: pxE_dev;pxDt\n" +"X-Poedit-SourceCharset: utf-8\n" +"X-Poedit-Basepath: F:\\PCSX2_0.9.7_GUI_翻譯\\SRC_4152\\\n" +"X-Poedit-Language: Chinese\n" +"X-Poedit-Country: TAIWAN\n" +"X-Poedit-SearchPath-0: pcsx2\n" +"X-Poedit-SearchPath-1: common\n" + +#: pcsx2/SourceLog.cpp:96 +msgid "Dumps detailed information for PS2 executables (ELFs)." +msgstr "擷取 PS2 執行檔(ELF)的詳細資訊" + +#: pcsx2/SourceLog.cpp:101 +msgid "" +"Logs manual protection, split blocks, and other things that might impact " +"performance." +msgstr "記錄手動保護、分塊,以及其他可能影響效能的東西。" + +#: pcsx2/SourceLog.cpp:106 +msgid "Shows the game developer's logging text (EE processor)" +msgstr "顯示遊戲開發人員的日誌(EE processor)" + +#: pcsx2/SourceLog.cpp:111 +msgid "Shows the game developer's logging text (IOP processor)" +msgstr "顯示遊戲開發人員的日誌(IOP processor)" + +#: pcsx2/SourceLog.cpp:116 +msgid "Shows DECI2 debugging logs (EE processor)" +msgstr "顯示 DECI2 偵錯日誌(EE processor)" + +#: pcsx2/SourceLog.cpp:145 +msgid "SYSCALL and DECI2 activity." +msgstr "SYSCALL 和 DECI2 的活動。" + +#: pcsx2/SourceLog.cpp:151 +msgid "Direct memory accesses to unknown or unmapped EE memory space." +msgstr "直接記憶體存取至未知或未映射的 EE 記憶體空間。" + +#: pcsx2/SourceLog.cpp:157 pcsx2/SourceLog.cpp:276 +msgid "Disasm of executing core instructions (excluding COPs and CACHE)." +msgstr "執行核心指令集的反組譯(不包含 COP 和 CACHE)。" + +#: pcsx2/SourceLog.cpp:163 +msgid "Disasm of COP0 instructions (MMU, cpu and dma status, etc)." +msgstr "COP0 指令集的反組譯(MMU、cpu 和 dma 的狀態,以及其他)。" + +#: pcsx2/SourceLog.cpp:169 +msgid "Disasm of the EE's floating point unit (FPU) only." +msgstr "僅 EE 浮點運算器的反組譯。" + +#: pcsx2/SourceLog.cpp:175 +msgid "Disasm of the EE's VU0macro co-processor instructions." +msgstr "EE 的 VU0macro 輔助處理器指令集的反組譯。" + +#: pcsx2/SourceLog.cpp:181 +msgid "Execution of EE cache instructions." +msgstr "EE 快取指令集的執行。" + +#: pcsx2/SourceLog.cpp:187 +msgid "" +"All known hardware register accesses (very slow!); not including sub filter " +"options below." +msgstr "所有已知的硬體暫存器存取(非常慢!);不包括下面的分項選項。" + +#: pcsx2/SourceLog.cpp:193 pcsx2/SourceLog.cpp:294 +msgid "Logs only unknown, unmapped, or unimplemented register accesses." +msgstr "僅記錄未知、未映射,或未實現的暫存器存取。" + +#: pcsx2/SourceLog.cpp:199 pcsx2/SourceLog.cpp:300 +msgid "Logs only DMA-related registers." +msgstr "僅記錄 DMA 相關的暫存器。" + +#: pcsx2/SourceLog.cpp:205 +msgid "IPU activity: hardware registers, decoding operations, DMA status, etc." +msgstr "IPU 活動:硬體暫存器、解碼操作、DMA 狀態,以及其他。" + +#: pcsx2/SourceLog.cpp:211 +msgid "All GIFtag parse activity; path index, tag type, etc." +msgstr "全部 GIFtag 解析活動;路徑索引,標籤類型,以及其他。" + +#: pcsx2/SourceLog.cpp:217 +msgid "All VIFcode processing; command, tag style, interrupts." +msgstr "全部 VIFcode 處理;命令,標籤風格,中斷。" + +#: pcsx2/SourceLog.cpp:223 +msgid "All processing involved in Path3 Masking" +msgstr "" + +#: pcsx2/SourceLog.cpp:229 +msgid "Scratchpad's MFIFO activity." +msgstr "便條式暫存的 MFIFO 活動。" + +#: pcsx2/SourceLog.cpp:235 +msgid "Actual data transfer logs, bus right arbitration, stalls, etc." +msgstr "實際的資料傳輸日誌、匯流排正確的仲裁、停頓,以及其他。" + +#: pcsx2/SourceLog.cpp:241 +msgid "Tracks all EE counters events and some counter register activity." +msgstr "追蹤全部 EE 計數器事件以及一些計數器暫存器活動。" + +#: pcsx2/SourceLog.cpp:247 +msgid "Dumps various VIF and VIFcode processing data." +msgstr "擷取各種各樣的 VIF 和 VIFcode 處理資料。" + +#: pcsx2/SourceLog.cpp:253 +msgid "Dumps various GIF and GIFtag parsing data." +msgstr "擷取各種各樣的 GIF 和 GIFtag 解析資料。" + +#: pcsx2/SourceLog.cpp:264 +msgid "SYSCALL and IRX activity." +msgstr "SYSCALL 和 IRX 的活動。" + +#: pcsx2/SourceLog.cpp:270 +msgid "Direct memory accesses to unknown or unmapped IOP memory space." +msgstr "直接記憶體存取至未知或未映射的 IOP 記憶體空間。" + +#: pcsx2/SourceLog.cpp:282 +msgid "Disasm of the IOP's GPU co-processor instructions." +msgstr "IOP 的 GPU 輔助處理器指令集的反組譯。" + +#: pcsx2/SourceLog.cpp:288 +msgid "" +"All known hardware register accesses, not including the sub-filters below." +msgstr "所有已知的硬體暫存器存取,不包括下面的分項。" + +#: pcsx2/SourceLog.cpp:306 +msgid "Memorycard reads, writes, erases, terminators, and other processing." +msgstr "記憶卡的讀取、寫入、清除、終結者,以及其他處理。" + +#: pcsx2/SourceLog.cpp:312 +msgid "Gamepad activity on the SIO." +msgstr "SIO 上的遊戲手把活動。" + +#: pcsx2/SourceLog.cpp:318 +msgid "Actual DMA event processing and data transfer logs." +msgstr "實際的直接記憶體存取事件處理和資料傳輸日誌。" + +#: pcsx2/SourceLog.cpp:324 +msgid "Tracks all IOP counters events and some counter register activity." +msgstr "追蹤全部 IOP 計數器事件以及一些計數器暫存器活動。" + +#: pcsx2/SourceLog.cpp:330 +msgid "Detailed logging of CDVD hardware." +msgstr "CDVD 硬體的詳細日誌紀錄。" diff --git a/locales/zh_TW/pcsx2_Iconized.po b/locales/zh_TW/pcsx2_Iconized.po index ad215e70fe..568cc90831 100644 --- a/locales/zh_TW/pcsx2_Iconized.po +++ b/locales/zh_TW/pcsx2_Iconized.po @@ -1,256 +1,281 @@ -msgid "" -msgstr "" -"Project-Id-Version: PCSX2 0.9.7\n" -"Report-Msgid-Bugs-To: http://code.google.com/p/pcsx2/\n" -"POT-Creation-Date: 2010-12-26 10:02-0500\n" -"PO-Revision-Date: 2011-01-22 08:43+0800\n" -"Last-Translator: 呆丸北拜\n" -"Language-Team: pcsx2fan\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Poedit-KeywordsList: pxE;pxExpandMsg\n" -"X-Poedit-SourceCharset: utf-8\n" -"X-Poedit-Basepath: F:\\PCSX2_0.9.7_GUI_翻譯\\SRC_4152\\\n" -"X-Poedit-Language: Chinese\n" -"X-Poedit-Country: TAIWAN\n" -"X-Poedit-SearchPath-0: pcsx2\n" -"X-Poedit-SearchPath-1: common\n" - -#: pcsx2/System.cpp:114 -msgid "!Notice:Recompiler:VirtualMemoryAlloc" -msgstr "" -"反編譯裝置無法保留內部快取所要求的相接的記憶體。\n" -"此錯誤可能由低水平的虛擬記憶體資源引起,譬如分頁檔案小或沒有分頁檔案,\n" -"或由另一個獨占大量記憶體的程式引起。\n" -"您也可以嘗試減少 PCSX2 全部反編譯裝置的預設快取大小,位於 Host 設定。" - -#: pcsx2/System.cpp:346 -msgid "!Notice:EmuCore::MemoryForVM" -msgstr "" -"PCSX2 無法分配 PS2 虛擬機需要的記憶體。\n" -"關閉一些獨占記憶體的背景工作並再次嘗試。" - -#: pcsx2/vtlb.cpp:588 -msgid "!Notice:HostVmReserve" -msgstr "" -"您的系統虛擬資源過低,以致 PCSX2 無法運行。\n" -"可能由分頁檔案小或沒有分頁檔案引起,\n" -"或由其他獨占資源的程式引起。" - -#: pcsx2/CDVD/CDVD.cpp:385 -msgid "!Notice:PsxDisc" -msgstr "" -"PCSX2 不支援 Playstation 遊戲光碟。\n" -"若您想要模擬 PS 遊戲,您必須下載 PS 模擬器,譬如 ePSXe 或 PCSX。" - -#: pcsx2/gui/AppInit.cpp:44 -msgid "!Notice:Startup:NoSSE2" -msgstr "" -"警告:您的電腦不支援 SSE2,許多 PCSX2 的反編譯裝置和插件需要 SSE2。\n" -"您可供調整的模擬器選項將會受到限制,並且遊戲速度會「非常」慢。" - -#: pcsx2/gui/AppInit.cpp:290 -msgid "!Notice:RecompilerInit:Header" -msgstr "警告:某些指定的 PS2 反編譯裝置初始化失敗,並且被停用:" - -#: pcsx2/gui/AppInit.cpp:344 -msgid "!Notice:RecompilerInit:Footer" -msgstr "" -"注意:反編譯裝置並非執行 PCSX2 所必須的,但反編譯裝置大幅提升遊戲速度。\n" -"若錯誤已經解決,您可能必須手動重新啟用上面列出的反編譯裝置。" - -#: pcsx2/gui/AppMain.cpp:483 -msgid "!Notice:BiosDumpRequired" -msgstr "" -"PCSX2 需要 PS2 BIOS 才能運行遊戲。\n" -"出於法律上的原因,\n" -"您「必須」從您自己的 PS2 真實遊戲主機獲取 BIOS\n" -"(借的 PS2 不算)。\n" -"進一步的說明請洽 FAQ 和指南。" - -#: pcsx2/gui/AppMain.cpp:567 -msgid "!Notice Error:Thread Deadlock Actions" -msgstr "" -"【忽略】繼續等待執行緒回應。\n" -"【取消】嘗試取消執行緒。\n" -"【終止】立即退出 PCSX2。" - -#: pcsx2/gui/IsoDropTarget.cpp:28 -msgid "!Notice:ConfirmSysReset" -msgstr "" -"重置當前的 PS2 虛擬機狀態;\n" -"所有當前的遊戲進展將會丟失。您確定嗎?" - -#: pcsx2/gui/MainMenuClicks.cpp:112 -msgid "!Notice:DeleteSettings" -msgstr "" -"清除 %s 的設定,並且允許您重新執行首次執行精靈。\n" -"本操作完成之後,您需要手動重新啟動 %s。\n" -"\n" -"警告!!按【確定】刪除 %s 的全部設定,並會強行關閉 PCSX2,丟失任何當前的遊戲進展。您真的確定嗎?\n" -"\n" -"(注意:各個插件自身的設定不受影響)" - -#: pcsx2/gui/MemoryCardFile.cpp:77 -msgid "!Notice:Mcd:HasBeenDisabled" -msgstr "" -"插槽 %d 的記憶卡已經被自動停用。\n" -"您可以在任何時候,透過「PCSX2 主選單 => 設定 => 記憶卡」糾正這一問題並重新啟用記憶卡。" - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:53 -msgid "!Panel:Folders:Settings" -msgstr "" -"您可以在這裡指定一個位置用來儲存 PCSX2 的設定檔。\n" -"若指定的位置包含已經存在的 PCSX2 設定檔,您將會被問及匯入或覆寫現存的設定。" - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:109 -msgid "!Notice:DocsFolderFileConflict" -msgstr "" -"PCSX2 無法在所要求的位置,建立檔案資料夾。\n" -"路徑名稱和現有的檔案相匹配。\n" -"刪除現有的檔案,或變更儲存位置,然後再重試。" - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:152 -msgid "!Wizard:Bios:Tutorial" -msgstr "" -"為了運行遊戲,PCSX2 要求一份「合法」的 PS2 BIOS 拷貝。\n" -"您不能使用一份從朋友或網路借來的 PS2 BIOS 拷貝。\n" -"您必須從您「自己」的 Playstation 2 遊戲主機擷取 BIOS。" - -#: pcsx2/gui/Dialogs/ImportSettingsDialog.cpp:31 -msgid "!Notice:ImportExistingSettings" -msgstr "" -"在指定的設定檔資料夾發現已經存在的 %s 設定檔。\n" -"您想要匯入其中的設定,或以 %s 的預設設定覆寫設定檔?\n" -"\n" -"(或按【取消】選擇一個不同的設定檔資料夾)" - -#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:30 -msgid "!Panel:Mcd:NtfsCompress" -msgstr "" -"NTFS 壓縮是內建的,速度快,而且完全可靠;\n" -"在記憶卡的壓縮上,表現非常好。(強烈推薦)" - -#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:41 -msgid "!Panel:Mcd:EnableEjection" -msgstr "" -"讀取即時存檔之後,透過強行讓遊戲重新索引記憶卡的內容,避免記憶卡損壞。\n" -"可能無法和所有遊戲都相容(已知「吉他英雄」不相容)。" - -#: pcsx2/gui/Dialogs/StuckThreadDialog.cpp:33 -msgid "!Panel:StuckThread:Heading" -msgstr "" -"執行緒【%s】停止回應。\n" -"可能是死當,或可能僅僅是執行速度「極」慢。" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:37 -msgid "!Panel:HasHacksOverrides" -msgstr "" -"警告!您正在從覆寫現有設定的命令列選項執行 PCSX2。\n" -"這些命令列選項不會反映到設定視窗中,並且會被停用。\n" -"如果您在這裡套用任何變更。" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:57 -msgid "!Panel:HasPluginsOverrides" -msgstr "" -"警告!您正在從覆寫現有插件 / 資料夾設定的命令列選項執行 PCSX2。\n" -"這些命令列選項不會反映到設定視窗中,並且會被停用。\n" -"當您在這裡套用變更時。" - -#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:126 -msgid "!Notice:BIOS:InvalidSelection" -msgstr "" -"請選擇一個有效的 BIOS。\n" -"若您無法作出有效的選擇,那就按【取消】關閉設定視窗。" - -#: pcsx2/gui/Panels/DirPickerPanel.cpp:63 -msgid "!Notice:DirPicker:CreatePath" -msgstr "指定的路徑 / 資料夾不存在。您想要新增嗎?" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:96 -msgid "!Panel:Gamefixes:Compat Warning" -msgstr "" -"遊戲修正能夠修復在一些遊戲裡不正確的模擬。但會引起其他遊戲出現相容性或效能問題。\n" -"若變更所玩的遊戲,您需要手動關閉已啟用的遊戲修正。" - -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:365 -msgid "!Notice:Mcd:Overwrite" -msgstr "" -"複製插槽 %u 的記憶卡內容,覆寫插槽 %u 的記憶卡。\n" -"目標插槽記憶卡的全部資料將會丟失。您確定嗎?" - -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:379 -msgid "!Notice:Mcd:Copy Failed" -msgstr "錯誤!無法複製記憶卡至插槽 %u。目標檔案使用中。" - -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:585 -msgid "!Notice:Mcd:Delete" -msgstr "" -"您即將刪除 %u 插槽已格式化的記憶卡。\n" -"該記憶卡的全部資料將會丟失!您真的確定嗎?" - -#: pcsx2/gui/Panels/MiscPanelStuff.cpp:35 -msgid "!Panel:Usermode:Explained" -msgstr "" -"請選擇您首選的預設位置,用於儲存下列 PCSX2 使用者層級的檔案。\n" -"(包括:記憶卡、遊戲擷圖、設定檔、即時存檔)\n" -"這些資料夾位置能夠在任何時候透過核心設定視窗覆寫。" - -#: pcsx2/gui/Panels/MiscPanelStuff.cpp:41 -msgid "!Panel:Usermode:Warning" -msgstr "" -"您能夠在這裡變更首選的預設位置,用於儲存 PCSX2 使用者層級的檔案。\n" -"(包括:記憶卡、遊戲擷圖、設定檔、即時存檔)\n" -"本選項僅影響被設定為使用安裝時預設值的標準路徑。" - -#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:242 -msgid "!Notice:PluginSelector:ConfirmShutdown" -msgstr "" -"警告!更換插件要求 PS2 虛擬機徹底關閉並重新啟動。\n" -"PCSX2 會嘗試儲存並還原目前的遊戲狀態,\n" -"但如果新選的插件不相容,遊戲狀態的還原可能會失敗,並丟失目前的遊戲進展。\n" -"\n" -"您確定您想要現在套用變更嗎?" - -#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:458 -msgid "!Notice:PluginSelector:ApplyFailed" -msgstr "" -"為了運行 %s,全部插件都必須具備有效的選擇。\n" -"若由於插件丟失或 %s 未能完整安裝,令您無法作出有效的選擇,\n" -"那就按【取消】關閉設定視窗。" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:97 -msgid "!Panel:Speedhacks:Overview" -msgstr "" -"速度駭客通常會提升遊戲速度,但可能導致遊戲出現小毛病、破損的聲音、錯誤的 FPS 顯示。\n" -"當遊戲出現問題時,首先停用速度駭客。" - -#: pcsx2/gui/Panels/VideoPanel.cpp:106 -msgid "!Panel:Framelimiter:Heading" -msgstr "" -"內部的畫框限制裝置控制 PS2 虛擬機的速度。\n" -"以百分數表示的可供調整的數值,\n" -"基於同樣也可以調整的\n" -"NTSC 和 PAL 區域的預設 FPS。" - -#: pcsx2/gui/Panels/VideoPanel.cpp:230 -msgid "!Panel:Frameskip:Heading" -msgstr "" -"注意:\n" -"由於 PS2 的硬體設計,精確的跳框是不可能的。\n" -"啟用跳框將導致一些遊戲出現嚴重的圖形錯誤。" - -#: pcsx2/x86/sVU_zerorec.cpp:362 -msgid "!Notice:superVU:VirtualMemoryAlloc" -msgstr "" -"幾乎是 Out of Memory:\n" -"SuperVU 無法留住所需要的指定的記憶體範圍,SuperVU 不可用。\n" -"這不是嚴重的錯誤,因為 SuperVU 是過時的。無論如何,您應該使用 microVU 代替。:)" - -#: common/src/Utilities/Exceptions.cpp:254 -msgid "!Notice:VirtualMemoryMap" -msgstr "" -"可用的虛擬記憶體不足,\n" -"或必備的虛擬記憶體映射已經被其他處理程序、服務,或 DLL 保留。" - +msgid "" +msgstr "" +"Project-Id-Version: PCSX2 0.9.7\n" +"Report-Msgid-Bugs-To: http://code.google.com/p/pcsx2/\n" +"POT-Creation-Date: 2011-02-25 18:54+0100\n" +"PO-Revision-Date: 2011-01-22 08:43+0800\n" +"Last-Translator: 呆丸北拜\n" +"Language-Team: pcsx2fan\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: pxE;pxExpandMsg\n" +"X-Poedit-SourceCharset: utf-8\n" +"X-Poedit-Basepath: F:\\PCSX2_0.9.7_GUI_翻譯\\SRC_4152\\\n" +"X-Poedit-Language: Chinese\n" +"X-Poedit-Country: TAIWAN\n" +"X-Poedit-SearchPath-0: pcsx2\n" +"X-Poedit-SearchPath-1: common\n" + +#: common/src/Utilities/Exceptions.cpp:254 +msgid "!Notice:VirtualMemoryMap" +msgstr "" +"可用的虛擬記憶體不足,\n" +"或必備的虛擬記憶體映射已經被其他處理程序、服務,或 DLL 保留。" + +#: pcsx2/CDVD/CDVD.cpp:385 +msgid "!Notice:PsxDisc" +msgstr "" +"PCSX2 不支援 Playstation 遊戲光碟。\n" +"若您想要模擬 PS 遊戲,您必須下載 PS 模擬器,譬如 ePSXe 或 PCSX。" + +#: pcsx2/System.cpp:114 +msgid "!Notice:Recompiler:VirtualMemoryAlloc" +msgstr "" +"反編譯裝置無法保留內部快取所要求的相接的記憶體。\n" +"此錯誤可能由低水平的虛擬記憶體資源引起,譬如分頁檔案小或沒有分頁檔案,\n" +"或由另一個獨占大量記憶體的程式引起。\n" +"您也可以嘗試減少 PCSX2 全部反編譯裝置的預設快取大小,位於 Host 設定。" + +#: pcsx2/System.cpp:348 +msgid "!Notice:EmuCore::MemoryForVM" +msgstr "" +"PCSX2 無法分配 PS2 虛擬機需要的記憶體。\n" +"關閉一些獨占記憶體的背景工作並再次嘗試。" + +#: pcsx2/gui/AppInit.cpp:43 +msgid "!Notice:Startup:NoSSE2" +msgstr "" +"警告:您的電腦不支援 SSE2,許多 PCSX2 的反編譯裝置和插件需要 SSE2。\n" +"您可供調整的模擬器選項將會受到限制,並且遊戲速度會「非常」慢。" + +#: pcsx2/gui/AppInit.cpp:162 +msgid "!Notice:RecompilerInit:Header" +msgstr "警告:某些指定的 PS2 反編譯裝置初始化失敗,並且被停用:" + +#: pcsx2/gui/AppInit.cpp:211 +msgid "!Notice:RecompilerInit:Footer" +msgstr "" +"注意:反編譯裝置並非執行 PCSX2 所必須的,但反編譯裝置大幅提升遊戲速度。\n" +"若錯誤已經解決,您可能必須手動重新啟用上面列出的反編譯裝置。" + +#: pcsx2/gui/AppMain.cpp:476 +msgid "!Notice:BiosDumpRequired" +msgstr "" +"PCSX2 需要 PS2 BIOS 才能運行遊戲。\n" +"出於法律上的原因,\n" +"您「必須」從您自己的 PS2 真實遊戲主機獲取 BIOS\n" +"(借的 PS2 不算)。\n" +"進一步的說明請洽 FAQ 和指南。" + +#: pcsx2/gui/AppMain.cpp:559 +msgid "!Notice Error:Thread Deadlock Actions" +msgstr "" +"【忽略】繼續等待執行緒回應。\n" +"【取消】嘗試取消執行緒。\n" +"【終止】立即退出 PCSX2。" + +#: pcsx2/gui/AppUserMode.cpp:59 +msgid "!Error:PortableModeRights" +msgstr "" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:54 +msgid "!Panel:Folders:Settings" +msgstr "" +"您可以在這裡指定一個位置用來儲存 PCSX2 的設定檔。\n" +"若指定的位置包含已經存在的 PCSX2 設定檔,您將會被問及匯入或覆寫現存的設定。" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:94 +msgid "!Wizard:Welcome" +msgstr "" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:140 +msgid "!Wizard:Bios:Tutorial" +msgstr "" +"為了運行遊戲,PCSX2 要求一份「合法」的 PS2 BIOS 拷貝。\n" +"您不能使用一份從朋友或網路借來的 PS2 BIOS 拷貝。\n" +"您必須從您「自己」的 Playstation 2 遊戲主機擷取 BIOS。" + +#: pcsx2/gui/Dialogs/ImportSettingsDialog.cpp:31 +msgid "!Notice:ImportExistingSettings" +msgstr "" +"在指定的設定檔資料夾發現已經存在的 %s 設定檔。\n" +"您想要匯入其中的設定,或以 %s 的預設設定覆寫設定檔?\n" +"\n" +"(或按【取消】選擇一個不同的設定檔資料夾)" + +#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:30 +msgid "!Panel:Mcd:NtfsCompress" +msgstr "" +"NTFS 壓縮是內建的,速度快,而且完全可靠;\n" +"在記憶卡的壓縮上,表現非常好。(強烈推薦)" + +#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:41 +msgid "!Panel:Mcd:EnableEjection" +msgstr "" +"讀取即時存檔之後,透過強行讓遊戲重新索引記憶卡的內容,避免記憶卡損壞。\n" +"可能無法和所有遊戲都相容(已知「吉他英雄」不相容)。" + +#: pcsx2/gui/Dialogs/StuckThreadDialog.cpp:33 +msgid "!Panel:StuckThread:Heading" +msgstr "" +"執行緒【%s】停止回應。\n" +"可能是死當,或可能僅僅是執行速度「極」慢。" + +#: pcsx2/gui/IsoDropTarget.cpp:28 +msgid "!Notice:ConfirmSysReset" +msgstr "" +"重置當前的 PS2 虛擬機狀態;\n" +"所有當前的遊戲進展將會丟失。您確定嗎?" + +#: pcsx2/gui/MainMenuClicks.cpp:106 +msgid "!Notice:DeleteSettings" +msgstr "" +"清除 %s 的設定,並且允許您重新執行首次執行精靈。\n" +"本操作完成之後,您需要手動重新啟動 %s。\n" +"\n" +"警告!!按【確定】刪除 %s 的全部設定,並會強行關閉 PCSX2,丟失任何當前的遊戲" +"進展。您真的確定嗎?\n" +"\n" +"(注意:各個插件自身的設定不受影響)" + +#: pcsx2/gui/MemoryCardFile.cpp:77 +msgid "!Notice:Mcd:HasBeenDisabled" +msgstr "" +"插槽 %d 的記憶卡已經被自動停用。\n" +"您可以在任何時候,透過「PCSX2 主選單 => 設定 => 記憶卡」糾正這一問題並重新啟" +"用記憶卡。" + +#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:138 +msgid "!Notice:BIOS:InvalidSelection" +msgstr "" +"請選擇一個有效的 BIOS。\n" +"若您無法作出有效的選擇,那就按【取消】關閉設定視窗。" + +#: pcsx2/gui/Panels/CpuPanel.cpp:111 +#, fuzzy +msgid "!Panel:EE/IOP:Heading" +msgstr "" +"注意:\n" +"由於 PS2 的硬體設計,精確的跳框是不可能的。\n" +"啟用跳框將導致一些遊戲出現嚴重的圖形錯誤。" + +#: pcsx2/gui/Panels/CpuPanel.cpp:178 +#, fuzzy +msgid "!Panel:VUs:Heading" +msgstr "" +"注意:\n" +"由於 PS2 的硬體設計,精確的跳框是不可能的。\n" +"啟用跳框將導致一些遊戲出現嚴重的圖形錯誤。" + +#: pcsx2/gui/Panels/DirPickerPanel.cpp:69 +msgid "!Notice:DirPicker:CreatePath" +msgstr "指定的路徑 / 資料夾不存在。您想要新增嗎?" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:96 +msgid "!Panel:Gamefixes:Compat Warning" +msgstr "" +"遊戲修正能夠修復在一些遊戲裡不正確的模擬。但會引起其他遊戲出現相容性或效能問" +"題。\n" +"若變更所玩的遊戲,您需要手動關閉已啟用的遊戲修正。" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:368 +msgid "!Notice:Mcd:Overwrite" +msgstr "" +"複製插槽 %u 的記憶卡內容,覆寫插槽 %u 的記憶卡。\n" +"目標插槽記憶卡的全部資料將會丟失。您確定嗎?" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:384 +msgid "!Notice:Mcd:Copy Failed" +msgstr "錯誤!無法複製記憶卡至插槽 %u。目標檔案使用中。" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:596 +msgid "!Notice:Mcd:Delete" +msgstr "" +"您即將刪除 %u 插槽已格式化的記憶卡。\n" +"該記憶卡的全部資料將會丟失!您真的確定嗎?" + +#: pcsx2/gui/Panels/MiscPanelStuff.cpp:35 +msgid "!Panel:Usermode:Explained" +msgstr "" +"請選擇您首選的預設位置,用於儲存下列 PCSX2 使用者層級的檔案。\n" +"(包括:記憶卡、遊戲擷圖、設定檔、即時存檔)\n" +"這些資料夾位置能夠在任何時候透過核心設定視窗覆寫。" + +#: pcsx2/gui/Panels/MiscPanelStuff.cpp:41 +msgid "!Panel:Usermode:Warning" +msgstr "" +"您能夠在這裡變更首選的預設位置,用於儲存 PCSX2 使用者層級的檔案。\n" +"(包括:記憶卡、遊戲擷圖、設定檔、即時存檔)\n" +"本選項僅影響被設定為使用安裝時預設值的標準路徑。" + +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:242 +msgid "!Notice:PluginSelector:ConfirmShutdown" +msgstr "" +"警告!更換插件要求 PS2 虛擬機徹底關閉並重新啟動。\n" +"PCSX2 會嘗試儲存並還原目前的遊戲狀態,\n" +"但如果新選的插件不相容,遊戲狀態的還原可能會失敗,並丟失目前的遊戲進展。\n" +"\n" +"您確定您想要現在套用變更嗎?" + +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:457 +msgid "!Notice:PluginSelector:ApplyFailed" +msgstr "" +"為了運行 %s,全部插件都必須具備有效的選擇。\n" +"若由於插件丟失或 %s 未能完整安裝,令您無法作出有效的選擇,\n" +"那就按【取消】關閉設定視窗。" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:97 +msgid "!Panel:Speedhacks:Overview" +msgstr "" +"速度駭客通常會提升遊戲速度,但可能導致遊戲出現小毛病、破損的聲音、錯誤的 FPS " +"顯示。\n" +"當遊戲出現問題時,首先停用速度駭客。" + +#: pcsx2/gui/Panels/VideoPanel.cpp:223 +msgid "!Panel:Frameskip:Heading" +msgstr "" +"注意:\n" +"由於 PS2 的硬體設計,精確的跳框是不可能的。\n" +"啟用跳框將導致一些遊戲出現嚴重的圖形錯誤。" + +#: pcsx2/vtlb.cpp:698 +msgid "!Notice:HostVmReserve" +msgstr "" +"您的系統虛擬資源過低,以致 PCSX2 無法運行。\n" +"可能由分頁檔案小或沒有分頁檔案引起,\n" +"或由其他獨占資源的程式引起。" + +#: pcsx2/x86/sVU_zerorec.cpp:362 +msgid "!Notice:superVU:VirtualMemoryAlloc" +msgstr "" +"幾乎是 Out of Memory:\n" +"SuperVU 無法留住所需要的指定的記憶體範圍,SuperVU 不可用。\n" +"這不是嚴重的錯誤,因為 SuperVU 是過時的。無論如何,您應該使用 microVU 代" +"替。:)" + +#~ msgid "!Notice:DocsFolderFileConflict" +#~ msgstr "" +#~ "PCSX2 無法在所要求的位置,建立檔案資料夾。\n" +#~ "路徑名稱和現有的檔案相匹配。\n" +#~ "刪除現有的檔案,或變更儲存位置,然後再重試。" + +#~ msgid "!Panel:HasHacksOverrides" +#~ msgstr "" +#~ "警告!您正在從覆寫現有設定的命令列選項執行 PCSX2。\n" +#~ "這些命令列選項不會反映到設定視窗中,並且會被停用。\n" +#~ "如果您在這裡套用任何變更。" + +#~ msgid "!Panel:HasPluginsOverrides" +#~ msgstr "" +#~ "警告!您正在從覆寫現有插件 / 資料夾設定的命令列選項執行 PCSX2。\n" +#~ "這些命令列選項不會反映到設定視窗中,並且會被停用。\n" +#~ "當您在這裡套用變更時。" + +#~ msgid "!Panel:Framelimiter:Heading" +#~ msgstr "" +#~ "內部的畫框限制裝置控制 PS2 虛擬機的速度。\n" +#~ "以百分數表示的可供調整的數值,\n" +#~ "基於同樣也可以調整的\n" +#~ "NTSC 和 PAL 區域的預設 FPS。" diff --git a/locales/zh_TW/pcsx2_Main.po b/locales/zh_TW/pcsx2_Main.po index e6c58bbba9..c4a785aa50 100644 --- a/locales/zh_TW/pcsx2_Main.po +++ b/locales/zh_TW/pcsx2_Main.po @@ -1,2099 +1,2329 @@ -msgid "" -msgstr "" -"Project-Id-Version: PCSX2 0.9.7\n" -"Report-Msgid-Bugs-To: http://code.google.com/p/pcsx2/\n" -"POT-Creation-Date: 2010-12-26 10:00-0500\n" -"PO-Revision-Date: 2011-01-06 10:24+0800\n" -"Last-Translator: 呆丸北拜\n" -"Language-Team: pcsx2fan\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Poedit-KeywordsList: _;wxLt\n" -"X-Poedit-SourceCharset: utf-8\n" -"X-Poedit-Basepath: F:\\PCSX2_0.9.7_GUI_翻譯\\SRC_4152\\\n" -"X-Poedit-Language: Chinese\n" -"X-Poedit-Country: TAIWAN\n" -"X-Poedit-SearchPath-0: pcsx2\n" -"X-Poedit-SearchPath-1: common\n" - -#: pcsx2/Elfheader.cpp:266 -msgid "Cannot load ELF binary image. The file may be corrupt or incomplete." -msgstr "無法載入 ELF 檔案。檔案可能損壞或不完整。" - -#: pcsx2/Elfheader.cpp:268 -msgid "If loading from an ISO image, this error may be caused by an unsupported ISO image type or bug in PCSX2 ISO image support." -msgstr "" -"如果是從光碟映像檔讀取檔案,\n" -"那麼這個錯誤可能由未支援的光碟映像檔類型引起,\n" -"或者由功能 PCSX2 光碟映像檔支援,它的程式錯誤所引起。" - -#: pcsx2/PluginManager.cpp:692 -msgid "The savestate cannot be loaded, as it appears to be corrupt or incomplete." -msgstr "無法讀取即時存檔,檔案似乎損壞或不完整。" - -#: pcsx2/PluginManager.cpp:702 -#, c-format -msgid "%s plugin failed to open. Your computer may have insufficient resources, or incompatible hardware/drivers." -msgstr "" -"開啟【%s】插件失敗。您的電腦可能沒有足夠的資源,\n" -"或是有不相容的硬體或驅動程式。" - -#: pcsx2/PluginManager.cpp:709 -#, c-format -msgid "%s plugin failed to initialize. Your system may have insufficient memory or resources needed." -msgstr "初始化【%s】插件失敗。您的系統可能沒有足夠的記憶體或資源。" - -#: pcsx2/PluginManager.cpp:815 -#, c-format -msgid "The configured %s plugin file was not found" -msgstr "未找到所選【%s】插件的檔案" - -#: pcsx2/PluginManager.cpp:819 -#, c-format -msgid "The configured %s plugin file is not a valid dynamic library" -msgstr "所選【%s】插件的檔案不是有效的動態連結函式庫" - -#: pcsx2/PluginManager.cpp:837 -#, c-format -msgid "The configured %s plugin is not a PCSX2 plugin, or is for an older unsupported version of PCSX2." -msgstr "所選擇的 %s 插件不是 PCSX2 的插件,或者是不再支援的舊版 PCSX2 的插件。" - -#: pcsx2/PluginManager.cpp:862 -msgid "The plugin reports that your hardware or software/drivers are not supported." -msgstr "插件報告不支援您的硬體或軟體 / 驅動程式。" - -#: pcsx2/PluginManager.cpp:883 -msgid "Configured plugin is not a PCSX2 plugin, or is for an older unsupported version of PCSX2." -msgstr "所選擇的插件不是 PCSX2 的插件,或者是不再支援的舊版 PCSX2 的插件。" - -#: pcsx2/PluginManager.cpp:909 -#, c-format -msgid "Configured %s plugin is not a valid PCSX2 plugin, or is for an older unsupported version of PCSX2." -msgstr "所選擇的 %s 插件不是有效的 PCSX2 插件,或者是不再支援的舊版 PCSX2 的插件。" - -#: pcsx2/PluginManager.cpp:1726 -msgid "Unloaded Plugin" -msgstr "未載入的插件" - -#: pcsx2/SaveState.cpp:338 -msgid "Cannot load savestate. It is of an unknown or unsupported version." -msgstr "無法讀取即時存檔,檔案版本未知或不支援。" - -#: pcsx2/CDVD/IsoFileFormats.cpp:416 -msgid "ISO mounting failed: PCSX2 is unable to identify the ISO image type." -msgstr "掛載光碟映像檔失敗:PCSX2 無法確認光碟映像檔的類型。" - -#: pcsx2/gui/AppConfig.cpp:769 -msgid "Failed to overwrite existing settings file; permission was denied." -msgstr "覆寫現存的設定檔失敗;沒有權限。" - -#: pcsx2/gui/AppCorePlugins.cpp:404 -msgid "Loading PS2 system plugins..." -msgstr "載入 PS2 系統插件..." - -#: pcsx2/gui/AppInit.cpp:42 -msgid "PCSX2 - SSE2 Recommended" -msgstr "PCSX2 - 推薦 SSE2" - -#: pcsx2/gui/AppInit.cpp:208 -msgid "SSE extensions are not available. PCSX2 requires a cpu that supports the SSE instruction set." -msgstr "SSE 不可用。PCSX2 要求 CPU 支援 SSE。" - -#: pcsx2/gui/AppInit.cpp:287 -msgid "PCSX2 Recompiler Error(s)" -msgstr "PCSX2 反編譯錯誤" - -#: pcsx2/gui/AppInit.cpp:360 -msgid "All options are for the current session only and will not be saved.\n" -msgstr "全部選項僅用於當前的作業並且不會被儲存。\n" - -#: pcsx2/gui/AppInit.cpp:370 -#: pcsx2/gui/AppMain.cpp:297 -msgid "IsoFile" -msgstr "ISO 檔案" - -#: pcsx2/gui/AppInit.cpp:371 -msgid "displays this list of command line options" -msgstr "顯示此命令列選項的列表" - -#: pcsx2/gui/AppInit.cpp:372 -msgid "forces the program log/console to be visible" -msgstr "強制程式日誌 / 主控台可見" - -#: pcsx2/gui/AppInit.cpp:373 -msgid "use fullscreen GS mode" -msgstr "使用全螢幕模式" - -#: pcsx2/gui/AppInit.cpp:374 -msgid "use windowed GS mode" -msgstr "使用視窗模式" - -#: pcsx2/gui/AppInit.cpp:376 -msgid "disables display of the gui while running games" -msgstr "運行遊戲時,不顯示模擬器介面" - -#: pcsx2/gui/AppInit.cpp:377 -msgid "executes an ELF image" -msgstr "執行 ELF 映像" - -#: pcsx2/gui/AppInit.cpp:378 -msgid "boots an empty dvd tray; use to enter the PS2 system menu" -msgstr "從空的 dvd 托盤啟動;用於進入 PS2 系統選單" - -#: pcsx2/gui/AppInit.cpp:379 -msgid "boots from the CDVD plugin (overrides IsoFile parameter)" -msgstr "從光碟插件啟動(覆寫【ISO 檔案】參數)" - -#: pcsx2/gui/AppInit.cpp:381 -msgid "disables all speedhacks" -msgstr "停用全部 speedhacks" - -#: pcsx2/gui/AppInit.cpp:382 -msgid "use the specified comma or pipe-delimited list of gamefixes." -msgstr "使用指定的遊戲修正列表以逗號或豎線分隔。" - -#: pcsx2/gui/AppInit.cpp:383 -msgid "disables fast booting" -msgstr "停用快速啟動" - -#: pcsx2/gui/AppInit.cpp:385 -msgid "changes the configuration file path" -msgstr "變更設定檔的路徑" - -#: pcsx2/gui/AppInit.cpp:386 -msgid "specifies the PCSX2 configuration file to use" -msgstr "指定欲使用的 PCSX2 設定檔" - -#: pcsx2/gui/AppInit.cpp:387 -#, c-format -msgid "forces %s to start the First-time Wizard" -msgstr "強制 %s 啟動首次執行精靈" - -#: pcsx2/gui/AppInit.cpp:391 -#, c-format -msgid "specify the file to use as the %s plugin" -msgstr "指定欲使用的檔案作為 %s 插件" - -#: pcsx2/gui/AppInit.cpp:439 -#, c-format -msgid "Plugin Override Error - %s" -msgstr "插件覆寫錯誤 - %s" - -#: pcsx2/gui/AppInit.cpp:442 -#, c-format -msgid "" -"%s Plugin Override Error! The following file does not exist or is not a valid %s plugin:\n" -"\n" -msgstr "" -"%s 插件覆寫錯誤!下列檔案不存在或不是有效的 %s 插件:\n" -"\n" - -#: pcsx2/gui/AppInit.cpp:449 -#, c-format -msgid "Press OK to use the default configured plugin, or Cancel to close %s." -msgstr "按【確定】使用預設所選擇的插件,或按【取消】關閉 %s。" - -#: pcsx2/gui/AppInit.cpp:626 -#: pcsx2/gui/AppInit.cpp:638 -#, c-format -msgid "" -"\n" -"\n" -"Press OK to close %s." -msgstr "" -"\n" -"\n" -"按【確定】關閉 %s。" - -#: pcsx2/gui/AppInit.cpp:626 -msgid "PCSX2 Error: Hardware Deficiency" -msgstr "PCSX2 錯誤:硬體缺陷" - -#: pcsx2/gui/AppInit.cpp:639 -#, c-format -msgid "%s Critical Error" -msgstr "%s 嚴重錯誤" - -#: pcsx2/gui/AppInit.cpp:807 -msgid "OK" -msgstr "確定" - -#: pcsx2/gui/AppInit.cpp:808 -msgid "&OK" -msgstr "確定" - -#: pcsx2/gui/AppInit.cpp:809 -msgid "Cancel" -msgstr "取消" - -#: pcsx2/gui/AppInit.cpp:810 -msgid "&Cancel" -msgstr "取消" - -#: pcsx2/gui/AppInit.cpp:811 -msgid "&Apply" -msgstr "套用" - -#: pcsx2/gui/AppInit.cpp:812 -msgid "&Next >" -msgstr "下一步 >" - -#: pcsx2/gui/AppInit.cpp:813 -msgid "&Back >" -msgstr "上一步 >" - -#: pcsx2/gui/AppInit.cpp:814 -msgid "&Back" -msgstr "上一步" - -#: pcsx2/gui/AppInit.cpp:815 -msgid "&Finish" -msgstr "完成" - -#: pcsx2/gui/AppInit.cpp:817 -msgid "&Save" -msgstr "儲存檔案" - -#: pcsx2/gui/AppInit.cpp:818 -msgid "Save &As..." -msgstr "另存新檔..." - -#: pcsx2/gui/AppInit.cpp:819 -msgid "&Help" -msgstr "說明" - -#: pcsx2/gui/AppInit.cpp:820 -msgid "&Home" -msgstr "家" - -#: pcsx2/gui/AppMain.cpp:85 -msgid "" -"\n" -"\n" -"Press Ok to go to the Plugin Configuration Panel." -msgstr "" -"\n" -"\n" -"按【確定】開啟插件設定視窗。" - -#: pcsx2/gui/AppMain.cpp:138 -#: pcsx2/gui/AppMain.cpp:152 -msgid "Warning! System plugins have not been loaded. PCSX2 may be inoperable." -msgstr "警告!插件未載入。PCSX2 可能無法使用。" - -#: pcsx2/gui/AppMain.cpp:307 -#, c-format -msgid "%s Commandline Options" -msgstr "%s 命令列選項" - -#: pcsx2/gui/AppMain.cpp:511 -msgid "PS2 BIOS Error" -msgstr "PS2 BIOS 錯誤" - -#: pcsx2/gui/AppMain.cpp:512 -msgid "" -"\n" -"Press Ok to go to the BIOS Configuration Panel." -msgstr "" -"\n" -"按【確定】開啟 BIOS 設定視窗。" - -#: pcsx2/gui/AppMain.cpp:564 -msgid "PCSX2 Unresponsive Thread" -msgstr "PCSX2 停止回應的執行緒" - -#: pcsx2/gui/AppMain.cpp:574 -msgid "Terminate" -msgstr "終止" - -#: pcsx2/gui/AppMain.cpp:884 -msgid "Executing PS2 Virtual Machine..." -msgstr "正在執行 PS2 虛擬機..." - -#: pcsx2/gui/AppRes.cpp:72 -msgid "Browse..." -msgstr "瀏覽..." - -#: pcsx2/gui/AppRes.cpp:72 -msgid "Browse for an Iso that is not in your recent history." -msgstr "選擇一個不在最近歷史記錄中的遊戲檔" - -#: pcsx2/gui/ConsoleLogger.cpp:120 -msgid "Save log question" -msgstr "儲存日誌的提問" - -#: pcsx2/gui/ConsoleLogger.cpp:412 -msgid "Small" -msgstr "最小" - -#: pcsx2/gui/ConsoleLogger.cpp:414 -msgid "Normal" -msgstr "普通" - -#: pcsx2/gui/ConsoleLogger.cpp:416 -msgid "Large" -msgstr "較大" - -#: pcsx2/gui/ConsoleLogger.cpp:418 -msgid "Huge" -msgstr "最大" - -#: pcsx2/gui/ConsoleLogger.cpp:422 -msgid "Light theme" -msgstr "明亮背景主題(需重啟 PCSX2)" - -#: pcsx2/gui/ConsoleLogger.cpp:423 -msgid "Dark theme" -msgstr "暗黑背景主題(需重啟 PCSX2)" - -#: pcsx2/gui/ConsoleLogger.cpp:426 -msgid "Always on Top" -msgstr "視窗總在最前" - -#: pcsx2/gui/ConsoleLogger.cpp:429 -msgid "&Save..." -msgstr "儲存" - -#: pcsx2/gui/ConsoleLogger.cpp:429 -msgid "Save log contents to file" -msgstr "將日誌內容儲存到檔案中" - -#: pcsx2/gui/ConsoleLogger.cpp:430 -msgid "C&lear" -msgstr "清空" - -#: pcsx2/gui/ConsoleLogger.cpp:430 -msgid "Clear the log window contents" -msgstr "清除日誌視窗中的全部內容" - -#: pcsx2/gui/ConsoleLogger.cpp:432 -msgid "Appearance" -msgstr "字型" - -#: pcsx2/gui/ConsoleLogger.cpp:434 -msgid "&Close" -msgstr "關閉" - -#: pcsx2/gui/ConsoleLogger.cpp:434 -msgid "Close this log window; contents are preserved" -msgstr "關閉日誌視窗(日誌內容保留)" - -#: pcsx2/gui/ConsoleLogger.cpp:438 -msgid "Dev/Verbose" -msgstr "開發 / 冗長" - -#: pcsx2/gui/ConsoleLogger.cpp:438 -msgid "Shows PCSX2 developer logs" -msgstr "顯示 PCSX2 開發人員日誌" - -#: pcsx2/gui/ConsoleLogger.cpp:454 -msgid "Enable all" -msgstr "啟用全部" - -#: pcsx2/gui/ConsoleLogger.cpp:454 -msgid "Enables all log source filters." -msgstr "啟用全部日誌來源" - -#: pcsx2/gui/ConsoleLogger.cpp:455 -msgid "Disable all" -msgstr "停用全部" - -#: pcsx2/gui/ConsoleLogger.cpp:455 -msgid "Disables all log source filters." -msgstr "停用全部日誌來源" - -#: pcsx2/gui/ConsoleLogger.cpp:457 -msgid "&Log" -msgstr "日誌" - -#: pcsx2/gui/ConsoleLogger.cpp:458 -msgid "&Sources" -msgstr "來源" - -#: pcsx2/gui/ExecutorThread.cpp:432 -msgid "Press Cancel to attempt to cancel the action." -msgstr "按【取消】嘗試取消動作。" - -#: pcsx2/gui/ExecutorThread.cpp:433 -#, c-format -msgid "Press Terminate to kill %s immediately." -msgstr "按【終止】立即終止 %s。" - -#: pcsx2/gui/ExecutorThread.cpp:436 -msgid "Terminate App" -msgstr "終止" - -#: pcsx2/gui/FrameForGS.cpp:254 -msgid "GS Output is Disabled!" -msgstr "畫面輸出被停用!" - -#: pcsx2/gui/GlobalCommands.cpp:243 -msgid "Save state" -msgstr "即時存檔" - -#: pcsx2/gui/GlobalCommands.cpp:244 -msgid "Saves the virtual machine state to the current slot." -msgstr "將虛擬機狀態儲存到當前的即時存檔插槽。" - -#: pcsx2/gui/GlobalCommands.cpp:249 -msgid "Load state" -msgstr "即時讀檔" - -#: pcsx2/gui/GlobalCommands.cpp:250 -msgid "Loads a virtual machine state from the current slot." -msgstr "從當前的即時存檔插槽讀取虛擬機狀態。" - -#: pcsx2/gui/GlobalCommands.cpp:255 -msgid "Cycle to next slot" -msgstr "循環至下一個即時存檔插槽" - -#: pcsx2/gui/GlobalCommands.cpp:256 -msgid "Cycles the current save slot in +1 fashion!" -msgstr "將當前的即時存檔插槽以 +1 的式樣循環!" - -#: pcsx2/gui/GlobalCommands.cpp:261 -msgid "Cycle to prev slot" -msgstr "循環至上一個即時存檔插槽" - -#: pcsx2/gui/GlobalCommands.cpp:262 -msgid "Cycles the current save slot in -1 fashion!" -msgstr "將當前的即時存檔插槽以 -1 的式樣循環!" - -#: pcsx2/gui/IsoDropTarget.cpp:57 -msgid "Drag and Drop Error" -msgstr "拖曳錯誤" - -#: pcsx2/gui/IsoDropTarget.cpp:58 -#, c-format -msgid "It is an error to drop multiple files onto a %s window. One at a time please, thank you." -msgstr "拖曳多個檔案至 %s 視窗是一個錯誤。請一次一個檔案,謝謝。" - -#: pcsx2/gui/IsoDropTarget.cpp:89 -#: pcsx2/gui/MainMenuClicks.cpp:343 -msgid "Confirm PS2 Reset" -msgstr "確認重新啟動 PS2" - -#: pcsx2/gui/IsoDropTarget.cpp:91 -#, c-format -msgid "" -"You have dropped the following ELF binary into %s:\n" -"\n" -msgstr "" -"您已經拖曳下列 ELF 檔案至 %s:\n" -"\n" - -#: pcsx2/gui/IsoDropTarget.cpp:135 -#, c-format -msgid "You have dropped the following ISO image into %s:" -msgstr "您已經拖曳下列 ISO 檔案至 %s:" - -#: pcsx2/gui/MainFrame.cpp:41 -msgid "Other..." -msgstr "其他..." - -#: pcsx2/gui/MainFrame.cpp:317 -msgid "Show Console" -msgstr "顯示主控台" - -#: pcsx2/gui/MainFrame.cpp:318 -msgid "Console to Stdio" -msgstr "顯示主控台至標準輸入輸出" - -#: pcsx2/gui/MainFrame.cpp:331 -msgid "&System" -msgstr "檔案" - -#: pcsx2/gui/MainFrame.cpp:332 -msgid "CD&VD" -msgstr "光碟" - -#: pcsx2/gui/MainFrame.cpp:333 -msgid "&Config" -msgstr "設定" - -#: pcsx2/gui/MainFrame.cpp:334 -msgid "&Misc" -msgstr "其他" - -#: pcsx2/gui/MainFrame.cpp:336 -msgid "&Debug" -msgstr "偵錯" - -#: pcsx2/gui/MainFrame.cpp:348 -#, c-format -msgid "%s %d.%d.%d.%d%s (svn) %s" -msgstr "%s %d.%d.%d.%d%s (svn) %s" - -#: pcsx2/gui/MainFrame.cpp:354 -#, c-format -msgid "%s %d.%d.%d %s" -msgstr "%s %d.%d.%d %s" - -#: pcsx2/gui/MainFrame.cpp:355 -msgid "(modded)" -msgstr "(modded)" - -#: pcsx2/gui/MainFrame.cpp:392 -#: pcsx2/gui/MainFrame.cpp:394 -#: pcsx2/gui/MainFrame.cpp:400 -msgid "Initializing..." -msgstr "正在初始化..." - -#: pcsx2/gui/MainFrame.cpp:396 -msgid "Run ELF..." -msgstr "執行 ELF 檔案" - -#: pcsx2/gui/MainFrame.cpp:397 -msgid "For running raw PS2 binaries directly" -msgstr "為了直接執行原始的 PS2 二進位檔案" - -#: pcsx2/gui/MainFrame.cpp:411 -msgid "Enable Patches" -msgstr "啟用補丁" - -#: pcsx2/gui/MainFrame.cpp:414 -msgid "Enable Cheats" -msgstr "啟用作弊" - -#: pcsx2/gui/MainFrame.cpp:417 -msgid "Enable Host Filesystem" -msgstr "啟用主機檔案系統" - -#: pcsx2/gui/MainFrame.cpp:422 -msgid "Shutdown" -msgstr "關閉遊戲" - -#: pcsx2/gui/MainFrame.cpp:423 -msgid "Wipes all internal VM states and shuts down plugins." -msgstr "清除所有內部虛擬機狀態並關閉插件" - -#: pcsx2/gui/MainFrame.cpp:425 -msgid "Exit" -msgstr "離開" - -#: pcsx2/gui/MainFrame.cpp:426 -#, c-format -msgid "Closing %s may be hazardous to your health" -msgstr "關閉 %s 或許有害健康" - -#: pcsx2/gui/MainFrame.cpp:433 -msgid "Iso Selector" -msgstr "選擇光碟映像檔" - -#: pcsx2/gui/MainFrame.cpp:434 -msgid "Plugin Menu" -msgstr "光碟插件" - -#: pcsx2/gui/MainFrame.cpp:437 -msgid "Iso" -msgstr "使用光碟映像檔" - -#: pcsx2/gui/MainFrame.cpp:437 -msgid "Makes the specified ISO image the CDVD source." -msgstr "使用指定的光碟映像檔作為遊戲來源" - -#: pcsx2/gui/MainFrame.cpp:438 -msgid "Plugin" -msgstr "使用光碟插件" - -#: pcsx2/gui/MainFrame.cpp:438 -msgid "Uses an external plugin as the CDVD source." -msgstr "使用外部的光碟插件作為遊戲來源" - -#: pcsx2/gui/MainFrame.cpp:439 -msgid "No disc" -msgstr "無光碟" - -#: pcsx2/gui/MainFrame.cpp:439 -msgid "Use this to boot into your virtual PS2's BIOS configuration." -msgstr "進入 PS2 的 BIOS 設定" - -#: pcsx2/gui/MainFrame.cpp:447 -msgid "Emulation &Settings" -msgstr "模擬器選項" - -#: pcsx2/gui/MainFrame.cpp:448 -msgid "&Memory cards" -msgstr "記憶卡" - -#: pcsx2/gui/MainFrame.cpp:449 -msgid "&Plugin/BIOS Selector" -msgstr "插件 / BIOS" - -#: pcsx2/gui/MainFrame.cpp:452 -msgid "Game Database Editor" -msgstr "遊戲資料庫編輯器" - -#: pcsx2/gui/MainFrame.cpp:453 -msgid "Appearance..." -msgstr "外觀..." - -#: pcsx2/gui/MainFrame.cpp:458 -msgid "&Video (GS)" -msgstr "圖形 (GS)" - -#: pcsx2/gui/MainFrame.cpp:459 -msgid "&Audio (SPU2)" -msgstr "聲音 (SPU2)" - -#: pcsx2/gui/MainFrame.cpp:460 -msgid "&Controllers (PAD)" -msgstr "控制器 (PAD)" - -#: pcsx2/gui/MainFrame.cpp:461 -msgid "Dev9" -msgstr "Dev9" - -#: pcsx2/gui/MainFrame.cpp:462 -msgid "USB" -msgstr "USB" - -#: pcsx2/gui/MainFrame.cpp:463 -msgid "Firewire" -msgstr "Firewire" - -#: pcsx2/gui/MainFrame.cpp:466 -msgid "Patches (unimplemented)" -msgstr "補丁(未實現)" - -#: pcsx2/gui/MainFrame.cpp:469 -msgid "Multitap 1" -msgstr "手把擴充器 1" - -#: pcsx2/gui/MainFrame.cpp:470 -msgid "Multitap 2" -msgstr "手把擴充器 2" - -#: pcsx2/gui/MainFrame.cpp:473 -msgid "Clear all settings..." -msgstr "清除全部設定" - -#: pcsx2/gui/MainFrame.cpp:474 -#, c-format -msgid "Clears all %s settings and re-runs the startup wizard." -msgstr "清除全部 %s 設定,重新執行「 首次執行精靈 」" - -#: pcsx2/gui/MainFrame.cpp:490 -msgid "Print CDVD Info" -msgstr "在主控台顯示光碟讀取日誌" - -#: pcsx2/gui/MainFrame.cpp:497 -msgid "About..." -msgstr "關於 PCSX2" - -#: pcsx2/gui/MainFrame.cpp:499 -msgid "Open Debug Window..." -msgstr "開啟偵錯視窗" - -#: pcsx2/gui/MainFrame.cpp:500 -msgid "Memory Dump..." -msgstr "記憶體轉存" - -#: pcsx2/gui/MainFrame.cpp:501 -msgid "Logging..." -msgstr "日誌" - -#: pcsx2/gui/MainFrame.cpp:578 -msgid "Suspend" -msgstr "暫停遊戲" - -#: pcsx2/gui/MainFrame.cpp:579 -msgid "Safely pauses emulation and preserves the PS2 state." -msgstr "安全地暫停模擬並保留 PS2 狀態" - -#: pcsx2/gui/MainFrame.cpp:586 -msgid "Resume" -msgstr "繼續遊戲" - -#: pcsx2/gui/MainFrame.cpp:587 -msgid "Resumes the suspended emulation state." -msgstr "從暫停的模擬器狀態中恢復遊戲" - -#: pcsx2/gui/MainFrame.cpp:591 -msgid "Suspend/Resume" -msgstr "暫停 / 繼續" - -#: pcsx2/gui/MainFrame.cpp:592 -msgid "No emulation state is active; cannot suspend or resume." -msgstr "無現存的模擬器狀態,不能暫停或繼續" - -#: pcsx2/gui/MainFrame.cpp:601 -msgid "Restart" -msgstr "重新啟動" - -#: pcsx2/gui/MainFrame.cpp:602 -msgid "Simulates hardware reset of the PS2 virtual machine." -msgstr "模擬 PS2 虛擬機的硬體重置。" - -#: pcsx2/gui/MainFrame.cpp:607 -msgid "No emulation state is active; boot something first." -msgstr "無現存的模擬器狀態,請先啟動些什麼" - -#: pcsx2/gui/MainFrame.cpp:615 -msgid "Reboot CDVD (full)" -msgstr "重新啟動遊戲(完整)" - -#: pcsx2/gui/MainFrame.cpp:616 -msgid "Hard reset of the active VM." -msgstr "重新啟動遊戲時顯示 PS2 的啟動畫面" - -#: pcsx2/gui/MainFrame.cpp:620 -msgid "Boot CDVD (full)" -msgstr "啟動遊戲(完整)" - -#: pcsx2/gui/MainFrame.cpp:621 -msgid "Boot the VM using the current DVD or Iso source media" -msgstr "啟動遊戲時顯示 PS2 的啟動畫面" - -#: pcsx2/gui/MainFrame.cpp:629 -msgid "Reboot CDVD (fast)" -msgstr "重新啟動遊戲(快速)" - -#: pcsx2/gui/MainFrame.cpp:630 -msgid "Reboot using BOOT2 injection (skips splash screens)" -msgstr "重新啟動遊戲時跳過 PS2 的啟動畫面" - -#: pcsx2/gui/MainFrame.cpp:634 -msgid "Boot CDVD (fast)" -msgstr "啟動遊戲(快速)" - -#: pcsx2/gui/MainFrame.cpp:635 -msgid "Use BOOT2 injection to skip PS2 startup and splash screens" -msgstr "啟動遊戲時跳過 PS2 的啟動畫面" - -#: pcsx2/gui/MainFrame.cpp:674 -#: pcsx2/gui/MainFrame.cpp:709 -msgid "No plugin loaded" -msgstr "未載入插件" - -#: pcsx2/gui/MainFrame.cpp:679 -msgid "Core GS Settings..." -msgstr "核心設定" - -#: pcsx2/gui/MainFrame.cpp:680 -msgid "Modify hardware emulation settings regulated by the PCSX2 core virtual machine." -msgstr "變更 PCSX2 核心虛擬機控制的硬體模擬設定" - -#: pcsx2/gui/MainFrame.cpp:682 -msgid "Window Settings..." -msgstr "遊戲視窗" - -#: pcsx2/gui/MainFrame.cpp:683 -msgid "Modify window and appearance options, including aspect ratio." -msgstr "視窗及視窗外觀的選項調節,包括【圖像縱橫比】" - -#: pcsx2/gui/MainFrame.cpp:690 -msgid "Plugin Settings..." -msgstr "插件設定" - -#: pcsx2/gui/MainFrame.cpp:691 -#, c-format -msgid "Opens the %s plugin's advanced settings dialog." -msgstr "開啟 %s 插件的設定視窗" - -#: pcsx2/gui/MainMenuClicks.cpp:118 -msgid "Reset all settings?" -msgstr "重設全部設定?" - -#: pcsx2/gui/MainMenuClicks.cpp:146 -msgid "Confirm ISO image change" -msgstr "確認更換光碟映像檔" - -#: pcsx2/gui/MainMenuClicks.cpp:152 -msgid "Do you want to swap discs or boot the new image (via system reset)?" -msgstr "您是想要更換光碟還是啟動新的映像檔 ( 重新啟動遊戲 )?" - -#: pcsx2/gui/MainMenuClicks.cpp:154 -#: pcsx2/gui/MainMenuClicks.cpp:197 -msgid "Swap Disc" -msgstr "更換光碟" - -#: pcsx2/gui/MainMenuClicks.cpp:187 -msgid "Confirm CDVD source change" -msgstr "確認更換光碟" - -#: pcsx2/gui/MainMenuClicks.cpp:190 -#, c-format -msgid "You've selected to switch the CDVD source from %s to %s." -msgstr "您已經選擇將遊戲來源從【%s】更換到【%s】" - -#: pcsx2/gui/MainMenuClicks.cpp:194 -msgid "Do you want to swap discs or boot the new image (system reset)?" -msgstr "您是想要更換光碟還是啟動新的映像檔 ( 重新啟動遊戲 )?" - -#: pcsx2/gui/MainMenuClicks.cpp:262 -#, c-format -msgid "All Supported (%s)" -msgstr "所有支援的檔案類型 (%s)" - -#: pcsx2/gui/MainMenuClicks.cpp:265 -#, c-format -msgid "Disc Images (%s)" -msgstr "光碟映像檔 (%s)" - -#: pcsx2/gui/MainMenuClicks.cpp:268 -#, c-format -msgid "Blockdumps (%s)" -msgstr "區塊轉存檔 (%s)" - -#: pcsx2/gui/MainMenuClicks.cpp:271 -#: pcsx2/gui/MainMenuClicks.cpp:292 -msgid "All Files (*.*)" -msgstr "所有檔案 (*.*)" - -#: pcsx2/gui/MainMenuClicks.cpp:274 -msgid "Select CDVD source iso..." -msgstr "選擇光碟映像檔" - -#: pcsx2/gui/MainMenuClicks.cpp:291 -msgid "Select ELF file..." -msgstr "選擇 ELF 檔案" - -#: pcsx2/gui/MainMenuClicks.cpp:317 -msgid "ISO file not found!" -msgstr "未找到光碟映像檔!" - -#: pcsx2/gui/MainMenuClicks.cpp:319 -msgid "" -"An error occurred while trying to open the file:\n" -"\n" -msgstr "" -"當嘗試開啟這個檔案時出現錯誤:\n" -"\n" - -#: pcsx2/gui/MainMenuClicks.cpp:320 -msgid "Error: The configured ISO file does not exist. Click OK to select a new ISO source for CDVD." -msgstr "錯誤:指定的光碟映像檔不存在。按【確定】選擇一個新的光碟映像檔。" - -#: pcsx2/gui/MainMenuClicks.cpp:386 -msgid "" -"You have selected the following ISO image into PCSX2:\n" -"\n" -msgstr "" -"您已經選擇以下光碟映像檔:\n" -"\n" - -#: pcsx2/gui/MemoryCardFile.cpp:182 -#, c-format -msgid "" -"Could not create a memory card file: \n" -"\n" -"%s\n" -"\n" -msgstr "" -"無法新增記憶卡檔案:\n" -"\n" -"%s\n" -"\n" - -#: pcsx2/gui/MemoryCardFile.cpp:200 -#, c-format -msgid "" -"Access denied to memory card file: \n" -"\n" -"%s\n" -"\n" -msgstr "" -"拒絕存取記憶卡檔案:\n" -"\n" -"%s\n" -"\n" - -#: pcsx2/gui/SysState.cpp:283 -msgid "Cannot load this savestate. The state is from an incompatible edition of PCSX2 that is either newer than this version, or is no longer supported." -msgstr "無法讀取即時存檔。即時存檔來自不相容的比當前版本新或不再支援的 PCSX2 版本。" - -#: pcsx2/gui/SysState.cpp:290 -msgid "Cannot load this savestate. The state is an unsupported version, likely created by a newer edition of PCSX2." -msgstr "無法讀取即時存檔。即時存檔的版本不被支援,即時存檔可能是由比當前版本新的 PCSX2 建立。" - -#: pcsx2/gui/SysState.cpp:513 -msgid "This savestate cannot be loaded because it is not a valid gzip archive. It may have been created by an older unsupported version of PCSX2, or it may be corrupted." -msgstr "" -"無法讀取即時存檔,因為不是一個有效的 gzip 壓縮檔。\n" -"即時存檔可能由不再支援的舊版 PCSX2 所建立,或者也可能即時存檔損壞。" - -#: pcsx2/gui/SysState.cpp:572 -msgid "This file is not a valid PCSX2 savestate. See the logfile for details." -msgstr "這個檔案不是一個有效的 PCSX2 即時存檔。詳情請洽日誌檔案。" - -#: pcsx2/gui/SysState.cpp:591 -msgid "This savestate cannot be loaded due to missing critical components. See the log file for details." -msgstr "由於缺失關鍵元件,無法讀取這個即時存檔。詳情請洽日誌檔案。" - -#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:35 -#, c-format -msgid "About %s" -msgstr "關於 %s" - -#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:95 -msgid "A Playstation 2 Emulator" -msgstr "Playstation 2 模擬器" - -#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:99 -msgid "PCSX2 Official Website and Forums" -msgstr "PCSX2 官方網站和官方討論區" - -#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:103 -msgid "PCSX2 Official Svn Repository at Googlecode" -msgstr "PCSX2 官方 SVN 檔案庫位於 Googlecode" - -#: pcsx2/gui/Dialogs/AssertionDialog.cpp:23 -msgid "Assertion Failure - " -msgstr "程式斷言失敗 - " - -#: pcsx2/gui/Dialogs/BaseConfigurationDialog.cpp:139 -msgid "Saves a snapshot of this settings panel to a PNG file." -msgstr "將當前設定視窗的擷圖儲存為 PNG 圖片" - -#: pcsx2/gui/Dialogs/BaseConfigurationDialog.cpp:268 -msgid "Save dialog screenshots to..." -msgstr "儲存設定視窗的螢幕擷圖" - -#: pcsx2/gui/Dialogs/BiosSelectorDialog.cpp:31 -msgid "BIOS Selector" -msgstr "選擇 BIOS" - -#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:193 -msgid "Do not show this dialog again." -msgstr "不要再顯示此對話方塊" - -#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:199 -msgid "Disables this popup and whatever response you select here will be automatically used from now on." -msgstr "停用這個彈出型視窗。無論您在這裡選擇哪種回應方式,它都會從今以後自動使用。" - -#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:201 -msgid "The popup will not be shown again. This setting can be undone from the settings panels." -msgstr "不再顯示此彈出型視窗。這項設定可以從設定面板復原。" - -#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:247 -#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:292 -msgid "Ignore" -msgstr "忽略" - -#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:278 -msgid "Reset" -msgstr "重新啟動遊戲" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:32 -#, c-format -msgid "Select memory card for Port %u / Slot %u" -msgstr "選擇用在手把插槽 %u / 插槽 %u 的記憶卡" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:41 -msgid "Create new memory card" -msgstr "新增記憶卡" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:60 -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:123 -#: pcsx2/gui/Panels/DirPickerPanel.cpp:68 -#: pcsx2/gui/Panels/DirPickerPanel.cpp:228 -msgid "Create" -msgstr "新增" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:72 -msgid "New card will be saved to:" -msgstr "新記憶卡將會儲存在:" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:135 -msgid "Error: The memory card could not be created." -msgstr "錯誤:無法新增記憶卡。" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:136 -msgid "memory card creation error" -msgstr "新增記憶卡時出現錯誤" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:147 -msgid "Use NTFS compression when creating this card." -msgstr "對新增的記憶卡啟用 NTFS 壓縮" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:163 -msgid "8 MB [most compatible]" -msgstr "8 MB【相容性最好】" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:163 -msgid "This is the standard Sony-provisioned size, and is supported by all games and BIOS versions." -msgstr "標準的 Sony 提供的大小,所有遊戲和 BIOS 版本都支援。" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:167 -msgid "16 MB" -msgstr "16 MB" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:167 -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:171 -msgid "A typical size for 3rd-party memory cards which should work with most games." -msgstr "典型的第三方記憶卡的大小,在大多數遊戲中應該能夠正常工作。" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:171 -msgid "32 MB" -msgstr "32 MB" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:175 -msgid "64 MB" -msgstr "64 MB" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:175 -msgid "Low compatibility warning: Yes it's very big, but may not work with many games." -msgstr "低相容性警告:是的,檔案非常大。但恐怕在許多遊戲中不能正常工作。" - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:46 -msgid "Settings" -msgstr "設定檔的位置" - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:46 -#, c-format -msgid "Select a folder for %s settings" -msgstr "選擇一個資料夾用來存放 %s 的設定" - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:72 -#: pcsx2/gui/Dialogs/PickUserModeDialog.cpp:29 -#, c-format -msgid "%s is starting from a new or unknown folder and needs to be configured." -msgstr "%s 從一個新的或未知的資料夾啟動,需要被設定。" - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:118 -#: pcsx2/gui/Panels/DirPickerPanel.cpp:223 -msgid "Create folder?" -msgstr "新增資料夾?" - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:119 -#, c-format -msgid "%s will create the following folder for documents. You can change this setting later, at any time." -msgstr "" -"%s 將會新增下列資料夾用來存放檔案。\n" -"您可以稍後隨時變更設定。" - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:132 -#, c-format -msgid "%s First Time Configuration" -msgstr "%s 首次執行精靈" - -#: pcsx2/gui/Dialogs/GameDatabaseDialog.cpp:24 -#, c-format -msgid "Game database - %s" -msgstr "遊戲資料庫 - %s" - -#: pcsx2/gui/Dialogs/ImportSettingsDialog.cpp:24 -msgid "Import Existing Settings?" -msgstr "匯入現有的設定?" - -#: pcsx2/gui/Dialogs/ImportSettingsDialog.cpp:39 -msgid "Import" -msgstr "匯入" - -#: pcsx2/gui/Dialogs/ImportSettingsDialog.cpp:40 -msgid "Overwrite" -msgstr "覆寫" - -#: pcsx2/gui/Dialogs/LogOptionsDialog.cpp:27 -msgid "Trace Logging" -msgstr "追蹤日誌" - -#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:40 -msgid "Auto-eject memory cards when loading savestates" -msgstr "讀取即時存檔時,自動退出記憶卡" - -#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:47 -msgid "Backup existing Savestate when creating a new one" -msgstr "當建立一個新的即時存檔時,備份現有的即時存檔" - -#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:51 -#, c-format -msgid "Enable Multitap on Port %u" -msgstr "在手把插槽 %u 啟用手把擴充器" - -#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:95 -msgid "MemoryCard Manager" -msgstr "管理記憶卡" - -#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:102 -msgid "Drag items over other items in the list to swap or copy memory cards." -msgstr "在記憶卡列表中,將一個記憶卡拖曳到其他記憶卡的上面,以更換或複製記憶卡。" - -#: pcsx2/gui/Dialogs/PickUserModeDialog.cpp:24 -msgid "PCSX2 First Time configuration" -msgstr "PCSX2 首次執行精靈" - -#: pcsx2/gui/Dialogs/StuckThreadDialog.cpp:28 -msgid "PCSX2 Thread is not responding" -msgstr "PCSX2 執行緒停止回應" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:35 -msgid "Config Overrides Warning" -msgstr "設定覆寫警告" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:55 -msgid "Components Overrides Warning" -msgstr "元件覆寫警告" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:69 -#, c-format -msgid "Emulation Settings - %s" -msgstr "模擬器設定 - %s" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:76 -msgid "EE/IOP" -msgstr "EE/IOP" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:77 -msgid "VUs" -msgstr "VU" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:78 -msgid "GS" -msgstr "GS" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:79 -msgid "GS Window" -msgstr "遊戲視窗" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:80 -msgid "Speedhacks" -msgstr "速度駭客" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:81 -msgid "Game Fixes" -msgstr "遊戲修正" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:91 -#, c-format -msgid "Components Selectors - %s" -msgstr "元件選擇 - %s" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:98 -msgid "Plugins" -msgstr "插件" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:99 -msgid "BIOS" -msgstr "BIOS" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:109 -#, c-format -msgid "Language Selector - %s" -msgstr "選擇語言 - %s" - -#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:117 -msgid "Folders" -msgstr "資料夾" - -#: pcsx2/gui/Panels/BaseApplicableConfigPanel.cpp:97 -msgid "Cannot apply settings..." -msgstr "無法套用設定" - -#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:92 -msgid "BIOS Search Path:" -msgstr "BIOS 的搜尋路徑:" - -#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:93 -msgid "Select folder with PS2 BIOS roms" -msgstr "選擇含有 PS2 BIOS 的資料夾" - -#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:99 -msgid "Click the Browse button to select a different folder where PCSX2 will look for PS2 BIOS roms." -msgstr "按下【瀏覽】按鈕選擇不同的資料夾" - -#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:101 -msgid "Refresh list" -msgstr "重新載入列表" - -#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:103 -msgid "Select a BIOS rom:" -msgstr "選擇一個 BIOS:" - -#: pcsx2/gui/Panels/CpuPanel.cpp:24 -msgid "Round Mode" -msgstr "取整模式" - -#: pcsx2/gui/Panels/CpuPanel.cpp:25 -msgid "Clamping Mode" -msgstr "夾持模式" - -#: pcsx2/gui/Panels/CpuPanel.cpp:27 -msgid "Flush to Zero" -msgstr "浮點數下溢位為零" - -#: pcsx2/gui/Panels/CpuPanel.cpp:28 -msgid "Denormals are Zero" -msgstr "浮點數反常值為零" - -#: pcsx2/gui/Panels/CpuPanel.cpp:32 -msgid "Nearest" -msgstr "近似" - -#: pcsx2/gui/Panels/CpuPanel.cpp:33 -msgid "Negative" -msgstr "負數" - -#: pcsx2/gui/Panels/CpuPanel.cpp:34 -msgid "Positive" -msgstr "正數" - -#: pcsx2/gui/Panels/CpuPanel.cpp:35 -msgid "Chop / Zero" -msgstr "移除 / 零" - -#: pcsx2/gui/Panels/CpuPanel.cpp:40 -msgid "None" -msgstr "無" - -#: pcsx2/gui/Panels/CpuPanel.cpp:102 -msgid "EE/FPU Advanced Recompiler Options" -msgstr "EE/FPU 進階反編譯選項" - -#: pcsx2/gui/Panels/CpuPanel.cpp:104 -#: pcsx2/gui/Panels/CpuPanel.cpp:119 -msgid "Extra + Preserve Sign" -msgstr "額外 + 保留標記" - -#: pcsx2/gui/Panels/CpuPanel.cpp:105 -msgid "Full" -msgstr "完整" - -#: pcsx2/gui/Panels/CpuPanel.cpp:116 -msgid "VU0 / VU1 Advanced Recompiler Options" -msgstr "VU0 / VU1 進階反編譯選項" - -#: pcsx2/gui/Panels/CpuPanel.cpp:118 -msgid "Extra" -msgstr "額外" - -#: pcsx2/gui/Panels/CpuPanel.cpp:130 -#: pcsx2/gui/Panels/CpuPanel.cpp:139 -#: pcsx2/gui/Panels/CpuPanel.cpp:187 -msgid "Interpreter" -msgstr "直譯器" - -#: pcsx2/gui/Panels/CpuPanel.cpp:131 -msgid "Quite possibly the slowest thing in the universe." -msgstr "很可能是宇宙中最慢的。" - -#: pcsx2/gui/Panels/CpuPanel.cpp:133 -#: pcsx2/gui/Panels/CpuPanel.cpp:142 -msgid "Recompiler" -msgstr "反編譯" - -#: pcsx2/gui/Panels/CpuPanel.cpp:134 -msgid "Performs just-in-time binary translation of 64-bit MIPS-IV machine code to x86." -msgstr "適時地將 64 位元 MIPS-IV 機器碼轉譯至 x86。" - -#: pcsx2/gui/Panels/CpuPanel.cpp:140 -msgid "Pretty slow; provided for diagnostic purposes only." -msgstr "非常慢;僅用於診斷。" - -#: pcsx2/gui/Panels/CpuPanel.cpp:143 -msgid "Performs just-in-time binary translation of 32-bit MIPS-I machine code to x86." -msgstr "適時地將 32 位元 MIPS-I 機器碼轉譯至 x86。" - -#: pcsx2/gui/Panels/CpuPanel.cpp:177 -#: pcsx2/gui/Panels/CpuPanel.cpp:226 -msgid "Restore Defaults" -msgstr "還原成預設值" - -#: pcsx2/gui/Panels/CpuPanel.cpp:188 -msgid "Vector Unit Interpreter. Slow and not very compatible. Only use for diagnostics." -msgstr "向量單元直譯器。速度慢而且相容性不是非常好。僅用於診斷。" - -#: pcsx2/gui/Panels/CpuPanel.cpp:190 -msgid "microVU Recompiler" -msgstr "microVU 反編譯" - -#: pcsx2/gui/Panels/CpuPanel.cpp:191 -msgid "New Vector Unit recompiler with much improved compatibility. Recommended." -msgstr "新式的向量單元反編譯大幅改善相容性。推薦。" - -#: pcsx2/gui/Panels/CpuPanel.cpp:193 -msgid "superVU Recompiler [legacy]" -msgstr "superVU 反編譯【舊式】" - -#: pcsx2/gui/Panels/CpuPanel.cpp:194 -msgid "Useful for diagnosing bugs or clamping issues in the new mVU recompiler." -msgstr "對於診斷 microVU 的程式錯誤或夾持模式的問題是有用的。" - -#: pcsx2/gui/Panels/DirPickerPanel.cpp:58 -msgid "Path does not exist" -msgstr "路徑不存在" - -#: pcsx2/gui/Panels/DirPickerPanel.cpp:116 -msgid "Use default setting" -msgstr "使用預設值" - -#: pcsx2/gui/Panels/DirPickerPanel.cpp:133 -msgid "Open in Explorer" -msgstr "在檔案總管中開啟" - -#: pcsx2/gui/Panels/DirPickerPanel.cpp:134 -msgid "Open an explorer window to this folder." -msgstr "在檔案總管視窗中開啟此資料夾" - -#: pcsx2/gui/Panels/DirPickerPanel.cpp:224 -#, c-format -msgid "A configured folder does not exist. Should %s try to create it?" -msgstr "一個先前指定的資料夾不存在。%s 應該嘗試新增該資料夾嗎?" - -#: pcsx2/gui/Panels/GameDatabasePanel.cpp:336 -msgid "Search" -msgstr "搜尋" - -#: pcsx2/gui/Panels/GameDatabasePanel.cpp:370 -msgid "Gamefixes" -msgstr "遊戲修正" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:38 -msgid "VU Add Hack - Fixes Tri-Ace games boot crash." -msgstr "VU Add Hack - 修正 Tri-Ace 的遊戲啟動後就會當掉:星海遊俠 3、拉吉亞達物語、女神戰記 2" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:39 -msgid "" -"Games that need this hack to boot:\n" -" * Star Ocean 3\n" -" * Radiata Stories\n" -" * Valkyrie Profile 2" -msgstr "" -"需要本項修正才能啟動的遊戲:\n" -" * 星海遊俠 3(Star Ocean 3)\n" -" * 拉吉亞達物語(Radiata Stories)\n" -" * 女神戰記 2(Valkyrie Profile 2)" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:42 -msgid "VU Clip Flag Hack - For Persona games (SuperVU recompiler only!)" -msgstr "VU Clip Flag Hack - 僅適用於 SuperVU:女神異聞錄系列(Persona)" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:46 -msgid "FPU Compare Hack - For Digimon Rumble Arena 2." -msgstr "FPU Compare Hack - 數碼寶貝競技場2(Digimon Rumble Arena 2)" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:50 -msgid "FPU Multiply Hack - For Tales of Destiny." -msgstr "FPU Multiply Hack - 命運傳奇(Tales of Destiny)" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:54 -msgid "FPU Negative Div Hack - For Gundam games." -msgstr "FPU Negative Div Hack - 鋼彈系列(Gundam)" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:58 -msgid "VU XGkick Hack - For Erementar Gerad." -msgstr "VU XGkick Hack - 武器種族傳說(Erementar Gerad)" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:62 -msgid "FFX videos fix - Fixes bad graphics overlay in FFX videos." -msgstr "FFX videos fix - 修正太空戰士10遊戲動畫中糟糕的圖形重疊" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:66 -msgid "EE timing hack - Multi purpose hack. Try if all else fails." -msgstr "EE timing hack - 多用途的修正,若所有其他選項都失敗,嘗試之(數位惡魔傳說、SSX、惡靈古堡:英雄不死)" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:75 -msgid "Skip MPEG hack - Skips videos/FMVs in games to avoid game hanging/freezes." -msgstr "Skip MPEG hack - 跳過遊戲動畫,避免遊戲動畫的播放造成遊戲停止回應" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:79 -msgid "OPH Flag hack - Try if your game freezes showing the same frame." -msgstr "OPH Flag hack - 若遊戲畫面定住時持續顯示同樣的畫框,嘗試之(死神刀刃戰士、夢幻騎士 II 和 III、巫術)" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:95 -msgid "Enable game fixes" -msgstr "啟用遊戲修正" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:103 -msgid "The safest way to make sure that all game fixes are completely disabled." -msgstr "最安全的狀態就是確保完全停用所有遊戲修正" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:30 -msgid "Fit to Window/Screen" -msgstr "延展至視窗 / 螢幕" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:31 -msgid "Standard (4:3)" -msgstr "標準 (4:3)" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:32 -msgid "Widescreen (16:9)" -msgstr "寬螢幕 (16:9)" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:44 -msgid "Disable window resize border" -msgstr "禁止使用視窗邊框調整視窗大小" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:45 -msgid "Always hide mouse cursor" -msgstr "總是隱藏滑鼠指標" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:46 -msgid "Hide window on suspend" -msgstr "模擬器暫停時隱藏遊戲視窗" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:47 -msgid "Default to fullscreen mode on open" -msgstr "預設以全螢幕模式進入遊戲" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:48 -msgid "Wait for vsync on refresh" -msgstr "重新整理時等待垂直同步" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:49 -msgid "Use exclusive fullscreen mode (if available)" -msgstr "使用全螢幕獨占模式(若可用)" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:89 -msgid "Aspect Ratio:" -msgstr "圖像縱橫比:" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:91 -msgid "Custom Window Size:" -msgstr "自訂視窗大小:" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:147 -msgid "Invalid window dimensions specified: Size cannot contain non-numeric digits! >_<" -msgstr "無效的視窗維度:【自訂視窗大小】的數值必須是整數! >_<" - -#: pcsx2/gui/Panels/LogOptionsPanels.cpp:248 -msgid "Enable Trace Logging" -msgstr "啟用追蹤日誌" - -#: pcsx2/gui/Panels/LogOptionsPanels.cpp:249 -msgid "Trace logs are all written to emulog.txt. Toggle trace logging at any time using F10." -msgstr "追蹤日誌全部寫入 emulog.txt。隨時按 F10 開啟或關閉追蹤日誌。" - -#: pcsx2/gui/Panels/LogOptionsPanels.cpp:250 -msgid "Warning: Enabling trace logs is typically very slow, and is a leading cause of 'What happened to my FPS?' problems. :)" -msgstr "警告:啟用追蹤日誌會令遊戲速度非常慢,而且是「我的 FPS 發生了什麼事?」問題的最重要的原因。:)" - -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:144 -msgid "Select folder with PS2 memory cards" -msgstr "選擇含有 PS2 記憶卡的資料夾" - -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:386 -msgid "Copy failed!" -msgstr "複製失敗!" - -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:454 -msgid "Mount" -msgstr "掛載" - -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:500 -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:670 -msgid "Delete" -msgstr "刪除" - -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:503 -msgid "Deletes the existing memory card from disk (all contents are lost)." -msgstr "刪除所選擇的記憶卡(失去所有遊戲存檔)" - -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:504 -msgid "Creates a new memory card in the empty slot." -msgstr "於空插槽新增一個新的記憶卡。" - -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:508 -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:671 -msgid "Disable" -msgstr "停用" - -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:508 -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:671 -msgid "Enable" -msgstr "啟用" - -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:511 -msgid "Disables the selected memory card, so that it will not be seen by games or BIOS." -msgstr "停用所選擇的記憶卡,遊戲或 BIOS 中就看不到該記憶卡。" - -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:512 -msgid "Mounts the selected memory card, so that games can see it again." -msgstr "掛載所選擇的記憶卡,遊戲中能夠再次看到該記憶卡。" - -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:591 -msgid "Delete memory card?" -msgstr "刪除記憶卡?" - -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:670 -msgid "Create new..." -msgstr "新增" - -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:672 -msgid "Relocate file..." -msgstr "遷移檔案" - -#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:677 -msgid "Refresh List" -msgstr "重新載入列表" - -#: pcsx2/gui/Panels/MemoryCardListView.cpp:136 -msgid "Enabled" -msgstr "已啟用" - -#: pcsx2/gui/Panels/MemoryCardListView.cpp:136 -msgid "Disabled" -msgstr "已停用" - -#: pcsx2/gui/Panels/MemoryCardListView.cpp:136 -msgid "Missing" -msgstr "不存在" - -#: pcsx2/gui/Panels/MemoryCardListView.cpp:137 -#: pcsx2/gui/Panels/MemoryCardListView.cpp:139 -#: pcsx2/gui/Panels/MemoryCardListView.cpp:140 -msgid "N/A" -msgstr "N/A" - -#: pcsx2/gui/Panels/MemoryCardListView.cpp:138 -msgid "Yes" -msgstr "是" - -#: pcsx2/gui/Panels/MemoryCardListView.cpp:138 -msgid "No" -msgstr "否" - -#: pcsx2/gui/Panels/MiscPanelStuff.cpp:33 -msgid "Usermode Selection" -msgstr "使用者的抉擇" - -#: pcsx2/gui/Panels/MiscPanelStuff.cpp:50 -msgid "User Documents (recommended)" -msgstr "我的文件(推薦)" - -#: pcsx2/gui/Panels/MiscPanelStuff.cpp:51 -msgid "Location: " -msgstr "位置:" - -#: pcsx2/gui/Panels/MiscPanelStuff.cpp:55 -msgid "Custom folder:" -msgstr "自訂資料夾:" - -#: pcsx2/gui/Panels/MiscPanelStuff.cpp:57 -msgid "This setting may require administration privileges from your operating system, depending on how your system is configured." -msgstr "" -"取決於系統如何配置,\n" -"這項設定可能需要作業系統管理員權限。" - -#: pcsx2/gui/Panels/MiscPanelStuff.cpp:66 -#, c-format -msgid "Select a document root for %s" -msgstr "選擇 %s 的檔案根目錄" - -#: pcsx2/gui/Panels/MiscPanelStuff.cpp:124 -msgid "Apply" -msgstr "套用" - -#: pcsx2/gui/Panels/MiscPanelStuff.cpp:125 -msgid "Make this language my default right now!" -msgstr "立即套用所選擇的語言作為預設語言!" - -#: pcsx2/gui/Panels/MiscPanelStuff.cpp:127 -msgid "Select a language:" -msgstr "選擇語言:" - -#: pcsx2/gui/Panels/PathsPanel.cpp:37 -msgid "Savestates:" -msgstr "即時存檔" - -#: pcsx2/gui/Panels/PathsPanel.cpp:38 -msgid "Select folder for Savestates" -msgstr "選擇一個資料夾用來存放即時存檔" - -#: pcsx2/gui/Panels/PathsPanel.cpp:47 -msgid "Snapshots:" -msgstr "遊戲擷圖" - -#: pcsx2/gui/Panels/PathsPanel.cpp:48 -msgid "Select a folder for Snapshots" -msgstr "選擇一個資料夾用來存放遊戲擷圖" - -#: pcsx2/gui/Panels/PathsPanel.cpp:57 -msgid "Logs/Dumps:" -msgstr "日誌 / 轉存" - -#: pcsx2/gui/Panels/PathsPanel.cpp:58 -msgid "Select a folder for logs/dumps" -msgstr "選擇一個資料夾用來存放日誌和轉存檔" - -#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:230 -msgid "Applying settings..." -msgstr "套用設定..." - -#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:240 -msgid "Shutdown PS2 virtual machine?" -msgstr "關閉 PS2 虛擬機?" - -#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:321 -msgid "I'm givin' her all she's got, Captain!" -msgstr "我正在給她所有她得到的,船長!" - -#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:323 -msgid "Enumerating available plugins..." -msgstr "正在列舉可用的插件..." - -#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:356 -msgid "Plugins Search Path:" -msgstr "插件的搜尋路徑:" - -#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:357 -msgid "Select a folder with PCSX2 plugins" -msgstr "選擇含有 PCSX2 插件的資料夾" - -#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:378 -msgid "Click the Browse button to select a different folder for PCSX2 plugins." -msgstr "按下【瀏覽】按鈕選擇不同的資料夾" - -#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:520 -#, c-format -msgid "" -"The selected %s plugin failed to load.\n" -"\n" -"Reason: %s\n" -"\n" -msgstr "" -"載入所選的【%s】插件失敗。\n" -"\n" -"原因:%s\n" -"\n" - -#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:730 -msgid "Completing tasks..." -msgstr "正在完成任務..." - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:96 -msgid "Enable speedhacks" -msgstr "啟用速度駭客" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:102 -msgid "A safe and easy way to make sure that all speedhacks are completely disabled." -msgstr "安全且舒適的狀態就是確保完全停用所有的速度駭客" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:111 -msgid "Resets all speedhack options to their defaults, which consequently turns them all OFF." -msgstr "所有的速度駭客選項重設為預設值,結果是關掉全部速度駭客選項。" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:120 -msgid "EE Cyclerate [Not Recommended]" -msgstr "EE Cyclerate【不推薦】" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:141 -msgid "VU Cycle Stealing [Not Recommended]" -msgstr "VU Cycle Stealing【不推薦】" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:161 -msgid "microVU Hacks" -msgstr "microVU 駭客" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:163 -msgid "mVU Flag Hack" -msgstr "mVU Flag Hack" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:164 -msgid "Good Speedup and High Compatibility; may cause garbage graphics, SPS, etc... [Recommended]" -msgstr "" -"不錯的速度提升而且相容性高;可能導致\n" -"圖像變得垃圾、有尖刺的多邊形,等等...\n" -"【推薦】" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:166 -msgid "mVU Block Hack" -msgstr "mVU Block Hack" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:167 -msgid "Good Speedup and High Compatibility; may cause garbage graphics, SPS, etc..." -msgstr "" -"不錯的速度提升而且相容性高;可能導致\n" -"圖像變得垃圾、有尖刺的多邊形,等等..." - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:169 -msgid "mVU Min/Max Hack" -msgstr "mVU Min/Max Hack" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:170 -msgid "Small Speedup; may cause black screens, garbage graphics, SPS, etc... [Not Recommended]" -msgstr "" -"速度少量提升;可能導致遊戲畫面全黑、\n" -"圖像變得垃圾、有尖刺的多邊形,等等...\n" -"【不推薦】" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:190 -msgid "Other Hacks" -msgstr "其他駭客" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:192 -msgid "Enable INTC Spin Detection" -msgstr "Enable INTC Spin Detection" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:193 -msgid "Huge speedup for some games, with almost no compatibility side effects. [Recommended]" -msgstr "" -"對於一些遊戲有巨大的速度提升,\n" -"幾乎沒有相容性副作用【推薦】" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:195 -msgid "Enable Wait Loop Detection" -msgstr "Enable Wait Loop Detection" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:196 -msgid "Moderate speedup for some games, with no known side effects. [Recommended]" -msgstr "" -"對於一些遊戲有適度的速度提升,\n" -"沒有已知的副作用【推薦】" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:198 -msgid "Enable fast CDVD" -msgstr "Enable fast CDVD" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:199 -msgid "Fast disc access, less loading times. [Not Recommended]" -msgstr "快速讀取光碟,減少載入時間【不推薦】" - -#: pcsx2/gui/Panels/VideoPanel.cpp:34 -msgid "Disable Framelimiting" -msgstr "停用畫框限制" - -#: pcsx2/gui/Panels/VideoPanel.cpp:35 -msgid "Useful for running benchmarks. Toggle this option in-game by pressing F4." -msgstr "" -"對於執行效能測試是有用的\n" -"遊戲時按 F4 開啟或關閉畫框限制" - -#: pcsx2/gui/Panels/VideoPanel.cpp:61 -msgid "Base Framerate Adjust:" -msgstr "基本畫框速率:" - -#: pcsx2/gui/Panels/VideoPanel.cpp:67 -msgid "Slow Motion Adjust:" -msgstr "慢動作:" - -#: pcsx2/gui/Panels/VideoPanel.cpp:73 -msgid "Turbo Adjust:" -msgstr "渦輪加速(TAB):" - -#: pcsx2/gui/Panels/VideoPanel.cpp:88 -msgid "NTSC Framerate:" -msgstr "NTSC 遊戲的畫框速率:" - -#: pcsx2/gui/Panels/VideoPanel.cpp:91 -#: pcsx2/gui/Panels/VideoPanel.cpp:97 -msgid "FPS" -msgstr "FPS" - -#: pcsx2/gui/Panels/VideoPanel.cpp:94 -msgid "PAL Framerate:" -msgstr "PAL 遊戲的畫框速率:" - -#: pcsx2/gui/Panels/VideoPanel.cpp:184 -msgid "Disabled [default]" -msgstr "停用【預設】" - -#: pcsx2/gui/Panels/VideoPanel.cpp:188 -msgid "Skip when on Turbo only" -msgstr "僅在渦輪加速時跳框" - -#: pcsx2/gui/Panels/VideoPanel.cpp:192 -msgid "Constant skipping" -msgstr "恆定的跳框" - -#: pcsx2/gui/Panels/VideoPanel.cpp:194 -msgid "Normal and Turbo limit rates skip frames. Slow motion mode will still disable frameskipping." -msgstr "" -"普通模式和渦輪加速模式有限制速度,能夠跳框\n" -"慢動作模式依然會停用跳框" - -#: pcsx2/gui/Panels/VideoPanel.cpp:220 -msgid "Frames to Draw" -msgstr "繪製的畫框" - -#: pcsx2/gui/Panels/VideoPanel.cpp:225 -msgid "Frames to Skip" -msgstr "跳過的畫框" - -#: pcsx2/gui/Panels/VideoPanel.cpp:291 -msgid "Use Synchronized MTGS" -msgstr "使用同步的多執行緒圖形模式" - -#: pcsx2/gui/Panels/VideoPanel.cpp:295 -msgid "Disable all GS output" -msgstr "停止輸出遊戲畫面" - -#: pcsx2/gui/Panels/VideoPanel.cpp:313 -msgid "Frame Skipping" -msgstr "跳框" - -#: pcsx2/gui/Panels/VideoPanel.cpp:316 -msgid "Framelimiter" -msgstr "畫框限制" - -#: pcsx2/ps2/BiosTools.cpp:83 -#: pcsx2/ps2/BiosTools.cpp:151 -msgid "The selected BIOS file is not a valid PS2 BIOS. Please re-configure." -msgstr "指定的 BIOS 檔案不是有效的 PS2 BIOS。請重新設定。" - -#: pcsx2/ps2/BiosTools.cpp:244 -msgid "The PS2 BIOS could not be loaded. The BIOS has not been configured, or the configuration has been corrupted. Please re-configure." -msgstr "無法載入 PS2 BIOS。未設定 PS2 BIOS,或設定已經損壞。請重新設定。" - -#: pcsx2/ps2/BiosTools.cpp:251 -msgid "The configured BIOS file does not exist. Please re-configure." -msgstr "指定的 BIOS 檔案不存在。請重新設定。" - -#: pcsx2/x86/microVU.cpp:85 -#, c-format -msgid "%s Extensions not found. microVU requires a host CPU with MMX, SSE, and SSE2 extensions." -msgstr "%s 指令集未找到。microVU 要求 CPU 支援 MMX、SSE、SSE2。" - -#: pcsx2/x86/ix86-32/iR5900-32.cpp:578 -#, c-format -msgid "%s Extensions not found. The R5900-32 recompiler requires a host CPU with MMX, SSE, and SSE2 extensions." -msgstr "%s 指令集未找到。R5900-32 反編譯裝置要求 CPU 支援 MMX、SSE、SSE2。" - -#: pcsx2/ZipTools/thread_gzip.cpp:83 -msgid "The savestate was not properly saved. The temporary file was created successfully but could not be moved to its final resting place." -msgstr "即時存檔未能正確地儲存。成功建立暫存檔,但是無法將其移至目的地。" - -#: common/src/Utilities/Exceptions.cpp:219 -msgid "Oh noes! Out of memory!" -msgstr "啊!不!Out of memory!" - -#: common/src/Utilities/Exceptions.cpp:234 -msgid "Virtual memory mapping failure! Your system may have conflicting device drivers, services, or may simply have insufficient memory or resources to meet PCSX2's lofty needs." -msgstr "虛擬記憶體映射失敗!您的系統可能有衝突的硬體驅動程式、服務,或可能只是沒有足夠的記憶體或資源以滿足 PCSX2 崇高的需求。" - -#: common/src/Utilities/Exceptions.cpp:309 -msgid "Path: " -msgstr "路徑: " - -#: common/src/Utilities/Exceptions.cpp:313 -msgid "[Unnamed or unknown]" -msgstr "【未透露名稱或未知】" - -#: common/src/Utilities/Exceptions.cpp:333 -msgid "A file could not be created." -msgstr "無法建立檔案。" - -#: common/src/Utilities/Exceptions.cpp:353 -msgid "File not found." -msgstr "檔案未找到。" - -#: common/src/Utilities/Exceptions.cpp:373 -msgid "Permission denied while trying to open file, likely due to insufficient user account rights." -msgstr "當嘗試開啟檔案時沒有權限,可能是由於使用者帳戶權限不足。" - -#: common/src/Utilities/Exceptions.cpp:393 -msgid "Unexpected end of file or stream encountered. File is probably truncated or corrupted." -msgstr "遭遇意外的檔案結尾或流。檔案可能被縮減或損壞。" - -#: common/src/Utilities/ThreadingDialogs.cpp:30 -msgid "Waiting for tasks..." -msgstr "等待任務完成..." - -#: common/src/Utilities/ThreadingDialogs.cpp:41 -msgid "Waiting for task..." -msgstr "等待任務完成..." - -#: pcsx2/gui/ApplyState.h:55 -msgid "Cannot apply new settings, one of the settings is invalid." -msgstr "無法套用新的設定,其中有無效的設定。" - -#: common/include/Utilities/Exceptions.h:226 -msgid "Parse error" -msgstr "解析錯誤" - -#: common/include/Utilities/Exceptions.h:250 -msgid "Your machine's hardware is incapable of running PCSX2. Sorry dood." -msgstr "老兄,不好意思。您電腦的硬體沒有能力運行 PCSX2。" - -msgid "< &Back" -msgstr "< 上一步" - -#~ msgid "Illegal ELF file size over 2GB!" -#~ msgstr "無效的檔案大小超過 2GB!" - -#~ msgid "ELF file does not exist!" -#~ msgstr "ELF 檔案不存在!" - -#~ msgid "Unexpected end of ELF file." -#~ msgstr "意外的 ELF 檔案結尾。" - -#~ msgid "" -#~ "The MTGS thread has become unresponsive while waiting for the GS plugin " -#~ "to open." -#~ msgstr "當等候圖形插件開啟時,多執行緒圖形模式的執行緒停止回應。" - -#~ msgid "Internal Memorycard Plugin failed to initialize." -#~ msgstr "初始化內部記憶卡插件失敗。" - -#~ msgid "The savestate data is invalid or corrupted." -#~ msgstr "即時存檔的資料無效或損壞。" - -#~ msgid "Dumps detailed information for PS2 executables (ELFs)." -#~ msgstr "擷取 PS2 執行檔(ELF)的詳細資訊" - -#~ msgid "" -#~ "Logs manual protection, split blocks, and other things that might impact " -#~ "performance." -#~ msgstr "記錄手動保護、分塊,以及其他可能影響效能的東西。" - -#~ msgid "Shows the game developer's logging text (EE processor)" -#~ msgstr "顯示遊戲開發人員的日誌(EE processor)" - -#~ msgid "Shows the game developer's logging text (IOP processor)" -#~ msgstr "顯示遊戲開發人員的日誌(IOP processor)" - -#~ msgid "Shows DECI2 debugging logs (EE processor)" -#~ msgstr "顯示 DECI2 偵錯日誌(EE processor)" - -#~ msgid "SYSCALL and DECI2 activity." -#~ msgstr "SYSCALL 和 DECI2 的活動。" - -#~ msgid "Direct memory accesses to unknown or unmapped EE memory space." -#~ msgstr "直接記憶體存取至未知或未映射的 EE 記憶體空間。" - -#~ msgid "Disasm of executing core instructions (excluding COPs and CACHE)." -#~ msgstr "執行核心指令集的反組譯(不包含 COP 和 CACHE)。" - -#~ msgid "Disasm of COP0 instructions (MMU, cpu and dma status, etc)." -#~ msgstr "COP0 指令集的反組譯(MMU、cpu 和 dma 的狀態,以及其他)。" - -#~ msgid "Disasm of the EE's floating point unit (FPU) only." -#~ msgstr "僅 EE 浮點運算器的反組譯。" - -#~ msgid "Disasm of the EE's VU0macro co-processor instructions." -#~ msgstr "EE 的 VU0macro 輔助處理器指令集的反組譯。" - -#~ msgid "Execution of EE cache instructions." -#~ msgstr "EE 快取指令集的執行。" - -#~ msgid "" -#~ "All known hardware register accesses (very slow!); not including sub " -#~ "filter options below." -#~ msgstr "所有已知的硬體暫存器存取(非常慢!);不包括下面的分項選項。" - -#~ msgid "Logs only unknown, unmapped, or unimplemented register accesses." -#~ msgstr "僅記錄未知、未映射,或未實現的暫存器存取。" - -#~ msgid "Logs only DMA-related registers." -#~ msgstr "僅記錄 DMA 相關的暫存器。" - -#~ msgid "" -#~ "IPU activity: hardware registers, decoding operations, DMA status, etc." -#~ msgstr "IPU 活動:硬體暫存器、解碼操作、DMA 狀態,以及其他。" - -#~ msgid "All GIFtag parse activity; path index, tag type, etc." -#~ msgstr "全部 GIFtag 解析活動;路徑索引,標籤類型,以及其他。" - -#~ msgid "All VIFcode processing; command, tag style, interrupts." -#~ msgstr "全部 VIFcode 處理;命令,標籤風格,中斷。" - -#~ msgid "Scratchpad's MFIFO activity." -#~ msgstr "便條式暫存的 MFIFO 活動。" - -#~ msgid "Actual data transfer logs, bus right arbitration, stalls, etc." -#~ msgstr "實際的資料傳輸日誌、匯流排正確的仲裁、停頓,以及其他。" - -#~ msgid "Tracks all EE counters events and some counter register activity." -#~ msgstr "追蹤全部 EE 計數器事件以及一些計數器暫存器活動。" - -#~ msgid "Dumps various VIF and VIFcode processing data." -#~ msgstr "擷取各種各樣的 VIF 和 VIFcode 處理資料。" - -#~ msgid "Dumps various GIF and GIFtag parsing data." -#~ msgstr "擷取各種各樣的 GIF 和 GIFtag 解析資料。" - -#~ msgid "SYSCALL and IRX activity." -#~ msgstr "SYSCALL 和 IRX 的活動。" - -#~ msgid "Direct memory accesses to unknown or unmapped IOP memory space." -#~ msgstr "直接記憶體存取至未知或未映射的 IOP 記憶體空間。" - -#~ msgid "Disasm of the IOP's GPU co-processor instructions." -#~ msgstr "IOP 的 GPU 輔助處理器指令集的反組譯。" - -#~ msgid "" -#~ "All known hardware register accesses, not including the sub-filters below." -#~ msgstr "所有已知的硬體暫存器存取,不包括下面的分項。" - -#~ msgid "Memorycard reads, writes, erases, terminators, and other processing." -#~ msgstr "記憶卡的讀取、寫入、清除、終結者,以及其他處理。" - -#~ msgid "Gamepad activity on the SIO." -#~ msgstr "SIO 上的遊戲手把活動。" - -#~ msgid "Actual DMA event processing and data transfer logs." -#~ msgstr "實際的直接記憶體存取事件處理和資料傳輸日誌。" - -#~ msgid "Tracks all IOP counters events and some counter register activity." -#~ msgstr "追蹤全部 IOP 計數器事件以及一些計數器暫存器活動。" - -#~ msgid "Detailed logging of CDVD hardware." -#~ msgstr "CDVD 硬體的詳細日誌紀錄。" - -#~ msgid "Unrecognized ISO file format." -#~ msgstr "無法辨識的 ISO 檔案格式。" - -#~ msgid "Fits a lot of log in a microcosmically small area." -#~ msgstr "在同等區域中顯示較多日誌" - -#~ msgid "It's what I use (the programmer guy)." -#~ msgstr "這是 PCSX2 程式設計師們使用的字型大小" - -#~ msgid "Its nice and readable." -#~ msgstr "令人心曠神怡而且便於閱讀" - -#~ msgid "In case you have a really high res display." -#~ msgstr "適用於高螢幕解析度" - -#~ msgid "Default soft-tone color scheme." -#~ msgstr "預設的軟色調顏色主題" - -#~ msgid "" -#~ "Classic black color scheme for people who enjoy having text seared into " -#~ "their optic nerves." -#~ msgstr "經典的黑色主題,獻給喜歡讓文字灼燒視神經的人。" - -#~ msgid "" -#~ "When checked the log window will be visible over other foreground windows." -#~ msgstr "當勾選時,日誌視窗總是保持在最前端。" - -#~ msgid "Logs events as they are passed to the PS2 virtual machine." -#~ msgstr "隨著事件傳遞給 PS2 虛擬機,記錄事件。" - -#~ msgid "Data read failed: Invalid or corrupted gzip archive." -#~ msgstr "資料讀取失敗:無效或損壞的 gzip 壓縮檔。" - -#~ msgid "" -#~ "Always use this option if you want the safest and surest memory card " -#~ "behavior." -#~ msgstr "如果您想要最安全可靠的記憶卡行為,就一直使用這個選項。" - -#~ msgid "16 and 32 MB cards have roughly the same compatibility factor." -#~ msgstr "16 MB 和 32 MB 記憶卡的相容性係數大致相同。" - -#~ msgid "" -#~ "Use at your own risk. Erratic memory card behavior is possible (though " -#~ "unlikely)." -#~ msgstr "使用者自擔風險。可能出現不確定的記憶卡行為(儘管可能性不大)" - -#~ msgid "" -#~ "Error while parsing either NTSC or PAL framerate settings. Settings must " -#~ "be valid floating point numerics." -#~ msgstr "" -#~ "當解析 NTSC 遊戲或 PAL 遊戲的畫框速率設定時出現錯誤。設定值必須是有效的浮" -#~ "點數。" - -#~ msgid "" -#~ "For troubleshooting potential bugs in the MTGS only, as it is potentially " -#~ "very slow." -#~ msgstr "" -#~ "僅用於排除多執行緒圖形模式潛在的程式錯誤,\n" -#~ "因為速度可能非常慢" - -#~ msgid "" -#~ "Completely disables all GS plugin activity; ideal for benchmarking EEcore " -#~ "components." -#~ msgstr "" -#~ "完全停止圖形插件所有的活動;\n" -#~ "適合用來做 EEcore 的效能測試" - -#~ msgid "Threading activity: start, detach, sync, deletion, etc." -#~ msgstr "執行緒的活動:開始、分離、同步、刪除,以及其他。" - -#~ msgid "Includes idle event processing and some other uncommon event usages." -#~ msgstr "包含閒置的事件處理和一些其他不尋常的事件使用。" - -#~ msgid "No reason given." -#~ msgstr "未給出原因。" +msgid "" +msgstr "" +"Project-Id-Version: PCSX2 0.9.7\n" +"Report-Msgid-Bugs-To: http://code.google.com/p/pcsx2/\n" +"POT-Creation-Date: 2011-02-25 18:54+0100\n" +"PO-Revision-Date: 2011-01-06 10:24+0800\n" +"Last-Translator: 呆丸北拜\n" +"Language-Team: pcsx2fan\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: _;wxLt\n" +"X-Poedit-SourceCharset: utf-8\n" +"X-Poedit-Basepath: F:\\PCSX2_0.9.7_GUI_翻譯\\SRC_4152\\\n" +"X-Poedit-Language: Chinese\n" +"X-Poedit-Country: TAIWAN\n" +"X-Poedit-SearchPath-0: pcsx2\n" +"X-Poedit-SearchPath-1: common\n" + +#: common/include/Utilities/Exceptions.h:226 +msgid "Parse error" +msgstr "解析錯誤" + +#: common/include/Utilities/Exceptions.h:250 +msgid "Your machine's hardware is incapable of running PCSX2. Sorry dood." +msgstr "老兄,不好意思。您電腦的硬體沒有能力運行 PCSX2。" + +#: common/src/Utilities/Exceptions.cpp:219 +msgid "Oh noes! Out of memory!" +msgstr "啊!不!Out of memory!" + +#: common/src/Utilities/Exceptions.cpp:234 +msgid "" +"Virtual memory mapping failure! Your system may have conflicting device " +"drivers, services, or may simply have insufficient memory or resources to " +"meet PCSX2's lofty needs." +msgstr "" +"虛擬記憶體映射失敗!您的系統可能有衝突的硬體驅動程式、服務,或可能只是沒有足" +"夠的記憶體或資源以滿足 PCSX2 崇高的需求。" + +#: common/src/Utilities/Exceptions.cpp:309 +msgid "Path: " +msgstr "路徑: " + +#: common/src/Utilities/Exceptions.cpp:313 +msgid "[Unnamed or unknown]" +msgstr "【未透露名稱或未知】" + +#: common/src/Utilities/Exceptions.cpp:333 +msgid "A file could not be created." +msgstr "無法建立檔案。" + +#: common/src/Utilities/Exceptions.cpp:353 +msgid "File not found." +msgstr "檔案未找到。" + +#: common/src/Utilities/Exceptions.cpp:373 +msgid "" +"Permission denied while trying to open file, likely due to insufficient user " +"account rights." +msgstr "當嘗試開啟檔案時沒有權限,可能是由於使用者帳戶權限不足。" + +#: common/src/Utilities/Exceptions.cpp:393 +msgid "" +"Unexpected end of file or stream encountered. File is probably truncated or " +"corrupted." +msgstr "遭遇意外的檔案結尾或流。檔案可能被縮減或損壞。" + +#: common/src/Utilities/ThreadingDialogs.cpp:30 +msgid "Waiting for tasks..." +msgstr "等待任務完成..." + +#: common/src/Utilities/ThreadingDialogs.cpp:41 +msgid "Waiting for task..." +msgstr "等待任務完成..." + +#: pcsx2/CDVD/IsoFileFormats.cpp:416 +msgid "ISO mounting failed: PCSX2 is unable to identify the ISO image type." +msgstr "掛載光碟映像檔失敗:PCSX2 無法確認光碟映像檔的類型。" + +#: pcsx2/Elfheader.cpp:266 +msgid "Cannot load ELF binary image. The file may be corrupt or incomplete." +msgstr "無法載入 ELF 檔案。檔案可能損壞或不完整。" + +#: pcsx2/Elfheader.cpp:268 +msgid "" +"If loading from an ISO image, this error may be caused by an unsupported ISO " +"image type or bug in PCSX2 ISO image support." +msgstr "" +"如果是從光碟映像檔讀取檔案,\n" +"那麼這個錯誤可能由未支援的光碟映像檔類型引起,\n" +"或者由功能 PCSX2 光碟映像檔支援,它的程式錯誤所引起。" + +#: pcsx2/PluginManager.cpp:692 +msgid "" +"The savestate cannot be loaded, as it appears to be corrupt or incomplete." +msgstr "無法讀取即時存檔,檔案似乎損壞或不完整。" + +#: pcsx2/PluginManager.cpp:702 +#, c-format +msgid "" +"%s plugin failed to open. Your computer may have insufficient resources, or " +"incompatible hardware/drivers." +msgstr "" +"開啟【%s】插件失敗。您的電腦可能沒有足夠的資源,\n" +"或是有不相容的硬體或驅動程式。" + +#: pcsx2/PluginManager.cpp:709 +#, c-format +msgid "" +"%s plugin failed to initialize. Your system may have insufficient memory or " +"resources needed." +msgstr "初始化【%s】插件失敗。您的系統可能沒有足夠的記憶體或資源。" + +#: pcsx2/PluginManager.cpp:815 +#, c-format +msgid "The configured %s plugin file was not found" +msgstr "未找到所選【%s】插件的檔案" + +#: pcsx2/PluginManager.cpp:819 +#, c-format +msgid "The configured %s plugin file is not a valid dynamic library" +msgstr "所選【%s】插件的檔案不是有效的動態連結函式庫" + +#: pcsx2/PluginManager.cpp:837 +#, c-format +msgid "" +"The configured %s plugin is not a PCSX2 plugin, or is for an older " +"unsupported version of PCSX2." +msgstr "所選擇的 %s 插件不是 PCSX2 的插件,或者是不再支援的舊版 PCSX2 的插件。" + +#: pcsx2/PluginManager.cpp:862 +msgid "" +"The plugin reports that your hardware or software/drivers are not supported." +msgstr "插件報告不支援您的硬體或軟體 / 驅動程式。" + +#: pcsx2/PluginManager.cpp:883 +msgid "" +"Configured plugin is not a PCSX2 plugin, or is for an older unsupported " +"version of PCSX2." +msgstr "所選擇的插件不是 PCSX2 的插件,或者是不再支援的舊版 PCSX2 的插件。" + +#: pcsx2/PluginManager.cpp:909 +#, c-format +msgid "" +"Configured %s plugin is not a valid PCSX2 plugin, or is for an older " +"unsupported version of PCSX2." +msgstr "" +"所選擇的 %s 插件不是有效的 PCSX2 插件,或者是不再支援的舊版 PCSX2 的插件。" + +#: pcsx2/PluginManager.cpp:1726 +msgid "Unloaded Plugin" +msgstr "未載入的插件" + +#: pcsx2/SaveState.cpp:338 +msgid "Cannot load savestate. It is of an unknown or unsupported version." +msgstr "無法讀取即時存檔,檔案版本未知或不支援。" + +#: pcsx2/ZipTools/thread_gzip.cpp:82 +msgid "" +"The savestate was not properly saved. The temporary file was created " +"successfully but could not be moved to its final resting place." +msgstr "即時存檔未能正確地儲存。成功建立暫存檔,但是無法將其移至目的地。" + +#: pcsx2/gui/AppConfig.cpp:937 pcsx2/gui/AppConfig.cpp:943 +msgid "Failed to overwrite existing settings file; permission was denied." +msgstr "覆寫現存的設定檔失敗;沒有權限。" + +#: pcsx2/gui/AppCorePlugins.cpp:404 +msgid "Loading PS2 system plugins..." +msgstr "載入 PS2 系統插件..." + +#: pcsx2/gui/AppInit.cpp:41 +msgid "PCSX2 - SSE2 Recommended" +msgstr "PCSX2 - 推薦 SSE2" + +#: pcsx2/gui/AppInit.cpp:71 +msgid "" +"SSE extensions are not available. PCSX2 requires a cpu that supports the " +"SSE instruction set." +msgstr "SSE 不可用。PCSX2 要求 CPU 支援 SSE。" + +#: pcsx2/gui/AppInit.cpp:154 +msgid "PCSX2 Recompiler Error(s)" +msgstr "PCSX2 反編譯錯誤" + +#: pcsx2/gui/AppInit.cpp:227 +msgid "All options are for the current session only and will not be saved.\n" +msgstr "全部選項僅用於當前的作業並且不會被儲存。\n" + +#: pcsx2/gui/AppInit.cpp:237 pcsx2/gui/AppMain.cpp:290 +msgid "IsoFile" +msgstr "ISO 檔案" + +#: pcsx2/gui/AppInit.cpp:238 +msgid "displays this list of command line options" +msgstr "顯示此命令列選項的列表" + +#: pcsx2/gui/AppInit.cpp:239 +msgid "forces the program log/console to be visible" +msgstr "強制程式日誌 / 主控台可見" + +#: pcsx2/gui/AppInit.cpp:240 +msgid "use fullscreen GS mode" +msgstr "使用全螢幕模式" + +#: pcsx2/gui/AppInit.cpp:241 +msgid "use windowed GS mode" +msgstr "使用視窗模式" + +#: pcsx2/gui/AppInit.cpp:243 +msgid "disables display of the gui while running games" +msgstr "運行遊戲時,不顯示模擬器介面" + +#: pcsx2/gui/AppInit.cpp:244 +msgid "executes an ELF image" +msgstr "執行 ELF 映像" + +#: pcsx2/gui/AppInit.cpp:245 +msgid "boots an empty dvd tray; use to enter the PS2 system menu" +msgstr "從空的 dvd 托盤啟動;用於進入 PS2 系統選單" + +#: pcsx2/gui/AppInit.cpp:246 +msgid "boots from the CDVD plugin (overrides IsoFile parameter)" +msgstr "從光碟插件啟動(覆寫【ISO 檔案】參數)" + +#: pcsx2/gui/AppInit.cpp:248 +msgid "disables all speedhacks" +msgstr "停用全部 speedhacks" + +#: pcsx2/gui/AppInit.cpp:249 +msgid "use the specified comma or pipe-delimited list of gamefixes." +msgstr "使用指定的遊戲修正列表以逗號或豎線分隔。" + +#: pcsx2/gui/AppInit.cpp:250 +msgid "disables fast booting" +msgstr "停用快速啟動" + +#: pcsx2/gui/AppInit.cpp:252 +msgid "changes the configuration file path" +msgstr "變更設定檔的路徑" + +#: pcsx2/gui/AppInit.cpp:253 +msgid "specifies the PCSX2 configuration file to use" +msgstr "指定欲使用的 PCSX2 設定檔" + +#: pcsx2/gui/AppInit.cpp:254 +#, c-format +msgid "forces %s to start the First-time Wizard" +msgstr "強制 %s 啟動首次執行精靈" + +#: pcsx2/gui/AppInit.cpp:255 +msgid "enables portable mode operation (requires admin/root access)" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:259 +#, c-format +msgid "specify the file to use as the %s plugin" +msgstr "指定欲使用的檔案作為 %s 插件" + +#: pcsx2/gui/AppInit.cpp:307 +#, c-format +msgid "Plugin Override Error - %s" +msgstr "插件覆寫錯誤 - %s" + +#: pcsx2/gui/AppInit.cpp:310 +#, c-format +msgid "" +"%s Plugin Override Error! The following file does not exist or is not a " +"valid %s plugin:\n" +"\n" +msgstr "" +"%s 插件覆寫錯誤!下列檔案不存在或不是有效的 %s 插件:\n" +"\n" + +#: pcsx2/gui/AppInit.cpp:317 +#, c-format +msgid "Press OK to use the default configured plugin, or Cancel to close %s." +msgstr "按【確定】使用預設所選擇的插件,或按【取消】關閉 %s。" + +#: pcsx2/gui/AppInit.cpp:495 +msgid "PCSX2 Error: Hardware Deficiency" +msgstr "PCSX2 錯誤:硬體缺陷" + +#: pcsx2/gui/AppInit.cpp:495 pcsx2/gui/AppInit.cpp:507 +#, fuzzy, c-format +msgid "Press OK to close %s." +msgstr "" +"\n" +"\n" +"按【確定】關閉 %s。" + +#: pcsx2/gui/AppInit.cpp:508 +#, c-format +msgid "%s Critical Error" +msgstr "%s 嚴重錯誤" + +#: pcsx2/gui/AppInit.cpp:676 +msgid "OK" +msgstr "確定" + +#: pcsx2/gui/AppInit.cpp:677 +msgid "&OK" +msgstr "確定" + +#: pcsx2/gui/AppInit.cpp:678 +msgid "Cancel" +msgstr "取消" + +#: pcsx2/gui/AppInit.cpp:679 +msgid "&Cancel" +msgstr "取消" + +#: pcsx2/gui/AppInit.cpp:680 +msgid "&Apply" +msgstr "套用" + +#: pcsx2/gui/AppInit.cpp:681 +msgid "&Next >" +msgstr "下一步 >" + +#: pcsx2/gui/AppInit.cpp:682 +msgid "< &Back" +msgstr "< 上一步" + +#: pcsx2/gui/AppInit.cpp:683 +msgid "&Back" +msgstr "上一步" + +#: pcsx2/gui/AppInit.cpp:684 +msgid "&Finish" +msgstr "完成" + +#: pcsx2/gui/AppInit.cpp:685 +msgid "&Yes" +msgstr "" + +#: pcsx2/gui/AppInit.cpp:686 +#, fuzzy +msgid "&No" +msgstr "否" + +#: pcsx2/gui/AppInit.cpp:687 +#, fuzzy +msgid "Browse" +msgstr "瀏覽..." + +#: pcsx2/gui/AppInit.cpp:689 +msgid "&Save" +msgstr "儲存檔案" + +#: pcsx2/gui/AppInit.cpp:690 +msgid "Save &As..." +msgstr "另存新檔..." + +#: pcsx2/gui/AppInit.cpp:691 +msgid "&Help" +msgstr "說明" + +#: pcsx2/gui/AppInit.cpp:692 +msgid "&Home" +msgstr "家" + +#: pcsx2/gui/AppMain.cpp:78 +msgid "" +"\n" +"\n" +"Press Ok to go to the Plugin Configuration Panel." +msgstr "" +"\n" +"\n" +"按【確定】開啟插件設定視窗。" + +#: pcsx2/gui/AppMain.cpp:131 pcsx2/gui/AppMain.cpp:145 +msgid "" +"Warning! System plugins have not been loaded. PCSX2 may be inoperable." +msgstr "警告!插件未載入。PCSX2 可能無法使用。" + +#: pcsx2/gui/AppMain.cpp:300 +#, c-format +msgid "%s Commandline Options" +msgstr "%s 命令列選項" + +#: pcsx2/gui/AppMain.cpp:503 +msgid "PS2 BIOS Error" +msgstr "PS2 BIOS 錯誤" + +#: pcsx2/gui/AppMain.cpp:504 +#, fuzzy +msgid "Press Ok to go to the BIOS Configuration Panel." +msgstr "" +"\n" +"按【確定】開啟 BIOS 設定視窗。" + +#: pcsx2/gui/AppMain.cpp:556 +msgid "PCSX2 Unresponsive Thread" +msgstr "PCSX2 停止回應的執行緒" + +#: pcsx2/gui/AppMain.cpp:566 +msgid "Terminate" +msgstr "終止" + +#: pcsx2/gui/AppMain.cpp:876 +msgid "Executing PS2 Virtual Machine..." +msgstr "正在執行 PS2 虛擬機..." + +#: pcsx2/gui/AppRes.cpp:72 +msgid "Browse for an Iso that is not in your recent history." +msgstr "選擇一個不在最近歷史記錄中的遊戲檔" + +#: pcsx2/gui/AppRes.cpp:72 +msgid "Browse..." +msgstr "瀏覽..." + +#: pcsx2/gui/AppUserMode.cpp:101 +msgid "The following folders exist, but are not writable:" +msgstr "" + +#: pcsx2/gui/AppUserMode.cpp:106 +msgid "The following folders are missing and cannot be created:" +msgstr "" + +#: pcsx2/gui/AppUserMode.cpp:146 +#, fuzzy, c-format +msgid "Portable mode error - %s" +msgstr "插件覆寫錯誤 - %s" + +#: pcsx2/gui/AppUserMode.cpp:159 +msgid "" +"PCSX2 has been installed as a portable application but cannot run due to the " +"following errors:" +msgstr "" + +#: pcsx2/gui/AppUserMode.cpp:167 +#, fuzzy +msgid "Switch to User Documents Mode" +msgstr "我的文件(推薦)" + +#: pcsx2/gui/ApplyState.h:55 +msgid "Cannot apply new settings, one of the settings is invalid." +msgstr "無法套用新的設定,其中有無效的設定。" + +#: pcsx2/gui/ConsoleLogger.cpp:120 +msgid "Save log question" +msgstr "儲存日誌的提問" + +#: pcsx2/gui/ConsoleLogger.cpp:412 +msgid "Small" +msgstr "最小" + +#: pcsx2/gui/ConsoleLogger.cpp:414 pcsx2/gui/Panels/CpuPanel.cpp:38 +msgid "Normal" +msgstr "普通" + +#: pcsx2/gui/ConsoleLogger.cpp:416 +msgid "Large" +msgstr "較大" + +#: pcsx2/gui/ConsoleLogger.cpp:418 +msgid "Huge" +msgstr "最大" + +#: pcsx2/gui/ConsoleLogger.cpp:422 +msgid "Light theme" +msgstr "明亮背景主題(需重啟 PCSX2)" + +#: pcsx2/gui/ConsoleLogger.cpp:423 +msgid "Dark theme" +msgstr "暗黑背景主題(需重啟 PCSX2)" + +#: pcsx2/gui/ConsoleLogger.cpp:426 +msgid "Always on Top" +msgstr "視窗總在最前" + +#: pcsx2/gui/ConsoleLogger.cpp:429 +msgid "&Save..." +msgstr "儲存" + +#: pcsx2/gui/ConsoleLogger.cpp:429 +msgid "Save log contents to file" +msgstr "將日誌內容儲存到檔案中" + +#: pcsx2/gui/ConsoleLogger.cpp:430 +msgid "C&lear" +msgstr "清空" + +#: pcsx2/gui/ConsoleLogger.cpp:430 +msgid "Clear the log window contents" +msgstr "清除日誌視窗中的全部內容" + +#: pcsx2/gui/ConsoleLogger.cpp:432 pcsx2/gui/Dialogs/SysConfigDialog.cpp:280 +msgid "Appearance" +msgstr "字型" + +#: pcsx2/gui/ConsoleLogger.cpp:434 +msgid "&Close" +msgstr "關閉" + +#: pcsx2/gui/ConsoleLogger.cpp:434 +msgid "Close this log window; contents are preserved" +msgstr "關閉日誌視窗(日誌內容保留)" + +#: pcsx2/gui/ConsoleLogger.cpp:438 +msgid "Dev/Verbose" +msgstr "開發 / 冗長" + +#: pcsx2/gui/ConsoleLogger.cpp:438 +msgid "Shows PCSX2 developer logs" +msgstr "顯示 PCSX2 開發人員日誌" + +#: pcsx2/gui/ConsoleLogger.cpp:454 +msgid "Enable all" +msgstr "啟用全部" + +#: pcsx2/gui/ConsoleLogger.cpp:454 +msgid "Enables all log source filters." +msgstr "啟用全部日誌來源" + +#: pcsx2/gui/ConsoleLogger.cpp:455 +msgid "Disable all" +msgstr "停用全部" + +#: pcsx2/gui/ConsoleLogger.cpp:455 +msgid "Disables all log source filters." +msgstr "停用全部日誌來源" + +#: pcsx2/gui/ConsoleLogger.cpp:457 +msgid "&Log" +msgstr "日誌" + +#: pcsx2/gui/ConsoleLogger.cpp:458 +msgid "&Sources" +msgstr "來源" + +#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:35 +#, c-format +msgid "About %s" +msgstr "關於 %s" + +#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:97 +msgid "A Playstation 2 Emulator" +msgstr "Playstation 2 模擬器" + +#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:101 +msgid "PCSX2 Official Website and Forums" +msgstr "PCSX2 官方網站和官方討論區" + +#: pcsx2/gui/Dialogs/AboutBoxDialog.cpp:105 +msgid "PCSX2 Official Svn Repository at Googlecode" +msgstr "PCSX2 官方 SVN 檔案庫位於 Googlecode" + +#: pcsx2/gui/Dialogs/AssertionDialog.cpp:23 +msgid "Assertion Failure - " +msgstr "程式斷言失敗 - " + +#: pcsx2/gui/Dialogs/BaseConfigurationDialog.cpp:189 +msgid "Saves a snapshot of this settings panel to a PNG file." +msgstr "將當前設定視窗的擷圖儲存為 PNG 圖片" + +#: pcsx2/gui/Dialogs/BaseConfigurationDialog.cpp:300 +msgid "Save dialog screenshots to..." +msgstr "儲存設定視窗的螢幕擷圖" + +#: pcsx2/gui/Dialogs/BiosSelectorDialog.cpp:31 +msgid "BIOS Selector" +msgstr "選擇 BIOS" + +#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:193 +msgid "Do not show this dialog again." +msgstr "不要再顯示此對話方塊" + +#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:199 +msgid "" +"Disables this popup and whatever response you select here will be " +"automatically used from now on." +msgstr "" +"停用這個彈出型視窗。無論您在這裡選擇哪種回應方式,它都會從今以後自動使用。" + +#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:201 +msgid "" +"The popup will not be shown again. This setting can be undone from the " +"settings panels." +msgstr "不再顯示此彈出型視窗。這項設定可以從設定面板復原。" + +#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:247 +#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:292 +msgid "Ignore" +msgstr "忽略" + +#: pcsx2/gui/Dialogs/ConfirmationDialogs.cpp:278 +msgid "Reset" +msgstr "重新啟動遊戲" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:32 +#, c-format +msgid "Select memory card for Port %u / Slot %u" +msgstr "選擇用在手把插槽 %u / 插槽 %u 的記憶卡" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:41 +msgid "Create new memory card" +msgstr "新增記憶卡" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:60 +#: pcsx2/gui/Panels/DirPickerPanel.cpp:74 +#: pcsx2/gui/Panels/DirPickerPanel.cpp:271 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:464 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:511 +msgid "Create" +msgstr "新增" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:72 +msgid "New card will be saved to:" +msgstr "新記憶卡將會儲存在:" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:135 +msgid "Error: The memory card could not be created." +msgstr "錯誤:無法新增記憶卡。" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:136 +msgid "memory card creation error" +msgstr "新增記憶卡時出現錯誤" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:147 +msgid "Use NTFS compression when creating this card." +msgstr "對新增的記憶卡啟用 NTFS 壓縮" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:163 +msgid "8 MB [most compatible]" +msgstr "8 MB【相容性最好】" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:163 +msgid "" +"This is the standard Sony-provisioned size, and is supported by all games " +"and BIOS versions." +msgstr "標準的 Sony 提供的大小,所有遊戲和 BIOS 版本都支援。" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:167 +msgid "16 MB" +msgstr "16 MB" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:167 +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:171 +msgid "" +"A typical size for 3rd-party memory cards which should work with most games." +msgstr "典型的第三方記憶卡的大小,在大多數遊戲中應該能夠正常工作。" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:171 +msgid "32 MB" +msgstr "32 MB" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:175 +msgid "64 MB" +msgstr "64 MB" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:175 +msgid "" +"Low compatibility warning: Yes it's very big, but may not work with many " +"games." +msgstr "低相容性警告:是的,檔案非常大。但恐怕在許多遊戲中不能正常工作。" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:47 +#, c-format +msgid "Select a folder for %s settings" +msgstr "選擇一個資料夾用來存放 %s 的設定" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:47 +msgid "Settings" +msgstr "設定檔的位置" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:81 +#, fuzzy +msgid "Language selector" +msgstr "選擇語言 - %s" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:84 +msgid "" +"Change the language only if you need to.\n" +"The system default should be fine for most operating systems." +msgstr "" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:104 +msgid "Configuration Guides (online)" +msgstr "" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:108 +msgid "Readme / FAQ (Offline/PDF)" +msgstr "" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:117 +#, c-format +msgid "%s First Time Configuration" +msgstr "%s 首次執行精靈" + +#: pcsx2/gui/Dialogs/GameDatabaseDialog.cpp:24 +#, c-format +msgid "Game database - %s" +msgstr "遊戲資料庫 - %s" + +#: pcsx2/gui/Dialogs/ImportSettingsDialog.cpp:24 +msgid "Import Existing Settings?" +msgstr "匯入現有的設定?" + +#: pcsx2/gui/Dialogs/ImportSettingsDialog.cpp:39 +msgid "Import" +msgstr "匯入" + +#: pcsx2/gui/Dialogs/ImportSettingsDialog.cpp:40 +msgid "Overwrite" +msgstr "覆寫" + +#: pcsx2/gui/Dialogs/LogOptionsDialog.cpp:27 +msgid "Trace Logging" +msgstr "追蹤日誌" + +#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:40 +msgid "Auto-eject memory cards when loading savestates" +msgstr "讀取即時存檔時,自動退出記憶卡" + +#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:47 +msgid "Backup existing Savestate when creating a new one" +msgstr "當建立一個新的即時存檔時,備份現有的即時存檔" + +#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:51 +#, c-format +msgid "Enable Multitap on Port %u" +msgstr "在手把插槽 %u 啟用手把擴充器" + +#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:95 +msgid "MemoryCard Manager" +msgstr "管理記憶卡" + +#: pcsx2/gui/Dialogs/McdConfigDialog.cpp:102 +msgid "Drag items over other items in the list to swap or copy memory cards." +msgstr "" +"在記憶卡列表中,將一個記憶卡拖曳到其他記憶卡的上面,以更換或複製記憶卡。" + +#: pcsx2/gui/Dialogs/PickUserModeDialog.cpp:24 +msgid "PCSX2 First Time configuration" +msgstr "PCSX2 首次執行精靈" + +#: pcsx2/gui/Dialogs/PickUserModeDialog.cpp:29 +#, c-format +msgid "%s is starting from a new or unknown folder and needs to be configured." +msgstr "%s 從一個新的或未知的資料夾啟動,需要被設定。" + +#: pcsx2/gui/Dialogs/StuckThreadDialog.cpp:28 +msgid "PCSX2 Thread is not responding" +msgstr "PCSX2 執行緒停止回應" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:36 +msgid "Config Overrides Warning" +msgstr "設定覆寫警告" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:56 +msgid "Components Overrides Warning" +msgstr "元件覆寫警告" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:147 +#, fuzzy +msgid "Preset:" +msgstr "重新啟動遊戲" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:228 +#, c-format +msgid "Emulation Settings - %s" +msgstr "模擬器設定 - %s" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:237 +msgid "EE/IOP" +msgstr "EE/IOP" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:238 +msgid "VUs" +msgstr "VU" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:239 +msgid "GS" +msgstr "GS" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:240 +msgid "GS Window" +msgstr "遊戲視窗" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:241 +msgid "Speedhacks" +msgstr "速度駭客" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:242 +msgid "Game Fixes" +msgstr "遊戲修正" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:253 +#, c-format +msgid "Components Selectors - %s" +msgstr "元件選擇 - %s" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:260 +msgid "Plugins" +msgstr "插件" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:261 +msgid "BIOS" +msgstr "BIOS" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:262 +msgid "Folders" +msgstr "資料夾" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:273 +#, fuzzy, c-format +msgid "Appearance/Themes - %s" +msgstr "字型" + +#: pcsx2/gui/ExecutorThread.cpp:430 +msgid "Press Cancel to attempt to cancel the action." +msgstr "按【取消】嘗試取消動作。" + +#: pcsx2/gui/ExecutorThread.cpp:431 +#, c-format +msgid "Press Terminate to kill %s immediately." +msgstr "按【終止】立即終止 %s。" + +#: pcsx2/gui/ExecutorThread.cpp:434 +msgid "Terminate App" +msgstr "終止" + +#: pcsx2/gui/FrameForGS.cpp:274 +msgid "GS Output is Disabled!" +msgstr "畫面輸出被停用!" + +#: pcsx2/gui/GlobalCommands.cpp:268 pcsx2/gui/MainFrame.cpp:402 +msgid "Save state" +msgstr "即時存檔" + +#: pcsx2/gui/GlobalCommands.cpp:269 +msgid "Saves the virtual machine state to the current slot." +msgstr "將虛擬機狀態儲存到當前的即時存檔插槽。" + +#: pcsx2/gui/GlobalCommands.cpp:274 pcsx2/gui/MainFrame.cpp:401 +msgid "Load state" +msgstr "即時讀檔" + +#: pcsx2/gui/GlobalCommands.cpp:275 +msgid "Loads a virtual machine state from the current slot." +msgstr "從當前的即時存檔插槽讀取虛擬機狀態。" + +#: pcsx2/gui/GlobalCommands.cpp:280 +msgid "Cycle to next slot" +msgstr "循環至下一個即時存檔插槽" + +#: pcsx2/gui/GlobalCommands.cpp:281 +msgid "Cycles the current save slot in +1 fashion!" +msgstr "將當前的即時存檔插槽以 +1 的式樣循環!" + +#: pcsx2/gui/GlobalCommands.cpp:286 +msgid "Cycle to prev slot" +msgstr "循環至上一個即時存檔插槽" + +#: pcsx2/gui/GlobalCommands.cpp:287 +msgid "Cycles the current save slot in -1 fashion!" +msgstr "將當前的即時存檔插槽以 -1 的式樣循環!" + +#: pcsx2/gui/IsoDropTarget.cpp:57 +msgid "Drag and Drop Error" +msgstr "拖曳錯誤" + +#: pcsx2/gui/IsoDropTarget.cpp:58 +#, c-format +msgid "" +"It is an error to drop multiple files onto a %s window. One at a time " +"please, thank you." +msgstr "拖曳多個檔案至 %s 視窗是一個錯誤。請一次一個檔案,謝謝。" + +#: pcsx2/gui/IsoDropTarget.cpp:89 pcsx2/gui/MainMenuClicks.cpp:337 +msgid "Confirm PS2 Reset" +msgstr "確認重新啟動 PS2" + +#: pcsx2/gui/IsoDropTarget.cpp:91 +#, c-format +msgid "" +"You have dropped the following ELF binary into %s:\n" +"\n" +msgstr "" +"您已經拖曳下列 ELF 檔案至 %s:\n" +"\n" + +#: pcsx2/gui/IsoDropTarget.cpp:135 +#, c-format +msgid "You have dropped the following ISO image into %s:" +msgstr "您已經拖曳下列 ISO 檔案至 %s:" + +#: pcsx2/gui/MainFrame.cpp:38 +#, c-format +msgid "Slot %d" +msgstr "" + +#: pcsx2/gui/MainFrame.cpp:41 +msgid "Other..." +msgstr "其他..." + +#: pcsx2/gui/MainFrame.cpp:312 +msgid "Show Console" +msgstr "顯示主控台" + +#: pcsx2/gui/MainFrame.cpp:313 +msgid "Console to Stdio" +msgstr "顯示主控台至標準輸入輸出" + +#: pcsx2/gui/MainFrame.cpp:326 +msgid "&System" +msgstr "檔案" + +#: pcsx2/gui/MainFrame.cpp:327 +msgid "CD&VD" +msgstr "光碟" + +#: pcsx2/gui/MainFrame.cpp:328 +msgid "&Config" +msgstr "設定" + +#: pcsx2/gui/MainFrame.cpp:329 +msgid "&Misc" +msgstr "其他" + +#: pcsx2/gui/MainFrame.cpp:331 +msgid "&Debug" +msgstr "偵錯" + +#: pcsx2/gui/MainFrame.cpp:343 +#, c-format +msgid "%s %d.%d.%d.%d%s (svn) %s" +msgstr "%s %d.%d.%d.%d%s (svn) %s" + +#: pcsx2/gui/MainFrame.cpp:349 +#, c-format +msgid "%s %d.%d.%d %s" +msgstr "%s %d.%d.%d %s" + +#: pcsx2/gui/MainFrame.cpp:350 +msgid "(modded)" +msgstr "(modded)" + +#: pcsx2/gui/MainFrame.cpp:387 pcsx2/gui/MainFrame.cpp:389 +#: pcsx2/gui/MainFrame.cpp:395 +msgid "Initializing..." +msgstr "正在初始化..." + +#: pcsx2/gui/MainFrame.cpp:391 +msgid "Run ELF..." +msgstr "執行 ELF 檔案" + +#: pcsx2/gui/MainFrame.cpp:392 +msgid "For running raw PS2 binaries directly" +msgstr "為了直接執行原始的 PS2 二進位檔案" + +#: pcsx2/gui/MainFrame.cpp:406 +msgid "Enable Patches" +msgstr "啟用補丁" + +#: pcsx2/gui/MainFrame.cpp:409 +msgid "Enable Cheats" +msgstr "啟用作弊" + +#: pcsx2/gui/MainFrame.cpp:412 +msgid "Enable Host Filesystem" +msgstr "啟用主機檔案系統" + +#: pcsx2/gui/MainFrame.cpp:417 +msgid "Shutdown" +msgstr "關閉遊戲" + +#: pcsx2/gui/MainFrame.cpp:418 +msgid "Wipes all internal VM states and shuts down plugins." +msgstr "清除所有內部虛擬機狀態並關閉插件" + +#: pcsx2/gui/MainFrame.cpp:420 +msgid "Exit" +msgstr "離開" + +#: pcsx2/gui/MainFrame.cpp:421 +#, c-format +msgid "Closing %s may be hazardous to your health" +msgstr "關閉 %s 或許有害健康" + +#: pcsx2/gui/MainFrame.cpp:428 +msgid "Iso Selector" +msgstr "選擇光碟映像檔" + +#: pcsx2/gui/MainFrame.cpp:429 +msgid "Plugin Menu" +msgstr "光碟插件" + +#: pcsx2/gui/MainFrame.cpp:432 +msgid "Iso" +msgstr "使用光碟映像檔" + +#: pcsx2/gui/MainFrame.cpp:432 +msgid "Makes the specified ISO image the CDVD source." +msgstr "使用指定的光碟映像檔作為遊戲來源" + +#: pcsx2/gui/MainFrame.cpp:433 +msgid "Plugin" +msgstr "使用光碟插件" + +#: pcsx2/gui/MainFrame.cpp:433 +msgid "Uses an external plugin as the CDVD source." +msgstr "使用外部的光碟插件作為遊戲來源" + +#: pcsx2/gui/MainFrame.cpp:434 +msgid "No disc" +msgstr "無光碟" + +#: pcsx2/gui/MainFrame.cpp:434 +msgid "Use this to boot into your virtual PS2's BIOS configuration." +msgstr "進入 PS2 的 BIOS 設定" + +#: pcsx2/gui/MainFrame.cpp:442 +msgid "Emulation &Settings" +msgstr "模擬器選項" + +#: pcsx2/gui/MainFrame.cpp:443 +msgid "&Memory cards" +msgstr "記憶卡" + +#: pcsx2/gui/MainFrame.cpp:444 +msgid "&Plugin/BIOS Selector" +msgstr "插件 / BIOS" + +#: pcsx2/gui/MainFrame.cpp:445 pcsx2/gui/Panels/GameDatabasePanel.cpp:348 +msgid "Game Database Editor" +msgstr "遊戲資料庫編輯器" + +#: pcsx2/gui/MainFrame.cpp:451 +msgid "&Video (GS)" +msgstr "圖形 (GS)" + +#: pcsx2/gui/MainFrame.cpp:452 +msgid "&Audio (SPU2)" +msgstr "聲音 (SPU2)" + +#: pcsx2/gui/MainFrame.cpp:453 +msgid "&Controllers (PAD)" +msgstr "控制器 (PAD)" + +#: pcsx2/gui/MainFrame.cpp:454 +msgid "Dev9" +msgstr "Dev9" + +#: pcsx2/gui/MainFrame.cpp:455 +msgid "USB" +msgstr "USB" + +#: pcsx2/gui/MainFrame.cpp:456 +msgid "Firewire" +msgstr "Firewire" + +#: pcsx2/gui/MainFrame.cpp:459 +msgid "Patches (unimplemented)" +msgstr "補丁(未實現)" + +#: pcsx2/gui/MainFrame.cpp:462 +msgid "Multitap 1" +msgstr "手把擴充器 1" + +#: pcsx2/gui/MainFrame.cpp:463 +msgid "Multitap 2" +msgstr "手把擴充器 2" + +#: pcsx2/gui/MainFrame.cpp:466 +msgid "Clear all settings..." +msgstr "清除全部設定" + +#: pcsx2/gui/MainFrame.cpp:467 +#, c-format +msgid "Clears all %s settings and re-runs the startup wizard." +msgstr "清除全部 %s 設定,重新執行「 首次執行精靈 」" + +#: pcsx2/gui/MainFrame.cpp:483 +msgid "Print CDVD Info" +msgstr "在主控台顯示光碟讀取日誌" + +#: pcsx2/gui/MainFrame.cpp:490 +msgid "About..." +msgstr "關於 PCSX2" + +#: pcsx2/gui/MainFrame.cpp:492 +msgid "Open Debug Window..." +msgstr "開啟偵錯視窗" + +#: pcsx2/gui/MainFrame.cpp:493 +msgid "Memory Dump..." +msgstr "記憶體轉存" + +#: pcsx2/gui/MainFrame.cpp:494 +msgid "Logging..." +msgstr "日誌" + +#: pcsx2/gui/MainFrame.cpp:571 +msgid "Suspend" +msgstr "暫停遊戲" + +#: pcsx2/gui/MainFrame.cpp:572 +msgid "Safely pauses emulation and preserves the PS2 state." +msgstr "安全地暫停模擬並保留 PS2 狀態" + +#: pcsx2/gui/MainFrame.cpp:579 +msgid "Resume" +msgstr "繼續遊戲" + +#: pcsx2/gui/MainFrame.cpp:580 +msgid "Resumes the suspended emulation state." +msgstr "從暫停的模擬器狀態中恢復遊戲" + +#: pcsx2/gui/MainFrame.cpp:584 +msgid "Suspend/Resume" +msgstr "暫停 / 繼續" + +#: pcsx2/gui/MainFrame.cpp:585 +msgid "No emulation state is active; cannot suspend or resume." +msgstr "無現存的模擬器狀態,不能暫停或繼續" + +#: pcsx2/gui/MainFrame.cpp:594 +msgid "Restart" +msgstr "重新啟動" + +#: pcsx2/gui/MainFrame.cpp:595 +msgid "Simulates hardware reset of the PS2 virtual machine." +msgstr "模擬 PS2 虛擬機的硬體重置。" + +#: pcsx2/gui/MainFrame.cpp:600 +msgid "No emulation state is active; boot something first." +msgstr "無現存的模擬器狀態,請先啟動些什麼" + +#: pcsx2/gui/MainFrame.cpp:608 +msgid "Reboot CDVD (full)" +msgstr "重新啟動遊戲(完整)" + +#: pcsx2/gui/MainFrame.cpp:609 +msgid "Hard reset of the active VM." +msgstr "重新啟動遊戲時顯示 PS2 的啟動畫面" + +#: pcsx2/gui/MainFrame.cpp:613 +msgid "Boot CDVD (full)" +msgstr "啟動遊戲(完整)" + +#: pcsx2/gui/MainFrame.cpp:614 +msgid "Boot the VM using the current DVD or Iso source media" +msgstr "啟動遊戲時顯示 PS2 的啟動畫面" + +#: pcsx2/gui/MainFrame.cpp:622 +msgid "Reboot CDVD (fast)" +msgstr "重新啟動遊戲(快速)" + +#: pcsx2/gui/MainFrame.cpp:623 +#, fuzzy +msgid "Reboot using fast BOOT (skips splash screens)" +msgstr "重新啟動遊戲時跳過 PS2 的啟動畫面" + +#: pcsx2/gui/MainFrame.cpp:627 +msgid "Boot CDVD (fast)" +msgstr "啟動遊戲(快速)" + +#: pcsx2/gui/MainFrame.cpp:628 +#, fuzzy +msgid "Use fast boot to skip PS2 startup and splash screens" +msgstr "啟動遊戲時跳過 PS2 的啟動畫面" + +#: pcsx2/gui/MainFrame.cpp:689 pcsx2/gui/MainFrame.cpp:724 +msgid "No plugin loaded" +msgstr "未載入插件" + +#: pcsx2/gui/MainFrame.cpp:694 +msgid "Core GS Settings..." +msgstr "核心設定" + +#: pcsx2/gui/MainFrame.cpp:695 +msgid "" +"Modify hardware emulation settings regulated by the PCSX2 core virtual " +"machine." +msgstr "變更 PCSX2 核心虛擬機控制的硬體模擬設定" + +#: pcsx2/gui/MainFrame.cpp:697 +msgid "Window Settings..." +msgstr "遊戲視窗" + +#: pcsx2/gui/MainFrame.cpp:698 +msgid "Modify window and appearance options, including aspect ratio." +msgstr "視窗及視窗外觀的選項調節,包括【圖像縱橫比】" + +#: pcsx2/gui/MainFrame.cpp:705 +msgid "Plugin Settings..." +msgstr "插件設定" + +#: pcsx2/gui/MainFrame.cpp:706 +#, c-format +msgid "Opens the %s plugin's advanced settings dialog." +msgstr "開啟 %s 插件的設定視窗" + +#: pcsx2/gui/MainMenuClicks.cpp:112 +msgid "Reset all settings?" +msgstr "重設全部設定?" + +#: pcsx2/gui/MainMenuClicks.cpp:140 +msgid "Confirm ISO image change" +msgstr "確認更換光碟映像檔" + +#: pcsx2/gui/MainMenuClicks.cpp:146 +msgid "Do you want to swap discs or boot the new image (via system reset)?" +msgstr "您是想要更換光碟還是啟動新的映像檔 ( 重新啟動遊戲 )?" + +#: pcsx2/gui/MainMenuClicks.cpp:148 pcsx2/gui/MainMenuClicks.cpp:191 +msgid "Swap Disc" +msgstr "更換光碟" + +#: pcsx2/gui/MainMenuClicks.cpp:181 +msgid "Confirm CDVD source change" +msgstr "確認更換光碟" + +#: pcsx2/gui/MainMenuClicks.cpp:184 +#, c-format +msgid "You've selected to switch the CDVD source from %s to %s." +msgstr "您已經選擇將遊戲來源從【%s】更換到【%s】" + +#: pcsx2/gui/MainMenuClicks.cpp:188 +msgid "Do you want to swap discs or boot the new image (system reset)?" +msgstr "您是想要更換光碟還是啟動新的映像檔 ( 重新啟動遊戲 )?" + +#: pcsx2/gui/MainMenuClicks.cpp:256 +#, c-format +msgid "All Supported (%s)" +msgstr "所有支援的檔案類型 (%s)" + +#: pcsx2/gui/MainMenuClicks.cpp:259 +#, c-format +msgid "Disc Images (%s)" +msgstr "光碟映像檔 (%s)" + +#: pcsx2/gui/MainMenuClicks.cpp:262 +#, c-format +msgid "Blockdumps (%s)" +msgstr "區塊轉存檔 (%s)" + +#: pcsx2/gui/MainMenuClicks.cpp:265 pcsx2/gui/MainMenuClicks.cpp:286 +msgid "All Files (*.*)" +msgstr "所有檔案 (*.*)" + +#: pcsx2/gui/MainMenuClicks.cpp:268 +msgid "Select CDVD source iso..." +msgstr "選擇光碟映像檔" + +#: pcsx2/gui/MainMenuClicks.cpp:285 +msgid "Select ELF file..." +msgstr "選擇 ELF 檔案" + +#: pcsx2/gui/MainMenuClicks.cpp:311 +msgid "ISO file not found!" +msgstr "未找到光碟映像檔!" + +#: pcsx2/gui/MainMenuClicks.cpp:313 +#, fuzzy +msgid "An error occurred while trying to open the file:" +msgstr "" +"當嘗試開啟這個檔案時出現錯誤:\n" +"\n" + +#: pcsx2/gui/MainMenuClicks.cpp:314 +msgid "" +"Error: The configured ISO file does not exist. Click OK to select a new ISO " +"source for CDVD." +msgstr "錯誤:指定的光碟映像檔不存在。按【確定】選擇一個新的光碟映像檔。" + +#: pcsx2/gui/MainMenuClicks.cpp:380 +msgid "" +"You have selected the following ISO image into PCSX2:\n" +"\n" +msgstr "" +"您已經選擇以下光碟映像檔:\n" +"\n" + +#: pcsx2/gui/MemoryCardFile.cpp:182 +#, c-format +msgid "" +"Could not create a memory card file: \n" +"\n" +"%s\n" +"\n" +msgstr "" +"無法新增記憶卡檔案:\n" +"\n" +"%s\n" +"\n" + +#: pcsx2/gui/MemoryCardFile.cpp:200 +#, c-format +msgid "" +"Access denied to memory card file: \n" +"\n" +"%s\n" +"\n" +msgstr "" +"拒絕存取記憶卡檔案:\n" +"\n" +"%s\n" +"\n" + +#: pcsx2/gui/Panels/BaseApplicableConfigPanel.cpp:97 +msgid "Cannot apply settings..." +msgstr "無法套用設定" + +#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:103 +msgid "BIOS Search Path:" +msgstr "BIOS 的搜尋路徑:" + +#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:104 +msgid "Select folder with PS2 BIOS roms" +msgstr "選擇含有 PS2 BIOS 的資料夾" + +#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:111 +msgid "" +"Click the Browse button to select a different folder where PCSX2 will look " +"for PS2 BIOS roms." +msgstr "按下【瀏覽】按鈕選擇不同的資料夾" + +#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:113 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:149 +#: pcsx2/gui/Panels/ThemeSelectorPanel.cpp:47 +msgid "Refresh list" +msgstr "重新載入列表" + +#: pcsx2/gui/Panels/BiosSelectorPanel.cpp:115 +msgid "Select a BIOS rom:" +msgstr "選擇一個 BIOS:" + +#: pcsx2/gui/Panels/CpuPanel.cpp:24 +msgid "Round Mode" +msgstr "取整模式" + +#: pcsx2/gui/Panels/CpuPanel.cpp:25 +msgid "Clamping Mode" +msgstr "夾持模式" + +#: pcsx2/gui/Panels/CpuPanel.cpp:29 +msgid "Nearest" +msgstr "近似" + +#: pcsx2/gui/Panels/CpuPanel.cpp:30 +msgid "Negative" +msgstr "負數" + +#: pcsx2/gui/Panels/CpuPanel.cpp:31 +msgid "Positive" +msgstr "正數" + +#: pcsx2/gui/Panels/CpuPanel.cpp:32 +msgid "Chop / Zero" +msgstr "移除 / 零" + +#: pcsx2/gui/Panels/CpuPanel.cpp:37 +msgid "None" +msgstr "無" + +#: pcsx2/gui/Panels/CpuPanel.cpp:85 +msgid "EE/FPU Advanced Recompiler Options" +msgstr "EE/FPU 進階反編譯選項" + +#: pcsx2/gui/Panels/CpuPanel.cpp:87 pcsx2/gui/Panels/CpuPanel.cpp:102 +msgid "Extra + Preserve Sign" +msgstr "額外 + 保留標記" + +#: pcsx2/gui/Panels/CpuPanel.cpp:88 +msgid "Full" +msgstr "完整" + +#: pcsx2/gui/Panels/CpuPanel.cpp:99 +msgid "VU0 / VU1 Advanced Recompiler Options" +msgstr "VU0 / VU1 進階反編譯選項" + +#: pcsx2/gui/Panels/CpuPanel.cpp:101 +msgid "Extra" +msgstr "額外" + +#: pcsx2/gui/Panels/CpuPanel.cpp:117 pcsx2/gui/Panels/CpuPanel.cpp:126 +#: pcsx2/gui/Panels/CpuPanel.cpp:184 +msgid "Interpreter" +msgstr "直譯器" + +#: pcsx2/gui/Panels/CpuPanel.cpp:118 +msgid "Quite possibly the slowest thing in the universe." +msgstr "很可能是宇宙中最慢的。" + +#: pcsx2/gui/Panels/CpuPanel.cpp:120 pcsx2/gui/Panels/CpuPanel.cpp:129 +msgid "Recompiler" +msgstr "反編譯" + +#: pcsx2/gui/Panels/CpuPanel.cpp:121 +msgid "" +"Performs just-in-time binary translation of 64-bit MIPS-IV machine code to " +"x86." +msgstr "適時地將 64 位元 MIPS-IV 機器碼轉譯至 x86。" + +#: pcsx2/gui/Panels/CpuPanel.cpp:127 +msgid "Pretty slow; provided for diagnostic purposes only." +msgstr "非常慢;僅用於診斷。" + +#: pcsx2/gui/Panels/CpuPanel.cpp:130 +msgid "" +"Performs just-in-time binary translation of 32-bit MIPS-I machine code to " +"x86." +msgstr "適時地將 32 位元 MIPS-I 機器碼轉譯至 x86。" + +#: pcsx2/gui/Panels/CpuPanel.cpp:154 +msgid "Enable EE Cache - Interpreter Only! (Slower)" +msgstr "" + +#: pcsx2/gui/Panels/CpuPanel.cpp:170 pcsx2/gui/Panels/CpuPanel.cpp:223 +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:110 +msgid "Restore Defaults" +msgstr "還原成預設值" + +#: pcsx2/gui/Panels/CpuPanel.cpp:185 +msgid "" +"Vector Unit Interpreter. Slow and not very compatible. Only use for " +"diagnostics." +msgstr "向量單元直譯器。速度慢而且相容性不是非常好。僅用於診斷。" + +#: pcsx2/gui/Panels/CpuPanel.cpp:187 +msgid "microVU Recompiler" +msgstr "microVU 反編譯" + +#: pcsx2/gui/Panels/CpuPanel.cpp:188 +msgid "" +"New Vector Unit recompiler with much improved compatibility. Recommended." +msgstr "新式的向量單元反編譯大幅改善相容性。推薦。" + +#: pcsx2/gui/Panels/CpuPanel.cpp:190 +msgid "superVU Recompiler [legacy]" +msgstr "superVU 反編譯【舊式】" + +#: pcsx2/gui/Panels/CpuPanel.cpp:191 +msgid "" +"Useful for diagnosing bugs or clamping issues in the new mVU recompiler." +msgstr "對於診斷 microVU 的程式錯誤或夾持模式的問題是有用的。" + +#: pcsx2/gui/Panels/DirPickerPanel.cpp:64 +msgid "Path does not exist" +msgstr "路徑不存在" + +#: pcsx2/gui/Panels/DirPickerPanel.cpp:154 +msgid "Use default setting" +msgstr "使用預設值" + +#: pcsx2/gui/Panels/DirPickerPanel.cpp:174 +msgid "Open in Explorer" +msgstr "在檔案總管中開啟" + +#: pcsx2/gui/Panels/DirPickerPanel.cpp:175 +msgid "Open an explorer window to this folder." +msgstr "在檔案總管視窗中開啟此資料夾" + +#: pcsx2/gui/Panels/DirPickerPanel.cpp:266 +msgid "Create folder?" +msgstr "新增資料夾?" + +#: pcsx2/gui/Panels/DirPickerPanel.cpp:267 +#, c-format +msgid "A configured folder does not exist. Should %s try to create it?" +msgstr "一個先前指定的資料夾不存在。%s 應該嘗試新增該資料夾嗎?" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:30 +msgid "Fit to Window/Screen" +msgstr "延展至視窗 / 螢幕" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:31 +msgid "Standard (4:3)" +msgstr "標準 (4:3)" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:32 +msgid "Widescreen (16:9)" +msgstr "寬螢幕 (16:9)" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:44 +msgid "Disable window resize border" +msgstr "禁止使用視窗邊框調整視窗大小" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:45 +msgid "Always hide mouse cursor" +msgstr "總是隱藏滑鼠指標" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:46 +msgid "Hide window on suspend" +msgstr "模擬器暫停時隱藏遊戲視窗" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:47 +msgid "Default to fullscreen mode on open" +msgstr "預設以全螢幕模式進入遊戲" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:48 +msgid "Wait for vsync on refresh" +msgstr "重新整理時等待垂直同步" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:49 +msgid "Double-click Toggles Full-Screen mode" +msgstr "" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:50 +msgid "Use exclusive fullscreen mode (if available)" +msgstr "使用全螢幕獨占模式(若可用)" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:90 +msgid "Aspect Ratio:" +msgstr "圖像縱橫比:" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:92 +msgid "Custom Window Size:" +msgstr "自訂視窗大小:" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:164 +msgid "" +"Invalid window dimensions specified: Size cannot contain non-numeric digits! " +">_<" +msgstr "無效的視窗維度:【自訂視窗大小】的數值必須是整數! >_<" + +#: pcsx2/gui/Panels/GameDatabasePanel.cpp:336 +msgid "Search" +msgstr "搜尋" + +#: pcsx2/gui/Panels/GameDatabasePanel.cpp:370 +#: pcsx2/gui/Panels/GameFixesPanel.cpp:25 +msgid "Gamefixes" +msgstr "遊戲修正" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:38 +msgid "VU Add Hack - Fixes Tri-Ace games boot crash." +msgstr "" +"VU Add Hack - 修正 Tri-Ace 的遊戲啟動後就會當掉:星海遊俠 3、拉吉亞達物語、女" +"神戰記 2" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:39 +msgid "" +"Games that need this hack to boot:\n" +" * Star Ocean 3\n" +" * Radiata Stories\n" +" * Valkyrie Profile 2" +msgstr "" +"需要本項修正才能啟動的遊戲:\n" +" * 星海遊俠 3(Star Ocean 3)\n" +" * 拉吉亞達物語(Radiata Stories)\n" +" * 女神戰記 2(Valkyrie Profile 2)" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:42 +msgid "VU Clip Flag Hack - For Persona games (SuperVU recompiler only!)" +msgstr "VU Clip Flag Hack - 僅適用於 SuperVU:女神異聞錄系列(Persona)" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:46 +msgid "FPU Compare Hack - For Digimon Rumble Arena 2." +msgstr "FPU Compare Hack - 數碼寶貝競技場2(Digimon Rumble Arena 2)" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:50 +msgid "FPU Multiply Hack - For Tales of Destiny." +msgstr "FPU Multiply Hack - 命運傳奇(Tales of Destiny)" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:54 +msgid "FPU Negative Div Hack - For Gundam games." +msgstr "FPU Negative Div Hack - 鋼彈系列(Gundam)" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:58 +msgid "VU XGkick Hack - For Erementar Gerad." +msgstr "VU XGkick Hack - 武器種族傳說(Erementar Gerad)" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:62 +msgid "FFX videos fix - Fixes bad graphics overlay in FFX videos." +msgstr "FFX videos fix - 修正太空戰士10遊戲動畫中糟糕的圖形重疊" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:66 +msgid "EE timing hack - Multi purpose hack. Try if all else fails." +msgstr "" +"EE timing hack - 多用途的修正,若所有其他選項都失敗,嘗試之(數位惡魔傳說、" +"SSX、惡靈古堡:英雄不死)" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:75 +msgid "" +"Skip MPEG hack - Skips videos/FMVs in games to avoid game hanging/freezes." +msgstr "Skip MPEG hack - 跳過遊戲動畫,避免遊戲動畫的播放造成遊戲停止回應" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:79 +msgid "OPH Flag hack - Try if your game freezes showing the same frame." +msgstr "" +"OPH Flag hack - 若遊戲畫面定住時持續顯示同樣的畫框,嘗試之(死神刀刃戰士、夢" +"幻騎士 II 和 III、巫術)" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:95 +msgid "Enable game fixes" +msgstr "啟用遊戲修正" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:103 +msgid "" +"The safest way to make sure that all game fixes are completely disabled." +msgstr "最安全的狀態就是確保完全停用所有遊戲修正" + +#: pcsx2/gui/Panels/LogOptionsPanels.cpp:249 +msgid "Enable Trace Logging" +msgstr "啟用追蹤日誌" + +#: pcsx2/gui/Panels/LogOptionsPanels.cpp:250 +msgid "" +"Trace logs are all written to emulog.txt. Toggle trace logging at any time " +"using F10." +msgstr "追蹤日誌全部寫入 emulog.txt。隨時按 F10 開啟或關閉追蹤日誌。" + +#: pcsx2/gui/Panels/LogOptionsPanels.cpp:251 +msgid "" +"Warning: Enabling trace logs is typically very slow, and is a leading cause " +"of 'What happened to my FPS?' problems. :)" +msgstr "" +"警告:啟用追蹤日誌會令遊戲速度非常慢,而且是「我的 FPS 發生了什麼事?」問題的" +"最重要的原因。:)" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:144 +msgid "Select folder with PS2 memory cards" +msgstr "選擇含有 PS2 記憶卡的資料夾" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:374 +#, fuzzy +msgid "Overwrite memory card?" +msgstr "刪除記憶卡?" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:391 +msgid "Copy failed!" +msgstr "複製失敗!" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:465 +msgid "Mount" +msgstr "掛載" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:511 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:681 +msgid "Delete" +msgstr "刪除" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:514 +msgid "Deletes the existing memory card from disk (all contents are lost)." +msgstr "刪除所選擇的記憶卡(失去所有遊戲存檔)" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:515 +msgid "Creates a new memory card in the empty slot." +msgstr "於空插槽新增一個新的記憶卡。" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:519 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:682 +msgid "Disable" +msgstr "停用" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:519 +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:682 +msgid "Enable" +msgstr "啟用" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:522 +msgid "" +"Disables the selected memory card, so that it will not be seen by games or " +"BIOS." +msgstr "停用所選擇的記憶卡,遊戲或 BIOS 中就看不到該記憶卡。" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:523 +msgid "Mounts the selected memory card, so that games can see it again." +msgstr "掛載所選擇的記憶卡,遊戲中能夠再次看到該記憶卡。" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:602 +msgid "Delete memory card?" +msgstr "刪除記憶卡?" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:681 +msgid "Create new..." +msgstr "新增" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:683 +msgid "Relocate file..." +msgstr "遷移檔案" + +#: pcsx2/gui/Panels/MemoryCardListPanel.cpp:688 +msgid "Refresh List" +msgstr "重新載入列表" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:105 +msgid "Slot" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:106 +msgid "Status" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:107 +msgid "Size" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:108 +msgid "Formatted" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:109 +msgid "Modified" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:110 +#, fuzzy +msgid "Created" +msgstr "新增" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:111 +msgid "Filename" +msgstr "" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:136 +msgid "Disabled" +msgstr "已停用" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:136 +msgid "Enabled" +msgstr "已啟用" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:136 +msgid "Missing" +msgstr "不存在" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:137 +#: pcsx2/gui/Panels/MemoryCardListView.cpp:139 +#: pcsx2/gui/Panels/MemoryCardListView.cpp:140 +msgid "N/A" +msgstr "N/A" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:138 +msgid "No" +msgstr "否" + +#: pcsx2/gui/Panels/MemoryCardListView.cpp:138 +msgid "Yes" +msgstr "是" + +#: pcsx2/gui/Panels/MiscPanelStuff.cpp:33 +msgid "Usermode Selection" +msgstr "使用者的抉擇" + +#: pcsx2/gui/Panels/MiscPanelStuff.cpp:50 +msgid "User Documents (recommended)" +msgstr "我的文件(推薦)" + +#: pcsx2/gui/Panels/MiscPanelStuff.cpp:51 +msgid "Location: " +msgstr "位置:" + +#: pcsx2/gui/Panels/MiscPanelStuff.cpp:55 +msgid "Custom folder:" +msgstr "自訂資料夾:" + +#: pcsx2/gui/Panels/MiscPanelStuff.cpp:57 +msgid "" +"This setting may require administration privileges from your operating " +"system, depending on how your system is configured." +msgstr "" +"取決於系統如何配置,\n" +"這項設定可能需要作業系統管理員權限。" + +#: pcsx2/gui/Panels/MiscPanelStuff.cpp:66 +#, c-format +msgid "Select a document root for %s" +msgstr "選擇 %s 的檔案根目錄" + +#: pcsx2/gui/Panels/MiscPanelStuff.cpp:124 +msgid "Apply" +msgstr "套用" + +#: pcsx2/gui/Panels/MiscPanelStuff.cpp:125 +msgid "Make this language my default right now!" +msgstr "立即套用所選擇的語言作為預設語言!" + +#: pcsx2/gui/Panels/PathsPanel.cpp:38 +msgid "Savestates:" +msgstr "即時存檔" + +#: pcsx2/gui/Panels/PathsPanel.cpp:39 +msgid "Select folder for Savestates" +msgstr "選擇一個資料夾用來存放即時存檔" + +#: pcsx2/gui/Panels/PathsPanel.cpp:48 +msgid "Snapshots:" +msgstr "遊戲擷圖" + +#: pcsx2/gui/Panels/PathsPanel.cpp:49 +msgid "Select a folder for Snapshots" +msgstr "選擇一個資料夾用來存放遊戲擷圖" + +#: pcsx2/gui/Panels/PathsPanel.cpp:58 +msgid "Logs/Dumps:" +msgstr "日誌 / 轉存" + +#: pcsx2/gui/Panels/PathsPanel.cpp:59 +msgid "Select a folder for logs/dumps" +msgstr "選擇一個資料夾用來存放日誌和轉存檔" + +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:230 +msgid "Applying settings..." +msgstr "套用設定..." + +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:240 +msgid "Shutdown PS2 virtual machine?" +msgstr "關閉 PS2 虛擬機?" + +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:321 +msgid "I'm givin' her all she's got, Captain!" +msgstr "我正在給她所有她得到的,船長!" + +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:323 +msgid "Enumerating available plugins..." +msgstr "正在列舉可用的插件..." + +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:356 +msgid "Plugins Search Path:" +msgstr "插件的搜尋路徑:" + +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:357 +msgid "Select a folder with PCSX2 plugins" +msgstr "選擇含有 PCSX2 插件的資料夾" + +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:370 +#, fuzzy +msgid "Configure..." +msgstr "設定" + +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:379 +msgid "Click the Browse button to select a different folder for PCSX2 plugins." +msgstr "按下【瀏覽】按鈕選擇不同的資料夾" + +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:519 +#, c-format +msgid "" +"The selected %s plugin failed to load.\n" +"\n" +"Reason: %s\n" +"\n" +msgstr "" +"載入所選的【%s】插件失敗。\n" +"\n" +"原因:%s\n" +"\n" + +#: pcsx2/gui/Panels/PluginSelectorPanel.cpp:729 +msgid "Completing tasks..." +msgstr "正在完成任務..." + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:96 +msgid "Enable speedhacks" +msgstr "啟用速度駭客" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:102 +msgid "" +"A safe and easy way to make sure that all speedhacks are completely disabled." +msgstr "安全且舒適的狀態就是確保完全停用所有的速度駭客" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:111 +msgid "" +"Resets all speedhack options to their defaults, which consequently turns " +"them all OFF." +msgstr "所有的速度駭客選項重設為預設值,結果是關掉全部速度駭客選項。" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:120 +msgid "EE Cyclerate [Not Recommended]" +msgstr "EE Cyclerate【不推薦】" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:141 +msgid "VU Cycle Stealing [Not Recommended]" +msgstr "VU Cycle Stealing【不推薦】" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:161 +msgid "microVU Hacks" +msgstr "microVU 駭客" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:163 +msgid "mVU Flag Hack" +msgstr "mVU Flag Hack" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:164 +msgid "" +"Good Speedup and High Compatibility; may cause garbage graphics, SPS, etc... " +"[Recommended]" +msgstr "" +"不錯的速度提升而且相容性高;可能導致\n" +"圖像變得垃圾、有尖刺的多邊形,等等...\n" +"【推薦】" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:166 +msgid "mVU Block Hack" +msgstr "mVU Block Hack" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:167 +msgid "" +"Good Speedup and High Compatibility; may cause garbage graphics, SPS, etc..." +msgstr "" +"不錯的速度提升而且相容性高;可能導致\n" +"圖像變得垃圾、有尖刺的多邊形,等等..." + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:169 +msgid "mVU Min/Max Hack" +msgstr "mVU Min/Max Hack" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:170 +msgid "" +"Small Speedup; may cause black screens, garbage graphics, SPS, etc... [Not " +"Recommended]" +msgstr "" +"速度少量提升;可能導致遊戲畫面全黑、\n" +"圖像變得垃圾、有尖刺的多邊形,等等...\n" +"【不推薦】" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:190 +msgid "Other Hacks" +msgstr "其他駭客" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:192 +msgid "Enable INTC Spin Detection" +msgstr "Enable INTC Spin Detection" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:193 +msgid "" +"Huge speedup for some games, with almost no compatibility side effects. " +"[Recommended]" +msgstr "" +"對於一些遊戲有巨大的速度提升,\n" +"幾乎沒有相容性副作用【推薦】" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:195 +msgid "Enable Wait Loop Detection" +msgstr "Enable Wait Loop Detection" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:196 +msgid "" +"Moderate speedup for some games, with no known side effects. [Recommended]" +msgstr "" +"對於一些遊戲有適度的速度提升,\n" +"沒有已知的副作用【推薦】" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:198 +msgid "Enable fast CDVD" +msgstr "Enable fast CDVD" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:199 +msgid "Fast disc access, less loading times. [Not Recommended]" +msgstr "快速讀取光碟,減少載入時間【不推薦】" + +#: pcsx2/gui/Panels/ThemeSelectorPanel.cpp:37 +#, fuzzy +msgid "Themes Search Path:" +msgstr "BIOS 的搜尋路徑:" + +#: pcsx2/gui/Panels/ThemeSelectorPanel.cpp:38 +#, fuzzy +msgid "Select folder containing PCSX2 visual themes" +msgstr "選擇一個資料夾用來存放即時存檔" + +#: pcsx2/gui/Panels/ThemeSelectorPanel.cpp:45 +#, fuzzy +msgid "" +"Click the Browse button to select a different folder containing PCSX2 visual " +"themes." +msgstr "按下【瀏覽】按鈕選擇不同的資料夾" + +#: pcsx2/gui/Panels/ThemeSelectorPanel.cpp:49 +#, fuzzy +msgid "Select a visual theme:" +msgstr "選擇語言:" + +#: pcsx2/gui/Panels/VideoPanel.cpp:34 +msgid "Disable Framelimiting" +msgstr "停用畫框限制" + +#: pcsx2/gui/Panels/VideoPanel.cpp:35 +msgid "" +"Useful for running benchmarks. Toggle this option in-game by pressing F4." +msgstr "" +"對於執行效能測試是有用的\n" +"遊戲時按 F4 開啟或關閉畫框限制" + +#: pcsx2/gui/Panels/VideoPanel.cpp:61 +msgid "Base Framerate Adjust:" +msgstr "基本畫框速率:" + +#: pcsx2/gui/Panels/VideoPanel.cpp:67 +msgid "Slow Motion Adjust:" +msgstr "慢動作:" + +#: pcsx2/gui/Panels/VideoPanel.cpp:73 +msgid "Turbo Adjust:" +msgstr "渦輪加速(TAB):" + +#: pcsx2/gui/Panels/VideoPanel.cpp:88 +msgid "NTSC Framerate:" +msgstr "NTSC 遊戲的畫框速率:" + +#: pcsx2/gui/Panels/VideoPanel.cpp:91 pcsx2/gui/Panels/VideoPanel.cpp:97 +msgid "FPS" +msgstr "FPS" + +#: pcsx2/gui/Panels/VideoPanel.cpp:94 +msgid "PAL Framerate:" +msgstr "PAL 遊戲的畫框速率:" + +#: pcsx2/gui/Panels/VideoPanel.cpp:180 +msgid "Disabled [default]" +msgstr "停用【預設】" + +#: pcsx2/gui/Panels/VideoPanel.cpp:184 +#, fuzzy +msgid "Skip when on Turbo only (TAB to enable)" +msgstr "僅在渦輪加速時跳框" + +#: pcsx2/gui/Panels/VideoPanel.cpp:188 +msgid "Constant skipping" +msgstr "恆定的跳框" + +#: pcsx2/gui/Panels/VideoPanel.cpp:190 +msgid "" +"Normal and Turbo limit rates skip frames. Slow motion mode will still " +"disable frameskipping." +msgstr "" +"普通模式和渦輪加速模式有限制速度,能夠跳框\n" +"慢動作模式依然會停用跳框" + +#: pcsx2/gui/Panels/VideoPanel.cpp:213 +msgid "Frames to Draw" +msgstr "繪製的畫框" + +#: pcsx2/gui/Panels/VideoPanel.cpp:218 +msgid "Frames to Skip" +msgstr "跳過的畫框" + +#: pcsx2/gui/Panels/VideoPanel.cpp:294 +msgid "Use Synchronized MTGS" +msgstr "使用同步的多執行緒圖形模式" + +#: pcsx2/gui/Panels/VideoPanel.cpp:298 +msgid "Disable all GS output" +msgstr "停止輸出遊戲畫面" + +#: pcsx2/gui/Panels/VideoPanel.cpp:316 +msgid "Frame Skipping" +msgstr "跳框" + +#: pcsx2/gui/Panels/VideoPanel.cpp:319 +msgid "Framelimiter" +msgstr "畫框限制" + +#: pcsx2/gui/SysState.cpp:283 +msgid "" +"Cannot load this savestate. The state is from an incompatible edition of " +"PCSX2 that is either newer than this version, or is no longer supported." +msgstr "" +"無法讀取即時存檔。即時存檔來自不相容的比當前版本新或不再支援的 PCSX2 版本。" + +#: pcsx2/gui/SysState.cpp:290 +msgid "" +"Cannot load this savestate. The state is an unsupported version, likely " +"created by a newer edition of PCSX2." +msgstr "" +"無法讀取即時存檔。即時存檔的版本不被支援,即時存檔可能是由比當前版本新的 " +"PCSX2 建立。" + +#: pcsx2/gui/SysState.cpp:520 +msgid "" +"This savestate cannot be loaded because it is not a valid gzip archive. It " +"may have been created by an older unsupported version of PCSX2, or it may be " +"corrupted." +msgstr "" +"無法讀取即時存檔,因為不是一個有效的 gzip 壓縮檔。\n" +"即時存檔可能由不再支援的舊版 PCSX2 所建立,或者也可能即時存檔損壞。" + +#: pcsx2/gui/SysState.cpp:579 +msgid "This file is not a valid PCSX2 savestate. See the logfile for details." +msgstr "這個檔案不是一個有效的 PCSX2 即時存檔。詳情請洽日誌檔案。" + +#: pcsx2/gui/SysState.cpp:598 +msgid "" +"This savestate cannot be loaded due to missing critical components. See the " +"log file for details." +msgstr "由於缺失關鍵元件,無法讀取這個即時存檔。詳情請洽日誌檔案。" + +#: pcsx2/ps2/BiosTools.cpp:83 pcsx2/ps2/BiosTools.cpp:151 +msgid "The selected BIOS file is not a valid PS2 BIOS. Please re-configure." +msgstr "指定的 BIOS 檔案不是有效的 PS2 BIOS。請重新設定。" + +#: pcsx2/ps2/BiosTools.cpp:244 +msgid "" +"The PS2 BIOS could not be loaded. The BIOS has not been configured, or the " +"configuration has been corrupted. Please re-configure." +msgstr "無法載入 PS2 BIOS。未設定 PS2 BIOS,或設定已經損壞。請重新設定。" + +#: pcsx2/ps2/BiosTools.cpp:251 +msgid "The configured BIOS file does not exist. Please re-configure." +msgstr "指定的 BIOS 檔案不存在。請重新設定。" + +#: pcsx2/x86/ix86-32/iR5900-32.cpp:578 +#, c-format +msgid "" +"%s Extensions not found. The R5900-32 recompiler requires a host CPU with " +"MMX, SSE, and SSE2 extensions." +msgstr "%s 指令集未找到。R5900-32 反編譯裝置要求 CPU 支援 MMX、SSE、SSE2。" + +#: pcsx2/x86/microVU.cpp:85 +#, c-format +msgid "" +"%s Extensions not found. microVU requires a host CPU with MMX, SSE, and " +"SSE2 extensions." +msgstr "%s 指令集未找到。microVU 要求 CPU 支援 MMX、SSE、SSE2。" + +#~ msgid "&Back >" +#~ msgstr "上一步 >" + +#~ msgid "Appearance..." +#~ msgstr "外觀..." + +#~ msgid "" +#~ "%s will create the following folder for documents. You can change this " +#~ "setting later, at any time." +#~ msgstr "" +#~ "%s 將會新增下列資料夾用來存放檔案。\n" +#~ "您可以稍後隨時變更設定。" + +#~ msgid "Flush to Zero" +#~ msgstr "浮點數下溢位為零" + +#~ msgid "Denormals are Zero" +#~ msgstr "浮點數反常值為零" + +#~ msgid "Illegal ELF file size over 2GB!" +#~ msgstr "無效的檔案大小超過 2GB!" + +#~ msgid "ELF file does not exist!" +#~ msgstr "ELF 檔案不存在!" + +#~ msgid "Unexpected end of ELF file." +#~ msgstr "意外的 ELF 檔案結尾。" + +#~ msgid "" +#~ "The MTGS thread has become unresponsive while waiting for the GS plugin " +#~ "to open." +#~ msgstr "當等候圖形插件開啟時,多執行緒圖形模式的執行緒停止回應。" + +#~ msgid "Internal Memorycard Plugin failed to initialize." +#~ msgstr "初始化內部記憶卡插件失敗。" + +#~ msgid "The savestate data is invalid or corrupted." +#~ msgstr "即時存檔的資料無效或損壞。" + +#~ msgid "Dumps detailed information for PS2 executables (ELFs)." +#~ msgstr "擷取 PS2 執行檔(ELF)的詳細資訊" + +#~ msgid "" +#~ "Logs manual protection, split blocks, and other things that might impact " +#~ "performance." +#~ msgstr "記錄手動保護、分塊,以及其他可能影響效能的東西。" + +#~ msgid "Shows the game developer's logging text (EE processor)" +#~ msgstr "顯示遊戲開發人員的日誌(EE processor)" + +#~ msgid "Shows the game developer's logging text (IOP processor)" +#~ msgstr "顯示遊戲開發人員的日誌(IOP processor)" + +#~ msgid "Shows DECI2 debugging logs (EE processor)" +#~ msgstr "顯示 DECI2 偵錯日誌(EE processor)" + +#~ msgid "SYSCALL and DECI2 activity." +#~ msgstr "SYSCALL 和 DECI2 的活動。" + +#~ msgid "Direct memory accesses to unknown or unmapped EE memory space." +#~ msgstr "直接記憶體存取至未知或未映射的 EE 記憶體空間。" + +#~ msgid "Disasm of executing core instructions (excluding COPs and CACHE)." +#~ msgstr "執行核心指令集的反組譯(不包含 COP 和 CACHE)。" + +#~ msgid "Disasm of COP0 instructions (MMU, cpu and dma status, etc)." +#~ msgstr "COP0 指令集的反組譯(MMU、cpu 和 dma 的狀態,以及其他)。" + +#~ msgid "Disasm of the EE's floating point unit (FPU) only." +#~ msgstr "僅 EE 浮點運算器的反組譯。" + +#~ msgid "Disasm of the EE's VU0macro co-processor instructions." +#~ msgstr "EE 的 VU0macro 輔助處理器指令集的反組譯。" + +#~ msgid "Execution of EE cache instructions." +#~ msgstr "EE 快取指令集的執行。" + +#~ msgid "" +#~ "All known hardware register accesses (very slow!); not including sub " +#~ "filter options below." +#~ msgstr "所有已知的硬體暫存器存取(非常慢!);不包括下面的分項選項。" + +#~ msgid "Logs only unknown, unmapped, or unimplemented register accesses." +#~ msgstr "僅記錄未知、未映射,或未實現的暫存器存取。" + +#~ msgid "Logs only DMA-related registers." +#~ msgstr "僅記錄 DMA 相關的暫存器。" + +#~ msgid "" +#~ "IPU activity: hardware registers, decoding operations, DMA status, etc." +#~ msgstr "IPU 活動:硬體暫存器、解碼操作、DMA 狀態,以及其他。" + +#~ msgid "All GIFtag parse activity; path index, tag type, etc." +#~ msgstr "全部 GIFtag 解析活動;路徑索引,標籤類型,以及其他。" + +#~ msgid "All VIFcode processing; command, tag style, interrupts." +#~ msgstr "全部 VIFcode 處理;命令,標籤風格,中斷。" + +#~ msgid "Scratchpad's MFIFO activity." +#~ msgstr "便條式暫存的 MFIFO 活動。" + +#~ msgid "Actual data transfer logs, bus right arbitration, stalls, etc." +#~ msgstr "實際的資料傳輸日誌、匯流排正確的仲裁、停頓,以及其他。" + +#~ msgid "Tracks all EE counters events and some counter register activity." +#~ msgstr "追蹤全部 EE 計數器事件以及一些計數器暫存器活動。" + +#~ msgid "Dumps various VIF and VIFcode processing data." +#~ msgstr "擷取各種各樣的 VIF 和 VIFcode 處理資料。" + +#~ msgid "Dumps various GIF and GIFtag parsing data." +#~ msgstr "擷取各種各樣的 GIF 和 GIFtag 解析資料。" + +#~ msgid "SYSCALL and IRX activity." +#~ msgstr "SYSCALL 和 IRX 的活動。" + +#~ msgid "Direct memory accesses to unknown or unmapped IOP memory space." +#~ msgstr "直接記憶體存取至未知或未映射的 IOP 記憶體空間。" + +#~ msgid "Disasm of the IOP's GPU co-processor instructions." +#~ msgstr "IOP 的 GPU 輔助處理器指令集的反組譯。" + +#~ msgid "" +#~ "All known hardware register accesses, not including the sub-filters below." +#~ msgstr "所有已知的硬體暫存器存取,不包括下面的分項。" + +#~ msgid "Memorycard reads, writes, erases, terminators, and other processing." +#~ msgstr "記憶卡的讀取、寫入、清除、終結者,以及其他處理。" + +#~ msgid "Gamepad activity on the SIO." +#~ msgstr "SIO 上的遊戲手把活動。" + +#~ msgid "Actual DMA event processing and data transfer logs." +#~ msgstr "實際的直接記憶體存取事件處理和資料傳輸日誌。" + +#~ msgid "Tracks all IOP counters events and some counter register activity." +#~ msgstr "追蹤全部 IOP 計數器事件以及一些計數器暫存器活動。" + +#~ msgid "Detailed logging of CDVD hardware." +#~ msgstr "CDVD 硬體的詳細日誌紀錄。" + +#~ msgid "Unrecognized ISO file format." +#~ msgstr "無法辨識的 ISO 檔案格式。" + +#~ msgid "Fits a lot of log in a microcosmically small area." +#~ msgstr "在同等區域中顯示較多日誌" + +#~ msgid "It's what I use (the programmer guy)." +#~ msgstr "這是 PCSX2 程式設計師們使用的字型大小" + +#~ msgid "Its nice and readable." +#~ msgstr "令人心曠神怡而且便於閱讀" + +#~ msgid "In case you have a really high res display." +#~ msgstr "適用於高螢幕解析度" + +#~ msgid "Default soft-tone color scheme." +#~ msgstr "預設的軟色調顏色主題" + +#~ msgid "" +#~ "Classic black color scheme for people who enjoy having text seared into " +#~ "their optic nerves." +#~ msgstr "經典的黑色主題,獻給喜歡讓文字灼燒視神經的人。" + +#~ msgid "" +#~ "When checked the log window will be visible over other foreground windows." +#~ msgstr "當勾選時,日誌視窗總是保持在最前端。" + +#~ msgid "Logs events as they are passed to the PS2 virtual machine." +#~ msgstr "隨著事件傳遞給 PS2 虛擬機,記錄事件。" + +#~ msgid "Data read failed: Invalid or corrupted gzip archive." +#~ msgstr "資料讀取失敗:無效或損壞的 gzip 壓縮檔。" + +#~ msgid "" +#~ "Always use this option if you want the safest and surest memory card " +#~ "behavior." +#~ msgstr "如果您想要最安全可靠的記憶卡行為,就一直使用這個選項。" + +#~ msgid "16 and 32 MB cards have roughly the same compatibility factor." +#~ msgstr "16 MB 和 32 MB 記憶卡的相容性係數大致相同。" + +#~ msgid "" +#~ "Use at your own risk. Erratic memory card behavior is possible (though " +#~ "unlikely)." +#~ msgstr "使用者自擔風險。可能出現不確定的記憶卡行為(儘管可能性不大)" + +#~ msgid "" +#~ "Error while parsing either NTSC or PAL framerate settings. Settings must " +#~ "be valid floating point numerics." +#~ msgstr "" +#~ "當解析 NTSC 遊戲或 PAL 遊戲的畫框速率設定時出現錯誤。設定值必須是有效的浮" +#~ "點數。" + +#~ msgid "" +#~ "For troubleshooting potential bugs in the MTGS only, as it is potentially " +#~ "very slow." +#~ msgstr "" +#~ "僅用於排除多執行緒圖形模式潛在的程式錯誤,\n" +#~ "因為速度可能非常慢" + +#~ msgid "" +#~ "Completely disables all GS plugin activity; ideal for benchmarking EEcore " +#~ "components." +#~ msgstr "" +#~ "完全停止圖形插件所有的活動;\n" +#~ "適合用來做 EEcore 的效能測試" + +#~ msgid "Threading activity: start, detach, sync, deletion, etc." +#~ msgstr "執行緒的活動:開始、分離、同步、刪除,以及其他。" + +#~ msgid "Includes idle event processing and some other uncommon event usages." +#~ msgstr "包含閒置的事件處理和一些其他不尋常的事件使用。" + +#~ msgid "No reason given." +#~ msgstr "未給出原因。" diff --git a/locales/zh_TW/pcsx2_Tertiary.po b/locales/zh_TW/pcsx2_Tertiary.po index 1cddfae329..c7469c1a54 100644 --- a/locales/zh_TW/pcsx2_Tertiary.po +++ b/locales/zh_TW/pcsx2_Tertiary.po @@ -1,235 +1,348 @@ -msgid "" -msgstr "" -"Project-Id-Version: PCSX2 0.9.7\n" -"Report-Msgid-Bugs-To: http://code.google.com/p/pcsx2/\n" -"POT-Creation-Date: 2010-12-26 10:01-0500\n" -"PO-Revision-Date: 2011-01-06 06:02+0800\n" -"Last-Translator: 呆丸北拜\n" -"Language-Team: pcsx2fan\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Poedit-KeywordsList: pxEt\n" -"X-Poedit-SourceCharset: utf-8\n" -"X-Poedit-Basepath: F:\\PCSX2_0.9.7_GUI_翻譯\\SRC_4152\\\n" -"X-Poedit-Language: Chinese\n" -"X-Poedit-Country: TAIWAN\n" -"X-Poedit-SearchPath-0: pcsx2\n" -"X-Poedit-SearchPath-1: common\n" - -#: pcsx2/MTGS.cpp:809 -msgid "The MTGS thread has become unresponsive while waiting for the GS plugin to open." -msgstr "當等候圖形插件開啟時,多執行緒圖形模式的執行緒停止回應。" - -#: pcsx2/PluginManager.cpp:1329 -msgid "Internal Memorycard Plugin failed to initialize." -msgstr "初始化內部記憶卡插件失敗。" - -#: pcsx2/gui/ExecutorThread.cpp:40 -msgid "Logs events as they are passed to the PS2 virtual machine." -msgstr "隨著事件傳遞給 PS2 虛擬機,記錄事件。" - -#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:151 -msgid "!ContextTip:ChangingNTFS" -msgstr "NTFS 壓縮能夠在任何時候手動變更,透過從檔案總管使用右鍵選單的「內容」選項。" - -#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:48 -msgid "!ContextTip:Folders:Settings" -msgstr "" -"PCSX2 用這個資料夾儲存您的設定,包括大多數插件的設定。\n" -"(一些較老的插件可能不將設定儲存在這個資料夾裡面)" - -#: pcsx2/gui/Panels/DirPickerPanel.cpp:118 -msgid "!ContextTip:DirPicker:UseDefault" -msgstr "當勾選時,此資料夾將會自動反映與 PCSX2 當前的使用者設定所關聯的預設值。" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:67 -msgid "!ContextTip:Gamefixes:EE Timing Hack" -msgstr "" -"已知影響下列遊戲:\n" -" * 數位惡魔傳說(Digital Devil Saga)(修正遊戲動畫和遊戲當掉)\n" -" * SSX(修正糟糕的圖形和遊戲當掉)\n" -" * 惡靈古堡:英雄不死(Resident Evil: Dead Aim)(導致混亂的紋理)" - -#: pcsx2/gui/Panels/GameFixesPanel.cpp:80 -msgid "!ContextTip:Gamefixes:OPH Flag hack" -msgstr "" -"已知影響下列遊戲:\n" -" * 死神刀刃戰士(Bleach Blade Battler)\n" -" * 夢幻騎士(Growlancer)II 和 III\n" -" * 巫術(Wizardry)" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:51 -msgid "!ContextTip:Window:Vsync" -msgstr "" -"垂直同步消除遊戲畫面出現斷層(Screen tearing),但是效能大幅損失。\n" -"通常僅用於全螢幕模式,恐怕不是在所有的圖形插件中都能工作。" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:56 -msgid "!ContextTip:Window:HideMouse" -msgstr "" -"當勾選時,強行令滑鼠指標在遊戲視窗中不可見;\n" -"對於使用滑鼠作為遊戲中主要的控制裝置,是有用的。\n" -"預設,滑鼠指標在 2 秒非活動之後自動隱藏。" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:62 -msgid "!ContextTip:Window:Fullscreen" -msgstr "" -"當開始或恢復模擬時,自動切換至全螢幕模式。\n" -"您仍能使用 Alt + Enter,在視窗模式和全螢幕模式之間隨時切換。" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:67 -msgid "!ContextTip:Window:FullscreenExclusive" -msgstr "" -"可能在 CRT 螢幕上,畫面看起來更好;可能在老舊的顯示卡中,速度稍微快一些。\n" -"但會導致當視窗模式和全螢幕模式之間切換時,記憶體洩漏或模擬器隨機當掉。" - -#: pcsx2/gui/Panels/GSWindowPanel.cpp:72 -msgid "!ContextTip:Window:HideGS" -msgstr "" -"當按 ESC 或透過選單「檔案 -> 暫停遊戲」暫停模擬器的模擬時,\n" -"暫時徹底關閉又大又笨重的遊戲視窗。" - -#: pcsx2/gui/Panels/PathsPanel.cpp:39 -msgid "!ContextTip:Folders:Savestates" -msgstr "" -"PCSX2 用這個資料夾儲存即時存檔;\n" -"即時存檔透過「選單 / 工具列」寫入,或熱鍵 F1 / F3(寫檔 / 讀檔)。" - -#: pcsx2/gui/Panels/PathsPanel.cpp:49 -msgid "!ContextTip:Folders:Snapshots" -msgstr "" -"PCSX2 用這個資料夾儲存遊戲擷圖。\n" -"取決於所使用的圖形插件,實際的圖片格式可能不同。" - -#: pcsx2/gui/Panels/PathsPanel.cpp:59 -msgid "!ContextTip:Folders:Logs" -msgstr "" -"PCSX2 用這個資料夾儲存日誌和用於診斷的轉存。\n" -"大多數插件也使用這個資料夾儲存自己的日誌,\n" -"但是一些較老的插件可能忽略這個資料夾。" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:27 -msgid "!Panel:Speedhacks:EECycleX1" -msgstr "" -"1 - 預設值。\n" -"緊密地匹配正港 PS2 CPU 的實際速度。" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:32 -msgid "!Panel:Speedhacks:EECycleX2" -msgstr "" -"2 - 將 EE cyclerate 減少大約 33%。\n" -"對於大多數遊戲有溫和的速度提升,相容性高。" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:37 -msgid "!Panel:Speedhacks:EECycleX3" -msgstr "" -"3 - 將 EE cyclerate 減少大約 50%。\n" -"適度的速度提升;許多遊戲動畫的聲音結結巴巴。" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:54 -msgid "!Panel:Speedhacks:VUCycleStealOff" -msgstr "" -"0 - 停用 VU Cycle Stealing。\n" -"相容性最佳!" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:59 -msgid "!Panel:Speedhacks:VUCycleSteal1" -msgstr "" -"1 - 溫和的 VU Cycle Stealing。\n" -"相容性降低;對於大多數遊戲能夠提升一些速度。" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:64 -msgid "!Panel:Speedhacks:VUCycleSteal2" -msgstr "" -"2 - 適度的 VU Cycle Stealing。\n" -"相容性更低;對於一些遊戲有巨大的速度提升。" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:70 -msgid "!Panel:Speedhacks:VUCycleSteal3" -msgstr "" -"3 - 最大的 VU Cycle Stealing。\n" -"實用性有限,\n" -"因為會導致大多數遊戲畫面閃爍或速度變慢。" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:129 -msgid "!ContextTip:Speedhacks:EECycleRate Slider" -msgstr "" -"數值愈高,就愈能有效降低 EE 的 CPU 核心 R5900 的時脈。\n" -"對於那些無法利用真實 PS2 硬體全部潛能的遊戲,能夠大幅提升遊戲速度。" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:150 -msgid "!ContextTip:Speedhacks:VUCycleStealing Slider" -msgstr "" -"滑桿控制著 VU 從 EE 偷竊的週期的數目。\n" -"數值愈高,遊戲執行的每一個 VU 微程式從 EE 偷的就愈多。" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:172 -msgid "!ContextTip:Speedhacks:vuFlagHack" -msgstr "" -"僅對讀取狀態旗標的塊,更新狀態旗標,取代一直更新狀態旗標。\n" -"大部分時間是安全的,Super VU 預設做類似的事情。" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:177 -msgid "!ContextTip:Speedhacks:vuBlockHack" -msgstr "" -"假定遙遠未來的塊不需要舊的旗標實例資料。\n" -"非常安全。不曉得會不會令遊戲不正常..." - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:182 -msgid "!ContextTip:Speedhacks:vuMinMax" -msgstr "" -"使用 SSE 的 Min/Max 浮點操作,取代自訂邏輯 Min/Max 例行程序。\n" -"已知令 Gran Turismo 4(GT4)和 Tekken 5(鐵拳 5)遊戲不正常。" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:202 -msgid "!ContextTip:Speedhacks:INTC" -msgstr "" -"對於使用 INTC 狀態暫存器等待垂直同步的遊戲,表現最好。\n" -"主要包括 RPG 遊戲非 3D 的標題。\n" -"不使用此垂直同步方式的遊戲,將會有少量或沒有速度提升。" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:207 -msgid "!ContextTip:Speedhacks:BIFC0" -msgstr "" -"主要把核心內位址 0x81FC0 的 EE 空閒循環作為目標。\n" -"嘗試偵測每次重複都確保導致相同機器狀態的循環,\n" -"直到一個排定的事件觸發另一個單元的模擬。\n" -"這樣的循環重複一次之後,取決於哪個先到:\n" -"我們前進到下次事件或處理器時間片段的結束。" - -#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:214 -msgid "!ContextTip:Speedhacks:fastCDVD" -msgstr "" -"查閱 HDLoader 相容性列表,以確定已知使用這個選項會出現問題的遊戲。\n" -"通常是有注明需要 mode 1(模式 1)或 slow DVD(慢速 DVD)的遊戲。" - -#: pcsx2/gui/Panels/VideoPanel.cpp:37 -msgid "!ContextTip:Framelimiter:Disable" -msgstr "注意:當畫框限制停用時,渦輪加速和慢動作無法使用。" - -#: pcsx2/gui/Panels/VideoPanel.cpp:299 -msgid "!ContextTip:GS:SyncMTGS" -msgstr "啟用這個選項,若您認為多執行緒圖形模式執行緒的同步正在導致模擬器當掉或圖形錯誤。" - -#: pcsx2/gui/Panels/VideoPanel.cpp:303 -msgid "!ContextTip:GS:DisableOutput" -msgstr "" -"移除任何由多執行緒圖形模式的執行緒過載或 GPU 過載引起的效能測試產生的噪音。\n" -"這個選項最好是和即時存檔配合使用:\n" -"在一個理想的畫面儲存即時存檔,啟用這個選項,再讀取即時存檔。\n" -"\n" -"警告:這個選項在遊戲運行時啟用即可生效,但無法在遊戲運行時停用(圖像變得垃圾)。" - -#: common/src/Utilities/ThreadTools.cpp:41 -msgid "Threading activity: start, detach, sync, deletion, etc." -msgstr "執行緒的活動:開始、分離、同步、刪除,以及其他。" - -#: common/src/Utilities/wxAppWithHelpers.cpp:36 -msgid "Includes idle event processing and some other uncommon event usages." -msgstr "包含閒置的事件處理和一些其他不尋常的事件使用。" - -#: common/include/Utilities/Exceptions.h:187 -msgid "No reason given." -msgstr "未給出原因。" - +msgid "" +msgstr "" +"Project-Id-Version: PCSX2 0.9.7\n" +"Report-Msgid-Bugs-To: http://code.google.com/p/pcsx2/\n" +"POT-Creation-Date: 2011-02-25 18:54+0100\n" +"PO-Revision-Date: 2011-01-06 06:02+0800\n" +"Last-Translator: 呆丸北拜\n" +"Language-Team: pcsx2fan\n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: pxEt\n" +"X-Poedit-SourceCharset: utf-8\n" +"X-Poedit-Basepath: F:\\PCSX2_0.9.7_GUI_翻譯\\SRC_4152\\\n" +"X-Poedit-Language: Chinese\n" +"X-Poedit-Country: TAIWAN\n" +"X-Poedit-SearchPath-0: pcsx2\n" +"X-Poedit-SearchPath-1: common\n" + +#: common/include/Utilities/Exceptions.h:187 +msgid "No reason given." +msgstr "未給出原因。" + +#: common/src/Utilities/ThreadTools.cpp:41 +msgid "Threading activity: start, detach, sync, deletion, etc." +msgstr "執行緒的活動:開始、分離、同步、刪除,以及其他。" + +#: common/src/Utilities/wxAppWithHelpers.cpp:36 +msgid "Includes idle event processing and some other uncommon event usages." +msgstr "包含閒置的事件處理和一些其他不尋常的事件使用。" + +#: pcsx2/MTGS.cpp:809 +msgid "" +"The MTGS thread has become unresponsive while waiting for the GS plugin to " +"open." +msgstr "當等候圖形插件開啟時,多執行緒圖形模式的執行緒停止回應。" + +#: pcsx2/PluginManager.cpp:1329 +msgid "Internal Memorycard Plugin failed to initialize." +msgstr "初始化內部記憶卡插件失敗。" + +#: pcsx2/gui/AppConfig.cpp:776 +msgid "Safest" +msgstr "" + +#: pcsx2/gui/AppConfig.cpp:777 +msgid "Safe (faster)" +msgstr "" + +#: pcsx2/gui/AppConfig.cpp:778 +msgid "Balanced" +msgstr "" + +#: pcsx2/gui/AppConfig.cpp:779 +msgid "Aggressive" +msgstr "" + +#: pcsx2/gui/AppConfig.cpp:780 +msgid "Aggressive plus" +msgstr "" + +#: pcsx2/gui/AppConfig.cpp:781 +msgid "Mostly Harmful" +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:412 +msgid "Fits a lot of log in a microcosmically small area." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:414 +msgid "It's what I use (the programmer guy)." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:416 +msgid "Its nice and readable." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:418 +msgid "In case you have a really high res display." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:422 +msgid "Default soft-tone color scheme." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:423 +msgid "" +"Classic black color scheme for people who enjoy having text seared into " +"their optic nerves." +msgstr "" + +#: pcsx2/gui/ConsoleLogger.cpp:427 +msgid "" +"When checked the log window will be visible over other foreground windows." +msgstr "" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:151 +msgid "!ContextTip:ChangingNTFS" +msgstr "" +"NTFS 壓縮能夠在任何時候手動變更,透過從檔案總管使用右鍵選單的「內容」選項。" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:164 +msgid "" +"Always use this option if you want the safest and surest memory card " +"behavior." +msgstr "" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:168 +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:172 +msgid "16 and 32 MB cards have roughly the same compatibility factor." +msgstr "" + +#: pcsx2/gui/Dialogs/CreateMemoryCardDialog.cpp:176 +msgid "" +"Use at your own risk. Erratic memory card behavior is possible (though " +"unlikely)." +msgstr "" + +#: pcsx2/gui/Dialogs/FirstTimeWizard.cpp:49 +msgid "!ContextTip:Folders:Settings" +msgstr "" +"PCSX2 用這個資料夾儲存您的設定,包括大多數插件的設定。\n" +"(一些較老的插件可能不將設定儲存在這個資料夾裡面)" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:38 +msgid "!Panel:HasHacksOverrides" +msgstr "" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:58 +msgid "!Panel:HasPluginsOverrides" +msgstr "" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:135 +msgid "!Notice:Tooltip:Presets:Slider" +msgstr "" + +#: pcsx2/gui/Dialogs/SysConfigDialog.cpp:149 +msgid "!Notice:Tooltip:Presets:Checkbox" +msgstr "" + +#: pcsx2/gui/ExecutorThread.cpp:40 +msgid "Logs events as they are passed to the PS2 virtual machine." +msgstr "隨著事件傳遞給 PS2 虛擬機,記錄事件。" + +#: pcsx2/gui/Panels/DirPickerPanel.cpp:156 +msgid "!ContextTip:DirPicker:UseDefault" +msgstr "" +"當勾選時,此資料夾將會自動反映與 PCSX2 當前的使用者設定所關聯的預設值。" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:52 +msgid "!ContextTip:Window:Vsync" +msgstr "" +"垂直同步消除遊戲畫面出現斷層(Screen tearing),但是效能大幅損失。\n" +"通常僅用於全螢幕模式,恐怕不是在所有的圖形插件中都能工作。" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:57 +msgid "!ContextTip:Window:HideMouse" +msgstr "" +"當勾選時,強行令滑鼠指標在遊戲視窗中不可見;\n" +"對於使用滑鼠作為遊戲中主要的控制裝置,是有用的。\n" +"預設,滑鼠指標在 2 秒非活動之後自動隱藏。" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:63 +msgid "!ContextTip:Window:Fullscreen" +msgstr "" +"當開始或恢復模擬時,自動切換至全螢幕模式。\n" +"您仍能使用 Alt + Enter,在視窗模式和全螢幕模式之間隨時切換。" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:68 +msgid "!ContextTip:Window:FullscreenExclusive" +msgstr "" +"可能在 CRT 螢幕上,畫面看起來更好;可能在老舊的顯示卡中,速度稍微快一些。\n" +"但會導致當視窗模式和全螢幕模式之間切換時,記憶體洩漏或模擬器隨機當掉。" + +#: pcsx2/gui/Panels/GSWindowPanel.cpp:73 +msgid "!ContextTip:Window:HideGS" +msgstr "" +"當按 ESC 或透過選單「檔案 -> 暫停遊戲」暫停模擬器的模擬時,\n" +"暫時徹底關閉又大又笨重的遊戲視窗。" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:67 +msgid "!ContextTip:Gamefixes:EE Timing Hack" +msgstr "" +"已知影響下列遊戲:\n" +" * 數位惡魔傳說(Digital Devil Saga)(修正遊戲動畫和遊戲當掉)\n" +" * SSX(修正糟糕的圖形和遊戲當掉)\n" +" * 惡靈古堡:英雄不死(Resident Evil: Dead Aim)(導致混亂的紋理)" + +#: pcsx2/gui/Panels/GameFixesPanel.cpp:80 +msgid "!ContextTip:Gamefixes:OPH Flag hack" +msgstr "" +"已知影響下列遊戲:\n" +" * 死神刀刃戰士(Bleach Blade Battler)\n" +" * 夢幻騎士(Growlancer)II 和 III\n" +" * 巫術(Wizardry)" + +#: pcsx2/gui/Panels/PathsPanel.cpp:40 +msgid "!ContextTip:Folders:Savestates" +msgstr "" +"PCSX2 用這個資料夾儲存即時存檔;\n" +"即時存檔透過「選單 / 工具列」寫入,或熱鍵 F1 / F3(寫檔 / 讀檔)。" + +#: pcsx2/gui/Panels/PathsPanel.cpp:50 +msgid "!ContextTip:Folders:Snapshots" +msgstr "" +"PCSX2 用這個資料夾儲存遊戲擷圖。\n" +"取決於所使用的圖形插件,實際的圖片格式可能不同。" + +#: pcsx2/gui/Panels/PathsPanel.cpp:60 +msgid "!ContextTip:Folders:Logs" +msgstr "" +"PCSX2 用這個資料夾儲存日誌和用於診斷的轉存。\n" +"大多數插件也使用這個資料夾儲存自己的日誌,\n" +"但是一些較老的插件可能忽略這個資料夾。" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:27 +msgid "!Panel:Speedhacks:EECycleX1" +msgstr "" +"1 - 預設值。\n" +"緊密地匹配正港 PS2 CPU 的實際速度。" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:32 +msgid "!Panel:Speedhacks:EECycleX2" +msgstr "" +"2 - 將 EE cyclerate 減少大約 33%。\n" +"對於大多數遊戲有溫和的速度提升,相容性高。" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:37 +msgid "!Panel:Speedhacks:EECycleX3" +msgstr "" +"3 - 將 EE cyclerate 減少大約 50%。\n" +"適度的速度提升;許多遊戲動畫的聲音結結巴巴。" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:54 +msgid "!Panel:Speedhacks:VUCycleStealOff" +msgstr "" +"0 - 停用 VU Cycle Stealing。\n" +"相容性最佳!" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:59 +msgid "!Panel:Speedhacks:VUCycleSteal1" +msgstr "" +"1 - 溫和的 VU Cycle Stealing。\n" +"相容性降低;對於大多數遊戲能夠提升一些速度。" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:64 +msgid "!Panel:Speedhacks:VUCycleSteal2" +msgstr "" +"2 - 適度的 VU Cycle Stealing。\n" +"相容性更低;對於一些遊戲有巨大的速度提升。" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:70 +msgid "!Panel:Speedhacks:VUCycleSteal3" +msgstr "" +"3 - 最大的 VU Cycle Stealing。\n" +"實用性有限,\n" +"因為會導致大多數遊戲畫面閃爍或速度變慢。" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:129 +msgid "!ContextTip:Speedhacks:EECycleRate Slider" +msgstr "" +"數值愈高,就愈能有效降低 EE 的 CPU 核心 R5900 的時脈。\n" +"對於那些無法利用真實 PS2 硬體全部潛能的遊戲,能夠大幅提升遊戲速度。" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:150 +msgid "!ContextTip:Speedhacks:VUCycleStealing Slider" +msgstr "" +"滑桿控制著 VU 從 EE 偷竊的週期的數目。\n" +"數值愈高,遊戲執行的每一個 VU 微程式從 EE 偷的就愈多。" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:172 +msgid "!ContextTip:Speedhacks:vuFlagHack" +msgstr "" +"僅對讀取狀態旗標的塊,更新狀態旗標,取代一直更新狀態旗標。\n" +"大部分時間是安全的,Super VU 預設做類似的事情。" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:177 +msgid "!ContextTip:Speedhacks:vuBlockHack" +msgstr "" +"假定遙遠未來的塊不需要舊的旗標實例資料。\n" +"非常安全。不曉得會不會令遊戲不正常..." + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:182 +msgid "!ContextTip:Speedhacks:vuMinMax" +msgstr "" +"使用 SSE 的 Min/Max 浮點操作,取代自訂邏輯 Min/Max 例行程序。\n" +"已知令 Gran Turismo 4(GT4)和 Tekken 5(鐵拳 5)遊戲不正常。" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:202 +msgid "!ContextTip:Speedhacks:INTC" +msgstr "" +"對於使用 INTC 狀態暫存器等待垂直同步的遊戲,表現最好。\n" +"主要包括 RPG 遊戲非 3D 的標題。\n" +"不使用此垂直同步方式的遊戲,將會有少量或沒有速度提升。" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:207 +msgid "!ContextTip:Speedhacks:BIFC0" +msgstr "" +"主要把核心內位址 0x81FC0 的 EE 空閒循環作為目標。\n" +"嘗試偵測每次重複都確保導致相同機器狀態的循環,\n" +"直到一個排定的事件觸發另一個單元的模擬。\n" +"這樣的循環重複一次之後,取決於哪個先到:\n" +"我們前進到下次事件或處理器時間片段的結束。" + +#: pcsx2/gui/Panels/SpeedhacksPanel.cpp:214 +msgid "!ContextTip:Speedhacks:fastCDVD" +msgstr "" +"查閱 HDLoader 相容性列表,以確定已知使用這個選項會出現問題的遊戲。\n" +"通常是有注明需要 mode 1(模式 1)或 slow DVD(慢速 DVD)的遊戲。" + +#: pcsx2/gui/Panels/VideoPanel.cpp:37 +msgid "!ContextTip:Framelimiter:Disable" +msgstr "注意:當畫框限制停用時,渦輪加速和慢動作無法使用。" + +#: pcsx2/gui/Panels/VideoPanel.cpp:162 +msgid "" +"Error while parsing either NTSC or PAL framerate settings. Settings must be " +"valid floating point numerics." +msgstr "" + +#: pcsx2/gui/Panels/VideoPanel.cpp:295 +msgid "" +"For troubleshooting potential bugs in the MTGS only, as it is potentially " +"very slow." +msgstr "" + +#: pcsx2/gui/Panels/VideoPanel.cpp:299 +msgid "" +"Completely disables all GS plugin activity; ideal for benchmarking EEcore " +"components." +msgstr "" + +#: pcsx2/gui/Panels/VideoPanel.cpp:302 +msgid "!ContextTip:GS:SyncMTGS" +msgstr "" +"啟用這個選項,若您認為多執行緒圖形模式執行緒的同步正在導致模擬器當掉或圖形錯" +"誤。" + +#: pcsx2/gui/Panels/VideoPanel.cpp:306 +msgid "!ContextTip:GS:DisableOutput" +msgstr "" +"移除任何由多執行緒圖形模式的執行緒過載或 GPU 過載引起的效能測試產生的噪音。\n" +"這個選項最好是和即時存檔配合使用:\n" +"在一個理想的畫面儲存即時存檔,啟用這個選項,再讀取即時存檔。\n" +"\n" +"警告:這個選項在遊戲運行時啟用即可生效,但無法在遊戲運行時停用(圖像變得垃" +"圾)。" diff --git a/pcsx2/SourceLog.cpp b/pcsx2/SourceLog.cpp index b291339b47..f888d2d30e 100644 --- a/pcsx2/SourceLog.cpp +++ b/pcsx2/SourceLog.cpp @@ -131,7 +131,7 @@ SysConsoleLogPack::SysConsoleLogPack() static const SysTraceLogDescriptor TLD_SIF = { L"SIF", L"SIF (EE <-> IOP)", - pxDt(""), + L"", "SIF" }; @@ -380,4 +380,4 @@ SysTraceLogPack::IOP_PACK::IOP_PACK() , Counters (&TLD_IOP_Counters) , CDVD (&TLD_IOP_CDVD) { -} \ No newline at end of file +} diff --git a/pcsx2/gui/AppInit.cpp b/pcsx2/gui/AppInit.cpp index e197401913..7cc2b5aa98 100644 --- a/pcsx2/gui/AppInit.cpp +++ b/pcsx2/gui/AppInit.cpp @@ -679,9 +679,12 @@ Pcsx2App::Pcsx2App() _("&Cancel"); _("&Apply"); _("&Next >"); - _("&Back >"); + _("< &Back"); _("&Back"); _("&Finish"); + _("&Yes"); + _("&No"); + _("Browse"); _("&Save"); _("Save &As..."); diff --git a/pcsx2/gui/MainFrame.cpp b/pcsx2/gui/MainFrame.cpp index 0d31265300..ad0e6ee843 100644 --- a/pcsx2/gui/MainFrame.cpp +++ b/pcsx2/gui/MainFrame.cpp @@ -35,7 +35,7 @@ wxMenu* MainEmuFrame::MakeStatesSubMenu( int baseid ) const for (int i = 0; i < 10; i++) { - mnuSubstates->Append( baseid+i+1, wxsFormat(L"Slot %d", i) ); + mnuSubstates->Append( baseid+i+1, wxsFormat(_("Slot %d"), i) ); } mnuSubstates->AppendSeparator(); mnuSubstates->Append( baseid - 1, _("Other...") ); @@ -620,12 +620,12 @@ void MainEmuFrame::ApplyCoreStatus() if( vm ) { cdvd2->SetText(_("Reboot CDVD (fast)")); - cdvd2->SetHelp(_("Reboot using BOOT2 injection (skips splash screens)")); + cdvd2->SetHelp(_("Reboot using fast BOOT (skips splash screens)")); } else { cdvd2->SetText(_("Boot CDVD (fast)")); - cdvd2->SetHelp(_("Use BOOT2 injection to skip PS2 startup and splash screens")); + cdvd2->SetHelp(_("Use fast boot to skip PS2 startup and splash screens")); } } diff --git a/pcsx2/gui/Panels/MemoryCardListView.cpp b/pcsx2/gui/Panels/MemoryCardListView.cpp index 83c133bb13..8af08df3c2 100644 --- a/pcsx2/gui/Panels/MemoryCardListView.cpp +++ b/pcsx2/gui/Panels/MemoryCardListView.cpp @@ -102,13 +102,13 @@ const ListViewColumnInfo& MemoryCardListView_Simple::GetDefaultColumnInfo( uint { static const ListViewColumnInfo columns[] = { - { L"Slot", 48, wxLIST_FORMAT_CENTER }, - { L"Status", 96, wxLIST_FORMAT_CENTER }, - { L"Size", 72, wxLIST_FORMAT_LEFT }, - { L"Formatted", 96, wxLIST_FORMAT_CENTER }, - { L"Modified", 96, wxLIST_FORMAT_LEFT }, - { L"Created", 96, wxLIST_FORMAT_LEFT }, - { L"Filename", 216, wxLIST_FORMAT_LEFT }, + { _("Slot") , 48 , wxLIST_FORMAT_CENTER }, + { _("Status") , 96 , wxLIST_FORMAT_CENTER }, + { _("Size") , 72 , wxLIST_FORMAT_LEFT }, + { _("Formatted") , 96 , wxLIST_FORMAT_CENTER }, + { _("Modified") , 120 , wxLIST_FORMAT_LEFT }, + { _("Created") , 120 , wxLIST_FORMAT_LEFT }, + { _("Filename") , 256 , wxLIST_FORMAT_LEFT }, }; pxAssumeDev( idx < ArraySize(columns), "ListView column index is out of bounds." ); diff --git a/pcsx2/gui/Panels/PathsPanel.cpp b/pcsx2/gui/Panels/PathsPanel.cpp index e9c7e5d8e8..05a7eadcca 100644 --- a/pcsx2/gui/Panels/PathsPanel.cpp +++ b/pcsx2/gui/Panels/PathsPanel.cpp @@ -39,7 +39,7 @@ Panels::StandardPathsPanel::StandardPathsPanel( wxWindow* parent ) _("Select folder for Savestates") ))-> SetToolTip( pxEt( "!ContextTip:Folders:Savestates", L"This folder is where PCSX2 records savestates; which are recorded either by using " - L"menus/toolbars, or by pressing F1/F3 (load/save)." + L"menus/toolbars, or by pressing F1/F3 (save/load)." ) ) | SubGroup(); diff --git a/pcsx2/gui/Panels/PluginSelectorPanel.cpp b/pcsx2/gui/Panels/PluginSelectorPanel.cpp index f781a2a7af..a554408986 100644 --- a/pcsx2/gui/Panels/PluginSelectorPanel.cpp +++ b/pcsx2/gui/Panels/PluginSelectorPanel.cpp @@ -367,7 +367,7 @@ Panels::PluginSelectorPanel::ComboBoxPanel::ComboBoxPanel( PluginSelectorPanel* m_combobox[pid] = new wxComboBox( this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0, NULL, wxCB_READONLY ); - m_configbutton[pid] = new wxButton( this, ButtonId_Configure, L"Configure..." ); + m_configbutton[pid] = new wxButton( this, ButtonId_Configure, _("Configure...") ); m_configbutton[pid]->SetClientData( (void*)(int)pid ); s_plugin += Label( pi->GetShortname() ) | pxBorder( wxTOP | wxLEFT, 2 ); diff --git a/pcsx2/gui/i18n.cpp b/pcsx2/gui/i18n.cpp index 7e638f65e1..fde1bd36c0 100644 --- a/pcsx2/gui/i18n.cpp +++ b/pcsx2/gui/i18n.cpp @@ -37,7 +37,7 @@ static wxString i18n_GetBetterLanguageName( const wxLanguageInfo* info ) { case wxLANGUAGE_CHINESE: return L"Chinese (Traditional)"; case wxLANGUAGE_CHINESE_TRADITIONAL: return L"Chinese (Traditional)"; - case wxLANGUAGE_CHINESE_TAIWAN: return L"Chinese (Traditional, Taiwan)"; + case wxLANGUAGE_CHINESE_TAIWAN: return L"Chinese (Traditional)"; case wxLANGUAGE_CHINESE_HONGKONG: return L"Chinese (Traditional, Hong Kong)"; case wxLANGUAGE_CHINESE_MACAU: return L"Chinese (Traditional, Macau)"; }