diff --git a/CMakeLists.txt b/CMakeLists.txt index 82f792f1..1b6cc54a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -192,18 +192,17 @@ SET(SRC_FEX fex/7z_C/7zBuf.c fex/7z_C/7zCrc.c fex/7z_C/7zCrcOpt.c - fex/7z_C/7zDecode.c - fex/7z_C/7zExtract.c - fex/7z_C/7zHeader.c + fex/7z_C/7zDec.c fex/7z_C/7zIn.c - fex/7z_C/7zItem.c fex/7z_C/7zStream.c fex/7z_C/Bcj2.c - fex/7z_C/Bra.c fex/7z_C/Bra86.c + fex/7z_C/Bra.c fex/7z_C/CpuArch.c - fex/7z_C/LzmaDec.c fex/7z_C/Lzma2Dec.c + fex/7z_C/LzmaDec.c + fex/7z_C/Ppmd7.c + fex/7z_C/Ppmd7Dec.c fex/fex/Binary_Extractor.cpp fex/fex/blargg_common.cpp fex/fex/blargg_errors.cpp diff --git a/debian/vbam-gtk.docs b/debian/vbam-gtk.docs index 6f8c587f..4cc8ef74 100644 --- a/debian/vbam-gtk.docs +++ b/debian/vbam-gtk.docs @@ -1,2 +1,2 @@ -doc/DevInfo.txt -doc/ips.htm +doc/DevInfo.txt +doc/ips.htm diff --git a/debian/vbam-gtk.install b/debian/vbam-gtk.install index 8ab49b56..a0a681a6 100644 --- a/debian/vbam-gtk.install +++ b/debian/vbam-gtk.install @@ -1,5 +1,5 @@ -usr/bin/gvbam -usr/share/icons -usr/share/vbam -usr/share/locale/*/*/gvbam.* -usr/share/applications/gvbam.desktop +usr/bin/gvbam +usr/share/icons +usr/share/vbam +usr/share/locale/*/*/gvbam.* +usr/share/applications/gvbam.desktop diff --git a/debian/vbam-gtk.menu b/debian/vbam-gtk.menu index 4f02c9d5..fcdf5a60 100644 --- a/debian/vbam-gtk.menu +++ b/debian/vbam-gtk.menu @@ -1,2 +1,2 @@ -?package(gvbam):needs="X11" section="Applications/Emulators"\ - title="VisualBoyAdvance-M" command="/usr/bin/gvbam" +?package(gvbam):needs="X11" section="Applications/Emulators"\ + title="VisualBoyAdvance-M" command="/usr/bin/gvbam" diff --git a/debian/vbam-sdl.docs b/debian/vbam-sdl.docs index 1c164a5f..7931ce79 100644 --- a/debian/vbam-sdl.docs +++ b/debian/vbam-sdl.docs @@ -1,3 +1,3 @@ -doc/DevInfo.txt -doc/ips.htm -doc/ReadMe.SDL.txt +doc/DevInfo.txt +doc/ips.htm +doc/ReadMe.SDL.txt diff --git a/debian/vbam-sdl.install b/debian/vbam-sdl.install index a400b0fe..03966292 100644 --- a/debian/vbam-sdl.install +++ b/debian/vbam-sdl.install @@ -1,2 +1,2 @@ -etc -usr/bin/vbam +etc +usr/bin/vbam diff --git a/debian/vbam-sdl.manpages b/debian/vbam-sdl.manpages index 37809c3d..968c2ea6 100644 --- a/debian/vbam-sdl.manpages +++ b/debian/vbam-sdl.manpages @@ -1 +1 @@ -debian/vbam.1 +debian/vbam.1 diff --git a/debian/vbam-wx.docs b/debian/vbam-wx.docs index 6f8c587f..4cc8ef74 100644 --- a/debian/vbam-wx.docs +++ b/debian/vbam-wx.docs @@ -1,2 +1,2 @@ -doc/DevInfo.txt -doc/ips.htm +doc/DevInfo.txt +doc/ips.htm diff --git a/debian/vbam-wx.install b/debian/vbam-wx.install index ca0059aa..81e9604a 100644 --- a/debian/vbam-wx.install +++ b/debian/vbam-wx.install @@ -1,4 +1,4 @@ -usr/bin/wxvbam -usr/share/icons -usr/share/locale/*/*/wxvbam.* -usr/share/applications/wxvbam.desktop +usr/bin/wxvbam +usr/share/icons +usr/share/locale/*/*/wxvbam.* +usr/share/applications/wxvbam.desktop diff --git a/debian/vbam-wx.menu b/debian/vbam-wx.menu index ed97c7ed..cc7b556d 100644 --- a/debian/vbam-wx.menu +++ b/debian/vbam-wx.menu @@ -1,2 +1,2 @@ -?package(vbam-wx):needs="X11" section="Applications/Emulators"\ - title="VisualBoyAdvance-M" command="/usr/bin/wxvbam" +?package(vbam-wx):needs="X11" section="Applications/Emulators"\ + title="VisualBoyAdvance-M" command="/usr/bin/wxvbam" diff --git a/fex/7z_C/CpuArch.c b/fex/7z_C/CpuArch.c index e7d7ad2d..689109ea 100644 --- a/fex/7z_C/CpuArch.c +++ b/fex/7z_C/CpuArch.c @@ -73,8 +73,8 @@ static void MyCPUID(UInt32 function, UInt32 *a, UInt32 *b, UInt32 *c, UInt32 *d) #else // Mac cross-compile compiler: - // can't find register in class 'BREG' while reloading 'asm' - // so use class 'r' and register var binding + // can't find register in class 'BREG' while reloading 'asm' + // so use class 'r' register var binding register _b asm("%bx"); __asm__ __volatile__ ( "cpuid" @@ -83,7 +83,7 @@ static void MyCPUID(UInt32 function, UInt32 *a, UInt32 *b, UInt32 *c, UInt32 *d) "=c" (*c) , "=d" (*d) : "0" (function)) ; - *b = _b; + *b = _b; #endif diff --git a/fex/7z_C/Lzma2Dec.c b/fex/7z_C/Lzma2Dec.c index f38a5d48..7ea1cc95 100644 --- a/fex/7z_C/Lzma2Dec.c +++ b/fex/7z_C/Lzma2Dec.c @@ -165,22 +165,7 @@ static void LzmaDec_UpdateWithUncompressed(CLzmaDec *p, const Byte *src, SizeT s p->processedPos += (UInt32)size; } -static -void LzmaDec_InitDicAndState(CLzmaDec *p, Bool initDic, Bool initState) -{ - p->needFlush = 1; - p->remainLen = 0; - p->tempBufSize = 0; - - if (initDic) - { - p->processedPos = 0; - p->checkDicSize = 0; - p->needInitState = 1; - } - if (initState) - p->needInitState = 1; -} +void LzmaDec_InitDicAndState(CLzmaDec *p, Bool initDic, Bool initState); SRes Lzma2Dec_DecodeToDic(CLzma2Dec *p, SizeT dicLimit, const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status) diff --git a/fex/7z_C/LzmaDec.c b/fex/7z_C/LzmaDec.c index 08966d5e..2036761b 100644 --- a/fex/7z_C/LzmaDec.c +++ b/fex/7z_C/LzmaDec.c @@ -682,7 +682,6 @@ static void LzmaDec_InitRc(CLzmaDec *p, const Byte *data) p->needFlush = 0; } -static void LzmaDec_InitDicAndState(CLzmaDec *p, Bool initDic, Bool initState) { p->needFlush = 1; diff --git a/fex/7z_C/lzma.txt b/fex/7z_C/lzma.txt index 715792d6..65932323 100644 --- a/fex/7z_C/lzma.txt +++ b/fex/7z_C/lzma.txt @@ -1,4 +1,4 @@ -LZMA SDK 4.65 +LZMA SDK 9.20 ------------- LZMA SDK provides the documentation, samples, header files, libraries, @@ -20,6 +20,10 @@ LICENSE LZMA SDK is written and placed in the public domain by Igor Pavlov. +Some code in LZMA SDK is based on public domain code from another developers: + 1) PPMd var.H (2001): Dmitry Shkarin + 2) SHA-256: Wei Dai (Crypto++ library) + LZMA SDK Contents ----------------- @@ -33,7 +37,7 @@ LZMA SDK includes: UNIX/Linux version ------------------ To compile C++ version of file->file LZMA encoding, go to directory -C++/7zip/Compress/LZMA_Alone +CPP/7zip/Bundles/LzmaCon and call make to recompile it: make -f makefile.gcc clean all @@ -49,6 +53,7 @@ lzma.txt - LZMA SDK description (this file) 7zC.txt - 7z ANSI-C Decoder description methods.txt - Compression method IDs for .7z lzma.exe - Compiled file->file LZMA encoder/decoder for Windows +7zr.exe - 7-Zip with 7z/lzma/xz support. history.txt - history of the LZMA SDK @@ -66,7 +71,7 @@ C/ - C files LzmaEnc.* - LZMA encoding LzmaLib.* - LZMA Library for DLL calling Types.h - Basic types for another .c files - Threads.* - The code for multithreading. + Threads.* - The code for multithreading. LzmaLib - LZMA Library (.DLL for Windows) @@ -86,12 +91,6 @@ CPP/ -- CPP files Compress - files related to compression/decompression - Copy - Copy coder - RangeCoder - Range Coder (special code of compression/decompression) - LZMA - LZMA compression/decompression on C++ - LZMA_Alone - file->file LZMA compression/decompression - Branch - Filters for x86, IA-64, ARM, ARM-Thumb, PowerPC and SPARC code - Archive - files related to archiving Common - common files for archive handling @@ -100,6 +99,7 @@ CPP/ -- CPP files Bundles - Modules that are bundles of other modules Alone7z - 7zr.exe: Standalone version of 7z.exe that supports only 7z/LZMA/BCJ/BCJ2 + LzmaCon - lzma.exe: LZMA compression/decompression Format7zR - 7zr.dll: Reduced version of 7za.dll: extracting/compressing to 7z/LZMA/BCJ/BCJ2 Format7zExtractR - 7zxr.dll: Reduced version of 7zxa.dll: extracting from 7z/LZMA/BCJ/BCJ2. @@ -369,8 +369,8 @@ Interface: propData - LZMA properties (5 bytes) propSize - size of propData buffer (5 bytes) finishMode - It has meaning only if the decoding reaches output limit (*destLen). - LZMA_FINISH_ANY - Decode just destLen bytes. - LZMA_FINISH_END - Stream must be finished after (*destLen). + LZMA_FINISH_ANY - Decode just destLen bytes. + LZMA_FINISH_END - Stream must be finished after (*destLen). You can use LZMA_FINISH_END, when you know that current output buffer covers last bytes of stream. alloc - Memory allocator. @@ -431,7 +431,7 @@ Memory Requirements: { ... int res = LzmaDec_DecodeToBuf(CLzmaDec *p, Byte *dest, SizeT *destLen, - const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode); + const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode); ... } @@ -527,7 +527,8 @@ static ISzAlloc g_Alloc = { SzAlloc, SzFree }; LzmaEnc_Destroy(enc, &g_Alloc, &g_Alloc); -If callback function return some error code, LzmaEnc_Encode also returns that code. +If callback function return some error code, LzmaEnc_Encode also returns that code +or it can return the code like SZ_ERROR_READ, SZ_ERROR_WRITE or SZ_ERROR_PROGRESS. Single-call RAM->RAM Compression @@ -549,8 +550,8 @@ Return code: -LZMA Defines ------------- +Defines +------- _LZMA_SIZE_OPT - Enable some optimizations in LZMA Decoder to get smaller executable code. @@ -562,6 +563,9 @@ _LZMA_UINT32_IS_ULONG - Define it if int is 16-bit on your compiler and long is _LZMA_NO_SYSTEM_SIZE_T - Define it if you don't want to use size_t type. +_7ZIP_PPMD_SUPPPORT - Define it if you don't want to support PPMD method in AMSI-C .7z decoder. + + C++ LZMA Encoder/Decoder ~~~~~~~~~~~~~~~~~~~~~~~~ C++ LZMA code use COM-like interfaces. So if you want to use it, diff --git a/fex/File_Extractor2010.vcxproj b/fex/File_Extractor2010.vcxproj index 6dfeb968..981b58d4 100644 --- a/fex/File_Extractor2010.vcxproj +++ b/fex/File_Extractor2010.vcxproj @@ -18,12 +18,10 @@ StaticLibrary - NotSet true StaticLibrary - NotSet @@ -37,10 +35,6 @@ <_ProjectFileVersion>10.0.30319.1 - $(ProjectDir)$(Platform)\$(Configuration)\ - $(ProjectDir)$(Platform)\$(Configuration)_temp\ - $(ProjectDir)$(Platform)\$(Configuration)\ - $(ProjectDir)$(Platform)\$(Configuration)_temp\ AllRules.ruleset @@ -49,24 +43,19 @@ - - $(IntDir)$(ProjectName)_BuildLog.htm - + Disabled - $(ProjectDir)..\..\dependencies\zlib;$(ProjectDir);%(AdditionalIncludeDirectories) _CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) true EnableFastChecks MultiThreadedDebug - $(IntDir)$(ProjectName).pdb EditAndContinue + $(ProjectDir)..\..\dependencies\zlib;$(ProjectDir);$(ProjectDir)7z_C;%(AdditionalIncludeDirectories) - - $(IntDir)$(ProjectName)_BuildLog.htm - + $(ProjectDir)..\..\dependencies\zlib;$(ProjectDir);%(AdditionalIncludeDirectories) _CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) @@ -80,7 +69,7 @@ true true Fast - true + false @@ -88,11 +77,8 @@ - - - + - @@ -100,6 +86,8 @@ + + @@ -114,18 +102,17 @@ + - - - - + + @@ -153,7 +140,7 @@ - + {3e03c179-8251-46e4-81f4-466f114bac63} diff --git a/fex/File_Extractor2010.vcxproj.filters b/fex/File_Extractor2010.vcxproj.filters index 22ceee7f..ea699441 100644 --- a/fex/File_Extractor2010.vcxproj.filters +++ b/fex/File_Extractor2010.vcxproj.filters @@ -1,12 +1,12 @@  - - {4f3646e4-ddc5-4030-9ba1-7629a947e5db} - {40ba751f-4ce2-4162-85a2-0c2ae2f33ae2} + + {4f3646e4-ddc5-4030-9ba1-7629a947e5db} + @@ -46,52 +46,49 @@ fex - 7z + 7z_C - 7z + 7z_C - 7z - - - 7z - - - 7z - - - 7z - - - 7z - - - 7z - - - 7z - - - 7z - - - 7z - - - 7z + 7z_C - 7z + 7z_C - - 7z + + 7z_C + + + 7z_C + + + 7z_C + + + 7z_C - 7z + 7z_C - - 7z + + 7z_C + + + 7z_C + + + 7z_C + + + 7z_C + + + 7z_C + + + 7z_C @@ -140,44 +137,41 @@ fex + + 7z_C + - 7z + 7z_C - 7z + 7z_C - 7z - - - 7z - - - 7z - - - 7z - - - 7z + 7z_C - 7z + 7z_C - 7z + 7z_C - 7z - - - 7z - - - 7z + 7z_C - 7z + 7z_C + + + 7z_C + + + 7z_C + + + 7z_C + + + 7z_C @@ -187,10 +181,10 @@ - 7z + 7z_C - 7z + 7z_C \ No newline at end of file diff --git a/po/gvbam/ca_ES.po b/po/gvbam/ca_ES.po index ecc3a92d..5b4189c0 100644 --- a/po/gvbam/ca_ES.po +++ b/po/gvbam/ca_ES.po @@ -1,733 +1,733 @@ -# This file is distributed under the same license as the VBA-M package. -# -# Translators: -# , 2011. -msgid "" -msgstr "" -"Project-Id-Version: VBA-M\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 20:50+0100\n" -"PO-Revision-Date: 2011-08-17 19:49+0000\n" -"Last-Translator: aldomann \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ../src/gtk/joypadconfig.cpp:142 -msgid " Axis " -msgstr " Eix " - -#: ../src/gtk/joypadconfig.cpp:135 -msgid " Button " -msgstr " Botó " - -#: ../src/gtk/joypadconfig.cpp:150 -msgid " Hat " -msgstr " Hat " - -#: ../src/gtk/window.cpp:1413 -msgid "%Y/%m/%d %H:%M:%S" -msgstr "%Y/%m/%d %H:%M:%S" - -#: ../src/gtk/screenarea-opengl.cpp:41 -#, c-format -msgid "*** OpenGL : Cannot open display.\n" -msgstr "*** OpenGL: no es pot obrir la pantalla.\n" - -#: ../src/gtk/window.cpp:1383 ../src/gtk/window.cpp:1428 -msgid "----/--/-- --:--:--" -msgstr "----/--/-- --:--:--" - -#: tmp/sound.ui.h:2 -#, no-c-format -msgid "100 %" -msgstr "100%" - -#: tmp/sound.ui.h:4 -#, no-c-format -msgid "200 %" -msgstr "200%" - -#: tmp/sound.ui.h:6 -#, no-c-format -msgid "25 %" -msgstr "25%" - -#: ../src/gtk/filters.cpp:61 -msgid "2xSaI" -msgstr "2xSaI" - -#: tmp/sound.ui.h:8 -#, no-c-format -msgid "50 %" -msgstr "50%" - -#: ../src/gtk/joypadconfig.cpp:165 -msgid "" -msgstr "" - -#: tmp/preferences.ui.h:1 -msgid "Appearance" -msgstr "Aparença" - -#: tmp/gameboyadvance.ui.h:1 -msgid "Bios" -msgstr "BIOS" - -#: tmp/gameboy.ui.h:1 -msgid "Boot ROM" -msgstr "ROM d'arrencada" - -#: tmp/gameboyadvance.ui.h:2 -msgid "Cartridge" -msgstr "Cartutx" - -#: tmp/cheatedit.ui.h:1 -msgid "Codes" -msgstr "Codis" - -#: tmp/cheatedit.ui.h:2 -msgid "Description" -msgstr "Descripció" - -#: tmp/display.ui.h:1 -msgid "Filters" -msgstr "Filtres" - -#: tmp/preferences.ui.h:2 -msgid "Frameskip" -msgstr "Salt de quadres" - -#: tmp/preferences.ui.h:3 -msgid "General" -msgstr "General" - -#: tmp/display.ui.h:2 -msgid "Output module" -msgstr "Mòdul de sortida" - -#: tmp/gameboyadvance.ui.h:3 -msgid "Real-Time Clock" -msgstr "Rellotge en temps real" - -#: tmp/gameboy.ui.h:2 -msgid "System and peripherals" -msgstr "Sistema i perifèrics" - -#: tmp/cheatedit.ui.h:3 -msgid "Type" -msgstr "Tipus" - -#: tmp/display.ui.h:3 -msgid "Zoom" -msgstr "Zoom" - -#: tmp/cheatlist.ui.h:1 -msgid "Add new cheat" -msgstr "Afegeix una nova trampa" - -#: ../src/gtk/filters.cpp:65 -msgid "AdvanceMAME Scale2x" -msgstr "AdvanceMAME Scale2x" - -#: ../src/gtk/window.cpp:1301 -msgid "All Gameboy Advance files" -msgstr "Tots els fitxers de Game Boy Advance" - -#: ../src/gtk/gameboyadvanceconfig.cpp:75 -msgid "All files" -msgstr "Tots els fitxers" - -#: tmp/vbam.ui.h:1 -msgid "Auto load most recent" -msgstr "Carrèga automàticament el més recent" - -#: ../src/gtk/joypadconfig.cpp:42 -msgid "Autofire A :" -msgstr "Tret automàtic A:" - -#: ../src/gtk/joypadconfig.cpp:43 -msgid "Autofire B :" -msgstr "Tret automàtic B:" - -#: tmp/gameboy.ui.h:3 tmp/gameboyadvance.ui.h:4 -msgid "Automatic" -msgstr "Automàtic" - -#: ../src/gtk/directoriesconfig.cpp:32 -msgid "Batteries :" -msgstr "Bateries:" - -#: ../src/gtk/filters.cpp:66 -msgid "Bilinear" -msgstr "Bilinear" - -#: ../src/gtk/filters.cpp:67 -msgid "Bilinear Plus" -msgstr "Bilinear Plus" - -#: tmp/gameboyadvance.ui.h:5 -msgid "Bios file : " -msgstr "Fitxer BIOS : " - -#: tmp/gameboy.ui.h:4 -msgid "Boot ROM file : " -msgstr "Fitxer de ROM d'arrencada: " - -#: ../src/gtk/joypadconfig.cpp:34 -msgid "Button A :" -msgstr "Botó A:" - -#: ../src/gtk/joypadconfig.cpp:35 -msgid "Button B :" -msgstr "Botó B:" - -#: ../src/gtk/joypadconfig.cpp:36 -msgid "Button L :" -msgstr "Botó L." - -#: ../src/gtk/joypadconfig.cpp:37 -msgid "Button R :" -msgstr "Botó R:" - -#: tmp/display.ui.h:4 -msgid "Cairo" -msgstr "Cairo" - -#: ../src/gtk/joypadconfig.cpp:41 -msgid "Capture :" -msgstr "Captura:" - -#: ../src/gtk/directoriesconfig.cpp:34 -msgid "Captures :" -msgstr "Captures:" - -#: tmp/cheatlist.ui.h:2 -msgid "Cheat list" -msgstr "Llista de trampes" - -#: ../src/gtk/cheatedit.cpp:93 -msgid "CodeBreaker Advance" -msgstr "CodeBreaker Advance" - -#: tmp/vbam.ui.h:2 -msgid "D_irectories ..." -msgstr "_Directoris..." - -#: ../src/gtk/joypadconfig.cpp:50 -msgid "Default joypad" -msgstr "Joypad predeterminat:" - -#: tmp/display.ui.h:5 -msgid "Default scale : " -msgstr "Escala predeterminada: " - -#: tmp/cheatlist.ui.h:3 -msgid "Delete all cheats" -msgstr "Esborra totes les trampes" - -#: tmp/cheatlist.ui.h:4 -msgid "Delete selected cheat" -msgstr "Esborra la trampa seleccionada" - -#: tmp/preferences.ui.h:4 -msgid "Detailed" -msgstr "Detallat" - -#: ../src/gtk/directoriesconfig.cpp:38 -msgid "Directories config" -msgstr "Configuració de directoris" - -#: tmp/gameboy.ui.h:5 -msgid "Display Super Game Boy borders" -msgstr "Mostra les vores de Super Game Boy" - -#: ../src/gtk/joypadconfig.cpp:154 -msgid "Down" -msgstr "Baix" - -#: ../src/gtk/joypadconfig.cpp:31 -msgid "Down :" -msgstr "Baix:" - -#: tmp/gameboyadvance.ui.h:6 -msgid "EEPROM" -msgstr "EEPROM" - -#: tmp/gameboyadvance.ui.h:7 -msgid "EEPROM + Sensor" -msgstr "EEPROM + Sensor" - -#: tmp/cheatedit.ui.h:4 -msgid "Edit cheat" -msgstr "Edita la trampa" - -#: tmp/gameboy.ui.h:6 -msgid "Emulate a Game Boy Printer" -msgstr "Emula una Game Boy Printer" - -#: tmp/gameboy.ui.h:7 -msgid "Emulated system : " -msgstr "Sistema emulat: " - -#: tmp/preferences.ui.h:5 -msgid "Enable automatic frame skipping" -msgstr "Habilita el salt de quadres auutomàtic" - -#: tmp/gameboyadvance.ui.h:8 -msgid "Enable real-time clock" -msgstr "Habilita rellotge en temps real" - -#: ../src/gtk/window.cpp:468 -#, c-format -msgid "Failed to init SDL: %s" -msgstr "No s'ha pogut iniciar el SDL: %s" - -#: ../src/gtk/windowcallbacks.cpp:150 ../src/gtk/windowcallbacks.cpp:312 -msgid "File already exists. Overwrite it?" -msgstr "El fitxer ja existeix. Voleu sobreescriure'l?" - -#: tmp/gameboyadvance.ui.h:9 -msgid "Flash" -msgstr "Flash" - -#: tmp/gameboyadvance.ui.h:10 -msgid "Flash size : " -msgstr "Mida de Flash: " - -#: tmp/preferences.ui.h:6 -msgid "Frameskip level : " -msgstr "Nivell de salt de quadres: " - -#: tmp/vbam.ui.h:3 -msgid "From _File ..." -msgstr "Des de _fitxer..." - -#: tmp/display.ui.h:6 -msgid "Fullscreen filter : " -msgstr "Filtre en pantalla completa: " - -#: ../src/gtk/directoriesconfig.cpp:31 -msgid "GB roms :" -msgstr "ROMs de GB:" - -#: ../src/gtk/directoriesconfig.cpp:30 -msgid "GBA roms :" -msgstr "ROMs de GBA:" - -#: tmp/gameboy.ui.h:8 -msgid "Game Boy" -msgstr "Game Boy" - -#: tmp/gameboy.ui.h:9 -msgid "Game Boy Advance" -msgstr "Game Boy Advance" - -#: tmp/gameboyadvance.ui.h:11 -msgid "Game Boy Advance settings" -msgstr "Configuració de Game Boy Advance" - -#: tmp/gameboy.ui.h:10 -msgid "Game Boy Color" -msgstr "Game Boy Color" - -#: tmp/vbam.ui.h:4 -msgid "Game Boy _Advance ..." -msgstr "Game Boy _Advance ..." - -#: tmp/gameboy.ui.h:11 -msgid "GameBoy settings" -msgstr "Configuració de Game Boy" - -#: ../src/gtk/cheatedit.cpp:108 -msgid "GameGenie" -msgstr "GameGenie" - -#: ../src/gtk/cheatedit.cpp:103 -msgid "GameShark" -msgstr "GameShark" - -#: ../src/gtk/gameboyadvanceconfig.cpp:79 -msgid "Gameboy Advance BIOS" -msgstr "BIOS de Game Boy Advance" - -#: ../src/gtk/window.cpp:1308 -msgid "Gameboy Advance files" -msgstr "Fitxers de Game Boy Advance" - -#: ../src/gtk/window.cpp:1315 -msgid "Gameboy files" -msgstr "Fitxers de Game Boy" - -#: ../src/gtk/cheatedit.cpp:88 -msgid "Gameshark Advance" -msgstr "Gameshark Advance" - -#: ../src/gtk/cheatedit.cpp:83 -msgid "Generic Code" -msgstr "Codi genèric" - -#: tmp/display.ui.h:7 -msgid "Interframe blending : " -msgstr "Barreja de trames: " - -#: ../src/gtk/filters.cpp:82 -msgid "Interframe motion blur" -msgstr "Desenfocament de moviment de trames" - -#: ../src/gtk/joypadconfig.cpp:129 -msgid "Joy " -msgstr "Joy " - -#: ../src/gtk/joypadconfig.cpp:49 -msgid "Joypad :" -msgstr "Joypad:" - -#: ../src/gtk/joypadconfig.cpp:47 -msgid "Joypad config" -msgstr "Configuració del Joypad" - -#: ../src/gtk/joypadconfig.cpp:156 -msgid "Left" -msgstr "Esquerra" - -#: ../src/gtk/joypadconfig.cpp:32 -msgid "Left :" -msgstr "Esquerra:" - -#: tmp/vbam.ui.h:5 -msgid "Loa_d state" -msgstr "_Carrega estat" - -#: ../src/gtk/windowcallbacks.cpp:84 -msgid "Load game" -msgstr "Carrega un joc" - -#: ../src/gtk/window.cpp:1341 -msgid "Loaded battery" -msgstr "Bateria carregada" - -#: ../src/gtk/main.cpp:50 -msgid "Main VBA-M options" -msgstr "Opcions principals del VBA-M" - -#: tmp/vbam.ui.h:6 -msgid "Most recent" -msgstr "Més recents" - -#: tmp/sound.ui.h:9 -msgid "Mute" -msgstr "Silencia" - -#: ../src/gtk/windowcallbacks.cpp:508 -msgid "Nintendo GameBoy Advance emulator." -msgstr "Emulador de Nintendo Game Boy Advance." - -#: ../src/gtk/filters.cpp:60 ../src/gtk/filters.cpp:80 -#: tmp/gameboyadvance.ui.h:12 tmp/preferences.ui.h:7 -msgid "None" -msgstr "Cap" - -#: tmp/vbam.ui.h:7 -msgid "Oldest slot" -msgstr "Ranura més antiga" - -#: ../src/gtk/window.cpp:1266 -msgid "Open" -msgstr "Obre" - -#: ../src/gtk/cheatlist.cpp:70 tmp/cheatlist.ui.h:5 -msgid "Open cheat list" -msgstr "Obre llista de trampes" - -#: tmp/vbam.ui.h:8 -msgid "Open rece_nt" -msgstr "Obre _recents" - -#: tmp/display.ui.h:8 -msgid "OpenGL" -msgstr "OpenGL" - -#: ../src/gtk/main.cpp:55 -msgid "Output version information." -msgstr "Informació sortint de la versió." - -#: ../src/gtk/windowcallbacks.cpp:294 -msgid "PNG image" -msgstr "Imatge PNG" - -#: tmp/vbam.ui.h:9 -msgid "Pause" -msgstr "Atura" - -#: tmp/preferences.ui.h:8 -msgid "Pause when inactive" -msgstr "Posa en pausa quan estigui inactiu" - -#: tmp/preferences.ui.h:9 -msgid "Percentage" -msgstr "Percentatge" - -#: ../src/gtk/filters.cpp:64 -msgid "Pixelate" -msgstr "Pixelar" - -#: tmp/preferences.ui.h:10 -msgid "Preferences" -msgstr "Preferències" - -#: ../src/gtk/joypadconfig.cpp:155 -msgid "Right" -msgstr "Dreta" - -#: ../src/gtk/joypadconfig.cpp:33 -msgid "Right :" -msgstr "Dreta:" - -#: tmp/gameboyadvance.ui.h:13 -msgid "SRAM" -msgstr "SRAM" - -#: tmp/vbam.ui.h:10 -msgid "S_ave state" -msgstr "_Desa estat" - -#: tmp/sound.ui.h:10 -msgid "Sample rate : " -msgstr "Freqüència de mostreig: " - -#: ../src/gtk/cheatlist.cpp:93 tmp/cheatlist.ui.h:6 -msgid "Save cheat list" -msgstr "Desa llista de trampes" - -#: ../src/gtk/windowcallbacks.cpp:117 -msgid "Save game" -msgstr "Desa el joc" - -#: ../src/gtk/windowcallbacks.cpp:277 -msgid "Save screenshot" -msgstr "Desa la captura de pantalla" - -#: tmp/gameboyadvance.ui.h:14 -msgid "Save type : " -msgstr "Tipus de desament: " - -#: ../src/gtk/window.cpp:1358 -msgid "Saved battery" -msgstr "Bateria desada" - -#: ../src/gtk/directoriesconfig.cpp:33 -msgid "Saves :" -msgstr "Partides:" - -#: ../src/gtk/filters.cpp:68 -msgid "Scanlines" -msgstr "Scanlines" - -#: tmp/vbam.ui.h:11 -msgid "Screen capt_ure..." -msgstr "Captura de _pantalla" - -#: ../src/gtk/joypadconfig.cpp:38 -msgid "Select :" -msgstr "Select:" - -#: tmp/vbam.ui.h:12 -msgid "Slot1" -msgstr "Ranura1" - -#: tmp/vbam.ui.h:13 -msgid "Slot10" -msgstr "Ranura10" - -#: tmp/vbam.ui.h:14 -msgid "Slot2" -msgstr "Ranura2" - -#: tmp/vbam.ui.h:15 -msgid "Slot3" -msgstr "Ranura3" - -#: tmp/vbam.ui.h:16 -msgid "Slot4" -msgstr "Ranura4" - -#: tmp/vbam.ui.h:17 -msgid "Slot5" -msgstr "Ranura5" - -#: tmp/vbam.ui.h:18 -msgid "Slot6" -msgstr "Ranura6" - -#: tmp/vbam.ui.h:19 -msgid "Slot7" -msgstr "Ranura7" - -#: tmp/vbam.ui.h:20 -msgid "Slot8" -msgstr "Ranura8" - -#: tmp/vbam.ui.h:21 -msgid "Slot9" -msgstr "Ranura9" - -#: ../src/gtk/filters.cpp:81 -msgid "Smart interframe blending" -msgstr "Barreja de trames intel·ligent" - -#: ../src/gtk/joypadconfig.cpp:40 -msgid "Speed :" -msgstr "Velocitat:" - -#: tmp/preferences.ui.h:11 -msgid "Speed indicator : " -msgstr "Indicador de velocitat: " - -#: ../src/gtk/joypadconfig.cpp:39 -msgid "Start :" -msgstr "Start:" - -#: ../src/gtk/filters.cpp:62 -msgid "Super 2xSaI" -msgstr "Super 2xSaI" - -#: ../src/gtk/filters.cpp:63 -msgid "Super Eagle" -msgstr "Super Eagle" - -#: tmp/gameboy.ui.h:12 -msgid "Super Game Boy" -msgstr "Super Game Boy" - -#: tmp/gameboy.ui.h:13 -msgid "Super Game Boy 2" -msgstr "Super Game Boy 2" - -#: ../src/gtk/filters.cpp:69 -msgid "TV Mode" -msgstr "Mode TV" - -#: tmp/vbam.ui.h:22 -msgid "To _File ..." -msgstr "Cap a _fitxer..." - -#: tmp/cheatlist.ui.h:7 -msgid "Toggle all Cheats" -msgstr "Activa totes les trampes" - -#: ../src/gtk/window.cpp:427 -#, c-format -msgid "Unable to initialize output, falling back to Cairo\n" -msgstr "No s'ha pogut iniciar la sortida, es recorrerà al Cairo.\n" - -#: ../src/gtk/window.cpp:1022 -#, c-format -msgid "Unknown file type %s" -msgstr "Tipus de fitxer desconegut %s" - -#: ../src/gtk/joypadconfig.cpp:153 -msgid "Up" -msgstr "Dalt" - -#: ../src/gtk/joypadconfig.cpp:30 -msgid "Up :" -msgstr "Dalt:" - -#: tmp/gameboy.ui.h:14 -msgid "Use a Game Boy boot ROM file" -msgstr "Utilitza un fitxer d'arrencada de Game Boy" - -#: tmp/gameboyadvance.ui.h:15 -msgid "Use a bios file" -msgstr "Utilitza un fitxer BIOS" - -#: tmp/vbam.ui.h:23 -msgid "VBA" -msgstr "VBA" - -#: ../src/gtk/main.cpp:41 ../src/gtk/windowcallbacks.cpp:506 -msgid "VBA-M" -msgstr "VBA-M" - -#: ../src/gtk/window.cpp:1159 -#, c-format -msgid "VBA-M - %d%%" -msgstr "VBA-M - %d%%" - -#: ../src/gtk/window.cpp:1164 -#, c-format -msgid "VBA-M - %d%% (%d, %d fps)" -msgstr "VBA-M - %d%% (%d, %d fps)" - -#: ../src/gtk/windowcallbacks.cpp:99 ../src/gtk/windowcallbacks.cpp:134 -msgid "VisualBoyAdvance save game" -msgstr "Desa joc de VisualBoyAdvance" - -#: ../src/gtk/main.cpp:81 -#, c-format -msgid "VisualBoyAdvance version %s [GTK+]\n" -msgstr "VisualBoyAdvance versió %s [GTK+]\n" - -#: tmp/sound.ui.h:11 -msgid "Volume : " -msgstr "Volum: " - -#: tmp/vbam.ui.h:24 -msgid "_Disable cheats" -msgstr "D_esactiva trampes" - -#: tmp/vbam.ui.h:25 -msgid "_Display ..." -msgstr "Pa_ntalla..." - -#: tmp/vbam.ui.h:26 -msgid "_Emulation" -msgstr "_Emulació" - -#: tmp/vbam.ui.h:27 -msgid "_File" -msgstr "_Fitxer" - -#: tmp/vbam.ui.h:28 -msgid "_Game Boy ..." -msgstr "_Game Boy ..." - -#: tmp/vbam.ui.h:29 -msgid "_Help" -msgstr "_Ajuda" - -#: tmp/vbam.ui.h:30 -msgid "_Joypads ..." -msgstr "_Joypads..." - -#: tmp/vbam.ui.h:31 -msgid "_List cheats ..." -msgstr "_Fes una llista de trampes..." - -#: tmp/vbam.ui.h:32 -msgid "_Options" -msgstr "_Opcions" - -#: tmp/vbam.ui.h:33 -msgid "_Preferences ..." -msgstr "_Preferències..." - -#: tmp/vbam.ui.h:34 -msgid "_Reset" -msgstr "_Reinicia" - -#: tmp/vbam.ui.h:35 -msgid "_Sound ..." -msgstr "_So..." - -#: ../src/gtk/filters.cpp:70 -msgid "hq2x" -msgstr "hq2x" - -#: ../src/gtk/filters.cpp:71 -msgid "lq2x" -msgstr "lq2x" +# This file is distributed under the same license as the VBA-M package. +# +# Translators: +# , 2011. +msgid "" +msgstr "" +"Project-Id-Version: VBA-M\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 20:50+0100\n" +"PO-Revision-Date: 2011-08-17 19:49+0000\n" +"Last-Translator: aldomann \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ../src/gtk/joypadconfig.cpp:142 +msgid " Axis " +msgstr " Eix " + +#: ../src/gtk/joypadconfig.cpp:135 +msgid " Button " +msgstr " Botó " + +#: ../src/gtk/joypadconfig.cpp:150 +msgid " Hat " +msgstr " Hat " + +#: ../src/gtk/window.cpp:1413 +msgid "%Y/%m/%d %H:%M:%S" +msgstr "%Y/%m/%d %H:%M:%S" + +#: ../src/gtk/screenarea-opengl.cpp:41 +#, c-format +msgid "*** OpenGL : Cannot open display.\n" +msgstr "*** OpenGL: no es pot obrir la pantalla.\n" + +#: ../src/gtk/window.cpp:1383 ../src/gtk/window.cpp:1428 +msgid "----/--/-- --:--:--" +msgstr "----/--/-- --:--:--" + +#: tmp/sound.ui.h:2 +#, no-c-format +msgid "100 %" +msgstr "100%" + +#: tmp/sound.ui.h:4 +#, no-c-format +msgid "200 %" +msgstr "200%" + +#: tmp/sound.ui.h:6 +#, no-c-format +msgid "25 %" +msgstr "25%" + +#: ../src/gtk/filters.cpp:61 +msgid "2xSaI" +msgstr "2xSaI" + +#: tmp/sound.ui.h:8 +#, no-c-format +msgid "50 %" +msgstr "50%" + +#: ../src/gtk/joypadconfig.cpp:165 +msgid "" +msgstr "" + +#: tmp/preferences.ui.h:1 +msgid "Appearance" +msgstr "Aparença" + +#: tmp/gameboyadvance.ui.h:1 +msgid "Bios" +msgstr "BIOS" + +#: tmp/gameboy.ui.h:1 +msgid "Boot ROM" +msgstr "ROM d'arrencada" + +#: tmp/gameboyadvance.ui.h:2 +msgid "Cartridge" +msgstr "Cartutx" + +#: tmp/cheatedit.ui.h:1 +msgid "Codes" +msgstr "Codis" + +#: tmp/cheatedit.ui.h:2 +msgid "Description" +msgstr "Descripció" + +#: tmp/display.ui.h:1 +msgid "Filters" +msgstr "Filtres" + +#: tmp/preferences.ui.h:2 +msgid "Frameskip" +msgstr "Salt de quadres" + +#: tmp/preferences.ui.h:3 +msgid "General" +msgstr "General" + +#: tmp/display.ui.h:2 +msgid "Output module" +msgstr "Mòdul de sortida" + +#: tmp/gameboyadvance.ui.h:3 +msgid "Real-Time Clock" +msgstr "Rellotge en temps real" + +#: tmp/gameboy.ui.h:2 +msgid "System and peripherals" +msgstr "Sistema i perifèrics" + +#: tmp/cheatedit.ui.h:3 +msgid "Type" +msgstr "Tipus" + +#: tmp/display.ui.h:3 +msgid "Zoom" +msgstr "Zoom" + +#: tmp/cheatlist.ui.h:1 +msgid "Add new cheat" +msgstr "Afegeix una nova trampa" + +#: ../src/gtk/filters.cpp:65 +msgid "AdvanceMAME Scale2x" +msgstr "AdvanceMAME Scale2x" + +#: ../src/gtk/window.cpp:1301 +msgid "All Gameboy Advance files" +msgstr "Tots els fitxers de Game Boy Advance" + +#: ../src/gtk/gameboyadvanceconfig.cpp:75 +msgid "All files" +msgstr "Tots els fitxers" + +#: tmp/vbam.ui.h:1 +msgid "Auto load most recent" +msgstr "Carrèga automàticament el més recent" + +#: ../src/gtk/joypadconfig.cpp:42 +msgid "Autofire A :" +msgstr "Tret automàtic A:" + +#: ../src/gtk/joypadconfig.cpp:43 +msgid "Autofire B :" +msgstr "Tret automàtic B:" + +#: tmp/gameboy.ui.h:3 tmp/gameboyadvance.ui.h:4 +msgid "Automatic" +msgstr "Automàtic" + +#: ../src/gtk/directoriesconfig.cpp:32 +msgid "Batteries :" +msgstr "Bateries:" + +#: ../src/gtk/filters.cpp:66 +msgid "Bilinear" +msgstr "Bilinear" + +#: ../src/gtk/filters.cpp:67 +msgid "Bilinear Plus" +msgstr "Bilinear Plus" + +#: tmp/gameboyadvance.ui.h:5 +msgid "Bios file : " +msgstr "Fitxer BIOS : " + +#: tmp/gameboy.ui.h:4 +msgid "Boot ROM file : " +msgstr "Fitxer de ROM d'arrencada: " + +#: ../src/gtk/joypadconfig.cpp:34 +msgid "Button A :" +msgstr "Botó A:" + +#: ../src/gtk/joypadconfig.cpp:35 +msgid "Button B :" +msgstr "Botó B:" + +#: ../src/gtk/joypadconfig.cpp:36 +msgid "Button L :" +msgstr "Botó L." + +#: ../src/gtk/joypadconfig.cpp:37 +msgid "Button R :" +msgstr "Botó R:" + +#: tmp/display.ui.h:4 +msgid "Cairo" +msgstr "Cairo" + +#: ../src/gtk/joypadconfig.cpp:41 +msgid "Capture :" +msgstr "Captura:" + +#: ../src/gtk/directoriesconfig.cpp:34 +msgid "Captures :" +msgstr "Captures:" + +#: tmp/cheatlist.ui.h:2 +msgid "Cheat list" +msgstr "Llista de trampes" + +#: ../src/gtk/cheatedit.cpp:93 +msgid "CodeBreaker Advance" +msgstr "CodeBreaker Advance" + +#: tmp/vbam.ui.h:2 +msgid "D_irectories ..." +msgstr "_Directoris..." + +#: ../src/gtk/joypadconfig.cpp:50 +msgid "Default joypad" +msgstr "Joypad predeterminat:" + +#: tmp/display.ui.h:5 +msgid "Default scale : " +msgstr "Escala predeterminada: " + +#: tmp/cheatlist.ui.h:3 +msgid "Delete all cheats" +msgstr "Esborra totes les trampes" + +#: tmp/cheatlist.ui.h:4 +msgid "Delete selected cheat" +msgstr "Esborra la trampa seleccionada" + +#: tmp/preferences.ui.h:4 +msgid "Detailed" +msgstr "Detallat" + +#: ../src/gtk/directoriesconfig.cpp:38 +msgid "Directories config" +msgstr "Configuració de directoris" + +#: tmp/gameboy.ui.h:5 +msgid "Display Super Game Boy borders" +msgstr "Mostra les vores de Super Game Boy" + +#: ../src/gtk/joypadconfig.cpp:154 +msgid "Down" +msgstr "Baix" + +#: ../src/gtk/joypadconfig.cpp:31 +msgid "Down :" +msgstr "Baix:" + +#: tmp/gameboyadvance.ui.h:6 +msgid "EEPROM" +msgstr "EEPROM" + +#: tmp/gameboyadvance.ui.h:7 +msgid "EEPROM + Sensor" +msgstr "EEPROM + Sensor" + +#: tmp/cheatedit.ui.h:4 +msgid "Edit cheat" +msgstr "Edita la trampa" + +#: tmp/gameboy.ui.h:6 +msgid "Emulate a Game Boy Printer" +msgstr "Emula una Game Boy Printer" + +#: tmp/gameboy.ui.h:7 +msgid "Emulated system : " +msgstr "Sistema emulat: " + +#: tmp/preferences.ui.h:5 +msgid "Enable automatic frame skipping" +msgstr "Habilita el salt de quadres auutomàtic" + +#: tmp/gameboyadvance.ui.h:8 +msgid "Enable real-time clock" +msgstr "Habilita rellotge en temps real" + +#: ../src/gtk/window.cpp:468 +#, c-format +msgid "Failed to init SDL: %s" +msgstr "No s'ha pogut iniciar el SDL: %s" + +#: ../src/gtk/windowcallbacks.cpp:150 ../src/gtk/windowcallbacks.cpp:312 +msgid "File already exists. Overwrite it?" +msgstr "El fitxer ja existeix. Voleu sobreescriure'l?" + +#: tmp/gameboyadvance.ui.h:9 +msgid "Flash" +msgstr "Flash" + +#: tmp/gameboyadvance.ui.h:10 +msgid "Flash size : " +msgstr "Mida de Flash: " + +#: tmp/preferences.ui.h:6 +msgid "Frameskip level : " +msgstr "Nivell de salt de quadres: " + +#: tmp/vbam.ui.h:3 +msgid "From _File ..." +msgstr "Des de _fitxer..." + +#: tmp/display.ui.h:6 +msgid "Fullscreen filter : " +msgstr "Filtre en pantalla completa: " + +#: ../src/gtk/directoriesconfig.cpp:31 +msgid "GB roms :" +msgstr "ROMs de GB:" + +#: ../src/gtk/directoriesconfig.cpp:30 +msgid "GBA roms :" +msgstr "ROMs de GBA:" + +#: tmp/gameboy.ui.h:8 +msgid "Game Boy" +msgstr "Game Boy" + +#: tmp/gameboy.ui.h:9 +msgid "Game Boy Advance" +msgstr "Game Boy Advance" + +#: tmp/gameboyadvance.ui.h:11 +msgid "Game Boy Advance settings" +msgstr "Configuració de Game Boy Advance" + +#: tmp/gameboy.ui.h:10 +msgid "Game Boy Color" +msgstr "Game Boy Color" + +#: tmp/vbam.ui.h:4 +msgid "Game Boy _Advance ..." +msgstr "Game Boy _Advance ..." + +#: tmp/gameboy.ui.h:11 +msgid "GameBoy settings" +msgstr "Configuració de Game Boy" + +#: ../src/gtk/cheatedit.cpp:108 +msgid "GameGenie" +msgstr "GameGenie" + +#: ../src/gtk/cheatedit.cpp:103 +msgid "GameShark" +msgstr "GameShark" + +#: ../src/gtk/gameboyadvanceconfig.cpp:79 +msgid "Gameboy Advance BIOS" +msgstr "BIOS de Game Boy Advance" + +#: ../src/gtk/window.cpp:1308 +msgid "Gameboy Advance files" +msgstr "Fitxers de Game Boy Advance" + +#: ../src/gtk/window.cpp:1315 +msgid "Gameboy files" +msgstr "Fitxers de Game Boy" + +#: ../src/gtk/cheatedit.cpp:88 +msgid "Gameshark Advance" +msgstr "Gameshark Advance" + +#: ../src/gtk/cheatedit.cpp:83 +msgid "Generic Code" +msgstr "Codi genèric" + +#: tmp/display.ui.h:7 +msgid "Interframe blending : " +msgstr "Barreja de trames: " + +#: ../src/gtk/filters.cpp:82 +msgid "Interframe motion blur" +msgstr "Desenfocament de moviment de trames" + +#: ../src/gtk/joypadconfig.cpp:129 +msgid "Joy " +msgstr "Joy " + +#: ../src/gtk/joypadconfig.cpp:49 +msgid "Joypad :" +msgstr "Joypad:" + +#: ../src/gtk/joypadconfig.cpp:47 +msgid "Joypad config" +msgstr "Configuració del Joypad" + +#: ../src/gtk/joypadconfig.cpp:156 +msgid "Left" +msgstr "Esquerra" + +#: ../src/gtk/joypadconfig.cpp:32 +msgid "Left :" +msgstr "Esquerra:" + +#: tmp/vbam.ui.h:5 +msgid "Loa_d state" +msgstr "_Carrega estat" + +#: ../src/gtk/windowcallbacks.cpp:84 +msgid "Load game" +msgstr "Carrega un joc" + +#: ../src/gtk/window.cpp:1341 +msgid "Loaded battery" +msgstr "Bateria carregada" + +#: ../src/gtk/main.cpp:50 +msgid "Main VBA-M options" +msgstr "Opcions principals del VBA-M" + +#: tmp/vbam.ui.h:6 +msgid "Most recent" +msgstr "Més recents" + +#: tmp/sound.ui.h:9 +msgid "Mute" +msgstr "Silencia" + +#: ../src/gtk/windowcallbacks.cpp:508 +msgid "Nintendo GameBoy Advance emulator." +msgstr "Emulador de Nintendo Game Boy Advance." + +#: ../src/gtk/filters.cpp:60 ../src/gtk/filters.cpp:80 +#: tmp/gameboyadvance.ui.h:12 tmp/preferences.ui.h:7 +msgid "None" +msgstr "Cap" + +#: tmp/vbam.ui.h:7 +msgid "Oldest slot" +msgstr "Ranura més antiga" + +#: ../src/gtk/window.cpp:1266 +msgid "Open" +msgstr "Obre" + +#: ../src/gtk/cheatlist.cpp:70 tmp/cheatlist.ui.h:5 +msgid "Open cheat list" +msgstr "Obre llista de trampes" + +#: tmp/vbam.ui.h:8 +msgid "Open rece_nt" +msgstr "Obre _recents" + +#: tmp/display.ui.h:8 +msgid "OpenGL" +msgstr "OpenGL" + +#: ../src/gtk/main.cpp:55 +msgid "Output version information." +msgstr "Informació sortint de la versió." + +#: ../src/gtk/windowcallbacks.cpp:294 +msgid "PNG image" +msgstr "Imatge PNG" + +#: tmp/vbam.ui.h:9 +msgid "Pause" +msgstr "Atura" + +#: tmp/preferences.ui.h:8 +msgid "Pause when inactive" +msgstr "Posa en pausa quan estigui inactiu" + +#: tmp/preferences.ui.h:9 +msgid "Percentage" +msgstr "Percentatge" + +#: ../src/gtk/filters.cpp:64 +msgid "Pixelate" +msgstr "Pixelar" + +#: tmp/preferences.ui.h:10 +msgid "Preferences" +msgstr "Preferències" + +#: ../src/gtk/joypadconfig.cpp:155 +msgid "Right" +msgstr "Dreta" + +#: ../src/gtk/joypadconfig.cpp:33 +msgid "Right :" +msgstr "Dreta:" + +#: tmp/gameboyadvance.ui.h:13 +msgid "SRAM" +msgstr "SRAM" + +#: tmp/vbam.ui.h:10 +msgid "S_ave state" +msgstr "_Desa estat" + +#: tmp/sound.ui.h:10 +msgid "Sample rate : " +msgstr "Freqüència de mostreig: " + +#: ../src/gtk/cheatlist.cpp:93 tmp/cheatlist.ui.h:6 +msgid "Save cheat list" +msgstr "Desa llista de trampes" + +#: ../src/gtk/windowcallbacks.cpp:117 +msgid "Save game" +msgstr "Desa el joc" + +#: ../src/gtk/windowcallbacks.cpp:277 +msgid "Save screenshot" +msgstr "Desa la captura de pantalla" + +#: tmp/gameboyadvance.ui.h:14 +msgid "Save type : " +msgstr "Tipus de desament: " + +#: ../src/gtk/window.cpp:1358 +msgid "Saved battery" +msgstr "Bateria desada" + +#: ../src/gtk/directoriesconfig.cpp:33 +msgid "Saves :" +msgstr "Partides:" + +#: ../src/gtk/filters.cpp:68 +msgid "Scanlines" +msgstr "Scanlines" + +#: tmp/vbam.ui.h:11 +msgid "Screen capt_ure..." +msgstr "Captura de _pantalla" + +#: ../src/gtk/joypadconfig.cpp:38 +msgid "Select :" +msgstr "Select:" + +#: tmp/vbam.ui.h:12 +msgid "Slot1" +msgstr "Ranura1" + +#: tmp/vbam.ui.h:13 +msgid "Slot10" +msgstr "Ranura10" + +#: tmp/vbam.ui.h:14 +msgid "Slot2" +msgstr "Ranura2" + +#: tmp/vbam.ui.h:15 +msgid "Slot3" +msgstr "Ranura3" + +#: tmp/vbam.ui.h:16 +msgid "Slot4" +msgstr "Ranura4" + +#: tmp/vbam.ui.h:17 +msgid "Slot5" +msgstr "Ranura5" + +#: tmp/vbam.ui.h:18 +msgid "Slot6" +msgstr "Ranura6" + +#: tmp/vbam.ui.h:19 +msgid "Slot7" +msgstr "Ranura7" + +#: tmp/vbam.ui.h:20 +msgid "Slot8" +msgstr "Ranura8" + +#: tmp/vbam.ui.h:21 +msgid "Slot9" +msgstr "Ranura9" + +#: ../src/gtk/filters.cpp:81 +msgid "Smart interframe blending" +msgstr "Barreja de trames intel·ligent" + +#: ../src/gtk/joypadconfig.cpp:40 +msgid "Speed :" +msgstr "Velocitat:" + +#: tmp/preferences.ui.h:11 +msgid "Speed indicator : " +msgstr "Indicador de velocitat: " + +#: ../src/gtk/joypadconfig.cpp:39 +msgid "Start :" +msgstr "Start:" + +#: ../src/gtk/filters.cpp:62 +msgid "Super 2xSaI" +msgstr "Super 2xSaI" + +#: ../src/gtk/filters.cpp:63 +msgid "Super Eagle" +msgstr "Super Eagle" + +#: tmp/gameboy.ui.h:12 +msgid "Super Game Boy" +msgstr "Super Game Boy" + +#: tmp/gameboy.ui.h:13 +msgid "Super Game Boy 2" +msgstr "Super Game Boy 2" + +#: ../src/gtk/filters.cpp:69 +msgid "TV Mode" +msgstr "Mode TV" + +#: tmp/vbam.ui.h:22 +msgid "To _File ..." +msgstr "Cap a _fitxer..." + +#: tmp/cheatlist.ui.h:7 +msgid "Toggle all Cheats" +msgstr "Activa totes les trampes" + +#: ../src/gtk/window.cpp:427 +#, c-format +msgid "Unable to initialize output, falling back to Cairo\n" +msgstr "No s'ha pogut iniciar la sortida, es recorrerà al Cairo.\n" + +#: ../src/gtk/window.cpp:1022 +#, c-format +msgid "Unknown file type %s" +msgstr "Tipus de fitxer desconegut %s" + +#: ../src/gtk/joypadconfig.cpp:153 +msgid "Up" +msgstr "Dalt" + +#: ../src/gtk/joypadconfig.cpp:30 +msgid "Up :" +msgstr "Dalt:" + +#: tmp/gameboy.ui.h:14 +msgid "Use a Game Boy boot ROM file" +msgstr "Utilitza un fitxer d'arrencada de Game Boy" + +#: tmp/gameboyadvance.ui.h:15 +msgid "Use a bios file" +msgstr "Utilitza un fitxer BIOS" + +#: tmp/vbam.ui.h:23 +msgid "VBA" +msgstr "VBA" + +#: ../src/gtk/main.cpp:41 ../src/gtk/windowcallbacks.cpp:506 +msgid "VBA-M" +msgstr "VBA-M" + +#: ../src/gtk/window.cpp:1159 +#, c-format +msgid "VBA-M - %d%%" +msgstr "VBA-M - %d%%" + +#: ../src/gtk/window.cpp:1164 +#, c-format +msgid "VBA-M - %d%% (%d, %d fps)" +msgstr "VBA-M - %d%% (%d, %d fps)" + +#: ../src/gtk/windowcallbacks.cpp:99 ../src/gtk/windowcallbacks.cpp:134 +msgid "VisualBoyAdvance save game" +msgstr "Desa joc de VisualBoyAdvance" + +#: ../src/gtk/main.cpp:81 +#, c-format +msgid "VisualBoyAdvance version %s [GTK+]\n" +msgstr "VisualBoyAdvance versió %s [GTK+]\n" + +#: tmp/sound.ui.h:11 +msgid "Volume : " +msgstr "Volum: " + +#: tmp/vbam.ui.h:24 +msgid "_Disable cheats" +msgstr "D_esactiva trampes" + +#: tmp/vbam.ui.h:25 +msgid "_Display ..." +msgstr "Pa_ntalla..." + +#: tmp/vbam.ui.h:26 +msgid "_Emulation" +msgstr "_Emulació" + +#: tmp/vbam.ui.h:27 +msgid "_File" +msgstr "_Fitxer" + +#: tmp/vbam.ui.h:28 +msgid "_Game Boy ..." +msgstr "_Game Boy ..." + +#: tmp/vbam.ui.h:29 +msgid "_Help" +msgstr "_Ajuda" + +#: tmp/vbam.ui.h:30 +msgid "_Joypads ..." +msgstr "_Joypads..." + +#: tmp/vbam.ui.h:31 +msgid "_List cheats ..." +msgstr "_Fes una llista de trampes..." + +#: tmp/vbam.ui.h:32 +msgid "_Options" +msgstr "_Opcions" + +#: tmp/vbam.ui.h:33 +msgid "_Preferences ..." +msgstr "_Preferències..." + +#: tmp/vbam.ui.h:34 +msgid "_Reset" +msgstr "_Reinicia" + +#: tmp/vbam.ui.h:35 +msgid "_Sound ..." +msgstr "_So..." + +#: ../src/gtk/filters.cpp:70 +msgid "hq2x" +msgstr "hq2x" + +#: ../src/gtk/filters.cpp:71 +msgid "lq2x" +msgstr "lq2x" diff --git a/po/gvbam/cs.po b/po/gvbam/cs.po index 8f94ad2e..cb8b61fc 100644 --- a/po/gvbam/cs.po +++ b/po/gvbam/cs.po @@ -1,734 +1,734 @@ -# This file is distributed under the same license as the VBA-M package. -# -# Translators: -# , 2011. -# Sanky , 2011. -msgid "" -msgstr "" -"Project-Id-Version: VBA-M\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 20:50+0100\n" -"PO-Revision-Date: 2011-07-14 14:31+0000\n" -"Last-Translator: Sanky \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: ../src/gtk/joypadconfig.cpp:142 -msgid " Axis " -msgstr " Osa " - -#: ../src/gtk/joypadconfig.cpp:135 -msgid " Button " -msgstr " Tlačítko " - -#: ../src/gtk/joypadconfig.cpp:150 -msgid " Hat " -msgstr " Úhel " - -#: ../src/gtk/window.cpp:1413 -msgid "%Y/%m/%d %H:%M:%S" -msgstr "%d. %m. %Y %H:%M:%S" - -#: ../src/gtk/screenarea-opengl.cpp:41 -#, c-format -msgid "*** OpenGL : Cannot open display.\n" -msgstr "*** OpenGL : Nemohu otevřít display.\n" - -#: ../src/gtk/window.cpp:1383 ../src/gtk/window.cpp:1428 -msgid "----/--/-- --:--:--" -msgstr "--. --. ---- --:--:--" - -#: tmp/sound.ui.h:2 -#, no-c-format -msgid "100 %" -msgstr "100 %" - -#: tmp/sound.ui.h:4 -#, no-c-format -msgid "200 %" -msgstr "200 %" - -#: tmp/sound.ui.h:6 -#, no-c-format -msgid "25 %" -msgstr "25 %" - -#: ../src/gtk/filters.cpp:61 -msgid "2xSaI" -msgstr "2xSaI" - -#: tmp/sound.ui.h:8 -#, no-c-format -msgid "50 %" -msgstr "50 %" - -#: ../src/gtk/joypadconfig.cpp:165 -msgid "" -msgstr "" - -#: tmp/preferences.ui.h:1 -msgid "Appearance" -msgstr "Vzhled" - -#: tmp/gameboyadvance.ui.h:1 -msgid "Bios" -msgstr "Bios" - -#: tmp/gameboy.ui.h:1 -msgid "Boot ROM" -msgstr "Bootovací ROM" - -#: tmp/gameboyadvance.ui.h:2 -msgid "Cartridge" -msgstr "Cartridge" - -#: tmp/cheatedit.ui.h:1 -msgid "Codes" -msgstr "Kódy" - -#: tmp/cheatedit.ui.h:2 -msgid "Description" -msgstr "Popis" - -#: tmp/display.ui.h:1 -msgid "Filters" -msgstr "Filtry" - -#: tmp/preferences.ui.h:2 -msgid "Frameskip" -msgstr "Frameskip" - -#: tmp/preferences.ui.h:3 -msgid "General" -msgstr "Obecné" - -#: tmp/display.ui.h:2 -msgid "Output module" -msgstr "Modul pro výstup" - -#: tmp/gameboyadvance.ui.h:3 -msgid "Real-Time Clock" -msgstr "Reálný čas" - -#: tmp/gameboy.ui.h:2 -msgid "System and peripherals" -msgstr "Systém a příslušenství" - -#: tmp/cheatedit.ui.h:3 -msgid "Type" -msgstr "Typ" - -#: tmp/display.ui.h:3 -msgid "Zoom" -msgstr "Přiblížení" - -#: tmp/cheatlist.ui.h:1 -msgid "Add new cheat" -msgstr "Přidat nový cheat" - -#: ../src/gtk/filters.cpp:65 -msgid "AdvanceMAME Scale2x" -msgstr "AdvanceMAME Scale2x" - -#: ../src/gtk/window.cpp:1301 -msgid "All Gameboy Advance files" -msgstr "Všechny Gameboy Advance soubory" - -#: ../src/gtk/gameboyadvanceconfig.cpp:75 -msgid "All files" -msgstr "Všechny soubory" - -#: tmp/vbam.ui.h:1 -msgid "Auto load most recent" -msgstr "Vždy načíst nejnovější" - -#: ../src/gtk/joypadconfig.cpp:42 -msgid "Autofire A :" -msgstr "Autofire A :" - -#: ../src/gtk/joypadconfig.cpp:43 -msgid "Autofire B :" -msgstr "Autofire B :" - -#: tmp/gameboy.ui.h:3 tmp/gameboyadvance.ui.h:4 -msgid "Automatic" -msgstr "Automatický" - -#: ../src/gtk/directoriesconfig.cpp:32 -msgid "Batteries :" -msgstr "Baterie :" - -#: ../src/gtk/filters.cpp:66 -msgid "Bilinear" -msgstr "Bilineární" - -#: ../src/gtk/filters.cpp:67 -msgid "Bilinear Plus" -msgstr "Bilineární Plus" - -#: tmp/gameboyadvance.ui.h:5 -msgid "Bios file : " -msgstr "Bios soubor : " - -#: tmp/gameboy.ui.h:4 -msgid "Boot ROM file : " -msgstr "Bootovací ROM soubor : " - -#: ../src/gtk/joypadconfig.cpp:34 -msgid "Button A :" -msgstr "Tlačítko A :" - -#: ../src/gtk/joypadconfig.cpp:35 -msgid "Button B :" -msgstr "Tlačítko B :" - -#: ../src/gtk/joypadconfig.cpp:36 -msgid "Button L :" -msgstr "Tlačítko L :" - -#: ../src/gtk/joypadconfig.cpp:37 -msgid "Button R :" -msgstr "Tlačítko R :" - -#: tmp/display.ui.h:4 -msgid "Cairo" -msgstr "Cairo" - -#: ../src/gtk/joypadconfig.cpp:41 -msgid "Capture :" -msgstr "Snímek :" - -#: ../src/gtk/directoriesconfig.cpp:34 -msgid "Captures :" -msgstr "Snímky :" - -#: tmp/cheatlist.ui.h:2 -msgid "Cheat list" -msgstr "Seznam cheatů" - -#: ../src/gtk/cheatedit.cpp:93 -msgid "CodeBreaker Advance" -msgstr "CodeBreaker Advance" - -#: tmp/vbam.ui.h:2 -msgid "D_irectories ..." -msgstr "Složk_y" - -#: ../src/gtk/joypadconfig.cpp:50 -msgid "Default joypad" -msgstr "Výchozí joypad" - -#: tmp/display.ui.h:5 -msgid "Default scale : " -msgstr "Výchozí velikost : " - -#: tmp/cheatlist.ui.h:3 -msgid "Delete all cheats" -msgstr "Smazat všechny cheaty" - -#: tmp/cheatlist.ui.h:4 -msgid "Delete selected cheat" -msgstr "Smazat vybraný cheat" - -#: tmp/preferences.ui.h:4 -msgid "Detailed" -msgstr "Detailovaný" - -#: ../src/gtk/directoriesconfig.cpp:38 -msgid "Directories config" -msgstr "Nastavení složek" - -#: tmp/gameboy.ui.h:5 -msgid "Display Super Game Boy borders" -msgstr "Zobrazovat Super Game Boy okraje" - -#: ../src/gtk/joypadconfig.cpp:154 -msgid "Down" -msgstr "Dolů" - -#: ../src/gtk/joypadconfig.cpp:31 -msgid "Down :" -msgstr "Dolů :" - -#: tmp/gameboyadvance.ui.h:6 -msgid "EEPROM" -msgstr "EEPROM" - -#: tmp/gameboyadvance.ui.h:7 -msgid "EEPROM + Sensor" -msgstr "EEPROM + Sensor" - -#: tmp/cheatedit.ui.h:4 -msgid "Edit cheat" -msgstr "Upravit cheat" - -#: tmp/gameboy.ui.h:6 -msgid "Emulate a Game Boy Printer" -msgstr "Emulovat Game Boy Printer" - -#: tmp/gameboy.ui.h:7 -msgid "Emulated system : " -msgstr "Emulovaný systém : " - -#: tmp/preferences.ui.h:5 -msgid "Enable automatic frame skipping" -msgstr "Povolit automatické přeskakování framů" - -#: tmp/gameboyadvance.ui.h:8 -msgid "Enable real-time clock" -msgstr "Povolit reálný čas" - -#: ../src/gtk/window.cpp:468 -#, c-format -msgid "Failed to init SDL: %s" -msgstr "Nelze inicializovat SDL: %s" - -#: ../src/gtk/windowcallbacks.cpp:150 ../src/gtk/windowcallbacks.cpp:312 -msgid "File already exists. Overwrite it?" -msgstr "Soubor již existuje. Přepsat ho?" - -#: tmp/gameboyadvance.ui.h:9 -msgid "Flash" -msgstr "Flash" - -#: tmp/gameboyadvance.ui.h:10 -msgid "Flash size : " -msgstr "Velikost Flashe : " - -#: tmp/preferences.ui.h:6 -msgid "Frameskip level : " -msgstr "Úroveň frameskipu : " - -#: tmp/vbam.ui.h:3 -msgid "From _File ..." -msgstr "Ze sou_boru" - -#: tmp/display.ui.h:6 -msgid "Fullscreen filter : " -msgstr "Filtr pro fullscreen : " - -#: ../src/gtk/directoriesconfig.cpp:31 -msgid "GB roms :" -msgstr "GB romky :" - -#: ../src/gtk/directoriesconfig.cpp:30 -msgid "GBA roms :" -msgstr "GBA romky :" - -#: tmp/gameboy.ui.h:8 -msgid "Game Boy" -msgstr "Game Boy" - -#: tmp/gameboy.ui.h:9 -msgid "Game Boy Advance" -msgstr "Game Boy Advance" - -#: tmp/gameboyadvance.ui.h:11 -msgid "Game Boy Advance settings" -msgstr "Game Boy Advance nastavení" - -#: tmp/gameboy.ui.h:10 -msgid "Game Boy Color" -msgstr "Game Boy Color" - -#: tmp/vbam.ui.h:4 -msgid "Game Boy _Advance ..." -msgstr "Game Boy _Advance ..." - -#: tmp/gameboy.ui.h:11 -msgid "GameBoy settings" -msgstr "GameBoy nastavení" - -#: ../src/gtk/cheatedit.cpp:108 -msgid "GameGenie" -msgstr "GameGenie" - -#: ../src/gtk/cheatedit.cpp:103 -msgid "GameShark" -msgstr "GameShark" - -#: ../src/gtk/gameboyadvanceconfig.cpp:79 -msgid "Gameboy Advance BIOS" -msgstr "Gameboy Advance BIOS" - -#: ../src/gtk/window.cpp:1308 -msgid "Gameboy Advance files" -msgstr "Gameboy Advance soubory" - -#: ../src/gtk/window.cpp:1315 -msgid "Gameboy files" -msgstr "Gameboy soubory" - -#: ../src/gtk/cheatedit.cpp:88 -msgid "Gameshark Advance" -msgstr "Gameshark Advance" - -#: ../src/gtk/cheatedit.cpp:83 -msgid "Generic Code" -msgstr "Generický kód" - -#: tmp/display.ui.h:7 -msgid "Interframe blending : " -msgstr "Míšení mezisnímků : " - -#: ../src/gtk/filters.cpp:82 -msgid "Interframe motion blur" -msgstr "Mezisnímkový motion blur" - -#: ../src/gtk/joypadconfig.cpp:129 -msgid "Joy " -msgstr "Joy " - -#: ../src/gtk/joypadconfig.cpp:49 -msgid "Joypad :" -msgstr "Joypad :" - -#: ../src/gtk/joypadconfig.cpp:47 -msgid "Joypad config" -msgstr "Nastavení joypadu" - -#: ../src/gtk/joypadconfig.cpp:156 -msgid "Left" -msgstr "Doleva" - -#: ../src/gtk/joypadconfig.cpp:32 -msgid "Left :" -msgstr "Doleva :" - -#: tmp/vbam.ui.h:5 -msgid "Loa_d state" -msgstr "Načís_t uložení" - -#: ../src/gtk/windowcallbacks.cpp:84 -msgid "Load game" -msgstr "Načíst hru" - -#: ../src/gtk/window.cpp:1341 -msgid "Loaded battery" -msgstr "Načtena baterie" - -#: ../src/gtk/main.cpp:50 -msgid "Main VBA-M options" -msgstr "Hlavní možnosti VBA-M" - -#: tmp/vbam.ui.h:6 -msgid "Most recent" -msgstr "Nejnovější" - -#: tmp/sound.ui.h:9 -msgid "Mute" -msgstr "Ztlumit" - -#: ../src/gtk/windowcallbacks.cpp:508 -msgid "Nintendo GameBoy Advance emulator." -msgstr "Nintendo GameBoy Advance emulátor." - -#: ../src/gtk/filters.cpp:60 ../src/gtk/filters.cpp:80 -#: tmp/gameboyadvance.ui.h:12 tmp/preferences.ui.h:7 -msgid "None" -msgstr "Žádný" - -#: tmp/vbam.ui.h:7 -msgid "Oldest slot" -msgstr "Nejstarší slot" - -#: ../src/gtk/window.cpp:1266 -msgid "Open" -msgstr "Otevřít" - -#: ../src/gtk/cheatlist.cpp:70 tmp/cheatlist.ui.h:5 -msgid "Open cheat list" -msgstr "Otevřít seznam cheatů" - -#: tmp/vbam.ui.h:8 -msgid "Open rece_nt" -msgstr "Otevřít _nedávný" - -#: tmp/display.ui.h:8 -msgid "OpenGL" -msgstr "OpenGL" - -#: ../src/gtk/main.cpp:55 -msgid "Output version information." -msgstr "Vypisovat informace o verzi." - -#: ../src/gtk/windowcallbacks.cpp:294 -msgid "PNG image" -msgstr "PNG soubor" - -#: tmp/vbam.ui.h:9 -msgid "Pause" -msgstr "Pozastavit" - -#: tmp/preferences.ui.h:8 -msgid "Pause when inactive" -msgstr "Pozastavit při nečinnosti" - -#: tmp/preferences.ui.h:9 -msgid "Percentage" -msgstr "Percentuálně" - -#: ../src/gtk/filters.cpp:64 -msgid "Pixelate" -msgstr "Zpixelovat" - -#: tmp/preferences.ui.h:10 -msgid "Preferences" -msgstr "Možnosti" - -#: ../src/gtk/joypadconfig.cpp:155 -msgid "Right" -msgstr "Doprava" - -#: ../src/gtk/joypadconfig.cpp:33 -msgid "Right :" -msgstr "Doprava :" - -#: tmp/gameboyadvance.ui.h:13 -msgid "SRAM" -msgstr "SRAM" - -#: tmp/vbam.ui.h:10 -msgid "S_ave state" -msgstr "_Uložení" - -#: tmp/sound.ui.h:10 -msgid "Sample rate : " -msgstr "Nastavení zvuku : " - -#: ../src/gtk/cheatlist.cpp:93 tmp/cheatlist.ui.h:6 -msgid "Save cheat list" -msgstr "Uložit seznam cheatů" - -#: ../src/gtk/windowcallbacks.cpp:117 -msgid "Save game" -msgstr "Uložit hru" - -#: ../src/gtk/windowcallbacks.cpp:277 -msgid "Save screenshot" -msgstr "Uložit screenshot" - -#: tmp/gameboyadvance.ui.h:14 -msgid "Save type : " -msgstr "Typ uložení : " - -#: ../src/gtk/window.cpp:1358 -msgid "Saved battery" -msgstr "Uložená baterie" - -#: ../src/gtk/directoriesconfig.cpp:33 -msgid "Saves :" -msgstr "Uložení :" - -#: ../src/gtk/filters.cpp:68 -msgid "Scanlines" -msgstr "Scanlines" - -#: tmp/vbam.ui.h:11 -msgid "Screen capt_ure..." -msgstr "Vyf_otit obrazovku" - -#: ../src/gtk/joypadconfig.cpp:38 -msgid "Select :" -msgstr "Select :" - -#: tmp/vbam.ui.h:12 -msgid "Slot1" -msgstr "Slot1" - -#: tmp/vbam.ui.h:13 -msgid "Slot10" -msgstr "Slot10" - -#: tmp/vbam.ui.h:14 -msgid "Slot2" -msgstr "Slot2" - -#: tmp/vbam.ui.h:15 -msgid "Slot3" -msgstr "Slot3" - -#: tmp/vbam.ui.h:16 -msgid "Slot4" -msgstr "Slot4" - -#: tmp/vbam.ui.h:17 -msgid "Slot5" -msgstr "Slot5" - -#: tmp/vbam.ui.h:18 -msgid "Slot6" -msgstr "Slot6" - -#: tmp/vbam.ui.h:19 -msgid "Slot7" -msgstr "Slot7" - -#: tmp/vbam.ui.h:20 -msgid "Slot8" -msgstr "Slot8" - -#: tmp/vbam.ui.h:21 -msgid "Slot9" -msgstr "Slot9" - -#: ../src/gtk/filters.cpp:81 -msgid "Smart interframe blending" -msgstr "Chytré míšení mezisnímků" - -#: ../src/gtk/joypadconfig.cpp:40 -msgid "Speed :" -msgstr "Zrychlení :" - -#: tmp/preferences.ui.h:11 -msgid "Speed indicator : " -msgstr "Indikátor rychlosti : " - -#: ../src/gtk/joypadconfig.cpp:39 -msgid "Start :" -msgstr "Start :" - -#: ../src/gtk/filters.cpp:62 -msgid "Super 2xSaI" -msgstr "Super 2xSaI" - -#: ../src/gtk/filters.cpp:63 -msgid "Super Eagle" -msgstr "Super Eagle" - -#: tmp/gameboy.ui.h:12 -msgid "Super Game Boy" -msgstr "Super Game Boy" - -#: tmp/gameboy.ui.h:13 -msgid "Super Game Boy 2" -msgstr "Super Game Boy 2" - -#: ../src/gtk/filters.cpp:69 -msgid "TV Mode" -msgstr "TV mód" - -#: tmp/vbam.ui.h:22 -msgid "To _File ..." -msgstr "Do _souboru" - -#: tmp/cheatlist.ui.h:7 -msgid "Toggle all Cheats" -msgstr "Přepnout všechny Cheaty" - -#: ../src/gtk/window.cpp:427 -#, c-format -msgid "Unable to initialize output, falling back to Cairo\n" -msgstr "Nelze inicializovat výstup, zkouším Cairo\n" - -#: ../src/gtk/window.cpp:1022 -#, c-format -msgid "Unknown file type %s" -msgstr "Neznámý typ souboru %s" - -#: ../src/gtk/joypadconfig.cpp:153 -msgid "Up" -msgstr "Nahoru" - -#: ../src/gtk/joypadconfig.cpp:30 -msgid "Up :" -msgstr "Nahoru :" - -#: tmp/gameboy.ui.h:14 -msgid "Use a Game Boy boot ROM file" -msgstr "Použít Game Boy bootovací ROM soubor" - -#: tmp/gameboyadvance.ui.h:15 -msgid "Use a bios file" -msgstr "Použít bios soubor" - -#: tmp/vbam.ui.h:23 -msgid "VBA" -msgstr "VBA" - -#: ../src/gtk/main.cpp:41 ../src/gtk/windowcallbacks.cpp:506 -msgid "VBA-M" -msgstr "VBA-M" - -#: ../src/gtk/window.cpp:1159 -#, c-format -msgid "VBA-M - %d%%" -msgstr "VBA-M - %d%%" - -#: ../src/gtk/window.cpp:1164 -#, c-format -msgid "VBA-M - %d%% (%d, %d fps)" -msgstr "VBA-M - %d%% (%d, %d fps)" - -#: ../src/gtk/windowcallbacks.cpp:99 ../src/gtk/windowcallbacks.cpp:134 -msgid "VisualBoyAdvance save game" -msgstr "VisualBoyAdvance uložení" - -#: ../src/gtk/main.cpp:81 -#, c-format -msgid "VisualBoyAdvance version %s [GTK+]\n" -msgstr "VisualBoyAdvance verze %s [GTK+]\n" - -#: tmp/sound.ui.h:11 -msgid "Volume : " -msgstr "Hlasitost : " - -#: tmp/vbam.ui.h:24 -msgid "_Disable cheats" -msgstr "_Zakázat cheaty" - -#: tmp/vbam.ui.h:25 -msgid "_Display ..." -msgstr "_Display ..." - -#: tmp/vbam.ui.h:26 -msgid "_Emulation" -msgstr "_Emulace" - -#: tmp/vbam.ui.h:27 -msgid "_File" -msgstr "_Soubor" - -#: tmp/vbam.ui.h:28 -msgid "_Game Boy ..." -msgstr "_Game Boy ..." - -#: tmp/vbam.ui.h:29 -msgid "_Help" -msgstr "_Nápověda" - -#: tmp/vbam.ui.h:30 -msgid "_Joypads ..." -msgstr "_Joypady ..." - -#: tmp/vbam.ui.h:31 -msgid "_List cheats ..." -msgstr "_Seznam cheatů" - -#: tmp/vbam.ui.h:32 -msgid "_Options" -msgstr "_Nastavení" - -#: tmp/vbam.ui.h:33 -msgid "_Preferences ..." -msgstr "_Možnosti ..." - -#: tmp/vbam.ui.h:34 -msgid "_Reset" -msgstr "_Restartovat" - -#: tmp/vbam.ui.h:35 -msgid "_Sound ..." -msgstr "_Zvuk ..." - -#: ../src/gtk/filters.cpp:70 -msgid "hq2x" -msgstr "hq2x" - -#: ../src/gtk/filters.cpp:71 -msgid "lq2x" -msgstr "lq2x" +# This file is distributed under the same license as the VBA-M package. +# +# Translators: +# , 2011. +# Sanky , 2011. +msgid "" +msgstr "" +"Project-Id-Version: VBA-M\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 20:50+0100\n" +"PO-Revision-Date: 2011-07-14 14:31+0000\n" +"Last-Translator: Sanky \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" + +#: ../src/gtk/joypadconfig.cpp:142 +msgid " Axis " +msgstr " Osa " + +#: ../src/gtk/joypadconfig.cpp:135 +msgid " Button " +msgstr " Tlačítko " + +#: ../src/gtk/joypadconfig.cpp:150 +msgid " Hat " +msgstr " Úhel " + +#: ../src/gtk/window.cpp:1413 +msgid "%Y/%m/%d %H:%M:%S" +msgstr "%d. %m. %Y %H:%M:%S" + +#: ../src/gtk/screenarea-opengl.cpp:41 +#, c-format +msgid "*** OpenGL : Cannot open display.\n" +msgstr "*** OpenGL : Nemohu otevřít display.\n" + +#: ../src/gtk/window.cpp:1383 ../src/gtk/window.cpp:1428 +msgid "----/--/-- --:--:--" +msgstr "--. --. ---- --:--:--" + +#: tmp/sound.ui.h:2 +#, no-c-format +msgid "100 %" +msgstr "100 %" + +#: tmp/sound.ui.h:4 +#, no-c-format +msgid "200 %" +msgstr "200 %" + +#: tmp/sound.ui.h:6 +#, no-c-format +msgid "25 %" +msgstr "25 %" + +#: ../src/gtk/filters.cpp:61 +msgid "2xSaI" +msgstr "2xSaI" + +#: tmp/sound.ui.h:8 +#, no-c-format +msgid "50 %" +msgstr "50 %" + +#: ../src/gtk/joypadconfig.cpp:165 +msgid "" +msgstr "" + +#: tmp/preferences.ui.h:1 +msgid "Appearance" +msgstr "Vzhled" + +#: tmp/gameboyadvance.ui.h:1 +msgid "Bios" +msgstr "Bios" + +#: tmp/gameboy.ui.h:1 +msgid "Boot ROM" +msgstr "Bootovací ROM" + +#: tmp/gameboyadvance.ui.h:2 +msgid "Cartridge" +msgstr "Cartridge" + +#: tmp/cheatedit.ui.h:1 +msgid "Codes" +msgstr "Kódy" + +#: tmp/cheatedit.ui.h:2 +msgid "Description" +msgstr "Popis" + +#: tmp/display.ui.h:1 +msgid "Filters" +msgstr "Filtry" + +#: tmp/preferences.ui.h:2 +msgid "Frameskip" +msgstr "Frameskip" + +#: tmp/preferences.ui.h:3 +msgid "General" +msgstr "Obecné" + +#: tmp/display.ui.h:2 +msgid "Output module" +msgstr "Modul pro výstup" + +#: tmp/gameboyadvance.ui.h:3 +msgid "Real-Time Clock" +msgstr "Reálný čas" + +#: tmp/gameboy.ui.h:2 +msgid "System and peripherals" +msgstr "Systém a příslušenství" + +#: tmp/cheatedit.ui.h:3 +msgid "Type" +msgstr "Typ" + +#: tmp/display.ui.h:3 +msgid "Zoom" +msgstr "Přiblížení" + +#: tmp/cheatlist.ui.h:1 +msgid "Add new cheat" +msgstr "Přidat nový cheat" + +#: ../src/gtk/filters.cpp:65 +msgid "AdvanceMAME Scale2x" +msgstr "AdvanceMAME Scale2x" + +#: ../src/gtk/window.cpp:1301 +msgid "All Gameboy Advance files" +msgstr "Všechny Gameboy Advance soubory" + +#: ../src/gtk/gameboyadvanceconfig.cpp:75 +msgid "All files" +msgstr "Všechny soubory" + +#: tmp/vbam.ui.h:1 +msgid "Auto load most recent" +msgstr "Vždy načíst nejnovější" + +#: ../src/gtk/joypadconfig.cpp:42 +msgid "Autofire A :" +msgstr "Autofire A :" + +#: ../src/gtk/joypadconfig.cpp:43 +msgid "Autofire B :" +msgstr "Autofire B :" + +#: tmp/gameboy.ui.h:3 tmp/gameboyadvance.ui.h:4 +msgid "Automatic" +msgstr "Automatický" + +#: ../src/gtk/directoriesconfig.cpp:32 +msgid "Batteries :" +msgstr "Baterie :" + +#: ../src/gtk/filters.cpp:66 +msgid "Bilinear" +msgstr "Bilineární" + +#: ../src/gtk/filters.cpp:67 +msgid "Bilinear Plus" +msgstr "Bilineární Plus" + +#: tmp/gameboyadvance.ui.h:5 +msgid "Bios file : " +msgstr "Bios soubor : " + +#: tmp/gameboy.ui.h:4 +msgid "Boot ROM file : " +msgstr "Bootovací ROM soubor : " + +#: ../src/gtk/joypadconfig.cpp:34 +msgid "Button A :" +msgstr "Tlačítko A :" + +#: ../src/gtk/joypadconfig.cpp:35 +msgid "Button B :" +msgstr "Tlačítko B :" + +#: ../src/gtk/joypadconfig.cpp:36 +msgid "Button L :" +msgstr "Tlačítko L :" + +#: ../src/gtk/joypadconfig.cpp:37 +msgid "Button R :" +msgstr "Tlačítko R :" + +#: tmp/display.ui.h:4 +msgid "Cairo" +msgstr "Cairo" + +#: ../src/gtk/joypadconfig.cpp:41 +msgid "Capture :" +msgstr "Snímek :" + +#: ../src/gtk/directoriesconfig.cpp:34 +msgid "Captures :" +msgstr "Snímky :" + +#: tmp/cheatlist.ui.h:2 +msgid "Cheat list" +msgstr "Seznam cheatů" + +#: ../src/gtk/cheatedit.cpp:93 +msgid "CodeBreaker Advance" +msgstr "CodeBreaker Advance" + +#: tmp/vbam.ui.h:2 +msgid "D_irectories ..." +msgstr "Složk_y" + +#: ../src/gtk/joypadconfig.cpp:50 +msgid "Default joypad" +msgstr "Výchozí joypad" + +#: tmp/display.ui.h:5 +msgid "Default scale : " +msgstr "Výchozí velikost : " + +#: tmp/cheatlist.ui.h:3 +msgid "Delete all cheats" +msgstr "Smazat všechny cheaty" + +#: tmp/cheatlist.ui.h:4 +msgid "Delete selected cheat" +msgstr "Smazat vybraný cheat" + +#: tmp/preferences.ui.h:4 +msgid "Detailed" +msgstr "Detailovaný" + +#: ../src/gtk/directoriesconfig.cpp:38 +msgid "Directories config" +msgstr "Nastavení složek" + +#: tmp/gameboy.ui.h:5 +msgid "Display Super Game Boy borders" +msgstr "Zobrazovat Super Game Boy okraje" + +#: ../src/gtk/joypadconfig.cpp:154 +msgid "Down" +msgstr "Dolů" + +#: ../src/gtk/joypadconfig.cpp:31 +msgid "Down :" +msgstr "Dolů :" + +#: tmp/gameboyadvance.ui.h:6 +msgid "EEPROM" +msgstr "EEPROM" + +#: tmp/gameboyadvance.ui.h:7 +msgid "EEPROM + Sensor" +msgstr "EEPROM + Sensor" + +#: tmp/cheatedit.ui.h:4 +msgid "Edit cheat" +msgstr "Upravit cheat" + +#: tmp/gameboy.ui.h:6 +msgid "Emulate a Game Boy Printer" +msgstr "Emulovat Game Boy Printer" + +#: tmp/gameboy.ui.h:7 +msgid "Emulated system : " +msgstr "Emulovaný systém : " + +#: tmp/preferences.ui.h:5 +msgid "Enable automatic frame skipping" +msgstr "Povolit automatické přeskakování framů" + +#: tmp/gameboyadvance.ui.h:8 +msgid "Enable real-time clock" +msgstr "Povolit reálný čas" + +#: ../src/gtk/window.cpp:468 +#, c-format +msgid "Failed to init SDL: %s" +msgstr "Nelze inicializovat SDL: %s" + +#: ../src/gtk/windowcallbacks.cpp:150 ../src/gtk/windowcallbacks.cpp:312 +msgid "File already exists. Overwrite it?" +msgstr "Soubor již existuje. Přepsat ho?" + +#: tmp/gameboyadvance.ui.h:9 +msgid "Flash" +msgstr "Flash" + +#: tmp/gameboyadvance.ui.h:10 +msgid "Flash size : " +msgstr "Velikost Flashe : " + +#: tmp/preferences.ui.h:6 +msgid "Frameskip level : " +msgstr "Úroveň frameskipu : " + +#: tmp/vbam.ui.h:3 +msgid "From _File ..." +msgstr "Ze sou_boru" + +#: tmp/display.ui.h:6 +msgid "Fullscreen filter : " +msgstr "Filtr pro fullscreen : " + +#: ../src/gtk/directoriesconfig.cpp:31 +msgid "GB roms :" +msgstr "GB romky :" + +#: ../src/gtk/directoriesconfig.cpp:30 +msgid "GBA roms :" +msgstr "GBA romky :" + +#: tmp/gameboy.ui.h:8 +msgid "Game Boy" +msgstr "Game Boy" + +#: tmp/gameboy.ui.h:9 +msgid "Game Boy Advance" +msgstr "Game Boy Advance" + +#: tmp/gameboyadvance.ui.h:11 +msgid "Game Boy Advance settings" +msgstr "Game Boy Advance nastavení" + +#: tmp/gameboy.ui.h:10 +msgid "Game Boy Color" +msgstr "Game Boy Color" + +#: tmp/vbam.ui.h:4 +msgid "Game Boy _Advance ..." +msgstr "Game Boy _Advance ..." + +#: tmp/gameboy.ui.h:11 +msgid "GameBoy settings" +msgstr "GameBoy nastavení" + +#: ../src/gtk/cheatedit.cpp:108 +msgid "GameGenie" +msgstr "GameGenie" + +#: ../src/gtk/cheatedit.cpp:103 +msgid "GameShark" +msgstr "GameShark" + +#: ../src/gtk/gameboyadvanceconfig.cpp:79 +msgid "Gameboy Advance BIOS" +msgstr "Gameboy Advance BIOS" + +#: ../src/gtk/window.cpp:1308 +msgid "Gameboy Advance files" +msgstr "Gameboy Advance soubory" + +#: ../src/gtk/window.cpp:1315 +msgid "Gameboy files" +msgstr "Gameboy soubory" + +#: ../src/gtk/cheatedit.cpp:88 +msgid "Gameshark Advance" +msgstr "Gameshark Advance" + +#: ../src/gtk/cheatedit.cpp:83 +msgid "Generic Code" +msgstr "Generický kód" + +#: tmp/display.ui.h:7 +msgid "Interframe blending : " +msgstr "Míšení mezisnímků : " + +#: ../src/gtk/filters.cpp:82 +msgid "Interframe motion blur" +msgstr "Mezisnímkový motion blur" + +#: ../src/gtk/joypadconfig.cpp:129 +msgid "Joy " +msgstr "Joy " + +#: ../src/gtk/joypadconfig.cpp:49 +msgid "Joypad :" +msgstr "Joypad :" + +#: ../src/gtk/joypadconfig.cpp:47 +msgid "Joypad config" +msgstr "Nastavení joypadu" + +#: ../src/gtk/joypadconfig.cpp:156 +msgid "Left" +msgstr "Doleva" + +#: ../src/gtk/joypadconfig.cpp:32 +msgid "Left :" +msgstr "Doleva :" + +#: tmp/vbam.ui.h:5 +msgid "Loa_d state" +msgstr "Načís_t uložení" + +#: ../src/gtk/windowcallbacks.cpp:84 +msgid "Load game" +msgstr "Načíst hru" + +#: ../src/gtk/window.cpp:1341 +msgid "Loaded battery" +msgstr "Načtena baterie" + +#: ../src/gtk/main.cpp:50 +msgid "Main VBA-M options" +msgstr "Hlavní možnosti VBA-M" + +#: tmp/vbam.ui.h:6 +msgid "Most recent" +msgstr "Nejnovější" + +#: tmp/sound.ui.h:9 +msgid "Mute" +msgstr "Ztlumit" + +#: ../src/gtk/windowcallbacks.cpp:508 +msgid "Nintendo GameBoy Advance emulator." +msgstr "Nintendo GameBoy Advance emulátor." + +#: ../src/gtk/filters.cpp:60 ../src/gtk/filters.cpp:80 +#: tmp/gameboyadvance.ui.h:12 tmp/preferences.ui.h:7 +msgid "None" +msgstr "Žádný" + +#: tmp/vbam.ui.h:7 +msgid "Oldest slot" +msgstr "Nejstarší slot" + +#: ../src/gtk/window.cpp:1266 +msgid "Open" +msgstr "Otevřít" + +#: ../src/gtk/cheatlist.cpp:70 tmp/cheatlist.ui.h:5 +msgid "Open cheat list" +msgstr "Otevřít seznam cheatů" + +#: tmp/vbam.ui.h:8 +msgid "Open rece_nt" +msgstr "Otevřít _nedávný" + +#: tmp/display.ui.h:8 +msgid "OpenGL" +msgstr "OpenGL" + +#: ../src/gtk/main.cpp:55 +msgid "Output version information." +msgstr "Vypisovat informace o verzi." + +#: ../src/gtk/windowcallbacks.cpp:294 +msgid "PNG image" +msgstr "PNG soubor" + +#: tmp/vbam.ui.h:9 +msgid "Pause" +msgstr "Pozastavit" + +#: tmp/preferences.ui.h:8 +msgid "Pause when inactive" +msgstr "Pozastavit při nečinnosti" + +#: tmp/preferences.ui.h:9 +msgid "Percentage" +msgstr "Percentuálně" + +#: ../src/gtk/filters.cpp:64 +msgid "Pixelate" +msgstr "Zpixelovat" + +#: tmp/preferences.ui.h:10 +msgid "Preferences" +msgstr "Možnosti" + +#: ../src/gtk/joypadconfig.cpp:155 +msgid "Right" +msgstr "Doprava" + +#: ../src/gtk/joypadconfig.cpp:33 +msgid "Right :" +msgstr "Doprava :" + +#: tmp/gameboyadvance.ui.h:13 +msgid "SRAM" +msgstr "SRAM" + +#: tmp/vbam.ui.h:10 +msgid "S_ave state" +msgstr "_Uložení" + +#: tmp/sound.ui.h:10 +msgid "Sample rate : " +msgstr "Nastavení zvuku : " + +#: ../src/gtk/cheatlist.cpp:93 tmp/cheatlist.ui.h:6 +msgid "Save cheat list" +msgstr "Uložit seznam cheatů" + +#: ../src/gtk/windowcallbacks.cpp:117 +msgid "Save game" +msgstr "Uložit hru" + +#: ../src/gtk/windowcallbacks.cpp:277 +msgid "Save screenshot" +msgstr "Uložit screenshot" + +#: tmp/gameboyadvance.ui.h:14 +msgid "Save type : " +msgstr "Typ uložení : " + +#: ../src/gtk/window.cpp:1358 +msgid "Saved battery" +msgstr "Uložená baterie" + +#: ../src/gtk/directoriesconfig.cpp:33 +msgid "Saves :" +msgstr "Uložení :" + +#: ../src/gtk/filters.cpp:68 +msgid "Scanlines" +msgstr "Scanlines" + +#: tmp/vbam.ui.h:11 +msgid "Screen capt_ure..." +msgstr "Vyf_otit obrazovku" + +#: ../src/gtk/joypadconfig.cpp:38 +msgid "Select :" +msgstr "Select :" + +#: tmp/vbam.ui.h:12 +msgid "Slot1" +msgstr "Slot1" + +#: tmp/vbam.ui.h:13 +msgid "Slot10" +msgstr "Slot10" + +#: tmp/vbam.ui.h:14 +msgid "Slot2" +msgstr "Slot2" + +#: tmp/vbam.ui.h:15 +msgid "Slot3" +msgstr "Slot3" + +#: tmp/vbam.ui.h:16 +msgid "Slot4" +msgstr "Slot4" + +#: tmp/vbam.ui.h:17 +msgid "Slot5" +msgstr "Slot5" + +#: tmp/vbam.ui.h:18 +msgid "Slot6" +msgstr "Slot6" + +#: tmp/vbam.ui.h:19 +msgid "Slot7" +msgstr "Slot7" + +#: tmp/vbam.ui.h:20 +msgid "Slot8" +msgstr "Slot8" + +#: tmp/vbam.ui.h:21 +msgid "Slot9" +msgstr "Slot9" + +#: ../src/gtk/filters.cpp:81 +msgid "Smart interframe blending" +msgstr "Chytré míšení mezisnímků" + +#: ../src/gtk/joypadconfig.cpp:40 +msgid "Speed :" +msgstr "Zrychlení :" + +#: tmp/preferences.ui.h:11 +msgid "Speed indicator : " +msgstr "Indikátor rychlosti : " + +#: ../src/gtk/joypadconfig.cpp:39 +msgid "Start :" +msgstr "Start :" + +#: ../src/gtk/filters.cpp:62 +msgid "Super 2xSaI" +msgstr "Super 2xSaI" + +#: ../src/gtk/filters.cpp:63 +msgid "Super Eagle" +msgstr "Super Eagle" + +#: tmp/gameboy.ui.h:12 +msgid "Super Game Boy" +msgstr "Super Game Boy" + +#: tmp/gameboy.ui.h:13 +msgid "Super Game Boy 2" +msgstr "Super Game Boy 2" + +#: ../src/gtk/filters.cpp:69 +msgid "TV Mode" +msgstr "TV mód" + +#: tmp/vbam.ui.h:22 +msgid "To _File ..." +msgstr "Do _souboru" + +#: tmp/cheatlist.ui.h:7 +msgid "Toggle all Cheats" +msgstr "Přepnout všechny Cheaty" + +#: ../src/gtk/window.cpp:427 +#, c-format +msgid "Unable to initialize output, falling back to Cairo\n" +msgstr "Nelze inicializovat výstup, zkouším Cairo\n" + +#: ../src/gtk/window.cpp:1022 +#, c-format +msgid "Unknown file type %s" +msgstr "Neznámý typ souboru %s" + +#: ../src/gtk/joypadconfig.cpp:153 +msgid "Up" +msgstr "Nahoru" + +#: ../src/gtk/joypadconfig.cpp:30 +msgid "Up :" +msgstr "Nahoru :" + +#: tmp/gameboy.ui.h:14 +msgid "Use a Game Boy boot ROM file" +msgstr "Použít Game Boy bootovací ROM soubor" + +#: tmp/gameboyadvance.ui.h:15 +msgid "Use a bios file" +msgstr "Použít bios soubor" + +#: tmp/vbam.ui.h:23 +msgid "VBA" +msgstr "VBA" + +#: ../src/gtk/main.cpp:41 ../src/gtk/windowcallbacks.cpp:506 +msgid "VBA-M" +msgstr "VBA-M" + +#: ../src/gtk/window.cpp:1159 +#, c-format +msgid "VBA-M - %d%%" +msgstr "VBA-M - %d%%" + +#: ../src/gtk/window.cpp:1164 +#, c-format +msgid "VBA-M - %d%% (%d, %d fps)" +msgstr "VBA-M - %d%% (%d, %d fps)" + +#: ../src/gtk/windowcallbacks.cpp:99 ../src/gtk/windowcallbacks.cpp:134 +msgid "VisualBoyAdvance save game" +msgstr "VisualBoyAdvance uložení" + +#: ../src/gtk/main.cpp:81 +#, c-format +msgid "VisualBoyAdvance version %s [GTK+]\n" +msgstr "VisualBoyAdvance verze %s [GTK+]\n" + +#: tmp/sound.ui.h:11 +msgid "Volume : " +msgstr "Hlasitost : " + +#: tmp/vbam.ui.h:24 +msgid "_Disable cheats" +msgstr "_Zakázat cheaty" + +#: tmp/vbam.ui.h:25 +msgid "_Display ..." +msgstr "_Display ..." + +#: tmp/vbam.ui.h:26 +msgid "_Emulation" +msgstr "_Emulace" + +#: tmp/vbam.ui.h:27 +msgid "_File" +msgstr "_Soubor" + +#: tmp/vbam.ui.h:28 +msgid "_Game Boy ..." +msgstr "_Game Boy ..." + +#: tmp/vbam.ui.h:29 +msgid "_Help" +msgstr "_Nápověda" + +#: tmp/vbam.ui.h:30 +msgid "_Joypads ..." +msgstr "_Joypady ..." + +#: tmp/vbam.ui.h:31 +msgid "_List cheats ..." +msgstr "_Seznam cheatů" + +#: tmp/vbam.ui.h:32 +msgid "_Options" +msgstr "_Nastavení" + +#: tmp/vbam.ui.h:33 +msgid "_Preferences ..." +msgstr "_Možnosti ..." + +#: tmp/vbam.ui.h:34 +msgid "_Reset" +msgstr "_Restartovat" + +#: tmp/vbam.ui.h:35 +msgid "_Sound ..." +msgstr "_Zvuk ..." + +#: ../src/gtk/filters.cpp:70 +msgid "hq2x" +msgstr "hq2x" + +#: ../src/gtk/filters.cpp:71 +msgid "lq2x" +msgstr "lq2x" diff --git a/po/gvbam/de.po b/po/gvbam/de.po index c06703f5..e2fa7e79 100644 --- a/po/gvbam/de.po +++ b/po/gvbam/de.po @@ -1,735 +1,735 @@ -# This file is distributed under the same license as the VBA-M package. -# -# Translators: -# bgK , 2011. -# filmor , 2011. -# King_Bud , 2011. -msgid "" -msgstr "" -"Project-Id-Version: VBA-M\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 20:50+0100\n" -"PO-Revision-Date: 2011-04-09 12:54+0000\n" -"Last-Translator: filmor \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ../src/gtk/joypadconfig.cpp:142 -msgid " Axis " -msgstr " Achse" - -#: ../src/gtk/joypadconfig.cpp:135 -msgid " Button " -msgstr "Knopf" - -#: ../src/gtk/joypadconfig.cpp:150 -msgid " Hat " -msgstr " Ministick " - -#: ../src/gtk/window.cpp:1413 -msgid "%Y/%m/%d %H:%M:%S" -msgstr "%d.%m.%Y %H:%M:%S" - -#: ../src/gtk/screenarea-opengl.cpp:41 -#, c-format -msgid "*** OpenGL : Cannot open display.\n" -msgstr "*** OpenGL : Kann Anzeige nicht öffnen.\n" - -#: ../src/gtk/window.cpp:1383 ../src/gtk/window.cpp:1428 -msgid "----/--/-- --:--:--" -msgstr "--.--.---- --:--:--" - -#: tmp/sound.ui.h:2 -#, no-c-format -msgid "100 %" -msgstr "100 %" - -#: tmp/sound.ui.h:4 -#, no-c-format -msgid "200 %" -msgstr "200 %" - -#: tmp/sound.ui.h:6 -#, no-c-format -msgid "25 %" -msgstr "25 %" - -#: ../src/gtk/filters.cpp:61 -msgid "2xSaI" -msgstr "2xSaI" - -#: tmp/sound.ui.h:8 -#, no-c-format -msgid "50 %" -msgstr "50 %" - -#: ../src/gtk/joypadconfig.cpp:165 -msgid "" -msgstr "" - -#: tmp/preferences.ui.h:1 -msgid "Appearance" -msgstr "Erscheinungsbild" - -#: tmp/gameboyadvance.ui.h:1 -msgid "Bios" -msgstr "BIOS" - -#: tmp/gameboy.ui.h:1 -msgid "Boot ROM" -msgstr "Boot-ROM" - -#: tmp/gameboyadvance.ui.h:2 -msgid "Cartridge" -msgstr "Steckmodul" - -#: tmp/cheatedit.ui.h:1 -msgid "Codes" -msgstr "Codes" - -#: tmp/cheatedit.ui.h:2 -msgid "Description" -msgstr "Beschreibung" - -#: tmp/display.ui.h:1 -msgid "Filters" -msgstr "Filter" - -#: tmp/preferences.ui.h:2 -msgid "Frameskip" -msgstr "Bildsprung" - -#: tmp/preferences.ui.h:3 -msgid "General" -msgstr "Allgemein" - -#: tmp/display.ui.h:2 -msgid "Output module" -msgstr "Ausgabemodul" - -#: tmp/gameboyadvance.ui.h:3 -msgid "Real-Time Clock" -msgstr "Echtzeituhr" - -#: tmp/gameboy.ui.h:2 -msgid "System and peripherals" -msgstr "System und Peripheriegeräte" - -#: tmp/cheatedit.ui.h:3 -msgid "Type" -msgstr "Typ" - -#: tmp/display.ui.h:3 -msgid "Zoom" -msgstr "Zoom" - -#: tmp/cheatlist.ui.h:1 -msgid "Add new cheat" -msgstr "Neuen Cheat hinzufügen" - -#: ../src/gtk/filters.cpp:65 -msgid "AdvanceMAME Scale2x" -msgstr "AdvanceMAME Scale2x" - -#: ../src/gtk/window.cpp:1301 -msgid "All Gameboy Advance files" -msgstr "Alle Gameboy-Advance-Dateien" - -#: ../src/gtk/gameboyadvanceconfig.cpp:75 -msgid "All files" -msgstr "Alle Dateien" - -#: tmp/vbam.ui.h:1 -msgid "Auto load most recent" -msgstr "Letzten Spielstand automatisch laden" - -#: ../src/gtk/joypadconfig.cpp:42 -msgid "Autofire A :" -msgstr "Autofeuer A:" - -#: ../src/gtk/joypadconfig.cpp:43 -msgid "Autofire B :" -msgstr "Autofeuer B:" - -#: tmp/gameboy.ui.h:3 tmp/gameboyadvance.ui.h:4 -msgid "Automatic" -msgstr "Automatisch" - -#: ../src/gtk/directoriesconfig.cpp:32 -msgid "Batteries :" -msgstr "Batterie :" - -#: ../src/gtk/filters.cpp:66 -msgid "Bilinear" -msgstr "Bilinear" - -#: ../src/gtk/filters.cpp:67 -msgid "Bilinear Plus" -msgstr "Bilinear Plus" - -#: tmp/gameboyadvance.ui.h:5 -msgid "Bios file : " -msgstr "BIOS-Datei:" - -#: tmp/gameboy.ui.h:4 -msgid "Boot ROM file : " -msgstr "Boot-ROM-Datei: " - -#: ../src/gtk/joypadconfig.cpp:34 -msgid "Button A :" -msgstr "A-Knopf:" - -#: ../src/gtk/joypadconfig.cpp:35 -msgid "Button B :" -msgstr "B-Knopf:" - -#: ../src/gtk/joypadconfig.cpp:36 -msgid "Button L :" -msgstr "L-Knopf:" - -#: ../src/gtk/joypadconfig.cpp:37 -msgid "Button R :" -msgstr "R-Knopf:" - -#: tmp/display.ui.h:4 -msgid "Cairo" -msgstr "Cairo" - -#: ../src/gtk/joypadconfig.cpp:41 -msgid "Capture :" -msgstr "Aufnahme:" - -#: ../src/gtk/directoriesconfig.cpp:34 -msgid "Captures :" -msgstr "Aufnahmen :" - -#: tmp/cheatlist.ui.h:2 -msgid "Cheat list" -msgstr "Cheatliste" - -#: ../src/gtk/cheatedit.cpp:93 -msgid "CodeBreaker Advance" -msgstr "CodeBreaker Advance" - -#: tmp/vbam.ui.h:2 -msgid "D_irectories ..." -msgstr "Verze_ichnisse..." - -#: ../src/gtk/joypadconfig.cpp:50 -msgid "Default joypad" -msgstr "Standard-Joypad" - -#: tmp/display.ui.h:5 -msgid "Default scale : " -msgstr "Standardskalierung: " - -#: tmp/cheatlist.ui.h:3 -msgid "Delete all cheats" -msgstr "Alle Cheats löschen" - -#: tmp/cheatlist.ui.h:4 -msgid "Delete selected cheat" -msgstr "Ausgewählte Cheats löschen" - -#: tmp/preferences.ui.h:4 -msgid "Detailed" -msgstr "Detailliert" - -#: ../src/gtk/directoriesconfig.cpp:38 -msgid "Directories config" -msgstr "Verzeichniseinstellungen" - -#: tmp/gameboy.ui.h:5 -msgid "Display Super Game Boy borders" -msgstr "Super-GameBoy-Rahmen anzeigen" - -#: ../src/gtk/joypadconfig.cpp:154 -msgid "Down" -msgstr "Runter" - -#: ../src/gtk/joypadconfig.cpp:31 -msgid "Down :" -msgstr "Runter:" - -#: tmp/gameboyadvance.ui.h:6 -msgid "EEPROM" -msgstr "EEPROM" - -#: tmp/gameboyadvance.ui.h:7 -msgid "EEPROM + Sensor" -msgstr "EEPROM + Sensor" - -#: tmp/cheatedit.ui.h:4 -msgid "Edit cheat" -msgstr "Cheat bearbeiten" - -#: tmp/gameboy.ui.h:6 -msgid "Emulate a Game Boy Printer" -msgstr "GameBoy-Drucker emulieren" - -#: tmp/gameboy.ui.h:7 -msgid "Emulated system : " -msgstr "Emuliertes System: " - -#: tmp/preferences.ui.h:5 -msgid "Enable automatic frame skipping" -msgstr "Automatisches Bildüberspringen einschalten" - -#: tmp/gameboyadvance.ui.h:8 -msgid "Enable real-time clock" -msgstr "Echtzeituhr einschalten" - -#: ../src/gtk/window.cpp:468 -#, c-format -msgid "Failed to init SDL: %s" -msgstr "SDL konnte nicht initialisiert werden: %s" - -#: ../src/gtk/windowcallbacks.cpp:150 ../src/gtk/windowcallbacks.cpp:312 -msgid "File already exists. Overwrite it?" -msgstr "Datei existiert bereits. Überschreiben?" - -#: tmp/gameboyadvance.ui.h:9 -msgid "Flash" -msgstr "Flash" - -#: tmp/gameboyadvance.ui.h:10 -msgid "Flash size : " -msgstr "Flashgröße:" - -#: tmp/preferences.ui.h:6 -msgid "Frameskip level : " -msgstr "Bildsprungrate:" - -#: tmp/vbam.ui.h:3 -msgid "From _File ..." -msgstr "Aus _Datei ..." - -#: tmp/display.ui.h:6 -msgid "Fullscreen filter : " -msgstr "Vollbildfilter: " - -#: ../src/gtk/directoriesconfig.cpp:31 -msgid "GB roms :" -msgstr "GB Roms :" - -#: ../src/gtk/directoriesconfig.cpp:30 -msgid "GBA roms :" -msgstr "GBA Roms :" - -#: tmp/gameboy.ui.h:8 -msgid "Game Boy" -msgstr "GameBoy" - -#: tmp/gameboy.ui.h:9 -msgid "Game Boy Advance" -msgstr "GameBoy Advance" - -#: tmp/gameboyadvance.ui.h:11 -msgid "Game Boy Advance settings" -msgstr "GameBoy-Advance-Einstellungen" - -#: tmp/gameboy.ui.h:10 -msgid "Game Boy Color" -msgstr "GameBoy Color" - -#: tmp/vbam.ui.h:4 -msgid "Game Boy _Advance ..." -msgstr "GameBoy _Advance ..." - -#: tmp/gameboy.ui.h:11 -msgid "GameBoy settings" -msgstr "GameBoy-Einstellungen" - -#: ../src/gtk/cheatedit.cpp:108 -msgid "GameGenie" -msgstr "GameGenie" - -#: ../src/gtk/cheatedit.cpp:103 -msgid "GameShark" -msgstr "GameShark" - -#: ../src/gtk/gameboyadvanceconfig.cpp:79 -msgid "Gameboy Advance BIOS" -msgstr "Gameboy-Advance-BIOS" - -#: ../src/gtk/window.cpp:1308 -msgid "Gameboy Advance files" -msgstr "Gameboy-Advance-Dateien" - -#: ../src/gtk/window.cpp:1315 -msgid "Gameboy files" -msgstr "Gameboy-Dateien" - -#: ../src/gtk/cheatedit.cpp:88 -msgid "Gameshark Advance" -msgstr "Gameshark Advance" - -#: ../src/gtk/cheatedit.cpp:83 -msgid "Generic Code" -msgstr "Allgemeiner Code" - -#: tmp/display.ui.h:7 -msgid "Interframe blending : " -msgstr "Zwischenbildmischung:" - -#: ../src/gtk/filters.cpp:82 -msgid "Interframe motion blur" -msgstr "Zwischenbildbewegungsunschärfe" - -#: ../src/gtk/joypadconfig.cpp:129 -msgid "Joy " -msgstr "Steuerknüppel" - -#: ../src/gtk/joypadconfig.cpp:49 -msgid "Joypad :" -msgstr "Joypad:" - -#: ../src/gtk/joypadconfig.cpp:47 -msgid "Joypad config" -msgstr "Joypad-Konfiguration" - -#: ../src/gtk/joypadconfig.cpp:156 -msgid "Left" -msgstr "Links" - -#: ../src/gtk/joypadconfig.cpp:32 -msgid "Left :" -msgstr "Links:" - -#: tmp/vbam.ui.h:5 -msgid "Loa_d state" -msgstr "La_de Spielstand" - -#: ../src/gtk/windowcallbacks.cpp:84 -msgid "Load game" -msgstr "Spiel laden" - -#: ../src/gtk/window.cpp:1341 -msgid "Loaded battery" -msgstr "Geladene Batterie" - -#: ../src/gtk/main.cpp:50 -msgid "Main VBA-M options" -msgstr "VBA-M-Einstellungen" - -#: tmp/vbam.ui.h:6 -msgid "Most recent" -msgstr "Letzter Spielstand" - -#: tmp/sound.ui.h:9 -msgid "Mute" -msgstr "Stumm schalten" - -#: ../src/gtk/windowcallbacks.cpp:508 -msgid "Nintendo GameBoy Advance emulator." -msgstr "Nintendo GameBoy Advance Emulator." - -#: ../src/gtk/filters.cpp:60 ../src/gtk/filters.cpp:80 -#: tmp/gameboyadvance.ui.h:12 tmp/preferences.ui.h:7 -msgid "None" -msgstr "Nichts" - -#: tmp/vbam.ui.h:7 -msgid "Oldest slot" -msgstr "Ältester Platz" - -#: ../src/gtk/window.cpp:1266 -msgid "Open" -msgstr "Öffnen" - -#: ../src/gtk/cheatlist.cpp:70 tmp/cheatlist.ui.h:5 -msgid "Open cheat list" -msgstr "Cheatliste öffnen" - -#: tmp/vbam.ui.h:8 -msgid "Open rece_nt" -msgstr "Zuletzt _verwendet" - -#: tmp/display.ui.h:8 -msgid "OpenGL" -msgstr "OpenGL" - -#: ../src/gtk/main.cpp:55 -msgid "Output version information." -msgstr "Versionsinformationen ausgeben." - -#: ../src/gtk/windowcallbacks.cpp:294 -msgid "PNG image" -msgstr "PNG-Bild" - -#: tmp/vbam.ui.h:9 -msgid "Pause" -msgstr "Pause" - -#: tmp/preferences.ui.h:8 -msgid "Pause when inactive" -msgstr "Bei Inaktivität pausieren" - -#: tmp/preferences.ui.h:9 -msgid "Percentage" -msgstr "Prozentual" - -#: ../src/gtk/filters.cpp:64 -msgid "Pixelate" -msgstr "Verpixeln" - -#: tmp/preferences.ui.h:10 -msgid "Preferences" -msgstr "Einstellungen" - -#: ../src/gtk/joypadconfig.cpp:155 -msgid "Right" -msgstr "Rechts" - -#: ../src/gtk/joypadconfig.cpp:33 -msgid "Right :" -msgstr "Rechts:" - -#: tmp/gameboyadvance.ui.h:13 -msgid "SRAM" -msgstr "SRAM" - -#: tmp/vbam.ui.h:10 -msgid "S_ave state" -msgstr "S_peichere Spielstand" - -#: tmp/sound.ui.h:10 -msgid "Sample rate : " -msgstr "Abtastrate:" - -#: ../src/gtk/cheatlist.cpp:93 tmp/cheatlist.ui.h:6 -msgid "Save cheat list" -msgstr "Cheatliste speichern" - -#: ../src/gtk/windowcallbacks.cpp:117 -msgid "Save game" -msgstr "Spiel speichern" - -#: ../src/gtk/windowcallbacks.cpp:277 -msgid "Save screenshot" -msgstr "Bildschirmaufnahme speichern" - -#: tmp/gameboyadvance.ui.h:14 -msgid "Save type : " -msgstr "Speichertyp: " - -#: ../src/gtk/window.cpp:1358 -msgid "Saved battery" -msgstr "Gespeicherte Batterie" - -#: ../src/gtk/directoriesconfig.cpp:33 -msgid "Saves :" -msgstr "Speicherstände :" - -#: ../src/gtk/filters.cpp:68 -msgid "Scanlines" -msgstr "Scanlines" - -#: tmp/vbam.ui.h:11 -msgid "Screen capt_ure..." -msgstr "Bildschirma_ufnahme" - -#: ../src/gtk/joypadconfig.cpp:38 -msgid "Select :" -msgstr "Select:" - -#: tmp/vbam.ui.h:12 -msgid "Slot1" -msgstr "Platz 1" - -#: tmp/vbam.ui.h:13 -msgid "Slot10" -msgstr "Platz 10" - -#: tmp/vbam.ui.h:14 -msgid "Slot2" -msgstr "Platz 2" - -#: tmp/vbam.ui.h:15 -msgid "Slot3" -msgstr "Platz 3" - -#: tmp/vbam.ui.h:16 -msgid "Slot4" -msgstr "Platz 4" - -#: tmp/vbam.ui.h:17 -msgid "Slot5" -msgstr "Platz 5" - -#: tmp/vbam.ui.h:18 -msgid "Slot6" -msgstr "Platz 6" - -#: tmp/vbam.ui.h:19 -msgid "Slot7" -msgstr "Platz 7" - -#: tmp/vbam.ui.h:20 -msgid "Slot8" -msgstr "Platz 8" - -#: tmp/vbam.ui.h:21 -msgid "Slot9" -msgstr "Platz 9" - -#: ../src/gtk/filters.cpp:81 -msgid "Smart interframe blending" -msgstr "Schlaues Zwischenbildmischen" - -#: ../src/gtk/joypadconfig.cpp:40 -msgid "Speed :" -msgstr "Geschwindigkeit:" - -#: tmp/preferences.ui.h:11 -msgid "Speed indicator : " -msgstr "Geschwindigkeitsanzeige: " - -#: ../src/gtk/joypadconfig.cpp:39 -msgid "Start :" -msgstr "Start:" - -#: ../src/gtk/filters.cpp:62 -msgid "Super 2xSaI" -msgstr "Super 2xSaI" - -#: ../src/gtk/filters.cpp:63 -msgid "Super Eagle" -msgstr "Super Eagle" - -#: tmp/gameboy.ui.h:12 -msgid "Super Game Boy" -msgstr "Super GameBoy" - -#: tmp/gameboy.ui.h:13 -msgid "Super Game Boy 2" -msgstr "Super GameBoy 2" - -#: ../src/gtk/filters.cpp:69 -msgid "TV Mode" -msgstr "TV-Modus" - -#: tmp/vbam.ui.h:22 -msgid "To _File ..." -msgstr "In _Datei ..." - -#: tmp/cheatlist.ui.h:7 -msgid "Toggle all Cheats" -msgstr "Alle Cheats umschalten" - -#: ../src/gtk/window.cpp:427 -#, c-format -msgid "Unable to initialize output, falling back to Cairo\n" -msgstr "Ausgabe kann nicht initialisiert werden, benutze stattdessen Cairo\n" - -#: ../src/gtk/window.cpp:1022 -#, c-format -msgid "Unknown file type %s" -msgstr "Unbekannter Dateityp %s" - -#: ../src/gtk/joypadconfig.cpp:153 -msgid "Up" -msgstr "Hoch" - -#: ../src/gtk/joypadconfig.cpp:30 -msgid "Up :" -msgstr "Hoch:" - -#: tmp/gameboy.ui.h:14 -msgid "Use a Game Boy boot ROM file" -msgstr "GameBoy-Boot-ROM-Datei verwenden" - -#: tmp/gameboyadvance.ui.h:15 -msgid "Use a bios file" -msgstr "BIOS-Datei benutzen" - -#: tmp/vbam.ui.h:23 -msgid "VBA" -msgstr "VBA" - -#: ../src/gtk/main.cpp:41 ../src/gtk/windowcallbacks.cpp:506 -msgid "VBA-M" -msgstr "VBA-M" - -#: ../src/gtk/window.cpp:1159 -#, c-format -msgid "VBA-M - %d%%" -msgstr "VBA-M - %d%%" - -#: ../src/gtk/window.cpp:1164 -#, c-format -msgid "VBA-M - %d%% (%d, %d fps)" -msgstr "VBA-M - %d%% (%d, %d fps)" - -#: ../src/gtk/windowcallbacks.cpp:99 ../src/gtk/windowcallbacks.cpp:134 -msgid "VisualBoyAdvance save game" -msgstr "VisualBoyAdvance-Spielstand" - -#: ../src/gtk/main.cpp:81 -#, c-format -msgid "VisualBoyAdvance version %s [GTK+]\n" -msgstr "VisualBoyAdvance Version %s [GTK+]\n" - -#: tmp/sound.ui.h:11 -msgid "Volume : " -msgstr "Lautstärke:" - -#: tmp/vbam.ui.h:24 -msgid "_Disable cheats" -msgstr "Cheats _deaktivieren" - -#: tmp/vbam.ui.h:25 -msgid "_Display ..." -msgstr "_Anzeige..." - -#: tmp/vbam.ui.h:26 -msgid "_Emulation" -msgstr "_Emulation" - -#: tmp/vbam.ui.h:27 -msgid "_File" -msgstr "_Datei" - -#: tmp/vbam.ui.h:28 -msgid "_Game Boy ..." -msgstr "_GameBoy ..." - -#: tmp/vbam.ui.h:29 -msgid "_Help" -msgstr "_Hilfe" - -#: tmp/vbam.ui.h:30 -msgid "_Joypads ..." -msgstr "_Joypads..." - -#: tmp/vbam.ui.h:31 -msgid "_List cheats ..." -msgstr "Cheats auf_listen ..." - -#: tmp/vbam.ui.h:32 -msgid "_Options" -msgstr "_Optionen" - -#: tmp/vbam.ui.h:33 -msgid "_Preferences ..." -msgstr "_Einstellungen ..." - -#: tmp/vbam.ui.h:34 -msgid "_Reset" -msgstr "Zu_rücksetzen" - -#: tmp/vbam.ui.h:35 -msgid "_Sound ..." -msgstr "_Klang..." - -#: ../src/gtk/filters.cpp:70 -msgid "hq2x" -msgstr "hq2x" - -#: ../src/gtk/filters.cpp:71 -msgid "lq2x" -msgstr "lq2x" +# This file is distributed under the same license as the VBA-M package. +# +# Translators: +# bgK , 2011. +# filmor , 2011. +# King_Bud , 2011. +msgid "" +msgstr "" +"Project-Id-Version: VBA-M\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 20:50+0100\n" +"PO-Revision-Date: 2011-04-09 12:54+0000\n" +"Last-Translator: filmor \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ../src/gtk/joypadconfig.cpp:142 +msgid " Axis " +msgstr " Achse" + +#: ../src/gtk/joypadconfig.cpp:135 +msgid " Button " +msgstr "Knopf" + +#: ../src/gtk/joypadconfig.cpp:150 +msgid " Hat " +msgstr " Ministick " + +#: ../src/gtk/window.cpp:1413 +msgid "%Y/%m/%d %H:%M:%S" +msgstr "%d.%m.%Y %H:%M:%S" + +#: ../src/gtk/screenarea-opengl.cpp:41 +#, c-format +msgid "*** OpenGL : Cannot open display.\n" +msgstr "*** OpenGL : Kann Anzeige nicht öffnen.\n" + +#: ../src/gtk/window.cpp:1383 ../src/gtk/window.cpp:1428 +msgid "----/--/-- --:--:--" +msgstr "--.--.---- --:--:--" + +#: tmp/sound.ui.h:2 +#, no-c-format +msgid "100 %" +msgstr "100 %" + +#: tmp/sound.ui.h:4 +#, no-c-format +msgid "200 %" +msgstr "200 %" + +#: tmp/sound.ui.h:6 +#, no-c-format +msgid "25 %" +msgstr "25 %" + +#: ../src/gtk/filters.cpp:61 +msgid "2xSaI" +msgstr "2xSaI" + +#: tmp/sound.ui.h:8 +#, no-c-format +msgid "50 %" +msgstr "50 %" + +#: ../src/gtk/joypadconfig.cpp:165 +msgid "" +msgstr "" + +#: tmp/preferences.ui.h:1 +msgid "Appearance" +msgstr "Erscheinungsbild" + +#: tmp/gameboyadvance.ui.h:1 +msgid "Bios" +msgstr "BIOS" + +#: tmp/gameboy.ui.h:1 +msgid "Boot ROM" +msgstr "Boot-ROM" + +#: tmp/gameboyadvance.ui.h:2 +msgid "Cartridge" +msgstr "Steckmodul" + +#: tmp/cheatedit.ui.h:1 +msgid "Codes" +msgstr "Codes" + +#: tmp/cheatedit.ui.h:2 +msgid "Description" +msgstr "Beschreibung" + +#: tmp/display.ui.h:1 +msgid "Filters" +msgstr "Filter" + +#: tmp/preferences.ui.h:2 +msgid "Frameskip" +msgstr "Bildsprung" + +#: tmp/preferences.ui.h:3 +msgid "General" +msgstr "Allgemein" + +#: tmp/display.ui.h:2 +msgid "Output module" +msgstr "Ausgabemodul" + +#: tmp/gameboyadvance.ui.h:3 +msgid "Real-Time Clock" +msgstr "Echtzeituhr" + +#: tmp/gameboy.ui.h:2 +msgid "System and peripherals" +msgstr "System und Peripheriegeräte" + +#: tmp/cheatedit.ui.h:3 +msgid "Type" +msgstr "Typ" + +#: tmp/display.ui.h:3 +msgid "Zoom" +msgstr "Zoom" + +#: tmp/cheatlist.ui.h:1 +msgid "Add new cheat" +msgstr "Neuen Cheat hinzufügen" + +#: ../src/gtk/filters.cpp:65 +msgid "AdvanceMAME Scale2x" +msgstr "AdvanceMAME Scale2x" + +#: ../src/gtk/window.cpp:1301 +msgid "All Gameboy Advance files" +msgstr "Alle Gameboy-Advance-Dateien" + +#: ../src/gtk/gameboyadvanceconfig.cpp:75 +msgid "All files" +msgstr "Alle Dateien" + +#: tmp/vbam.ui.h:1 +msgid "Auto load most recent" +msgstr "Letzten Spielstand automatisch laden" + +#: ../src/gtk/joypadconfig.cpp:42 +msgid "Autofire A :" +msgstr "Autofeuer A:" + +#: ../src/gtk/joypadconfig.cpp:43 +msgid "Autofire B :" +msgstr "Autofeuer B:" + +#: tmp/gameboy.ui.h:3 tmp/gameboyadvance.ui.h:4 +msgid "Automatic" +msgstr "Automatisch" + +#: ../src/gtk/directoriesconfig.cpp:32 +msgid "Batteries :" +msgstr "Batterie :" + +#: ../src/gtk/filters.cpp:66 +msgid "Bilinear" +msgstr "Bilinear" + +#: ../src/gtk/filters.cpp:67 +msgid "Bilinear Plus" +msgstr "Bilinear Plus" + +#: tmp/gameboyadvance.ui.h:5 +msgid "Bios file : " +msgstr "BIOS-Datei:" + +#: tmp/gameboy.ui.h:4 +msgid "Boot ROM file : " +msgstr "Boot-ROM-Datei: " + +#: ../src/gtk/joypadconfig.cpp:34 +msgid "Button A :" +msgstr "A-Knopf:" + +#: ../src/gtk/joypadconfig.cpp:35 +msgid "Button B :" +msgstr "B-Knopf:" + +#: ../src/gtk/joypadconfig.cpp:36 +msgid "Button L :" +msgstr "L-Knopf:" + +#: ../src/gtk/joypadconfig.cpp:37 +msgid "Button R :" +msgstr "R-Knopf:" + +#: tmp/display.ui.h:4 +msgid "Cairo" +msgstr "Cairo" + +#: ../src/gtk/joypadconfig.cpp:41 +msgid "Capture :" +msgstr "Aufnahme:" + +#: ../src/gtk/directoriesconfig.cpp:34 +msgid "Captures :" +msgstr "Aufnahmen :" + +#: tmp/cheatlist.ui.h:2 +msgid "Cheat list" +msgstr "Cheatliste" + +#: ../src/gtk/cheatedit.cpp:93 +msgid "CodeBreaker Advance" +msgstr "CodeBreaker Advance" + +#: tmp/vbam.ui.h:2 +msgid "D_irectories ..." +msgstr "Verze_ichnisse..." + +#: ../src/gtk/joypadconfig.cpp:50 +msgid "Default joypad" +msgstr "Standard-Joypad" + +#: tmp/display.ui.h:5 +msgid "Default scale : " +msgstr "Standardskalierung: " + +#: tmp/cheatlist.ui.h:3 +msgid "Delete all cheats" +msgstr "Alle Cheats löschen" + +#: tmp/cheatlist.ui.h:4 +msgid "Delete selected cheat" +msgstr "Ausgewählte Cheats löschen" + +#: tmp/preferences.ui.h:4 +msgid "Detailed" +msgstr "Detailliert" + +#: ../src/gtk/directoriesconfig.cpp:38 +msgid "Directories config" +msgstr "Verzeichniseinstellungen" + +#: tmp/gameboy.ui.h:5 +msgid "Display Super Game Boy borders" +msgstr "Super-GameBoy-Rahmen anzeigen" + +#: ../src/gtk/joypadconfig.cpp:154 +msgid "Down" +msgstr "Runter" + +#: ../src/gtk/joypadconfig.cpp:31 +msgid "Down :" +msgstr "Runter:" + +#: tmp/gameboyadvance.ui.h:6 +msgid "EEPROM" +msgstr "EEPROM" + +#: tmp/gameboyadvance.ui.h:7 +msgid "EEPROM + Sensor" +msgstr "EEPROM + Sensor" + +#: tmp/cheatedit.ui.h:4 +msgid "Edit cheat" +msgstr "Cheat bearbeiten" + +#: tmp/gameboy.ui.h:6 +msgid "Emulate a Game Boy Printer" +msgstr "GameBoy-Drucker emulieren" + +#: tmp/gameboy.ui.h:7 +msgid "Emulated system : " +msgstr "Emuliertes System: " + +#: tmp/preferences.ui.h:5 +msgid "Enable automatic frame skipping" +msgstr "Automatisches Bildüberspringen einschalten" + +#: tmp/gameboyadvance.ui.h:8 +msgid "Enable real-time clock" +msgstr "Echtzeituhr einschalten" + +#: ../src/gtk/window.cpp:468 +#, c-format +msgid "Failed to init SDL: %s" +msgstr "SDL konnte nicht initialisiert werden: %s" + +#: ../src/gtk/windowcallbacks.cpp:150 ../src/gtk/windowcallbacks.cpp:312 +msgid "File already exists. Overwrite it?" +msgstr "Datei existiert bereits. Überschreiben?" + +#: tmp/gameboyadvance.ui.h:9 +msgid "Flash" +msgstr "Flash" + +#: tmp/gameboyadvance.ui.h:10 +msgid "Flash size : " +msgstr "Flashgröße:" + +#: tmp/preferences.ui.h:6 +msgid "Frameskip level : " +msgstr "Bildsprungrate:" + +#: tmp/vbam.ui.h:3 +msgid "From _File ..." +msgstr "Aus _Datei ..." + +#: tmp/display.ui.h:6 +msgid "Fullscreen filter : " +msgstr "Vollbildfilter: " + +#: ../src/gtk/directoriesconfig.cpp:31 +msgid "GB roms :" +msgstr "GB Roms :" + +#: ../src/gtk/directoriesconfig.cpp:30 +msgid "GBA roms :" +msgstr "GBA Roms :" + +#: tmp/gameboy.ui.h:8 +msgid "Game Boy" +msgstr "GameBoy" + +#: tmp/gameboy.ui.h:9 +msgid "Game Boy Advance" +msgstr "GameBoy Advance" + +#: tmp/gameboyadvance.ui.h:11 +msgid "Game Boy Advance settings" +msgstr "GameBoy-Advance-Einstellungen" + +#: tmp/gameboy.ui.h:10 +msgid "Game Boy Color" +msgstr "GameBoy Color" + +#: tmp/vbam.ui.h:4 +msgid "Game Boy _Advance ..." +msgstr "GameBoy _Advance ..." + +#: tmp/gameboy.ui.h:11 +msgid "GameBoy settings" +msgstr "GameBoy-Einstellungen" + +#: ../src/gtk/cheatedit.cpp:108 +msgid "GameGenie" +msgstr "GameGenie" + +#: ../src/gtk/cheatedit.cpp:103 +msgid "GameShark" +msgstr "GameShark" + +#: ../src/gtk/gameboyadvanceconfig.cpp:79 +msgid "Gameboy Advance BIOS" +msgstr "Gameboy-Advance-BIOS" + +#: ../src/gtk/window.cpp:1308 +msgid "Gameboy Advance files" +msgstr "Gameboy-Advance-Dateien" + +#: ../src/gtk/window.cpp:1315 +msgid "Gameboy files" +msgstr "Gameboy-Dateien" + +#: ../src/gtk/cheatedit.cpp:88 +msgid "Gameshark Advance" +msgstr "Gameshark Advance" + +#: ../src/gtk/cheatedit.cpp:83 +msgid "Generic Code" +msgstr "Allgemeiner Code" + +#: tmp/display.ui.h:7 +msgid "Interframe blending : " +msgstr "Zwischenbildmischung:" + +#: ../src/gtk/filters.cpp:82 +msgid "Interframe motion blur" +msgstr "Zwischenbildbewegungsunschärfe" + +#: ../src/gtk/joypadconfig.cpp:129 +msgid "Joy " +msgstr "Steuerknüppel" + +#: ../src/gtk/joypadconfig.cpp:49 +msgid "Joypad :" +msgstr "Joypad:" + +#: ../src/gtk/joypadconfig.cpp:47 +msgid "Joypad config" +msgstr "Joypad-Konfiguration" + +#: ../src/gtk/joypadconfig.cpp:156 +msgid "Left" +msgstr "Links" + +#: ../src/gtk/joypadconfig.cpp:32 +msgid "Left :" +msgstr "Links:" + +#: tmp/vbam.ui.h:5 +msgid "Loa_d state" +msgstr "La_de Spielstand" + +#: ../src/gtk/windowcallbacks.cpp:84 +msgid "Load game" +msgstr "Spiel laden" + +#: ../src/gtk/window.cpp:1341 +msgid "Loaded battery" +msgstr "Geladene Batterie" + +#: ../src/gtk/main.cpp:50 +msgid "Main VBA-M options" +msgstr "VBA-M-Einstellungen" + +#: tmp/vbam.ui.h:6 +msgid "Most recent" +msgstr "Letzter Spielstand" + +#: tmp/sound.ui.h:9 +msgid "Mute" +msgstr "Stumm schalten" + +#: ../src/gtk/windowcallbacks.cpp:508 +msgid "Nintendo GameBoy Advance emulator." +msgstr "Nintendo GameBoy Advance Emulator." + +#: ../src/gtk/filters.cpp:60 ../src/gtk/filters.cpp:80 +#: tmp/gameboyadvance.ui.h:12 tmp/preferences.ui.h:7 +msgid "None" +msgstr "Nichts" + +#: tmp/vbam.ui.h:7 +msgid "Oldest slot" +msgstr "Ältester Platz" + +#: ../src/gtk/window.cpp:1266 +msgid "Open" +msgstr "Öffnen" + +#: ../src/gtk/cheatlist.cpp:70 tmp/cheatlist.ui.h:5 +msgid "Open cheat list" +msgstr "Cheatliste öffnen" + +#: tmp/vbam.ui.h:8 +msgid "Open rece_nt" +msgstr "Zuletzt _verwendet" + +#: tmp/display.ui.h:8 +msgid "OpenGL" +msgstr "OpenGL" + +#: ../src/gtk/main.cpp:55 +msgid "Output version information." +msgstr "Versionsinformationen ausgeben." + +#: ../src/gtk/windowcallbacks.cpp:294 +msgid "PNG image" +msgstr "PNG-Bild" + +#: tmp/vbam.ui.h:9 +msgid "Pause" +msgstr "Pause" + +#: tmp/preferences.ui.h:8 +msgid "Pause when inactive" +msgstr "Bei Inaktivität pausieren" + +#: tmp/preferences.ui.h:9 +msgid "Percentage" +msgstr "Prozentual" + +#: ../src/gtk/filters.cpp:64 +msgid "Pixelate" +msgstr "Verpixeln" + +#: tmp/preferences.ui.h:10 +msgid "Preferences" +msgstr "Einstellungen" + +#: ../src/gtk/joypadconfig.cpp:155 +msgid "Right" +msgstr "Rechts" + +#: ../src/gtk/joypadconfig.cpp:33 +msgid "Right :" +msgstr "Rechts:" + +#: tmp/gameboyadvance.ui.h:13 +msgid "SRAM" +msgstr "SRAM" + +#: tmp/vbam.ui.h:10 +msgid "S_ave state" +msgstr "S_peichere Spielstand" + +#: tmp/sound.ui.h:10 +msgid "Sample rate : " +msgstr "Abtastrate:" + +#: ../src/gtk/cheatlist.cpp:93 tmp/cheatlist.ui.h:6 +msgid "Save cheat list" +msgstr "Cheatliste speichern" + +#: ../src/gtk/windowcallbacks.cpp:117 +msgid "Save game" +msgstr "Spiel speichern" + +#: ../src/gtk/windowcallbacks.cpp:277 +msgid "Save screenshot" +msgstr "Bildschirmaufnahme speichern" + +#: tmp/gameboyadvance.ui.h:14 +msgid "Save type : " +msgstr "Speichertyp: " + +#: ../src/gtk/window.cpp:1358 +msgid "Saved battery" +msgstr "Gespeicherte Batterie" + +#: ../src/gtk/directoriesconfig.cpp:33 +msgid "Saves :" +msgstr "Speicherstände :" + +#: ../src/gtk/filters.cpp:68 +msgid "Scanlines" +msgstr "Scanlines" + +#: tmp/vbam.ui.h:11 +msgid "Screen capt_ure..." +msgstr "Bildschirma_ufnahme" + +#: ../src/gtk/joypadconfig.cpp:38 +msgid "Select :" +msgstr "Select:" + +#: tmp/vbam.ui.h:12 +msgid "Slot1" +msgstr "Platz 1" + +#: tmp/vbam.ui.h:13 +msgid "Slot10" +msgstr "Platz 10" + +#: tmp/vbam.ui.h:14 +msgid "Slot2" +msgstr "Platz 2" + +#: tmp/vbam.ui.h:15 +msgid "Slot3" +msgstr "Platz 3" + +#: tmp/vbam.ui.h:16 +msgid "Slot4" +msgstr "Platz 4" + +#: tmp/vbam.ui.h:17 +msgid "Slot5" +msgstr "Platz 5" + +#: tmp/vbam.ui.h:18 +msgid "Slot6" +msgstr "Platz 6" + +#: tmp/vbam.ui.h:19 +msgid "Slot7" +msgstr "Platz 7" + +#: tmp/vbam.ui.h:20 +msgid "Slot8" +msgstr "Platz 8" + +#: tmp/vbam.ui.h:21 +msgid "Slot9" +msgstr "Platz 9" + +#: ../src/gtk/filters.cpp:81 +msgid "Smart interframe blending" +msgstr "Schlaues Zwischenbildmischen" + +#: ../src/gtk/joypadconfig.cpp:40 +msgid "Speed :" +msgstr "Geschwindigkeit:" + +#: tmp/preferences.ui.h:11 +msgid "Speed indicator : " +msgstr "Geschwindigkeitsanzeige: " + +#: ../src/gtk/joypadconfig.cpp:39 +msgid "Start :" +msgstr "Start:" + +#: ../src/gtk/filters.cpp:62 +msgid "Super 2xSaI" +msgstr "Super 2xSaI" + +#: ../src/gtk/filters.cpp:63 +msgid "Super Eagle" +msgstr "Super Eagle" + +#: tmp/gameboy.ui.h:12 +msgid "Super Game Boy" +msgstr "Super GameBoy" + +#: tmp/gameboy.ui.h:13 +msgid "Super Game Boy 2" +msgstr "Super GameBoy 2" + +#: ../src/gtk/filters.cpp:69 +msgid "TV Mode" +msgstr "TV-Modus" + +#: tmp/vbam.ui.h:22 +msgid "To _File ..." +msgstr "In _Datei ..." + +#: tmp/cheatlist.ui.h:7 +msgid "Toggle all Cheats" +msgstr "Alle Cheats umschalten" + +#: ../src/gtk/window.cpp:427 +#, c-format +msgid "Unable to initialize output, falling back to Cairo\n" +msgstr "Ausgabe kann nicht initialisiert werden, benutze stattdessen Cairo\n" + +#: ../src/gtk/window.cpp:1022 +#, c-format +msgid "Unknown file type %s" +msgstr "Unbekannter Dateityp %s" + +#: ../src/gtk/joypadconfig.cpp:153 +msgid "Up" +msgstr "Hoch" + +#: ../src/gtk/joypadconfig.cpp:30 +msgid "Up :" +msgstr "Hoch:" + +#: tmp/gameboy.ui.h:14 +msgid "Use a Game Boy boot ROM file" +msgstr "GameBoy-Boot-ROM-Datei verwenden" + +#: tmp/gameboyadvance.ui.h:15 +msgid "Use a bios file" +msgstr "BIOS-Datei benutzen" + +#: tmp/vbam.ui.h:23 +msgid "VBA" +msgstr "VBA" + +#: ../src/gtk/main.cpp:41 ../src/gtk/windowcallbacks.cpp:506 +msgid "VBA-M" +msgstr "VBA-M" + +#: ../src/gtk/window.cpp:1159 +#, c-format +msgid "VBA-M - %d%%" +msgstr "VBA-M - %d%%" + +#: ../src/gtk/window.cpp:1164 +#, c-format +msgid "VBA-M - %d%% (%d, %d fps)" +msgstr "VBA-M - %d%% (%d, %d fps)" + +#: ../src/gtk/windowcallbacks.cpp:99 ../src/gtk/windowcallbacks.cpp:134 +msgid "VisualBoyAdvance save game" +msgstr "VisualBoyAdvance-Spielstand" + +#: ../src/gtk/main.cpp:81 +#, c-format +msgid "VisualBoyAdvance version %s [GTK+]\n" +msgstr "VisualBoyAdvance Version %s [GTK+]\n" + +#: tmp/sound.ui.h:11 +msgid "Volume : " +msgstr "Lautstärke:" + +#: tmp/vbam.ui.h:24 +msgid "_Disable cheats" +msgstr "Cheats _deaktivieren" + +#: tmp/vbam.ui.h:25 +msgid "_Display ..." +msgstr "_Anzeige..." + +#: tmp/vbam.ui.h:26 +msgid "_Emulation" +msgstr "_Emulation" + +#: tmp/vbam.ui.h:27 +msgid "_File" +msgstr "_Datei" + +#: tmp/vbam.ui.h:28 +msgid "_Game Boy ..." +msgstr "_GameBoy ..." + +#: tmp/vbam.ui.h:29 +msgid "_Help" +msgstr "_Hilfe" + +#: tmp/vbam.ui.h:30 +msgid "_Joypads ..." +msgstr "_Joypads..." + +#: tmp/vbam.ui.h:31 +msgid "_List cheats ..." +msgstr "Cheats auf_listen ..." + +#: tmp/vbam.ui.h:32 +msgid "_Options" +msgstr "_Optionen" + +#: tmp/vbam.ui.h:33 +msgid "_Preferences ..." +msgstr "_Einstellungen ..." + +#: tmp/vbam.ui.h:34 +msgid "_Reset" +msgstr "Zu_rücksetzen" + +#: tmp/vbam.ui.h:35 +msgid "_Sound ..." +msgstr "_Klang..." + +#: ../src/gtk/filters.cpp:70 +msgid "hq2x" +msgstr "hq2x" + +#: ../src/gtk/filters.cpp:71 +msgid "lq2x" +msgstr "lq2x" diff --git a/po/gvbam/en.po b/po/gvbam/en.po index e98b95a0..f20d0bd6 100644 --- a/po/gvbam/en.po +++ b/po/gvbam/en.po @@ -1,735 +1,735 @@ -# This file is distributed under the same license as the VBA-M package. -# -msgid "" -msgstr "" -"Project-Id-Version: VBA-M\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 20:50+0100\n" -"PO-Revision-Date: 2011-02-24 20:51+0000\n" -"Last-Translator: bgK \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ../src/gtk/joypadconfig.cpp:142 -msgid " Axis " -msgstr " Axis " - -#: ../src/gtk/joypadconfig.cpp:135 -msgid " Button " -msgstr " Button " - -#: ../src/gtk/joypadconfig.cpp:150 -msgid " Hat " -msgstr " Hat " - -#: ../src/gtk/window.cpp:1413 -msgid "%Y/%m/%d %H:%M:%S" -msgstr "%Y/%m/%d %H:%M:%S" - -#: ../src/gtk/screenarea-opengl.cpp:41 -#, c-format -msgid "*** OpenGL : Cannot open display.\n" -msgstr "*** OpenGL : Cannot open display.\n" - -#: ../src/gtk/window.cpp:1383 ../src/gtk/window.cpp:1428 -msgid "----/--/-- --:--:--" -msgstr "----/--/-- --:--:--" - -#: tmp/sound.ui.h:2 -#, no-c-format -msgid "100 %" -msgstr "100 %" - -#: tmp/sound.ui.h:4 -#, no-c-format -msgid "200 %" -msgstr "200 %" - -#: tmp/sound.ui.h:6 -#, no-c-format -msgid "25 %" -msgstr "25 %" - -#: ../src/gtk/filters.cpp:61 -msgid "2xSaI" -msgstr "2xSaI" - -#: tmp/sound.ui.h:8 -#, no-c-format -msgid "50 %" -msgstr "50 %" - -#: ../src/gtk/joypadconfig.cpp:165 -msgid "" -msgstr "" - -#: tmp/preferences.ui.h:1 -msgid "Appearance" -msgstr "Appearance" - -#: tmp/gameboyadvance.ui.h:1 -msgid "Bios" -msgstr "Bios" - -#: tmp/gameboy.ui.h:1 -msgid "Boot ROM" -msgstr "Boot ROM" - -#: tmp/gameboyadvance.ui.h:2 -msgid "Cartridge" -msgstr "Cartridge" - -#: tmp/cheatedit.ui.h:1 -msgid "Codes" -msgstr "Codes" - -#: tmp/cheatedit.ui.h:2 -msgid "Description" -msgstr "Description" - -#: tmp/display.ui.h:1 -msgid "Filters" -msgstr "Filters" - -#: tmp/preferences.ui.h:2 -msgid "Frameskip" -msgstr "Frameskip" - -#: tmp/preferences.ui.h:3 -msgid "General" -msgstr "General" - -#: tmp/display.ui.h:2 -msgid "Output module" -msgstr "Output module" - -#: tmp/gameboyadvance.ui.h:3 -msgid "Real-Time Clock" -msgstr "Real-Time Clock" - -#: tmp/gameboy.ui.h:2 -msgid "System and peripherals" -msgstr "System and peripherals" - -#: tmp/cheatedit.ui.h:3 -msgid "Type" -msgstr "Type" - -#: tmp/display.ui.h:3 -msgid "Zoom" -msgstr "Zoom" - -#: tmp/cheatlist.ui.h:1 -msgid "Add new cheat" -msgstr "Add new cheat" - -#: ../src/gtk/filters.cpp:65 -msgid "AdvanceMAME Scale2x" -msgstr "AdvanceMAME Scale2x" - -#: ../src/gtk/window.cpp:1301 -msgid "All Gameboy Advance files" -msgstr "All Gameboy Advance files" - -#: ../src/gtk/gameboyadvanceconfig.cpp:75 -msgid "All files" -msgstr "All files" - -#: tmp/vbam.ui.h:1 -msgid "Auto load most recent" -msgstr "Auto load most recent" - -#: ../src/gtk/joypadconfig.cpp:42 -msgid "Autofire A :" -msgstr "Autofire A :" - -#: ../src/gtk/joypadconfig.cpp:43 -msgid "Autofire B :" -msgstr "Autofire B :" - -#: tmp/gameboy.ui.h:3 tmp/gameboyadvance.ui.h:4 -msgid "Automatic" -msgstr "Automatic" - -#: ../src/gtk/directoriesconfig.cpp:32 -msgid "Batteries :" -msgstr "Batteries :" - -#: ../src/gtk/filters.cpp:66 -msgid "Bilinear" -msgstr "Bilinear" - -#: ../src/gtk/filters.cpp:67 -msgid "Bilinear Plus" -msgstr "Bilinear Plus" - -#: tmp/gameboyadvance.ui.h:5 -msgid "Bios file : " -msgstr "Bios file : " - -#: tmp/gameboy.ui.h:4 -msgid "Boot ROM file : " -msgstr "Boot ROM file : " - -#: ../src/gtk/joypadconfig.cpp:34 -msgid "Button A :" -msgstr "Button A :" - -#: ../src/gtk/joypadconfig.cpp:35 -msgid "Button B :" -msgstr "Button B :" - -#: ../src/gtk/joypadconfig.cpp:36 -msgid "Button L :" -msgstr "Button L :" - -#: ../src/gtk/joypadconfig.cpp:37 -msgid "Button R :" -msgstr "Button R :" - -#: tmp/display.ui.h:4 -msgid "Cairo" -msgstr "Cairo" - -#: ../src/gtk/joypadconfig.cpp:41 -msgid "Capture :" -msgstr "Capture :" - -#: ../src/gtk/directoriesconfig.cpp:34 -msgid "Captures :" -msgstr "Captures :" - -#: tmp/cheatlist.ui.h:2 -msgid "Cheat list" -msgstr "Cheat list" - -#: ../src/gtk/cheatedit.cpp:93 -msgid "CodeBreaker Advance" -msgstr "CodeBreaker Advance" - -#: tmp/vbam.ui.h:2 -msgid "D_irectories ..." -msgstr "D_irectories ..." - -#: ../src/gtk/joypadconfig.cpp:50 -msgid "Default joypad" -msgstr "Default joypad" - -#: tmp/display.ui.h:5 -msgid "Default scale : " -msgstr "Default scale : " - -#: tmp/cheatlist.ui.h:3 -msgid "Delete all cheats" -msgstr "Delete all cheats" - -#: tmp/cheatlist.ui.h:4 -msgid "Delete selected cheat" -msgstr "Delete selected cheat" - -#: tmp/preferences.ui.h:4 -msgid "Detailed" -msgstr "Detailed" - -#: ../src/gtk/directoriesconfig.cpp:38 -msgid "Directories config" -msgstr "Directories config" - -#: tmp/gameboy.ui.h:5 -msgid "Display Super Game Boy borders" -msgstr "Display Super Game Boy borders" - -#: ../src/gtk/joypadconfig.cpp:154 -msgid "Down" -msgstr "Down" - -#: ../src/gtk/joypadconfig.cpp:31 -msgid "Down :" -msgstr "Down :" - -#: tmp/gameboyadvance.ui.h:6 -msgid "EEPROM" -msgstr "EEPROM" - -#: tmp/gameboyadvance.ui.h:7 -msgid "EEPROM + Sensor" -msgstr "EEPROM + Sensor" - -#: tmp/cheatedit.ui.h:4 -msgid "Edit cheat" -msgstr "Edit cheat" - -#: tmp/gameboy.ui.h:6 -msgid "Emulate a Game Boy Printer" -msgstr "Emulate a Game Boy Printer" - -#: tmp/gameboy.ui.h:7 -msgid "Emulated system : " -msgstr "Emulated system : " - -#: tmp/preferences.ui.h:5 -msgid "Enable automatic frame skipping" -msgstr "Enable automatic frame skipping" - -#: tmp/gameboyadvance.ui.h:8 -msgid "Enable real-time clock" -msgstr "Enable real-time clock" - -#: ../src/gtk/window.cpp:468 -#, c-format -msgid "Failed to init SDL: %s" -msgstr "Failed to init SDL: %s" - -#: ../src/gtk/windowcallbacks.cpp:150 ../src/gtk/windowcallbacks.cpp:312 -msgid "File already exists. Overwrite it?" -msgstr "File already exists. Overwrite it?" - -#: tmp/gameboyadvance.ui.h:9 -msgid "Flash" -msgstr "Flash" - -#: tmp/gameboyadvance.ui.h:10 -msgid "Flash size : " -msgstr "Flash size : " - -#: tmp/preferences.ui.h:6 -msgid "Frameskip level : " -msgstr "Frameskip level : " - -#: tmp/vbam.ui.h:3 -msgid "From _File ..." -msgstr "From _File ..." - -#: tmp/display.ui.h:6 -msgid "Fullscreen filter : " -msgstr "Fullscreen filter : " - -#: ../src/gtk/directoriesconfig.cpp:31 -msgid "GB roms :" -msgstr "GB roms :" - -#: ../src/gtk/directoriesconfig.cpp:30 -msgid "GBA roms :" -msgstr "GBA roms :" - -#: tmp/gameboy.ui.h:8 -msgid "Game Boy" -msgstr "Game Boy" - -#: tmp/gameboy.ui.h:9 -msgid "Game Boy Advance" -msgstr "Game Boy Advance" - -#: tmp/gameboyadvance.ui.h:11 -msgid "Game Boy Advance settings" -msgstr "Game Boy Advance settings" - -#: tmp/gameboy.ui.h:10 -msgid "Game Boy Color" -msgstr "Game Boy Color" - -#: tmp/vbam.ui.h:4 -msgid "Game Boy _Advance ..." -msgstr "Game Boy _Advance ..." - -#: tmp/gameboy.ui.h:11 -msgid "GameBoy settings" -msgstr "GameBoy settings" - -#: ../src/gtk/cheatedit.cpp:108 -msgid "GameGenie" -msgstr "" - -#: ../src/gtk/cheatedit.cpp:103 -#, fuzzy -msgid "GameShark" -msgstr "Gameshark Advance" - -#: ../src/gtk/gameboyadvanceconfig.cpp:79 -msgid "Gameboy Advance BIOS" -msgstr "Gameboy Advance BIOS" - -#: ../src/gtk/window.cpp:1308 -msgid "Gameboy Advance files" -msgstr "Gameboy Advance files" - -#: ../src/gtk/window.cpp:1315 -msgid "Gameboy files" -msgstr "Gameboy files" - -#: ../src/gtk/cheatedit.cpp:88 -msgid "Gameshark Advance" -msgstr "Gameshark Advance" - -#: ../src/gtk/cheatedit.cpp:83 -msgid "Generic Code" -msgstr "Generic Code" - -#: tmp/display.ui.h:7 -msgid "Interframe blending : " -msgstr "Interframe blending : " - -#: ../src/gtk/filters.cpp:82 -msgid "Interframe motion blur" -msgstr "Interframe motion blur" - -#: ../src/gtk/joypadconfig.cpp:129 -msgid "Joy " -msgstr "Joy " - -#: ../src/gtk/joypadconfig.cpp:49 -msgid "Joypad :" -msgstr "Joypad :" - -#: ../src/gtk/joypadconfig.cpp:47 -msgid "Joypad config" -msgstr "Joypad config" - -#: ../src/gtk/joypadconfig.cpp:156 -msgid "Left" -msgstr "Left" - -#: ../src/gtk/joypadconfig.cpp:32 -msgid "Left :" -msgstr "Left :" - -#: tmp/vbam.ui.h:5 -msgid "Loa_d state" -msgstr "Loa_d state" - -#: ../src/gtk/windowcallbacks.cpp:84 -msgid "Load game" -msgstr "Load game" - -#: ../src/gtk/window.cpp:1341 -msgid "Loaded battery" -msgstr "Loaded battery" - -#: ../src/gtk/main.cpp:50 -msgid "Main VBA-M options" -msgstr "Main VBA-M options" - -#: tmp/vbam.ui.h:6 -msgid "Most recent" -msgstr "Most recent" - -#: tmp/sound.ui.h:9 -msgid "Mute" -msgstr "Mute" - -#: ../src/gtk/windowcallbacks.cpp:508 -msgid "Nintendo GameBoy Advance emulator." -msgstr "Nintendo GameBoy Advance emulator." - -#: ../src/gtk/filters.cpp:60 ../src/gtk/filters.cpp:80 -#: tmp/gameboyadvance.ui.h:12 tmp/preferences.ui.h:7 -msgid "None" -msgstr "None" - -#: tmp/vbam.ui.h:7 -msgid "Oldest slot" -msgstr "Oldest slot" - -#: ../src/gtk/window.cpp:1266 -msgid "Open" -msgstr "Open" - -#: ../src/gtk/cheatlist.cpp:70 tmp/cheatlist.ui.h:5 -msgid "Open cheat list" -msgstr "Open cheat list" - -#: tmp/vbam.ui.h:8 -msgid "Open rece_nt" -msgstr "Open rece_nt" - -#: tmp/display.ui.h:8 -msgid "OpenGL" -msgstr "OpenGL" - -#: ../src/gtk/main.cpp:55 -msgid "Output version information." -msgstr "Output version information." - -#: ../src/gtk/windowcallbacks.cpp:294 -msgid "PNG image" -msgstr "PNG image" - -#: tmp/vbam.ui.h:9 -msgid "Pause" -msgstr "Pause" - -#: tmp/preferences.ui.h:8 -msgid "Pause when inactive" -msgstr "Pause when inactive" - -#: tmp/preferences.ui.h:9 -msgid "Percentage" -msgstr "Percentage" - -#: ../src/gtk/filters.cpp:64 -msgid "Pixelate" -msgstr "Pixelate" - -#: tmp/preferences.ui.h:10 -msgid "Preferences" -msgstr "Preferences" - -#: ../src/gtk/joypadconfig.cpp:155 -msgid "Right" -msgstr "Right" - -#: ../src/gtk/joypadconfig.cpp:33 -msgid "Right :" -msgstr "Right :" - -#: tmp/gameboyadvance.ui.h:13 -msgid "SRAM" -msgstr "SRAM" - -#: tmp/vbam.ui.h:10 -msgid "S_ave state" -msgstr "S_ave state" - -#: tmp/sound.ui.h:10 -msgid "Sample rate : " -msgstr "Sample rate : " - -#: ../src/gtk/cheatlist.cpp:93 tmp/cheatlist.ui.h:6 -msgid "Save cheat list" -msgstr "Save cheat list" - -#: ../src/gtk/windowcallbacks.cpp:117 -msgid "Save game" -msgstr "Save game" - -#: ../src/gtk/windowcallbacks.cpp:277 -msgid "Save screenshot" -msgstr "Save screenshot" - -#: tmp/gameboyadvance.ui.h:14 -msgid "Save type : " -msgstr "Save type : " - -#: ../src/gtk/window.cpp:1358 -msgid "Saved battery" -msgstr "Saved battery" - -#: ../src/gtk/directoriesconfig.cpp:33 -msgid "Saves :" -msgstr "Saves :" - -#: ../src/gtk/filters.cpp:68 -msgid "Scanlines" -msgstr "Scanlines" - -#: tmp/vbam.ui.h:11 -msgid "Screen capt_ure..." -msgstr "Screen capt_ure..." - -#: ../src/gtk/joypadconfig.cpp:38 -msgid "Select :" -msgstr "Select :" - -#: tmp/vbam.ui.h:12 -msgid "Slot1" -msgstr "Slot1" - -#: tmp/vbam.ui.h:13 -msgid "Slot10" -msgstr "Slot10" - -#: tmp/vbam.ui.h:14 -msgid "Slot2" -msgstr "Slot2" - -#: tmp/vbam.ui.h:15 -msgid "Slot3" -msgstr "Slot3" - -#: tmp/vbam.ui.h:16 -msgid "Slot4" -msgstr "Slot4" - -#: tmp/vbam.ui.h:17 -msgid "Slot5" -msgstr "Slot5" - -#: tmp/vbam.ui.h:18 -msgid "Slot6" -msgstr "Slot6" - -#: tmp/vbam.ui.h:19 -msgid "Slot7" -msgstr "Slot7" - -#: tmp/vbam.ui.h:20 -msgid "Slot8" -msgstr "Slot8" - -#: tmp/vbam.ui.h:21 -msgid "Slot9" -msgstr "Slot9" - -#: ../src/gtk/filters.cpp:81 -msgid "Smart interframe blending" -msgstr "Smart interframe blending" - -#: ../src/gtk/joypadconfig.cpp:40 -msgid "Speed :" -msgstr "Speed :" - -#: tmp/preferences.ui.h:11 -msgid "Speed indicator : " -msgstr "Speed indicator : " - -#: ../src/gtk/joypadconfig.cpp:39 -msgid "Start :" -msgstr "Start :" - -#: ../src/gtk/filters.cpp:62 -msgid "Super 2xSaI" -msgstr "Super 2xSaI" - -#: ../src/gtk/filters.cpp:63 -msgid "Super Eagle" -msgstr "Super Eagle" - -#: tmp/gameboy.ui.h:12 -msgid "Super Game Boy" -msgstr "Super Game Boy" - -#: tmp/gameboy.ui.h:13 -msgid "Super Game Boy 2" -msgstr "Super Game Boy 2" - -#: ../src/gtk/filters.cpp:69 -msgid "TV Mode" -msgstr "TV Mode" - -#: tmp/vbam.ui.h:22 -msgid "To _File ..." -msgstr "To _File ..." - -#: tmp/cheatlist.ui.h:7 -msgid "Toggle all Cheats" -msgstr "Toggle all Cheats" - -#: ../src/gtk/window.cpp:427 -#, c-format -msgid "Unable to initialize output, falling back to Cairo\n" -msgstr "Unable to initialize output, falling back to Cairo\n" - -#: ../src/gtk/window.cpp:1022 -#, c-format -msgid "Unknown file type %s" -msgstr "Unknown file type %s" - -#: ../src/gtk/joypadconfig.cpp:153 -msgid "Up" -msgstr "Up" - -#: ../src/gtk/joypadconfig.cpp:30 -msgid "Up :" -msgstr "Up :" - -#: tmp/gameboy.ui.h:14 -msgid "Use a Game Boy boot ROM file" -msgstr "Use a Game Boy boot ROM file" - -#: tmp/gameboyadvance.ui.h:15 -msgid "Use a bios file" -msgstr "Use a bios file" - -#: tmp/vbam.ui.h:23 -msgid "VBA" -msgstr "VBA" - -#: ../src/gtk/main.cpp:41 ../src/gtk/windowcallbacks.cpp:506 -msgid "VBA-M" -msgstr "VBA-M" - -#: ../src/gtk/window.cpp:1159 -#, c-format -msgid "VBA-M - %d%%" -msgstr "VBA-M - %d%%" - -#: ../src/gtk/window.cpp:1164 -#, c-format -msgid "VBA-M - %d%% (%d, %d fps)" -msgstr "VBA-M - %d%% (%d, %d fps)" - -#: ../src/gtk/windowcallbacks.cpp:99 ../src/gtk/windowcallbacks.cpp:134 -msgid "VisualBoyAdvance save game" -msgstr "VisualBoyAdvance save game" - -#: ../src/gtk/main.cpp:81 -#, c-format -msgid "VisualBoyAdvance version %s [GTK+]\n" -msgstr "VisualBoyAdvance version %s [GTK+]\n" - -#: tmp/sound.ui.h:11 -msgid "Volume : " -msgstr "Volume : " - -#: tmp/vbam.ui.h:24 -msgid "_Disable cheats" -msgstr "_Disable cheats" - -#: tmp/vbam.ui.h:25 -msgid "_Display ..." -msgstr "_Display ..." - -#: tmp/vbam.ui.h:26 -msgid "_Emulation" -msgstr "_Emulation" - -#: tmp/vbam.ui.h:27 -msgid "_File" -msgstr "_File" - -#: tmp/vbam.ui.h:28 -msgid "_Game Boy ..." -msgstr "_Game Boy ..." - -#: tmp/vbam.ui.h:29 -msgid "_Help" -msgstr "_Help" - -#: tmp/vbam.ui.h:30 -msgid "_Joypads ..." -msgstr "_Joypads ..." - -#: tmp/vbam.ui.h:31 -msgid "_List cheats ..." -msgstr "_List cheats ..." - -#: tmp/vbam.ui.h:32 -msgid "_Options" -msgstr "_Options" - -#: tmp/vbam.ui.h:33 -msgid "_Preferences ..." -msgstr "_Preferences ..." - -#: tmp/vbam.ui.h:34 -msgid "_Reset" -msgstr "_Reset" - -#: tmp/vbam.ui.h:35 -msgid "_Sound ..." -msgstr "_Sound ..." - -#: ../src/gtk/filters.cpp:70 -msgid "hq2x" -msgstr "hq2x" - -#: ../src/gtk/filters.cpp:71 -msgid "lq2x" -msgstr "lq2x" - -#~ msgid "Only Gameboy Advance cheats are supported" -#~ msgstr "Only Gameboy Advance cheats are supported" +# This file is distributed under the same license as the VBA-M package. +# +msgid "" +msgstr "" +"Project-Id-Version: VBA-M\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 20:50+0100\n" +"PO-Revision-Date: 2011-02-24 20:51+0000\n" +"Last-Translator: bgK \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ../src/gtk/joypadconfig.cpp:142 +msgid " Axis " +msgstr " Axis " + +#: ../src/gtk/joypadconfig.cpp:135 +msgid " Button " +msgstr " Button " + +#: ../src/gtk/joypadconfig.cpp:150 +msgid " Hat " +msgstr " Hat " + +#: ../src/gtk/window.cpp:1413 +msgid "%Y/%m/%d %H:%M:%S" +msgstr "%Y/%m/%d %H:%M:%S" + +#: ../src/gtk/screenarea-opengl.cpp:41 +#, c-format +msgid "*** OpenGL : Cannot open display.\n" +msgstr "*** OpenGL : Cannot open display.\n" + +#: ../src/gtk/window.cpp:1383 ../src/gtk/window.cpp:1428 +msgid "----/--/-- --:--:--" +msgstr "----/--/-- --:--:--" + +#: tmp/sound.ui.h:2 +#, no-c-format +msgid "100 %" +msgstr "100 %" + +#: tmp/sound.ui.h:4 +#, no-c-format +msgid "200 %" +msgstr "200 %" + +#: tmp/sound.ui.h:6 +#, no-c-format +msgid "25 %" +msgstr "25 %" + +#: ../src/gtk/filters.cpp:61 +msgid "2xSaI" +msgstr "2xSaI" + +#: tmp/sound.ui.h:8 +#, no-c-format +msgid "50 %" +msgstr "50 %" + +#: ../src/gtk/joypadconfig.cpp:165 +msgid "" +msgstr "" + +#: tmp/preferences.ui.h:1 +msgid "Appearance" +msgstr "Appearance" + +#: tmp/gameboyadvance.ui.h:1 +msgid "Bios" +msgstr "Bios" + +#: tmp/gameboy.ui.h:1 +msgid "Boot ROM" +msgstr "Boot ROM" + +#: tmp/gameboyadvance.ui.h:2 +msgid "Cartridge" +msgstr "Cartridge" + +#: tmp/cheatedit.ui.h:1 +msgid "Codes" +msgstr "Codes" + +#: tmp/cheatedit.ui.h:2 +msgid "Description" +msgstr "Description" + +#: tmp/display.ui.h:1 +msgid "Filters" +msgstr "Filters" + +#: tmp/preferences.ui.h:2 +msgid "Frameskip" +msgstr "Frameskip" + +#: tmp/preferences.ui.h:3 +msgid "General" +msgstr "General" + +#: tmp/display.ui.h:2 +msgid "Output module" +msgstr "Output module" + +#: tmp/gameboyadvance.ui.h:3 +msgid "Real-Time Clock" +msgstr "Real-Time Clock" + +#: tmp/gameboy.ui.h:2 +msgid "System and peripherals" +msgstr "System and peripherals" + +#: tmp/cheatedit.ui.h:3 +msgid "Type" +msgstr "Type" + +#: tmp/display.ui.h:3 +msgid "Zoom" +msgstr "Zoom" + +#: tmp/cheatlist.ui.h:1 +msgid "Add new cheat" +msgstr "Add new cheat" + +#: ../src/gtk/filters.cpp:65 +msgid "AdvanceMAME Scale2x" +msgstr "AdvanceMAME Scale2x" + +#: ../src/gtk/window.cpp:1301 +msgid "All Gameboy Advance files" +msgstr "All Gameboy Advance files" + +#: ../src/gtk/gameboyadvanceconfig.cpp:75 +msgid "All files" +msgstr "All files" + +#: tmp/vbam.ui.h:1 +msgid "Auto load most recent" +msgstr "Auto load most recent" + +#: ../src/gtk/joypadconfig.cpp:42 +msgid "Autofire A :" +msgstr "Autofire A :" + +#: ../src/gtk/joypadconfig.cpp:43 +msgid "Autofire B :" +msgstr "Autofire B :" + +#: tmp/gameboy.ui.h:3 tmp/gameboyadvance.ui.h:4 +msgid "Automatic" +msgstr "Automatic" + +#: ../src/gtk/directoriesconfig.cpp:32 +msgid "Batteries :" +msgstr "Batteries :" + +#: ../src/gtk/filters.cpp:66 +msgid "Bilinear" +msgstr "Bilinear" + +#: ../src/gtk/filters.cpp:67 +msgid "Bilinear Plus" +msgstr "Bilinear Plus" + +#: tmp/gameboyadvance.ui.h:5 +msgid "Bios file : " +msgstr "Bios file : " + +#: tmp/gameboy.ui.h:4 +msgid "Boot ROM file : " +msgstr "Boot ROM file : " + +#: ../src/gtk/joypadconfig.cpp:34 +msgid "Button A :" +msgstr "Button A :" + +#: ../src/gtk/joypadconfig.cpp:35 +msgid "Button B :" +msgstr "Button B :" + +#: ../src/gtk/joypadconfig.cpp:36 +msgid "Button L :" +msgstr "Button L :" + +#: ../src/gtk/joypadconfig.cpp:37 +msgid "Button R :" +msgstr "Button R :" + +#: tmp/display.ui.h:4 +msgid "Cairo" +msgstr "Cairo" + +#: ../src/gtk/joypadconfig.cpp:41 +msgid "Capture :" +msgstr "Capture :" + +#: ../src/gtk/directoriesconfig.cpp:34 +msgid "Captures :" +msgstr "Captures :" + +#: tmp/cheatlist.ui.h:2 +msgid "Cheat list" +msgstr "Cheat list" + +#: ../src/gtk/cheatedit.cpp:93 +msgid "CodeBreaker Advance" +msgstr "CodeBreaker Advance" + +#: tmp/vbam.ui.h:2 +msgid "D_irectories ..." +msgstr "D_irectories ..." + +#: ../src/gtk/joypadconfig.cpp:50 +msgid "Default joypad" +msgstr "Default joypad" + +#: tmp/display.ui.h:5 +msgid "Default scale : " +msgstr "Default scale : " + +#: tmp/cheatlist.ui.h:3 +msgid "Delete all cheats" +msgstr "Delete all cheats" + +#: tmp/cheatlist.ui.h:4 +msgid "Delete selected cheat" +msgstr "Delete selected cheat" + +#: tmp/preferences.ui.h:4 +msgid "Detailed" +msgstr "Detailed" + +#: ../src/gtk/directoriesconfig.cpp:38 +msgid "Directories config" +msgstr "Directories config" + +#: tmp/gameboy.ui.h:5 +msgid "Display Super Game Boy borders" +msgstr "Display Super Game Boy borders" + +#: ../src/gtk/joypadconfig.cpp:154 +msgid "Down" +msgstr "Down" + +#: ../src/gtk/joypadconfig.cpp:31 +msgid "Down :" +msgstr "Down :" + +#: tmp/gameboyadvance.ui.h:6 +msgid "EEPROM" +msgstr "EEPROM" + +#: tmp/gameboyadvance.ui.h:7 +msgid "EEPROM + Sensor" +msgstr "EEPROM + Sensor" + +#: tmp/cheatedit.ui.h:4 +msgid "Edit cheat" +msgstr "Edit cheat" + +#: tmp/gameboy.ui.h:6 +msgid "Emulate a Game Boy Printer" +msgstr "Emulate a Game Boy Printer" + +#: tmp/gameboy.ui.h:7 +msgid "Emulated system : " +msgstr "Emulated system : " + +#: tmp/preferences.ui.h:5 +msgid "Enable automatic frame skipping" +msgstr "Enable automatic frame skipping" + +#: tmp/gameboyadvance.ui.h:8 +msgid "Enable real-time clock" +msgstr "Enable real-time clock" + +#: ../src/gtk/window.cpp:468 +#, c-format +msgid "Failed to init SDL: %s" +msgstr "Failed to init SDL: %s" + +#: ../src/gtk/windowcallbacks.cpp:150 ../src/gtk/windowcallbacks.cpp:312 +msgid "File already exists. Overwrite it?" +msgstr "File already exists. Overwrite it?" + +#: tmp/gameboyadvance.ui.h:9 +msgid "Flash" +msgstr "Flash" + +#: tmp/gameboyadvance.ui.h:10 +msgid "Flash size : " +msgstr "Flash size : " + +#: tmp/preferences.ui.h:6 +msgid "Frameskip level : " +msgstr "Frameskip level : " + +#: tmp/vbam.ui.h:3 +msgid "From _File ..." +msgstr "From _File ..." + +#: tmp/display.ui.h:6 +msgid "Fullscreen filter : " +msgstr "Fullscreen filter : " + +#: ../src/gtk/directoriesconfig.cpp:31 +msgid "GB roms :" +msgstr "GB roms :" + +#: ../src/gtk/directoriesconfig.cpp:30 +msgid "GBA roms :" +msgstr "GBA roms :" + +#: tmp/gameboy.ui.h:8 +msgid "Game Boy" +msgstr "Game Boy" + +#: tmp/gameboy.ui.h:9 +msgid "Game Boy Advance" +msgstr "Game Boy Advance" + +#: tmp/gameboyadvance.ui.h:11 +msgid "Game Boy Advance settings" +msgstr "Game Boy Advance settings" + +#: tmp/gameboy.ui.h:10 +msgid "Game Boy Color" +msgstr "Game Boy Color" + +#: tmp/vbam.ui.h:4 +msgid "Game Boy _Advance ..." +msgstr "Game Boy _Advance ..." + +#: tmp/gameboy.ui.h:11 +msgid "GameBoy settings" +msgstr "GameBoy settings" + +#: ../src/gtk/cheatedit.cpp:108 +msgid "GameGenie" +msgstr "" + +#: ../src/gtk/cheatedit.cpp:103 +#, fuzzy +msgid "GameShark" +msgstr "Gameshark Advance" + +#: ../src/gtk/gameboyadvanceconfig.cpp:79 +msgid "Gameboy Advance BIOS" +msgstr "Gameboy Advance BIOS" + +#: ../src/gtk/window.cpp:1308 +msgid "Gameboy Advance files" +msgstr "Gameboy Advance files" + +#: ../src/gtk/window.cpp:1315 +msgid "Gameboy files" +msgstr "Gameboy files" + +#: ../src/gtk/cheatedit.cpp:88 +msgid "Gameshark Advance" +msgstr "Gameshark Advance" + +#: ../src/gtk/cheatedit.cpp:83 +msgid "Generic Code" +msgstr "Generic Code" + +#: tmp/display.ui.h:7 +msgid "Interframe blending : " +msgstr "Interframe blending : " + +#: ../src/gtk/filters.cpp:82 +msgid "Interframe motion blur" +msgstr "Interframe motion blur" + +#: ../src/gtk/joypadconfig.cpp:129 +msgid "Joy " +msgstr "Joy " + +#: ../src/gtk/joypadconfig.cpp:49 +msgid "Joypad :" +msgstr "Joypad :" + +#: ../src/gtk/joypadconfig.cpp:47 +msgid "Joypad config" +msgstr "Joypad config" + +#: ../src/gtk/joypadconfig.cpp:156 +msgid "Left" +msgstr "Left" + +#: ../src/gtk/joypadconfig.cpp:32 +msgid "Left :" +msgstr "Left :" + +#: tmp/vbam.ui.h:5 +msgid "Loa_d state" +msgstr "Loa_d state" + +#: ../src/gtk/windowcallbacks.cpp:84 +msgid "Load game" +msgstr "Load game" + +#: ../src/gtk/window.cpp:1341 +msgid "Loaded battery" +msgstr "Loaded battery" + +#: ../src/gtk/main.cpp:50 +msgid "Main VBA-M options" +msgstr "Main VBA-M options" + +#: tmp/vbam.ui.h:6 +msgid "Most recent" +msgstr "Most recent" + +#: tmp/sound.ui.h:9 +msgid "Mute" +msgstr "Mute" + +#: ../src/gtk/windowcallbacks.cpp:508 +msgid "Nintendo GameBoy Advance emulator." +msgstr "Nintendo GameBoy Advance emulator." + +#: ../src/gtk/filters.cpp:60 ../src/gtk/filters.cpp:80 +#: tmp/gameboyadvance.ui.h:12 tmp/preferences.ui.h:7 +msgid "None" +msgstr "None" + +#: tmp/vbam.ui.h:7 +msgid "Oldest slot" +msgstr "Oldest slot" + +#: ../src/gtk/window.cpp:1266 +msgid "Open" +msgstr "Open" + +#: ../src/gtk/cheatlist.cpp:70 tmp/cheatlist.ui.h:5 +msgid "Open cheat list" +msgstr "Open cheat list" + +#: tmp/vbam.ui.h:8 +msgid "Open rece_nt" +msgstr "Open rece_nt" + +#: tmp/display.ui.h:8 +msgid "OpenGL" +msgstr "OpenGL" + +#: ../src/gtk/main.cpp:55 +msgid "Output version information." +msgstr "Output version information." + +#: ../src/gtk/windowcallbacks.cpp:294 +msgid "PNG image" +msgstr "PNG image" + +#: tmp/vbam.ui.h:9 +msgid "Pause" +msgstr "Pause" + +#: tmp/preferences.ui.h:8 +msgid "Pause when inactive" +msgstr "Pause when inactive" + +#: tmp/preferences.ui.h:9 +msgid "Percentage" +msgstr "Percentage" + +#: ../src/gtk/filters.cpp:64 +msgid "Pixelate" +msgstr "Pixelate" + +#: tmp/preferences.ui.h:10 +msgid "Preferences" +msgstr "Preferences" + +#: ../src/gtk/joypadconfig.cpp:155 +msgid "Right" +msgstr "Right" + +#: ../src/gtk/joypadconfig.cpp:33 +msgid "Right :" +msgstr "Right :" + +#: tmp/gameboyadvance.ui.h:13 +msgid "SRAM" +msgstr "SRAM" + +#: tmp/vbam.ui.h:10 +msgid "S_ave state" +msgstr "S_ave state" + +#: tmp/sound.ui.h:10 +msgid "Sample rate : " +msgstr "Sample rate : " + +#: ../src/gtk/cheatlist.cpp:93 tmp/cheatlist.ui.h:6 +msgid "Save cheat list" +msgstr "Save cheat list" + +#: ../src/gtk/windowcallbacks.cpp:117 +msgid "Save game" +msgstr "Save game" + +#: ../src/gtk/windowcallbacks.cpp:277 +msgid "Save screenshot" +msgstr "Save screenshot" + +#: tmp/gameboyadvance.ui.h:14 +msgid "Save type : " +msgstr "Save type : " + +#: ../src/gtk/window.cpp:1358 +msgid "Saved battery" +msgstr "Saved battery" + +#: ../src/gtk/directoriesconfig.cpp:33 +msgid "Saves :" +msgstr "Saves :" + +#: ../src/gtk/filters.cpp:68 +msgid "Scanlines" +msgstr "Scanlines" + +#: tmp/vbam.ui.h:11 +msgid "Screen capt_ure..." +msgstr "Screen capt_ure..." + +#: ../src/gtk/joypadconfig.cpp:38 +msgid "Select :" +msgstr "Select :" + +#: tmp/vbam.ui.h:12 +msgid "Slot1" +msgstr "Slot1" + +#: tmp/vbam.ui.h:13 +msgid "Slot10" +msgstr "Slot10" + +#: tmp/vbam.ui.h:14 +msgid "Slot2" +msgstr "Slot2" + +#: tmp/vbam.ui.h:15 +msgid "Slot3" +msgstr "Slot3" + +#: tmp/vbam.ui.h:16 +msgid "Slot4" +msgstr "Slot4" + +#: tmp/vbam.ui.h:17 +msgid "Slot5" +msgstr "Slot5" + +#: tmp/vbam.ui.h:18 +msgid "Slot6" +msgstr "Slot6" + +#: tmp/vbam.ui.h:19 +msgid "Slot7" +msgstr "Slot7" + +#: tmp/vbam.ui.h:20 +msgid "Slot8" +msgstr "Slot8" + +#: tmp/vbam.ui.h:21 +msgid "Slot9" +msgstr "Slot9" + +#: ../src/gtk/filters.cpp:81 +msgid "Smart interframe blending" +msgstr "Smart interframe blending" + +#: ../src/gtk/joypadconfig.cpp:40 +msgid "Speed :" +msgstr "Speed :" + +#: tmp/preferences.ui.h:11 +msgid "Speed indicator : " +msgstr "Speed indicator : " + +#: ../src/gtk/joypadconfig.cpp:39 +msgid "Start :" +msgstr "Start :" + +#: ../src/gtk/filters.cpp:62 +msgid "Super 2xSaI" +msgstr "Super 2xSaI" + +#: ../src/gtk/filters.cpp:63 +msgid "Super Eagle" +msgstr "Super Eagle" + +#: tmp/gameboy.ui.h:12 +msgid "Super Game Boy" +msgstr "Super Game Boy" + +#: tmp/gameboy.ui.h:13 +msgid "Super Game Boy 2" +msgstr "Super Game Boy 2" + +#: ../src/gtk/filters.cpp:69 +msgid "TV Mode" +msgstr "TV Mode" + +#: tmp/vbam.ui.h:22 +msgid "To _File ..." +msgstr "To _File ..." + +#: tmp/cheatlist.ui.h:7 +msgid "Toggle all Cheats" +msgstr "Toggle all Cheats" + +#: ../src/gtk/window.cpp:427 +#, c-format +msgid "Unable to initialize output, falling back to Cairo\n" +msgstr "Unable to initialize output, falling back to Cairo\n" + +#: ../src/gtk/window.cpp:1022 +#, c-format +msgid "Unknown file type %s" +msgstr "Unknown file type %s" + +#: ../src/gtk/joypadconfig.cpp:153 +msgid "Up" +msgstr "Up" + +#: ../src/gtk/joypadconfig.cpp:30 +msgid "Up :" +msgstr "Up :" + +#: tmp/gameboy.ui.h:14 +msgid "Use a Game Boy boot ROM file" +msgstr "Use a Game Boy boot ROM file" + +#: tmp/gameboyadvance.ui.h:15 +msgid "Use a bios file" +msgstr "Use a bios file" + +#: tmp/vbam.ui.h:23 +msgid "VBA" +msgstr "VBA" + +#: ../src/gtk/main.cpp:41 ../src/gtk/windowcallbacks.cpp:506 +msgid "VBA-M" +msgstr "VBA-M" + +#: ../src/gtk/window.cpp:1159 +#, c-format +msgid "VBA-M - %d%%" +msgstr "VBA-M - %d%%" + +#: ../src/gtk/window.cpp:1164 +#, c-format +msgid "VBA-M - %d%% (%d, %d fps)" +msgstr "VBA-M - %d%% (%d, %d fps)" + +#: ../src/gtk/windowcallbacks.cpp:99 ../src/gtk/windowcallbacks.cpp:134 +msgid "VisualBoyAdvance save game" +msgstr "VisualBoyAdvance save game" + +#: ../src/gtk/main.cpp:81 +#, c-format +msgid "VisualBoyAdvance version %s [GTK+]\n" +msgstr "VisualBoyAdvance version %s [GTK+]\n" + +#: tmp/sound.ui.h:11 +msgid "Volume : " +msgstr "Volume : " + +#: tmp/vbam.ui.h:24 +msgid "_Disable cheats" +msgstr "_Disable cheats" + +#: tmp/vbam.ui.h:25 +msgid "_Display ..." +msgstr "_Display ..." + +#: tmp/vbam.ui.h:26 +msgid "_Emulation" +msgstr "_Emulation" + +#: tmp/vbam.ui.h:27 +msgid "_File" +msgstr "_File" + +#: tmp/vbam.ui.h:28 +msgid "_Game Boy ..." +msgstr "_Game Boy ..." + +#: tmp/vbam.ui.h:29 +msgid "_Help" +msgstr "_Help" + +#: tmp/vbam.ui.h:30 +msgid "_Joypads ..." +msgstr "_Joypads ..." + +#: tmp/vbam.ui.h:31 +msgid "_List cheats ..." +msgstr "_List cheats ..." + +#: tmp/vbam.ui.h:32 +msgid "_Options" +msgstr "_Options" + +#: tmp/vbam.ui.h:33 +msgid "_Preferences ..." +msgstr "_Preferences ..." + +#: tmp/vbam.ui.h:34 +msgid "_Reset" +msgstr "_Reset" + +#: tmp/vbam.ui.h:35 +msgid "_Sound ..." +msgstr "_Sound ..." + +#: ../src/gtk/filters.cpp:70 +msgid "hq2x" +msgstr "hq2x" + +#: ../src/gtk/filters.cpp:71 +msgid "lq2x" +msgstr "lq2x" + +#~ msgid "Only Gameboy Advance cheats are supported" +#~ msgstr "Only Gameboy Advance cheats are supported" diff --git a/po/gvbam/es_ES.po b/po/gvbam/es_ES.po index bfcb91eb..ac178cd4 100644 --- a/po/gvbam/es_ES.po +++ b/po/gvbam/es_ES.po @@ -1,731 +1,731 @@ -# This file is distributed under the same license as the VBA-M package. -# -msgid "" -msgstr "" -"Project-Id-Version: VBA-M\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 20:50+0100\n" -"PO-Revision-Date: 2011-03-22 15:06+0000\n" -"Last-Translator: MELERIX \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_ES\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ../src/gtk/joypadconfig.cpp:142 -msgid " Axis " -msgstr " Eje " - -#: ../src/gtk/joypadconfig.cpp:135 -msgid " Button " -msgstr " Botón " - -#: ../src/gtk/joypadconfig.cpp:150 -msgid " Hat " -msgstr " Hat " - -#: ../src/gtk/window.cpp:1413 -msgid "%Y/%m/%d %H:%M:%S" -msgstr "%Y/%m/%d %H:%M:%S" - -#: ../src/gtk/screenarea-opengl.cpp:41 -#, c-format -msgid "*** OpenGL : Cannot open display.\n" -msgstr "*** OpenGL : No se puede abrir la pantalla.\n" - -#: ../src/gtk/window.cpp:1383 ../src/gtk/window.cpp:1428 -msgid "----/--/-- --:--:--" -msgstr "----/--/-- --:--:--" - -#: tmp/sound.ui.h:2 -#, no-c-format -msgid "100 %" -msgstr "100 %" - -#: tmp/sound.ui.h:4 -#, no-c-format -msgid "200 %" -msgstr "200 %" - -#: tmp/sound.ui.h:6 -#, no-c-format -msgid "25 %" -msgstr "25 %" - -#: ../src/gtk/filters.cpp:61 -msgid "2xSaI" -msgstr "2xSaI" - -#: tmp/sound.ui.h:8 -#, no-c-format -msgid "50 %" -msgstr "50 %" - -#: ../src/gtk/joypadconfig.cpp:165 -msgid "" -msgstr "" - -#: tmp/preferences.ui.h:1 -msgid "Appearance" -msgstr "Apariencia" - -#: tmp/gameboyadvance.ui.h:1 -msgid "Bios" -msgstr "Bios" - -#: tmp/gameboy.ui.h:1 -msgid "Boot ROM" -msgstr "ROM Boot" - -#: tmp/gameboyadvance.ui.h:2 -msgid "Cartridge" -msgstr "Cartucho" - -#: tmp/cheatedit.ui.h:1 -msgid "Codes" -msgstr "Códigos" - -#: tmp/cheatedit.ui.h:2 -msgid "Description" -msgstr "Descripción" - -#: tmp/display.ui.h:1 -msgid "Filters" -msgstr "Filtros" - -#: tmp/preferences.ui.h:2 -msgid "Frameskip" -msgstr "Salto de cuadros" - -#: tmp/preferences.ui.h:3 -msgid "General" -msgstr "General" - -#: tmp/display.ui.h:2 -msgid "Output module" -msgstr "Modulo de salida" - -#: tmp/gameboyadvance.ui.h:3 -msgid "Real-Time Clock" -msgstr "Reloj de Tiempo-Real" - -#: tmp/gameboy.ui.h:2 -msgid "System and peripherals" -msgstr "Sistema y periféricos" - -#: tmp/cheatedit.ui.h:3 -msgid "Type" -msgstr "Tipo" - -#: tmp/display.ui.h:3 -msgid "Zoom" -msgstr "Zoom" - -#: tmp/cheatlist.ui.h:1 -msgid "Add new cheat" -msgstr "Agregar nuevo truco" - -#: ../src/gtk/filters.cpp:65 -msgid "AdvanceMAME Scale2x" -msgstr "AdvanceMAME Scale2x" - -#: ../src/gtk/window.cpp:1301 -msgid "All Gameboy Advance files" -msgstr "Todos los archivos de Gameboy Advance" - -#: ../src/gtk/gameboyadvanceconfig.cpp:75 -msgid "All files" -msgstr "Todos los archivos" - -#: tmp/vbam.ui.h:1 -msgid "Auto load most recent" -msgstr "Cargar mas reciente automáticamente" - -#: ../src/gtk/joypadconfig.cpp:42 -msgid "Autofire A :" -msgstr "Auto-disparo A :" - -#: ../src/gtk/joypadconfig.cpp:43 -msgid "Autofire B :" -msgstr "Auto-disparo B :" - -#: tmp/gameboy.ui.h:3 tmp/gameboyadvance.ui.h:4 -msgid "Automatic" -msgstr "Automático" - -#: ../src/gtk/directoriesconfig.cpp:32 -msgid "Batteries :" -msgstr "Baterías :" - -#: ../src/gtk/filters.cpp:66 -msgid "Bilinear" -msgstr "Bilinear" - -#: ../src/gtk/filters.cpp:67 -msgid "Bilinear Plus" -msgstr "Bilinear Plus" - -#: tmp/gameboyadvance.ui.h:5 -msgid "Bios file : " -msgstr "Archivo de bios : " - -#: tmp/gameboy.ui.h:4 -msgid "Boot ROM file : " -msgstr "Archivo ROM Boot : " - -#: ../src/gtk/joypadconfig.cpp:34 -msgid "Button A :" -msgstr "Botón A :" - -#: ../src/gtk/joypadconfig.cpp:35 -msgid "Button B :" -msgstr "Botón B :" - -#: ../src/gtk/joypadconfig.cpp:36 -msgid "Button L :" -msgstr "Botón L :" - -#: ../src/gtk/joypadconfig.cpp:37 -msgid "Button R :" -msgstr "Botón R :" - -#: tmp/display.ui.h:4 -msgid "Cairo" -msgstr "Cairo" - -#: ../src/gtk/joypadconfig.cpp:41 -msgid "Capture :" -msgstr "Captura :" - -#: ../src/gtk/directoriesconfig.cpp:34 -msgid "Captures :" -msgstr "Capturas :" - -#: tmp/cheatlist.ui.h:2 -msgid "Cheat list" -msgstr "Lista de trucos" - -#: ../src/gtk/cheatedit.cpp:93 -msgid "CodeBreaker Advance" -msgstr "CodeBreaker Avanzado" - -#: tmp/vbam.ui.h:2 -msgid "D_irectories ..." -msgstr "D_irectorios ..." - -#: ../src/gtk/joypadconfig.cpp:50 -msgid "Default joypad" -msgstr "Joypad por defecto" - -#: tmp/display.ui.h:5 -msgid "Default scale : " -msgstr "Escala por defecto : " - -#: tmp/cheatlist.ui.h:3 -msgid "Delete all cheats" -msgstr "Borrar todo los trucos" - -#: tmp/cheatlist.ui.h:4 -msgid "Delete selected cheat" -msgstr "Borrar truco seleccionado" - -#: tmp/preferences.ui.h:4 -msgid "Detailed" -msgstr "Detallado" - -#: ../src/gtk/directoriesconfig.cpp:38 -msgid "Directories config" -msgstr "Directorio de configuraciones" - -#: tmp/gameboy.ui.h:5 -msgid "Display Super Game Boy borders" -msgstr "Mostrar bordes de Super Game Boy" - -#: ../src/gtk/joypadconfig.cpp:154 -msgid "Down" -msgstr "Abajo" - -#: ../src/gtk/joypadconfig.cpp:31 -msgid "Down :" -msgstr "Abajo :" - -#: tmp/gameboyadvance.ui.h:6 -msgid "EEPROM" -msgstr "EEPROM" - -#: tmp/gameboyadvance.ui.h:7 -msgid "EEPROM + Sensor" -msgstr "EEPROM + Sensor" - -#: tmp/cheatedit.ui.h:4 -msgid "Edit cheat" -msgstr "Editar truco" - -#: tmp/gameboy.ui.h:6 -msgid "Emulate a Game Boy Printer" -msgstr "Emular una impresora Game Boy" - -#: tmp/gameboy.ui.h:7 -msgid "Emulated system : " -msgstr "Sistema emulado : " - -#: tmp/preferences.ui.h:5 -msgid "Enable automatic frame skipping" -msgstr "Habilitar salto de cuadros automático" - -#: tmp/gameboyadvance.ui.h:8 -msgid "Enable real-time clock" -msgstr "Habilitar el reloj de tiempo-real" - -#: ../src/gtk/window.cpp:468 -#, c-format -msgid "Failed to init SDL: %s" -msgstr "Fallo al incializar SDL: %s" - -#: ../src/gtk/windowcallbacks.cpp:150 ../src/gtk/windowcallbacks.cpp:312 -msgid "File already exists. Overwrite it?" -msgstr "El archivo ya existe. Sobreescribirlo ?" - -#: tmp/gameboyadvance.ui.h:9 -msgid "Flash" -msgstr "Flash" - -#: tmp/gameboyadvance.ui.h:10 -msgid "Flash size : " -msgstr "Tamaño de Flash : " - -#: tmp/preferences.ui.h:6 -msgid "Frameskip level : " -msgstr "Nivel de salto de cuadros : " - -#: tmp/vbam.ui.h:3 -msgid "From _File ..." -msgstr "Desde _Archivo ..." - -#: tmp/display.ui.h:6 -msgid "Fullscreen filter : " -msgstr "Filtro en pantalla completa : " - -#: ../src/gtk/directoriesconfig.cpp:31 -msgid "GB roms :" -msgstr "GB roms :" - -#: ../src/gtk/directoriesconfig.cpp:30 -msgid "GBA roms :" -msgstr "GBA roms :" - -#: tmp/gameboy.ui.h:8 -msgid "Game Boy" -msgstr "Game Boy" - -#: tmp/gameboy.ui.h:9 -msgid "Game Boy Advance" -msgstr "Game Boy Advance" - -#: tmp/gameboyadvance.ui.h:11 -msgid "Game Boy Advance settings" -msgstr "Configuraciones de Game Boy Advance" - -#: tmp/gameboy.ui.h:10 -msgid "Game Boy Color" -msgstr "Game Boy Color" - -#: tmp/vbam.ui.h:4 -msgid "Game Boy _Advance ..." -msgstr "Game Boy _Advance ..." - -#: tmp/gameboy.ui.h:11 -msgid "GameBoy settings" -msgstr "Configuraciones de GameBoy" - -#: ../src/gtk/cheatedit.cpp:108 -msgid "GameGenie" -msgstr "GameGenie" - -#: ../src/gtk/cheatedit.cpp:103 -msgid "GameShark" -msgstr "GameShark" - -#: ../src/gtk/gameboyadvanceconfig.cpp:79 -msgid "Gameboy Advance BIOS" -msgstr "BIOS de Gameboy Advance" - -#: ../src/gtk/window.cpp:1308 -msgid "Gameboy Advance files" -msgstr "Archivos de Gameboy Advance" - -#: ../src/gtk/window.cpp:1315 -msgid "Gameboy files" -msgstr "Archivos de Gameboy" - -#: ../src/gtk/cheatedit.cpp:88 -msgid "Gameshark Advance" -msgstr "GameShark Avanzado" - -#: ../src/gtk/cheatedit.cpp:83 -msgid "Generic Code" -msgstr "Código Genérico" - -#: tmp/display.ui.h:7 -msgid "Interframe blending : " -msgstr "Interframe blending : " - -#: ../src/gtk/filters.cpp:82 -msgid "Interframe motion blur" -msgstr "Interframe motion blur" - -#: ../src/gtk/joypadconfig.cpp:129 -msgid "Joy " -msgstr "Joy " - -#: ../src/gtk/joypadconfig.cpp:49 -msgid "Joypad :" -msgstr "Joypad :" - -#: ../src/gtk/joypadconfig.cpp:47 -msgid "Joypad config" -msgstr "Configuración del Joypad" - -#: ../src/gtk/joypadconfig.cpp:156 -msgid "Left" -msgstr "Izquierda" - -#: ../src/gtk/joypadconfig.cpp:32 -msgid "Left :" -msgstr "Izquierda :" - -#: tmp/vbam.ui.h:5 -msgid "Loa_d state" -msgstr "C_argar estado" - -#: ../src/gtk/windowcallbacks.cpp:84 -msgid "Load game" -msgstr "Cargar juego" - -#: ../src/gtk/window.cpp:1341 -msgid "Loaded battery" -msgstr "Batería cargada" - -#: ../src/gtk/main.cpp:50 -msgid "Main VBA-M options" -msgstr "Opciones principales de VBA-M" - -#: tmp/vbam.ui.h:6 -msgid "Most recent" -msgstr "Mas reciente" - -#: tmp/sound.ui.h:9 -msgid "Mute" -msgstr "Silencio" - -#: ../src/gtk/windowcallbacks.cpp:508 -msgid "Nintendo GameBoy Advance emulator." -msgstr "Emulador de Nintendo GameBoy Advance." - -#: ../src/gtk/filters.cpp:60 ../src/gtk/filters.cpp:80 -#: tmp/gameboyadvance.ui.h:12 tmp/preferences.ui.h:7 -msgid "None" -msgstr "Ninguno" - -#: tmp/vbam.ui.h:7 -msgid "Oldest slot" -msgstr "Ranura mas antigua" - -#: ../src/gtk/window.cpp:1266 -msgid "Open" -msgstr "Abrir" - -#: ../src/gtk/cheatlist.cpp:70 tmp/cheatlist.ui.h:5 -msgid "Open cheat list" -msgstr "Abrir lista de trucos" - -#: tmp/vbam.ui.h:8 -msgid "Open rece_nt" -msgstr "Abrir r_eciente" - -#: tmp/display.ui.h:8 -msgid "OpenGL" -msgstr "OpenGL" - -#: ../src/gtk/main.cpp:55 -msgid "Output version information." -msgstr "Información saliente de la versión." - -#: ../src/gtk/windowcallbacks.cpp:294 -msgid "PNG image" -msgstr "Imagen PNG" - -#: tmp/vbam.ui.h:9 -msgid "Pause" -msgstr "Pausa" - -#: tmp/preferences.ui.h:8 -msgid "Pause when inactive" -msgstr "Pausar cuando este inactivo" - -#: tmp/preferences.ui.h:9 -msgid "Percentage" -msgstr "Porcentaje" - -#: ../src/gtk/filters.cpp:64 -msgid "Pixelate" -msgstr "Pixelado" - -#: tmp/preferences.ui.h:10 -msgid "Preferences" -msgstr "Preferencias" - -#: ../src/gtk/joypadconfig.cpp:155 -msgid "Right" -msgstr "Derecha" - -#: ../src/gtk/joypadconfig.cpp:33 -msgid "Right :" -msgstr "Derecha :" - -#: tmp/gameboyadvance.ui.h:13 -msgid "SRAM" -msgstr "SRAM" - -#: tmp/vbam.ui.h:10 -msgid "S_ave state" -msgstr "G_uardar estado" - -#: tmp/sound.ui.h:10 -msgid "Sample rate : " -msgstr " Frecuencia de muestreo : " - -#: ../src/gtk/cheatlist.cpp:93 tmp/cheatlist.ui.h:6 -msgid "Save cheat list" -msgstr "Guardar lista de trucos" - -#: ../src/gtk/windowcallbacks.cpp:117 -msgid "Save game" -msgstr "Guardar juego" - -#: ../src/gtk/windowcallbacks.cpp:277 -msgid "Save screenshot" -msgstr "Guardar captura de pantalla" - -#: tmp/gameboyadvance.ui.h:14 -msgid "Save type : " -msgstr "Tipo de guardado : " - -#: ../src/gtk/window.cpp:1358 -msgid "Saved battery" -msgstr "Batería guardada" - -#: ../src/gtk/directoriesconfig.cpp:33 -msgid "Saves :" -msgstr "Partidas :" - -#: ../src/gtk/filters.cpp:68 -msgid "Scanlines" -msgstr "Scanlines" - -#: tmp/vbam.ui.h:11 -msgid "Screen capt_ure..." -msgstr "Captura de p_antalla..." - -#: ../src/gtk/joypadconfig.cpp:38 -msgid "Select :" -msgstr "Select :" - -#: tmp/vbam.ui.h:12 -msgid "Slot1" -msgstr "Ranura1" - -#: tmp/vbam.ui.h:13 -msgid "Slot10" -msgstr "Ranura10" - -#: tmp/vbam.ui.h:14 -msgid "Slot2" -msgstr "Ranura2" - -#: tmp/vbam.ui.h:15 -msgid "Slot3" -msgstr "Ranura3" - -#: tmp/vbam.ui.h:16 -msgid "Slot4" -msgstr "Ranura4" - -#: tmp/vbam.ui.h:17 -msgid "Slot5" -msgstr "Ranura5" - -#: tmp/vbam.ui.h:18 -msgid "Slot6" -msgstr "Ranura6" - -#: tmp/vbam.ui.h:19 -msgid "Slot7" -msgstr "Ranura7" - -#: tmp/vbam.ui.h:20 -msgid "Slot8" -msgstr "Ranura8" - -#: tmp/vbam.ui.h:21 -msgid "Slot9" -msgstr "Ranura9" - -#: ../src/gtk/filters.cpp:81 -msgid "Smart interframe blending" -msgstr "Smart interframe blending" - -#: ../src/gtk/joypadconfig.cpp:40 -msgid "Speed :" -msgstr "Velocidad :" - -#: tmp/preferences.ui.h:11 -msgid "Speed indicator : " -msgstr "Indicador de velocidad : " - -#: ../src/gtk/joypadconfig.cpp:39 -msgid "Start :" -msgstr "Start :" - -#: ../src/gtk/filters.cpp:62 -msgid "Super 2xSaI" -msgstr "Super 2xSaI" - -#: ../src/gtk/filters.cpp:63 -msgid "Super Eagle" -msgstr "Super Eagle" - -#: tmp/gameboy.ui.h:12 -msgid "Super Game Boy" -msgstr "Super Game Boy" - -#: tmp/gameboy.ui.h:13 -msgid "Super Game Boy 2" -msgstr "Super Game Boy 2" - -#: ../src/gtk/filters.cpp:69 -msgid "TV Mode" -msgstr "Modo TV" - -#: tmp/vbam.ui.h:22 -msgid "To _File ..." -msgstr "Hacia _Archivo ..." - -#: tmp/cheatlist.ui.h:7 -msgid "Toggle all Cheats" -msgstr "Activar todos los Trucos" - -#: ../src/gtk/window.cpp:427 -#, c-format -msgid "Unable to initialize output, falling back to Cairo\n" -msgstr "No se puede inicializar la salida, cayendo de nuevo a Cairo\n" - -#: ../src/gtk/window.cpp:1022 -#, c-format -msgid "Unknown file type %s" -msgstr "Tipo de archivo desconocido %s" - -#: ../src/gtk/joypadconfig.cpp:153 -msgid "Up" -msgstr "Arriba" - -#: ../src/gtk/joypadconfig.cpp:30 -msgid "Up :" -msgstr "Arriba :" - -#: tmp/gameboy.ui.h:14 -msgid "Use a Game Boy boot ROM file" -msgstr "Usar un archivo ROM boot de Game Boy" - -#: tmp/gameboyadvance.ui.h:15 -msgid "Use a bios file" -msgstr "Usar un archivo de bios" - -#: tmp/vbam.ui.h:23 -msgid "VBA" -msgstr "VBA" - -#: ../src/gtk/main.cpp:41 ../src/gtk/windowcallbacks.cpp:506 -msgid "VBA-M" -msgstr "VBA-M" - -#: ../src/gtk/window.cpp:1159 -#, c-format -msgid "VBA-M - %d%%" -msgstr "VBA-M - %d%%" - -#: ../src/gtk/window.cpp:1164 -#, c-format -msgid "VBA-M - %d%% (%d, %d fps)" -msgstr "VBA-M - %d%% (%d, %d fps)" - -#: ../src/gtk/windowcallbacks.cpp:99 ../src/gtk/windowcallbacks.cpp:134 -msgid "VisualBoyAdvance save game" -msgstr "Guardar juego de VisualBoyAdvance" - -#: ../src/gtk/main.cpp:81 -#, c-format -msgid "VisualBoyAdvance version %s [GTK+]\n" -msgstr "VisualBoyAdvance versión %s [GTK+]\n" - -#: tmp/sound.ui.h:11 -msgid "Volume : " -msgstr "Volumen : " - -#: tmp/vbam.ui.h:24 -msgid "_Disable cheats" -msgstr "_Desactivar trucos" - -#: tmp/vbam.ui.h:25 -msgid "_Display ..." -msgstr "_Pantalla ..." - -#: tmp/vbam.ui.h:26 -msgid "_Emulation" -msgstr "_Emulación" - -#: tmp/vbam.ui.h:27 -msgid "_File" -msgstr "_Archivo" - -#: tmp/vbam.ui.h:28 -msgid "_Game Boy ..." -msgstr "_Game Boy ..." - -#: tmp/vbam.ui.h:29 -msgid "_Help" -msgstr "_Ayuda" - -#: tmp/vbam.ui.h:30 -msgid "_Joypads ..." -msgstr "_Joypads ..." - -#: tmp/vbam.ui.h:31 -msgid "_List cheats ..." -msgstr "_Listar trucos ..." - -#: tmp/vbam.ui.h:32 -msgid "_Options" -msgstr "_Opciones" - -#: tmp/vbam.ui.h:33 -msgid "_Preferences ..." -msgstr "_Preferencias" - -#: tmp/vbam.ui.h:34 -msgid "_Reset" -msgstr "_Reiniciar" - -#: tmp/vbam.ui.h:35 -msgid "_Sound ..." -msgstr "_Sonido ..." - -#: ../src/gtk/filters.cpp:70 -msgid "hq2x" -msgstr "hq2x" - -#: ../src/gtk/filters.cpp:71 -msgid "lq2x" -msgstr "lq2x" +# This file is distributed under the same license as the VBA-M package. +# +msgid "" +msgstr "" +"Project-Id-Version: VBA-M\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 20:50+0100\n" +"PO-Revision-Date: 2011-03-22 15:06+0000\n" +"Last-Translator: MELERIX \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ../src/gtk/joypadconfig.cpp:142 +msgid " Axis " +msgstr " Eje " + +#: ../src/gtk/joypadconfig.cpp:135 +msgid " Button " +msgstr " Botón " + +#: ../src/gtk/joypadconfig.cpp:150 +msgid " Hat " +msgstr " Hat " + +#: ../src/gtk/window.cpp:1413 +msgid "%Y/%m/%d %H:%M:%S" +msgstr "%Y/%m/%d %H:%M:%S" + +#: ../src/gtk/screenarea-opengl.cpp:41 +#, c-format +msgid "*** OpenGL : Cannot open display.\n" +msgstr "*** OpenGL : No se puede abrir la pantalla.\n" + +#: ../src/gtk/window.cpp:1383 ../src/gtk/window.cpp:1428 +msgid "----/--/-- --:--:--" +msgstr "----/--/-- --:--:--" + +#: tmp/sound.ui.h:2 +#, no-c-format +msgid "100 %" +msgstr "100 %" + +#: tmp/sound.ui.h:4 +#, no-c-format +msgid "200 %" +msgstr "200 %" + +#: tmp/sound.ui.h:6 +#, no-c-format +msgid "25 %" +msgstr "25 %" + +#: ../src/gtk/filters.cpp:61 +msgid "2xSaI" +msgstr "2xSaI" + +#: tmp/sound.ui.h:8 +#, no-c-format +msgid "50 %" +msgstr "50 %" + +#: ../src/gtk/joypadconfig.cpp:165 +msgid "" +msgstr "" + +#: tmp/preferences.ui.h:1 +msgid "Appearance" +msgstr "Apariencia" + +#: tmp/gameboyadvance.ui.h:1 +msgid "Bios" +msgstr "Bios" + +#: tmp/gameboy.ui.h:1 +msgid "Boot ROM" +msgstr "ROM Boot" + +#: tmp/gameboyadvance.ui.h:2 +msgid "Cartridge" +msgstr "Cartucho" + +#: tmp/cheatedit.ui.h:1 +msgid "Codes" +msgstr "Códigos" + +#: tmp/cheatedit.ui.h:2 +msgid "Description" +msgstr "Descripción" + +#: tmp/display.ui.h:1 +msgid "Filters" +msgstr "Filtros" + +#: tmp/preferences.ui.h:2 +msgid "Frameskip" +msgstr "Salto de cuadros" + +#: tmp/preferences.ui.h:3 +msgid "General" +msgstr "General" + +#: tmp/display.ui.h:2 +msgid "Output module" +msgstr "Modulo de salida" + +#: tmp/gameboyadvance.ui.h:3 +msgid "Real-Time Clock" +msgstr "Reloj de Tiempo-Real" + +#: tmp/gameboy.ui.h:2 +msgid "System and peripherals" +msgstr "Sistema y periféricos" + +#: tmp/cheatedit.ui.h:3 +msgid "Type" +msgstr "Tipo" + +#: tmp/display.ui.h:3 +msgid "Zoom" +msgstr "Zoom" + +#: tmp/cheatlist.ui.h:1 +msgid "Add new cheat" +msgstr "Agregar nuevo truco" + +#: ../src/gtk/filters.cpp:65 +msgid "AdvanceMAME Scale2x" +msgstr "AdvanceMAME Scale2x" + +#: ../src/gtk/window.cpp:1301 +msgid "All Gameboy Advance files" +msgstr "Todos los archivos de Gameboy Advance" + +#: ../src/gtk/gameboyadvanceconfig.cpp:75 +msgid "All files" +msgstr "Todos los archivos" + +#: tmp/vbam.ui.h:1 +msgid "Auto load most recent" +msgstr "Cargar mas reciente automáticamente" + +#: ../src/gtk/joypadconfig.cpp:42 +msgid "Autofire A :" +msgstr "Auto-disparo A :" + +#: ../src/gtk/joypadconfig.cpp:43 +msgid "Autofire B :" +msgstr "Auto-disparo B :" + +#: tmp/gameboy.ui.h:3 tmp/gameboyadvance.ui.h:4 +msgid "Automatic" +msgstr "Automático" + +#: ../src/gtk/directoriesconfig.cpp:32 +msgid "Batteries :" +msgstr "Baterías :" + +#: ../src/gtk/filters.cpp:66 +msgid "Bilinear" +msgstr "Bilinear" + +#: ../src/gtk/filters.cpp:67 +msgid "Bilinear Plus" +msgstr "Bilinear Plus" + +#: tmp/gameboyadvance.ui.h:5 +msgid "Bios file : " +msgstr "Archivo de bios : " + +#: tmp/gameboy.ui.h:4 +msgid "Boot ROM file : " +msgstr "Archivo ROM Boot : " + +#: ../src/gtk/joypadconfig.cpp:34 +msgid "Button A :" +msgstr "Botón A :" + +#: ../src/gtk/joypadconfig.cpp:35 +msgid "Button B :" +msgstr "Botón B :" + +#: ../src/gtk/joypadconfig.cpp:36 +msgid "Button L :" +msgstr "Botón L :" + +#: ../src/gtk/joypadconfig.cpp:37 +msgid "Button R :" +msgstr "Botón R :" + +#: tmp/display.ui.h:4 +msgid "Cairo" +msgstr "Cairo" + +#: ../src/gtk/joypadconfig.cpp:41 +msgid "Capture :" +msgstr "Captura :" + +#: ../src/gtk/directoriesconfig.cpp:34 +msgid "Captures :" +msgstr "Capturas :" + +#: tmp/cheatlist.ui.h:2 +msgid "Cheat list" +msgstr "Lista de trucos" + +#: ../src/gtk/cheatedit.cpp:93 +msgid "CodeBreaker Advance" +msgstr "CodeBreaker Avanzado" + +#: tmp/vbam.ui.h:2 +msgid "D_irectories ..." +msgstr "D_irectorios ..." + +#: ../src/gtk/joypadconfig.cpp:50 +msgid "Default joypad" +msgstr "Joypad por defecto" + +#: tmp/display.ui.h:5 +msgid "Default scale : " +msgstr "Escala por defecto : " + +#: tmp/cheatlist.ui.h:3 +msgid "Delete all cheats" +msgstr "Borrar todo los trucos" + +#: tmp/cheatlist.ui.h:4 +msgid "Delete selected cheat" +msgstr "Borrar truco seleccionado" + +#: tmp/preferences.ui.h:4 +msgid "Detailed" +msgstr "Detallado" + +#: ../src/gtk/directoriesconfig.cpp:38 +msgid "Directories config" +msgstr "Directorio de configuraciones" + +#: tmp/gameboy.ui.h:5 +msgid "Display Super Game Boy borders" +msgstr "Mostrar bordes de Super Game Boy" + +#: ../src/gtk/joypadconfig.cpp:154 +msgid "Down" +msgstr "Abajo" + +#: ../src/gtk/joypadconfig.cpp:31 +msgid "Down :" +msgstr "Abajo :" + +#: tmp/gameboyadvance.ui.h:6 +msgid "EEPROM" +msgstr "EEPROM" + +#: tmp/gameboyadvance.ui.h:7 +msgid "EEPROM + Sensor" +msgstr "EEPROM + Sensor" + +#: tmp/cheatedit.ui.h:4 +msgid "Edit cheat" +msgstr "Editar truco" + +#: tmp/gameboy.ui.h:6 +msgid "Emulate a Game Boy Printer" +msgstr "Emular una impresora Game Boy" + +#: tmp/gameboy.ui.h:7 +msgid "Emulated system : " +msgstr "Sistema emulado : " + +#: tmp/preferences.ui.h:5 +msgid "Enable automatic frame skipping" +msgstr "Habilitar salto de cuadros automático" + +#: tmp/gameboyadvance.ui.h:8 +msgid "Enable real-time clock" +msgstr "Habilitar el reloj de tiempo-real" + +#: ../src/gtk/window.cpp:468 +#, c-format +msgid "Failed to init SDL: %s" +msgstr "Fallo al incializar SDL: %s" + +#: ../src/gtk/windowcallbacks.cpp:150 ../src/gtk/windowcallbacks.cpp:312 +msgid "File already exists. Overwrite it?" +msgstr "El archivo ya existe. Sobreescribirlo ?" + +#: tmp/gameboyadvance.ui.h:9 +msgid "Flash" +msgstr "Flash" + +#: tmp/gameboyadvance.ui.h:10 +msgid "Flash size : " +msgstr "Tamaño de Flash : " + +#: tmp/preferences.ui.h:6 +msgid "Frameskip level : " +msgstr "Nivel de salto de cuadros : " + +#: tmp/vbam.ui.h:3 +msgid "From _File ..." +msgstr "Desde _Archivo ..." + +#: tmp/display.ui.h:6 +msgid "Fullscreen filter : " +msgstr "Filtro en pantalla completa : " + +#: ../src/gtk/directoriesconfig.cpp:31 +msgid "GB roms :" +msgstr "GB roms :" + +#: ../src/gtk/directoriesconfig.cpp:30 +msgid "GBA roms :" +msgstr "GBA roms :" + +#: tmp/gameboy.ui.h:8 +msgid "Game Boy" +msgstr "Game Boy" + +#: tmp/gameboy.ui.h:9 +msgid "Game Boy Advance" +msgstr "Game Boy Advance" + +#: tmp/gameboyadvance.ui.h:11 +msgid "Game Boy Advance settings" +msgstr "Configuraciones de Game Boy Advance" + +#: tmp/gameboy.ui.h:10 +msgid "Game Boy Color" +msgstr "Game Boy Color" + +#: tmp/vbam.ui.h:4 +msgid "Game Boy _Advance ..." +msgstr "Game Boy _Advance ..." + +#: tmp/gameboy.ui.h:11 +msgid "GameBoy settings" +msgstr "Configuraciones de GameBoy" + +#: ../src/gtk/cheatedit.cpp:108 +msgid "GameGenie" +msgstr "GameGenie" + +#: ../src/gtk/cheatedit.cpp:103 +msgid "GameShark" +msgstr "GameShark" + +#: ../src/gtk/gameboyadvanceconfig.cpp:79 +msgid "Gameboy Advance BIOS" +msgstr "BIOS de Gameboy Advance" + +#: ../src/gtk/window.cpp:1308 +msgid "Gameboy Advance files" +msgstr "Archivos de Gameboy Advance" + +#: ../src/gtk/window.cpp:1315 +msgid "Gameboy files" +msgstr "Archivos de Gameboy" + +#: ../src/gtk/cheatedit.cpp:88 +msgid "Gameshark Advance" +msgstr "GameShark Avanzado" + +#: ../src/gtk/cheatedit.cpp:83 +msgid "Generic Code" +msgstr "Código Genérico" + +#: tmp/display.ui.h:7 +msgid "Interframe blending : " +msgstr "Interframe blending : " + +#: ../src/gtk/filters.cpp:82 +msgid "Interframe motion blur" +msgstr "Interframe motion blur" + +#: ../src/gtk/joypadconfig.cpp:129 +msgid "Joy " +msgstr "Joy " + +#: ../src/gtk/joypadconfig.cpp:49 +msgid "Joypad :" +msgstr "Joypad :" + +#: ../src/gtk/joypadconfig.cpp:47 +msgid "Joypad config" +msgstr "Configuración del Joypad" + +#: ../src/gtk/joypadconfig.cpp:156 +msgid "Left" +msgstr "Izquierda" + +#: ../src/gtk/joypadconfig.cpp:32 +msgid "Left :" +msgstr "Izquierda :" + +#: tmp/vbam.ui.h:5 +msgid "Loa_d state" +msgstr "C_argar estado" + +#: ../src/gtk/windowcallbacks.cpp:84 +msgid "Load game" +msgstr "Cargar juego" + +#: ../src/gtk/window.cpp:1341 +msgid "Loaded battery" +msgstr "Batería cargada" + +#: ../src/gtk/main.cpp:50 +msgid "Main VBA-M options" +msgstr "Opciones principales de VBA-M" + +#: tmp/vbam.ui.h:6 +msgid "Most recent" +msgstr "Mas reciente" + +#: tmp/sound.ui.h:9 +msgid "Mute" +msgstr "Silencio" + +#: ../src/gtk/windowcallbacks.cpp:508 +msgid "Nintendo GameBoy Advance emulator." +msgstr "Emulador de Nintendo GameBoy Advance." + +#: ../src/gtk/filters.cpp:60 ../src/gtk/filters.cpp:80 +#: tmp/gameboyadvance.ui.h:12 tmp/preferences.ui.h:7 +msgid "None" +msgstr "Ninguno" + +#: tmp/vbam.ui.h:7 +msgid "Oldest slot" +msgstr "Ranura mas antigua" + +#: ../src/gtk/window.cpp:1266 +msgid "Open" +msgstr "Abrir" + +#: ../src/gtk/cheatlist.cpp:70 tmp/cheatlist.ui.h:5 +msgid "Open cheat list" +msgstr "Abrir lista de trucos" + +#: tmp/vbam.ui.h:8 +msgid "Open rece_nt" +msgstr "Abrir r_eciente" + +#: tmp/display.ui.h:8 +msgid "OpenGL" +msgstr "OpenGL" + +#: ../src/gtk/main.cpp:55 +msgid "Output version information." +msgstr "Información saliente de la versión." + +#: ../src/gtk/windowcallbacks.cpp:294 +msgid "PNG image" +msgstr "Imagen PNG" + +#: tmp/vbam.ui.h:9 +msgid "Pause" +msgstr "Pausa" + +#: tmp/preferences.ui.h:8 +msgid "Pause when inactive" +msgstr "Pausar cuando este inactivo" + +#: tmp/preferences.ui.h:9 +msgid "Percentage" +msgstr "Porcentaje" + +#: ../src/gtk/filters.cpp:64 +msgid "Pixelate" +msgstr "Pixelado" + +#: tmp/preferences.ui.h:10 +msgid "Preferences" +msgstr "Preferencias" + +#: ../src/gtk/joypadconfig.cpp:155 +msgid "Right" +msgstr "Derecha" + +#: ../src/gtk/joypadconfig.cpp:33 +msgid "Right :" +msgstr "Derecha :" + +#: tmp/gameboyadvance.ui.h:13 +msgid "SRAM" +msgstr "SRAM" + +#: tmp/vbam.ui.h:10 +msgid "S_ave state" +msgstr "G_uardar estado" + +#: tmp/sound.ui.h:10 +msgid "Sample rate : " +msgstr " Frecuencia de muestreo : " + +#: ../src/gtk/cheatlist.cpp:93 tmp/cheatlist.ui.h:6 +msgid "Save cheat list" +msgstr "Guardar lista de trucos" + +#: ../src/gtk/windowcallbacks.cpp:117 +msgid "Save game" +msgstr "Guardar juego" + +#: ../src/gtk/windowcallbacks.cpp:277 +msgid "Save screenshot" +msgstr "Guardar captura de pantalla" + +#: tmp/gameboyadvance.ui.h:14 +msgid "Save type : " +msgstr "Tipo de guardado : " + +#: ../src/gtk/window.cpp:1358 +msgid "Saved battery" +msgstr "Batería guardada" + +#: ../src/gtk/directoriesconfig.cpp:33 +msgid "Saves :" +msgstr "Partidas :" + +#: ../src/gtk/filters.cpp:68 +msgid "Scanlines" +msgstr "Scanlines" + +#: tmp/vbam.ui.h:11 +msgid "Screen capt_ure..." +msgstr "Captura de p_antalla..." + +#: ../src/gtk/joypadconfig.cpp:38 +msgid "Select :" +msgstr "Select :" + +#: tmp/vbam.ui.h:12 +msgid "Slot1" +msgstr "Ranura1" + +#: tmp/vbam.ui.h:13 +msgid "Slot10" +msgstr "Ranura10" + +#: tmp/vbam.ui.h:14 +msgid "Slot2" +msgstr "Ranura2" + +#: tmp/vbam.ui.h:15 +msgid "Slot3" +msgstr "Ranura3" + +#: tmp/vbam.ui.h:16 +msgid "Slot4" +msgstr "Ranura4" + +#: tmp/vbam.ui.h:17 +msgid "Slot5" +msgstr "Ranura5" + +#: tmp/vbam.ui.h:18 +msgid "Slot6" +msgstr "Ranura6" + +#: tmp/vbam.ui.h:19 +msgid "Slot7" +msgstr "Ranura7" + +#: tmp/vbam.ui.h:20 +msgid "Slot8" +msgstr "Ranura8" + +#: tmp/vbam.ui.h:21 +msgid "Slot9" +msgstr "Ranura9" + +#: ../src/gtk/filters.cpp:81 +msgid "Smart interframe blending" +msgstr "Smart interframe blending" + +#: ../src/gtk/joypadconfig.cpp:40 +msgid "Speed :" +msgstr "Velocidad :" + +#: tmp/preferences.ui.h:11 +msgid "Speed indicator : " +msgstr "Indicador de velocidad : " + +#: ../src/gtk/joypadconfig.cpp:39 +msgid "Start :" +msgstr "Start :" + +#: ../src/gtk/filters.cpp:62 +msgid "Super 2xSaI" +msgstr "Super 2xSaI" + +#: ../src/gtk/filters.cpp:63 +msgid "Super Eagle" +msgstr "Super Eagle" + +#: tmp/gameboy.ui.h:12 +msgid "Super Game Boy" +msgstr "Super Game Boy" + +#: tmp/gameboy.ui.h:13 +msgid "Super Game Boy 2" +msgstr "Super Game Boy 2" + +#: ../src/gtk/filters.cpp:69 +msgid "TV Mode" +msgstr "Modo TV" + +#: tmp/vbam.ui.h:22 +msgid "To _File ..." +msgstr "Hacia _Archivo ..." + +#: tmp/cheatlist.ui.h:7 +msgid "Toggle all Cheats" +msgstr "Activar todos los Trucos" + +#: ../src/gtk/window.cpp:427 +#, c-format +msgid "Unable to initialize output, falling back to Cairo\n" +msgstr "No se puede inicializar la salida, cayendo de nuevo a Cairo\n" + +#: ../src/gtk/window.cpp:1022 +#, c-format +msgid "Unknown file type %s" +msgstr "Tipo de archivo desconocido %s" + +#: ../src/gtk/joypadconfig.cpp:153 +msgid "Up" +msgstr "Arriba" + +#: ../src/gtk/joypadconfig.cpp:30 +msgid "Up :" +msgstr "Arriba :" + +#: tmp/gameboy.ui.h:14 +msgid "Use a Game Boy boot ROM file" +msgstr "Usar un archivo ROM boot de Game Boy" + +#: tmp/gameboyadvance.ui.h:15 +msgid "Use a bios file" +msgstr "Usar un archivo de bios" + +#: tmp/vbam.ui.h:23 +msgid "VBA" +msgstr "VBA" + +#: ../src/gtk/main.cpp:41 ../src/gtk/windowcallbacks.cpp:506 +msgid "VBA-M" +msgstr "VBA-M" + +#: ../src/gtk/window.cpp:1159 +#, c-format +msgid "VBA-M - %d%%" +msgstr "VBA-M - %d%%" + +#: ../src/gtk/window.cpp:1164 +#, c-format +msgid "VBA-M - %d%% (%d, %d fps)" +msgstr "VBA-M - %d%% (%d, %d fps)" + +#: ../src/gtk/windowcallbacks.cpp:99 ../src/gtk/windowcallbacks.cpp:134 +msgid "VisualBoyAdvance save game" +msgstr "Guardar juego de VisualBoyAdvance" + +#: ../src/gtk/main.cpp:81 +#, c-format +msgid "VisualBoyAdvance version %s [GTK+]\n" +msgstr "VisualBoyAdvance versión %s [GTK+]\n" + +#: tmp/sound.ui.h:11 +msgid "Volume : " +msgstr "Volumen : " + +#: tmp/vbam.ui.h:24 +msgid "_Disable cheats" +msgstr "_Desactivar trucos" + +#: tmp/vbam.ui.h:25 +msgid "_Display ..." +msgstr "_Pantalla ..." + +#: tmp/vbam.ui.h:26 +msgid "_Emulation" +msgstr "_Emulación" + +#: tmp/vbam.ui.h:27 +msgid "_File" +msgstr "_Archivo" + +#: tmp/vbam.ui.h:28 +msgid "_Game Boy ..." +msgstr "_Game Boy ..." + +#: tmp/vbam.ui.h:29 +msgid "_Help" +msgstr "_Ayuda" + +#: tmp/vbam.ui.h:30 +msgid "_Joypads ..." +msgstr "_Joypads ..." + +#: tmp/vbam.ui.h:31 +msgid "_List cheats ..." +msgstr "_Listar trucos ..." + +#: tmp/vbam.ui.h:32 +msgid "_Options" +msgstr "_Opciones" + +#: tmp/vbam.ui.h:33 +msgid "_Preferences ..." +msgstr "_Preferencias" + +#: tmp/vbam.ui.h:34 +msgid "_Reset" +msgstr "_Reiniciar" + +#: tmp/vbam.ui.h:35 +msgid "_Sound ..." +msgstr "_Sonido ..." + +#: ../src/gtk/filters.cpp:70 +msgid "hq2x" +msgstr "hq2x" + +#: ../src/gtk/filters.cpp:71 +msgid "lq2x" +msgstr "lq2x" diff --git a/po/gvbam/fr.po b/po/gvbam/fr.po index 6879a232..6b31c58b 100644 --- a/po/gvbam/fr.po +++ b/po/gvbam/fr.po @@ -1,733 +1,733 @@ -# This file is distributed under the same license as the VBA-M package. -# -# Translators: -# bgK , 2011. -msgid "" -msgstr "" -"Project-Id-Version: VBA-M\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 20:50+0100\n" -"PO-Revision-Date: 2011-03-22 15:06+0000\n" -"Last-Translator: bgK \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: ../src/gtk/joypadconfig.cpp:142 -msgid " Axis " -msgstr "Axe" - -#: ../src/gtk/joypadconfig.cpp:135 -msgid " Button " -msgstr "Bouton" - -#: ../src/gtk/joypadconfig.cpp:150 -msgid " Hat " -msgstr "Stick" - -#: ../src/gtk/window.cpp:1413 -msgid "%Y/%m/%d %H:%M:%S" -msgstr "%Y/%m/%d %H:%M:%S" - -#: ../src/gtk/screenarea-opengl.cpp:41 -#, c-format -msgid "*** OpenGL : Cannot open display.\n" -msgstr "*** OpenGL : Impossible d'initialiser l'affichage.\n" - -#: ../src/gtk/window.cpp:1383 ../src/gtk/window.cpp:1428 -msgid "----/--/-- --:--:--" -msgstr "----/--/-- --:--:--" - -#: tmp/sound.ui.h:2 -#, no-c-format -msgid "100 %" -msgstr "100 %" - -#: tmp/sound.ui.h:4 -#, no-c-format -msgid "200 %" -msgstr "200 %" - -#: tmp/sound.ui.h:6 -#, no-c-format -msgid "25 %" -msgstr "25 %" - -#: ../src/gtk/filters.cpp:61 -msgid "2xSaI" -msgstr "2xSaI" - -#: tmp/sound.ui.h:8 -#, no-c-format -msgid "50 %" -msgstr "50 %" - -#: ../src/gtk/joypadconfig.cpp:165 -msgid "" -msgstr "" - -#: tmp/preferences.ui.h:1 -msgid "Appearance" -msgstr "Apparence" - -#: tmp/gameboyadvance.ui.h:1 -msgid "Bios" -msgstr "Bios" - -#: tmp/gameboy.ui.h:1 -msgid "Boot ROM" -msgstr "ROM de démarrage" - -#: tmp/gameboyadvance.ui.h:2 -msgid "Cartridge" -msgstr "Cartouche" - -#: tmp/cheatedit.ui.h:1 -msgid "Codes" -msgstr "Codes" - -#: tmp/cheatedit.ui.h:2 -msgid "Description" -msgstr "Description" - -#: tmp/display.ui.h:1 -msgid "Filters" -msgstr "Filtres" - -#: tmp/preferences.ui.h:2 -msgid "Frameskip" -msgstr "Saut d'images" - -#: tmp/preferences.ui.h:3 -msgid "General" -msgstr "Transverse" - -#: tmp/display.ui.h:2 -msgid "Output module" -msgstr "Module d'affichage" - -#: tmp/gameboyadvance.ui.h:3 -msgid "Real-Time Clock" -msgstr "Horloge (RTC)" - -#: tmp/gameboy.ui.h:2 -msgid "System and peripherals" -msgstr "Système et périphériques" - -#: tmp/cheatedit.ui.h:3 -msgid "Type" -msgstr "Type" - -#: tmp/display.ui.h:3 -msgid "Zoom" -msgstr "Zoom" - -#: tmp/cheatlist.ui.h:1 -msgid "Add new cheat" -msgstr "Ajouter un code" - -#: ../src/gtk/filters.cpp:65 -msgid "AdvanceMAME Scale2x" -msgstr "AdvanceMAME Scale2x" - -#: ../src/gtk/window.cpp:1301 -msgid "All Gameboy Advance files" -msgstr "Tous les fichiers Gameboy Advance" - -#: ../src/gtk/gameboyadvanceconfig.cpp:75 -msgid "All files" -msgstr "Tous les fichiers" - -#: tmp/vbam.ui.h:1 -msgid "Auto load most recent" -msgstr "Charger automatiquement le plus récent" - -#: ../src/gtk/joypadconfig.cpp:42 -msgid "Autofire A :" -msgstr "Tir auto A :" - -#: ../src/gtk/joypadconfig.cpp:43 -msgid "Autofire B :" -msgstr "Tir auto B :" - -#: tmp/gameboy.ui.h:3 tmp/gameboyadvance.ui.h:4 -msgid "Automatic" -msgstr "Automatique" - -#: ../src/gtk/directoriesconfig.cpp:32 -msgid "Batteries :" -msgstr "Batteries :" - -#: ../src/gtk/filters.cpp:66 -msgid "Bilinear" -msgstr "Bilinear" - -#: ../src/gtk/filters.cpp:67 -msgid "Bilinear Plus" -msgstr "Bilinear Plus" - -#: tmp/gameboyadvance.ui.h:5 -msgid "Bios file : " -msgstr "Bios : " - -#: tmp/gameboy.ui.h:4 -msgid "Boot ROM file : " -msgstr "ROM de démarrage : " - -#: ../src/gtk/joypadconfig.cpp:34 -msgid "Button A :" -msgstr "Bouton A :" - -#: ../src/gtk/joypadconfig.cpp:35 -msgid "Button B :" -msgstr "Bouton B :" - -#: ../src/gtk/joypadconfig.cpp:36 -msgid "Button L :" -msgstr "Bouton L :" - -#: ../src/gtk/joypadconfig.cpp:37 -msgid "Button R :" -msgstr "Bouton R :" - -#: tmp/display.ui.h:4 -msgid "Cairo" -msgstr "Cairo" - -#: ../src/gtk/joypadconfig.cpp:41 -msgid "Capture :" -msgstr "Capture :" - -#: ../src/gtk/directoriesconfig.cpp:34 -msgid "Captures :" -msgstr "Captures :" - -#: tmp/cheatlist.ui.h:2 -msgid "Cheat list" -msgstr "Liste des codes" - -#: ../src/gtk/cheatedit.cpp:93 -msgid "CodeBreaker Advance" -msgstr "CodeBreaker Advance" - -#: tmp/vbam.ui.h:2 -msgid "D_irectories ..." -msgstr "_Répertoires ..." - -#: ../src/gtk/joypadconfig.cpp:50 -msgid "Default joypad" -msgstr "Manette par défaut" - -#: tmp/display.ui.h:5 -msgid "Default scale : " -msgstr "Taille par défaut : " - -#: tmp/cheatlist.ui.h:3 -msgid "Delete all cheats" -msgstr "Supprimer tous les codes" - -#: tmp/cheatlist.ui.h:4 -msgid "Delete selected cheat" -msgstr "Supprimer le code sélectionné" - -#: tmp/preferences.ui.h:4 -msgid "Detailed" -msgstr "Détaillé" - -#: ../src/gtk/directoriesconfig.cpp:38 -msgid "Directories config" -msgstr "Configuration des répertoires" - -#: tmp/gameboy.ui.h:5 -msgid "Display Super Game Boy borders" -msgstr "Afficher les bordures Super Game Boy" - -#: ../src/gtk/joypadconfig.cpp:154 -msgid "Down" -msgstr "Bas" - -#: ../src/gtk/joypadconfig.cpp:31 -msgid "Down :" -msgstr "Bas :" - -#: tmp/gameboyadvance.ui.h:6 -msgid "EEPROM" -msgstr "EEPROM" - -#: tmp/gameboyadvance.ui.h:7 -msgid "EEPROM + Sensor" -msgstr "EEPROM + Capteur" - -#: tmp/cheatedit.ui.h:4 -msgid "Edit cheat" -msgstr "Editer le code" - -#: tmp/gameboy.ui.h:6 -msgid "Emulate a Game Boy Printer" -msgstr "Emuler une imprimante Game Boy" - -#: tmp/gameboy.ui.h:7 -msgid "Emulated system : " -msgstr "Machine émulée : " - -#: tmp/preferences.ui.h:5 -msgid "Enable automatic frame skipping" -msgstr "Activer le saut d'image automatique" - -#: tmp/gameboyadvance.ui.h:8 -msgid "Enable real-time clock" -msgstr "Activer l'horloge (RTC)" - -#: ../src/gtk/window.cpp:468 -#, c-format -msgid "Failed to init SDL: %s" -msgstr "Echec à l'initialisation de SDL: %s" - -#: ../src/gtk/windowcallbacks.cpp:150 ../src/gtk/windowcallbacks.cpp:312 -msgid "File already exists. Overwrite it?" -msgstr "Ce fichier existe déjà. Voulez-vous le remplacer ?" - -#: tmp/gameboyadvance.ui.h:9 -msgid "Flash" -msgstr "Flash" - -#: tmp/gameboyadvance.ui.h:10 -msgid "Flash size : " -msgstr "Taille mémoire Flash : " - -#: tmp/preferences.ui.h:6 -msgid "Frameskip level : " -msgstr "Niveau de saut : " - -#: tmp/vbam.ui.h:3 -msgid "From _File ..." -msgstr "Depuis un _fichier ..." - -#: tmp/display.ui.h:6 -msgid "Fullscreen filter : " -msgstr "Filtre : " - -#: ../src/gtk/directoriesconfig.cpp:31 -msgid "GB roms :" -msgstr "Roms GB :" - -#: ../src/gtk/directoriesconfig.cpp:30 -msgid "GBA roms :" -msgstr "Roms GBA :" - -#: tmp/gameboy.ui.h:8 -msgid "Game Boy" -msgstr "Game Boy" - -#: tmp/gameboy.ui.h:9 -msgid "Game Boy Advance" -msgstr "Game Boy Advance" - -#: tmp/gameboyadvance.ui.h:11 -msgid "Game Boy Advance settings" -msgstr "Paramètres Game Boy Advance" - -#: tmp/gameboy.ui.h:10 -msgid "Game Boy Color" -msgstr "Game Boy Color" - -#: tmp/vbam.ui.h:4 -msgid "Game Boy _Advance ..." -msgstr "Game Boy _Advance ..." - -#: tmp/gameboy.ui.h:11 -msgid "GameBoy settings" -msgstr "Paramètres GameBoy" - -#: ../src/gtk/cheatedit.cpp:108 -msgid "GameGenie" -msgstr "GameGenie" - -#: ../src/gtk/cheatedit.cpp:103 -msgid "GameShark" -msgstr "GameShark" - -#: ../src/gtk/gameboyadvanceconfig.cpp:79 -msgid "Gameboy Advance BIOS" -msgstr "BIOS Gameboy Advance" - -#: ../src/gtk/window.cpp:1308 -msgid "Gameboy Advance files" -msgstr "Fichiers Gameboy Advance" - -#: ../src/gtk/window.cpp:1315 -msgid "Gameboy files" -msgstr "Fichiers Gameboy" - -#: ../src/gtk/cheatedit.cpp:88 -msgid "Gameshark Advance" -msgstr "Gameshark Advance" - -#: ../src/gtk/cheatedit.cpp:83 -msgid "Generic Code" -msgstr "Code générique" - -#: tmp/display.ui.h:7 -msgid "Interframe blending : " -msgstr "Interframe blending : " - -#: ../src/gtk/filters.cpp:82 -msgid "Interframe motion blur" -msgstr "Interframe motion blur" - -#: ../src/gtk/joypadconfig.cpp:129 -msgid "Joy " -msgstr "Joy" - -#: ../src/gtk/joypadconfig.cpp:49 -msgid "Joypad :" -msgstr "Manette :" - -#: ../src/gtk/joypadconfig.cpp:47 -msgid "Joypad config" -msgstr "Configuration de la manette" - -#: ../src/gtk/joypadconfig.cpp:156 -msgid "Left" -msgstr "Gauche" - -#: ../src/gtk/joypadconfig.cpp:32 -msgid "Left :" -msgstr "Gauche :" - -#: tmp/vbam.ui.h:5 -msgid "Loa_d state" -msgstr "Char_ger l'état" - -#: ../src/gtk/windowcallbacks.cpp:84 -msgid "Load game" -msgstr "Chargement" - -#: ../src/gtk/window.cpp:1341 -msgid "Loaded battery" -msgstr "Batterie chargée" - -#: ../src/gtk/main.cpp:50 -msgid "Main VBA-M options" -msgstr "VBA-M - Options principales" - -#: tmp/vbam.ui.h:6 -msgid "Most recent" -msgstr "Le plus récent" - -#: tmp/sound.ui.h:9 -msgid "Mute" -msgstr "Muet" - -#: ../src/gtk/windowcallbacks.cpp:508 -msgid "Nintendo GameBoy Advance emulator." -msgstr "Emulateur de Nindendo GameBoy Advance." - -#: ../src/gtk/filters.cpp:60 ../src/gtk/filters.cpp:80 -#: tmp/gameboyadvance.ui.h:12 tmp/preferences.ui.h:7 -msgid "None" -msgstr "Aucun" - -#: tmp/vbam.ui.h:7 -msgid "Oldest slot" -msgstr "Le plus ancien" - -#: ../src/gtk/window.cpp:1266 -msgid "Open" -msgstr "Ouvrir" - -#: ../src/gtk/cheatlist.cpp:70 tmp/cheatlist.ui.h:5 -msgid "Open cheat list" -msgstr "Charger une liste de codes de triche" - -#: tmp/vbam.ui.h:8 -msgid "Open rece_nt" -msgstr "Der_niers jeux" - -#: tmp/display.ui.h:8 -msgid "OpenGL" -msgstr "OpenGL" - -#: ../src/gtk/main.cpp:55 -msgid "Output version information." -msgstr "Afficher les informations de version" - -#: ../src/gtk/windowcallbacks.cpp:294 -msgid "PNG image" -msgstr "Image PNG" - -#: tmp/vbam.ui.h:9 -msgid "Pause" -msgstr "Pause" - -#: tmp/preferences.ui.h:8 -msgid "Pause when inactive" -msgstr "Mettre en pause quand inactif" - -#: tmp/preferences.ui.h:9 -msgid "Percentage" -msgstr "Pourcentage" - -#: ../src/gtk/filters.cpp:64 -msgid "Pixelate" -msgstr "Pixelate" - -#: tmp/preferences.ui.h:10 -msgid "Preferences" -msgstr "Préférences" - -#: ../src/gtk/joypadconfig.cpp:155 -msgid "Right" -msgstr "Droite" - -#: ../src/gtk/joypadconfig.cpp:33 -msgid "Right :" -msgstr "Droite :" - -#: tmp/gameboyadvance.ui.h:13 -msgid "SRAM" -msgstr "SRAM" - -#: tmp/vbam.ui.h:10 -msgid "S_ave state" -msgstr "S_auvegarder l'état" - -#: tmp/sound.ui.h:10 -msgid "Sample rate : " -msgstr "Taux d'échantionnage : " - -#: ../src/gtk/cheatlist.cpp:93 tmp/cheatlist.ui.h:6 -msgid "Save cheat list" -msgstr "Sauvegarder une liste de codes de triche" - -#: ../src/gtk/windowcallbacks.cpp:117 -msgid "Save game" -msgstr "Sauvegarde" - -#: ../src/gtk/windowcallbacks.cpp:277 -msgid "Save screenshot" -msgstr "Capture d'écran" - -#: tmp/gameboyadvance.ui.h:14 -msgid "Save type : " -msgstr "Type de sauvegarde : " - -#: ../src/gtk/window.cpp:1358 -msgid "Saved battery" -msgstr "Batterie sauvegardée" - -#: ../src/gtk/directoriesconfig.cpp:33 -msgid "Saves :" -msgstr "Sauvegardes :" - -#: ../src/gtk/filters.cpp:68 -msgid "Scanlines" -msgstr "Scanlines" - -#: tmp/vbam.ui.h:11 -msgid "Screen capt_ure..." -msgstr "Capt_ure d'écran" - -#: ../src/gtk/joypadconfig.cpp:38 -msgid "Select :" -msgstr "Select :" - -#: tmp/vbam.ui.h:12 -msgid "Slot1" -msgstr "Emplacement1" - -#: tmp/vbam.ui.h:13 -msgid "Slot10" -msgstr "Emplacement10" - -#: tmp/vbam.ui.h:14 -msgid "Slot2" -msgstr "Emplacement2" - -#: tmp/vbam.ui.h:15 -msgid "Slot3" -msgstr "Emplacement3" - -#: tmp/vbam.ui.h:16 -msgid "Slot4" -msgstr "Emplacement4" - -#: tmp/vbam.ui.h:17 -msgid "Slot5" -msgstr "Emplacement5" - -#: tmp/vbam.ui.h:18 -msgid "Slot6" -msgstr "Emplacement6" - -#: tmp/vbam.ui.h:19 -msgid "Slot7" -msgstr "Emplacement7" - -#: tmp/vbam.ui.h:20 -msgid "Slot8" -msgstr "Emplacement8" - -#: tmp/vbam.ui.h:21 -msgid "Slot9" -msgstr "Emplacement9" - -#: ../src/gtk/filters.cpp:81 -msgid "Smart interframe blending" -msgstr "Smart interframe blending" - -#: ../src/gtk/joypadconfig.cpp:40 -msgid "Speed :" -msgstr "Accélération :" - -#: tmp/preferences.ui.h:11 -msgid "Speed indicator : " -msgstr "Affichage de la vitesse : " - -#: ../src/gtk/joypadconfig.cpp:39 -msgid "Start :" -msgstr "Start :" - -#: ../src/gtk/filters.cpp:62 -msgid "Super 2xSaI" -msgstr "Super 2xSaI" - -#: ../src/gtk/filters.cpp:63 -msgid "Super Eagle" -msgstr "Super Eagle" - -#: tmp/gameboy.ui.h:12 -msgid "Super Game Boy" -msgstr "Super Game Boy" - -#: tmp/gameboy.ui.h:13 -msgid "Super Game Boy 2" -msgstr "Super Game Boy 2" - -#: ../src/gtk/filters.cpp:69 -msgid "TV Mode" -msgstr "TV Mode" - -#: tmp/vbam.ui.h:22 -msgid "To _File ..." -msgstr "Dans un _fichier ..." - -#: tmp/cheatlist.ui.h:7 -msgid "Toggle all Cheats" -msgstr "Inverser l'état de tous les codes" - -#: ../src/gtk/window.cpp:427 -#, c-format -msgid "Unable to initialize output, falling back to Cairo\n" -msgstr "Impossible d'initialiser l'affichage, utilisation de Cairo\n" - -#: ../src/gtk/window.cpp:1022 -#, c-format -msgid "Unknown file type %s" -msgstr "Type de fichier inconnu %s" - -#: ../src/gtk/joypadconfig.cpp:153 -msgid "Up" -msgstr "Haut" - -#: ../src/gtk/joypadconfig.cpp:30 -msgid "Up :" -msgstr "Haut :" - -#: tmp/gameboy.ui.h:14 -msgid "Use a Game Boy boot ROM file" -msgstr "Utiliser une ROM de démarrage GameBoy" - -#: tmp/gameboyadvance.ui.h:15 -msgid "Use a bios file" -msgstr "Utiliser un fichier bios" - -#: tmp/vbam.ui.h:23 -msgid "VBA" -msgstr "VBA" - -#: ../src/gtk/main.cpp:41 ../src/gtk/windowcallbacks.cpp:506 -msgid "VBA-M" -msgstr "VBA-M" - -#: ../src/gtk/window.cpp:1159 -#, c-format -msgid "VBA-M - %d%%" -msgstr "VBA-M - %d%%" - -#: ../src/gtk/window.cpp:1164 -#, c-format -msgid "VBA-M - %d%% (%d, %d fps)" -msgstr "VBA-M - %d%% (%d, %d fps)" - -#: ../src/gtk/windowcallbacks.cpp:99 ../src/gtk/windowcallbacks.cpp:134 -msgid "VisualBoyAdvance save game" -msgstr "Sauvegarde VisualBoyAdvance" - -#: ../src/gtk/main.cpp:81 -#, c-format -msgid "VisualBoyAdvance version %s [GTK+]\n" -msgstr "VisualBoyAdvance version %s [GTK+]\n" - -#: tmp/sound.ui.h:11 -msgid "Volume : " -msgstr "Volume : " - -#: tmp/vbam.ui.h:24 -msgid "_Disable cheats" -msgstr "_Désactiver les codes" - -#: tmp/vbam.ui.h:25 -msgid "_Display ..." -msgstr "_Affichage ..." - -#: tmp/vbam.ui.h:26 -msgid "_Emulation" -msgstr "_Emulation" - -#: tmp/vbam.ui.h:27 -msgid "_File" -msgstr "_Fichier" - -#: tmp/vbam.ui.h:28 -msgid "_Game Boy ..." -msgstr "_Game Boy ..." - -#: tmp/vbam.ui.h:29 -msgid "_Help" -msgstr "_Aide" - -#: tmp/vbam.ui.h:30 -msgid "_Joypads ..." -msgstr "_Manettes ..." - -#: tmp/vbam.ui.h:31 -msgid "_List cheats ..." -msgstr "_Codes de triche ..." - -#: tmp/vbam.ui.h:32 -msgid "_Options" -msgstr "_Options" - -#: tmp/vbam.ui.h:33 -msgid "_Preferences ..." -msgstr "_Préférences ..." - -#: tmp/vbam.ui.h:34 -msgid "_Reset" -msgstr "_Réinitialiser" - -#: tmp/vbam.ui.h:35 -msgid "_Sound ..." -msgstr "_Son ..." - -#: ../src/gtk/filters.cpp:70 -msgid "hq2x" -msgstr "hq2x" - -#: ../src/gtk/filters.cpp:71 -msgid "lq2x" -msgstr "lq2x" +# This file is distributed under the same license as the VBA-M package. +# +# Translators: +# bgK , 2011. +msgid "" +msgstr "" +"Project-Id-Version: VBA-M\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 20:50+0100\n" +"PO-Revision-Date: 2011-03-22 15:06+0000\n" +"Last-Translator: bgK \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1)\n" + +#: ../src/gtk/joypadconfig.cpp:142 +msgid " Axis " +msgstr "Axe" + +#: ../src/gtk/joypadconfig.cpp:135 +msgid " Button " +msgstr "Bouton" + +#: ../src/gtk/joypadconfig.cpp:150 +msgid " Hat " +msgstr "Stick" + +#: ../src/gtk/window.cpp:1413 +msgid "%Y/%m/%d %H:%M:%S" +msgstr "%Y/%m/%d %H:%M:%S" + +#: ../src/gtk/screenarea-opengl.cpp:41 +#, c-format +msgid "*** OpenGL : Cannot open display.\n" +msgstr "*** OpenGL : Impossible d'initialiser l'affichage.\n" + +#: ../src/gtk/window.cpp:1383 ../src/gtk/window.cpp:1428 +msgid "----/--/-- --:--:--" +msgstr "----/--/-- --:--:--" + +#: tmp/sound.ui.h:2 +#, no-c-format +msgid "100 %" +msgstr "100 %" + +#: tmp/sound.ui.h:4 +#, no-c-format +msgid "200 %" +msgstr "200 %" + +#: tmp/sound.ui.h:6 +#, no-c-format +msgid "25 %" +msgstr "25 %" + +#: ../src/gtk/filters.cpp:61 +msgid "2xSaI" +msgstr "2xSaI" + +#: tmp/sound.ui.h:8 +#, no-c-format +msgid "50 %" +msgstr "50 %" + +#: ../src/gtk/joypadconfig.cpp:165 +msgid "" +msgstr "" + +#: tmp/preferences.ui.h:1 +msgid "Appearance" +msgstr "Apparence" + +#: tmp/gameboyadvance.ui.h:1 +msgid "Bios" +msgstr "Bios" + +#: tmp/gameboy.ui.h:1 +msgid "Boot ROM" +msgstr "ROM de démarrage" + +#: tmp/gameboyadvance.ui.h:2 +msgid "Cartridge" +msgstr "Cartouche" + +#: tmp/cheatedit.ui.h:1 +msgid "Codes" +msgstr "Codes" + +#: tmp/cheatedit.ui.h:2 +msgid "Description" +msgstr "Description" + +#: tmp/display.ui.h:1 +msgid "Filters" +msgstr "Filtres" + +#: tmp/preferences.ui.h:2 +msgid "Frameskip" +msgstr "Saut d'images" + +#: tmp/preferences.ui.h:3 +msgid "General" +msgstr "Transverse" + +#: tmp/display.ui.h:2 +msgid "Output module" +msgstr "Module d'affichage" + +#: tmp/gameboyadvance.ui.h:3 +msgid "Real-Time Clock" +msgstr "Horloge (RTC)" + +#: tmp/gameboy.ui.h:2 +msgid "System and peripherals" +msgstr "Système et périphériques" + +#: tmp/cheatedit.ui.h:3 +msgid "Type" +msgstr "Type" + +#: tmp/display.ui.h:3 +msgid "Zoom" +msgstr "Zoom" + +#: tmp/cheatlist.ui.h:1 +msgid "Add new cheat" +msgstr "Ajouter un code" + +#: ../src/gtk/filters.cpp:65 +msgid "AdvanceMAME Scale2x" +msgstr "AdvanceMAME Scale2x" + +#: ../src/gtk/window.cpp:1301 +msgid "All Gameboy Advance files" +msgstr "Tous les fichiers Gameboy Advance" + +#: ../src/gtk/gameboyadvanceconfig.cpp:75 +msgid "All files" +msgstr "Tous les fichiers" + +#: tmp/vbam.ui.h:1 +msgid "Auto load most recent" +msgstr "Charger automatiquement le plus récent" + +#: ../src/gtk/joypadconfig.cpp:42 +msgid "Autofire A :" +msgstr "Tir auto A :" + +#: ../src/gtk/joypadconfig.cpp:43 +msgid "Autofire B :" +msgstr "Tir auto B :" + +#: tmp/gameboy.ui.h:3 tmp/gameboyadvance.ui.h:4 +msgid "Automatic" +msgstr "Automatique" + +#: ../src/gtk/directoriesconfig.cpp:32 +msgid "Batteries :" +msgstr "Batteries :" + +#: ../src/gtk/filters.cpp:66 +msgid "Bilinear" +msgstr "Bilinear" + +#: ../src/gtk/filters.cpp:67 +msgid "Bilinear Plus" +msgstr "Bilinear Plus" + +#: tmp/gameboyadvance.ui.h:5 +msgid "Bios file : " +msgstr "Bios : " + +#: tmp/gameboy.ui.h:4 +msgid "Boot ROM file : " +msgstr "ROM de démarrage : " + +#: ../src/gtk/joypadconfig.cpp:34 +msgid "Button A :" +msgstr "Bouton A :" + +#: ../src/gtk/joypadconfig.cpp:35 +msgid "Button B :" +msgstr "Bouton B :" + +#: ../src/gtk/joypadconfig.cpp:36 +msgid "Button L :" +msgstr "Bouton L :" + +#: ../src/gtk/joypadconfig.cpp:37 +msgid "Button R :" +msgstr "Bouton R :" + +#: tmp/display.ui.h:4 +msgid "Cairo" +msgstr "Cairo" + +#: ../src/gtk/joypadconfig.cpp:41 +msgid "Capture :" +msgstr "Capture :" + +#: ../src/gtk/directoriesconfig.cpp:34 +msgid "Captures :" +msgstr "Captures :" + +#: tmp/cheatlist.ui.h:2 +msgid "Cheat list" +msgstr "Liste des codes" + +#: ../src/gtk/cheatedit.cpp:93 +msgid "CodeBreaker Advance" +msgstr "CodeBreaker Advance" + +#: tmp/vbam.ui.h:2 +msgid "D_irectories ..." +msgstr "_Répertoires ..." + +#: ../src/gtk/joypadconfig.cpp:50 +msgid "Default joypad" +msgstr "Manette par défaut" + +#: tmp/display.ui.h:5 +msgid "Default scale : " +msgstr "Taille par défaut : " + +#: tmp/cheatlist.ui.h:3 +msgid "Delete all cheats" +msgstr "Supprimer tous les codes" + +#: tmp/cheatlist.ui.h:4 +msgid "Delete selected cheat" +msgstr "Supprimer le code sélectionné" + +#: tmp/preferences.ui.h:4 +msgid "Detailed" +msgstr "Détaillé" + +#: ../src/gtk/directoriesconfig.cpp:38 +msgid "Directories config" +msgstr "Configuration des répertoires" + +#: tmp/gameboy.ui.h:5 +msgid "Display Super Game Boy borders" +msgstr "Afficher les bordures Super Game Boy" + +#: ../src/gtk/joypadconfig.cpp:154 +msgid "Down" +msgstr "Bas" + +#: ../src/gtk/joypadconfig.cpp:31 +msgid "Down :" +msgstr "Bas :" + +#: tmp/gameboyadvance.ui.h:6 +msgid "EEPROM" +msgstr "EEPROM" + +#: tmp/gameboyadvance.ui.h:7 +msgid "EEPROM + Sensor" +msgstr "EEPROM + Capteur" + +#: tmp/cheatedit.ui.h:4 +msgid "Edit cheat" +msgstr "Editer le code" + +#: tmp/gameboy.ui.h:6 +msgid "Emulate a Game Boy Printer" +msgstr "Emuler une imprimante Game Boy" + +#: tmp/gameboy.ui.h:7 +msgid "Emulated system : " +msgstr "Machine émulée : " + +#: tmp/preferences.ui.h:5 +msgid "Enable automatic frame skipping" +msgstr "Activer le saut d'image automatique" + +#: tmp/gameboyadvance.ui.h:8 +msgid "Enable real-time clock" +msgstr "Activer l'horloge (RTC)" + +#: ../src/gtk/window.cpp:468 +#, c-format +msgid "Failed to init SDL: %s" +msgstr "Echec à l'initialisation de SDL: %s" + +#: ../src/gtk/windowcallbacks.cpp:150 ../src/gtk/windowcallbacks.cpp:312 +msgid "File already exists. Overwrite it?" +msgstr "Ce fichier existe déjà. Voulez-vous le remplacer ?" + +#: tmp/gameboyadvance.ui.h:9 +msgid "Flash" +msgstr "Flash" + +#: tmp/gameboyadvance.ui.h:10 +msgid "Flash size : " +msgstr "Taille mémoire Flash : " + +#: tmp/preferences.ui.h:6 +msgid "Frameskip level : " +msgstr "Niveau de saut : " + +#: tmp/vbam.ui.h:3 +msgid "From _File ..." +msgstr "Depuis un _fichier ..." + +#: tmp/display.ui.h:6 +msgid "Fullscreen filter : " +msgstr "Filtre : " + +#: ../src/gtk/directoriesconfig.cpp:31 +msgid "GB roms :" +msgstr "Roms GB :" + +#: ../src/gtk/directoriesconfig.cpp:30 +msgid "GBA roms :" +msgstr "Roms GBA :" + +#: tmp/gameboy.ui.h:8 +msgid "Game Boy" +msgstr "Game Boy" + +#: tmp/gameboy.ui.h:9 +msgid "Game Boy Advance" +msgstr "Game Boy Advance" + +#: tmp/gameboyadvance.ui.h:11 +msgid "Game Boy Advance settings" +msgstr "Paramètres Game Boy Advance" + +#: tmp/gameboy.ui.h:10 +msgid "Game Boy Color" +msgstr "Game Boy Color" + +#: tmp/vbam.ui.h:4 +msgid "Game Boy _Advance ..." +msgstr "Game Boy _Advance ..." + +#: tmp/gameboy.ui.h:11 +msgid "GameBoy settings" +msgstr "Paramètres GameBoy" + +#: ../src/gtk/cheatedit.cpp:108 +msgid "GameGenie" +msgstr "GameGenie" + +#: ../src/gtk/cheatedit.cpp:103 +msgid "GameShark" +msgstr "GameShark" + +#: ../src/gtk/gameboyadvanceconfig.cpp:79 +msgid "Gameboy Advance BIOS" +msgstr "BIOS Gameboy Advance" + +#: ../src/gtk/window.cpp:1308 +msgid "Gameboy Advance files" +msgstr "Fichiers Gameboy Advance" + +#: ../src/gtk/window.cpp:1315 +msgid "Gameboy files" +msgstr "Fichiers Gameboy" + +#: ../src/gtk/cheatedit.cpp:88 +msgid "Gameshark Advance" +msgstr "Gameshark Advance" + +#: ../src/gtk/cheatedit.cpp:83 +msgid "Generic Code" +msgstr "Code générique" + +#: tmp/display.ui.h:7 +msgid "Interframe blending : " +msgstr "Interframe blending : " + +#: ../src/gtk/filters.cpp:82 +msgid "Interframe motion blur" +msgstr "Interframe motion blur" + +#: ../src/gtk/joypadconfig.cpp:129 +msgid "Joy " +msgstr "Joy" + +#: ../src/gtk/joypadconfig.cpp:49 +msgid "Joypad :" +msgstr "Manette :" + +#: ../src/gtk/joypadconfig.cpp:47 +msgid "Joypad config" +msgstr "Configuration de la manette" + +#: ../src/gtk/joypadconfig.cpp:156 +msgid "Left" +msgstr "Gauche" + +#: ../src/gtk/joypadconfig.cpp:32 +msgid "Left :" +msgstr "Gauche :" + +#: tmp/vbam.ui.h:5 +msgid "Loa_d state" +msgstr "Char_ger l'état" + +#: ../src/gtk/windowcallbacks.cpp:84 +msgid "Load game" +msgstr "Chargement" + +#: ../src/gtk/window.cpp:1341 +msgid "Loaded battery" +msgstr "Batterie chargée" + +#: ../src/gtk/main.cpp:50 +msgid "Main VBA-M options" +msgstr "VBA-M - Options principales" + +#: tmp/vbam.ui.h:6 +msgid "Most recent" +msgstr "Le plus récent" + +#: tmp/sound.ui.h:9 +msgid "Mute" +msgstr "Muet" + +#: ../src/gtk/windowcallbacks.cpp:508 +msgid "Nintendo GameBoy Advance emulator." +msgstr "Emulateur de Nindendo GameBoy Advance." + +#: ../src/gtk/filters.cpp:60 ../src/gtk/filters.cpp:80 +#: tmp/gameboyadvance.ui.h:12 tmp/preferences.ui.h:7 +msgid "None" +msgstr "Aucun" + +#: tmp/vbam.ui.h:7 +msgid "Oldest slot" +msgstr "Le plus ancien" + +#: ../src/gtk/window.cpp:1266 +msgid "Open" +msgstr "Ouvrir" + +#: ../src/gtk/cheatlist.cpp:70 tmp/cheatlist.ui.h:5 +msgid "Open cheat list" +msgstr "Charger une liste de codes de triche" + +#: tmp/vbam.ui.h:8 +msgid "Open rece_nt" +msgstr "Der_niers jeux" + +#: tmp/display.ui.h:8 +msgid "OpenGL" +msgstr "OpenGL" + +#: ../src/gtk/main.cpp:55 +msgid "Output version information." +msgstr "Afficher les informations de version" + +#: ../src/gtk/windowcallbacks.cpp:294 +msgid "PNG image" +msgstr "Image PNG" + +#: tmp/vbam.ui.h:9 +msgid "Pause" +msgstr "Pause" + +#: tmp/preferences.ui.h:8 +msgid "Pause when inactive" +msgstr "Mettre en pause quand inactif" + +#: tmp/preferences.ui.h:9 +msgid "Percentage" +msgstr "Pourcentage" + +#: ../src/gtk/filters.cpp:64 +msgid "Pixelate" +msgstr "Pixelate" + +#: tmp/preferences.ui.h:10 +msgid "Preferences" +msgstr "Préférences" + +#: ../src/gtk/joypadconfig.cpp:155 +msgid "Right" +msgstr "Droite" + +#: ../src/gtk/joypadconfig.cpp:33 +msgid "Right :" +msgstr "Droite :" + +#: tmp/gameboyadvance.ui.h:13 +msgid "SRAM" +msgstr "SRAM" + +#: tmp/vbam.ui.h:10 +msgid "S_ave state" +msgstr "S_auvegarder l'état" + +#: tmp/sound.ui.h:10 +msgid "Sample rate : " +msgstr "Taux d'échantionnage : " + +#: ../src/gtk/cheatlist.cpp:93 tmp/cheatlist.ui.h:6 +msgid "Save cheat list" +msgstr "Sauvegarder une liste de codes de triche" + +#: ../src/gtk/windowcallbacks.cpp:117 +msgid "Save game" +msgstr "Sauvegarde" + +#: ../src/gtk/windowcallbacks.cpp:277 +msgid "Save screenshot" +msgstr "Capture d'écran" + +#: tmp/gameboyadvance.ui.h:14 +msgid "Save type : " +msgstr "Type de sauvegarde : " + +#: ../src/gtk/window.cpp:1358 +msgid "Saved battery" +msgstr "Batterie sauvegardée" + +#: ../src/gtk/directoriesconfig.cpp:33 +msgid "Saves :" +msgstr "Sauvegardes :" + +#: ../src/gtk/filters.cpp:68 +msgid "Scanlines" +msgstr "Scanlines" + +#: tmp/vbam.ui.h:11 +msgid "Screen capt_ure..." +msgstr "Capt_ure d'écran" + +#: ../src/gtk/joypadconfig.cpp:38 +msgid "Select :" +msgstr "Select :" + +#: tmp/vbam.ui.h:12 +msgid "Slot1" +msgstr "Emplacement1" + +#: tmp/vbam.ui.h:13 +msgid "Slot10" +msgstr "Emplacement10" + +#: tmp/vbam.ui.h:14 +msgid "Slot2" +msgstr "Emplacement2" + +#: tmp/vbam.ui.h:15 +msgid "Slot3" +msgstr "Emplacement3" + +#: tmp/vbam.ui.h:16 +msgid "Slot4" +msgstr "Emplacement4" + +#: tmp/vbam.ui.h:17 +msgid "Slot5" +msgstr "Emplacement5" + +#: tmp/vbam.ui.h:18 +msgid "Slot6" +msgstr "Emplacement6" + +#: tmp/vbam.ui.h:19 +msgid "Slot7" +msgstr "Emplacement7" + +#: tmp/vbam.ui.h:20 +msgid "Slot8" +msgstr "Emplacement8" + +#: tmp/vbam.ui.h:21 +msgid "Slot9" +msgstr "Emplacement9" + +#: ../src/gtk/filters.cpp:81 +msgid "Smart interframe blending" +msgstr "Smart interframe blending" + +#: ../src/gtk/joypadconfig.cpp:40 +msgid "Speed :" +msgstr "Accélération :" + +#: tmp/preferences.ui.h:11 +msgid "Speed indicator : " +msgstr "Affichage de la vitesse : " + +#: ../src/gtk/joypadconfig.cpp:39 +msgid "Start :" +msgstr "Start :" + +#: ../src/gtk/filters.cpp:62 +msgid "Super 2xSaI" +msgstr "Super 2xSaI" + +#: ../src/gtk/filters.cpp:63 +msgid "Super Eagle" +msgstr "Super Eagle" + +#: tmp/gameboy.ui.h:12 +msgid "Super Game Boy" +msgstr "Super Game Boy" + +#: tmp/gameboy.ui.h:13 +msgid "Super Game Boy 2" +msgstr "Super Game Boy 2" + +#: ../src/gtk/filters.cpp:69 +msgid "TV Mode" +msgstr "TV Mode" + +#: tmp/vbam.ui.h:22 +msgid "To _File ..." +msgstr "Dans un _fichier ..." + +#: tmp/cheatlist.ui.h:7 +msgid "Toggle all Cheats" +msgstr "Inverser l'état de tous les codes" + +#: ../src/gtk/window.cpp:427 +#, c-format +msgid "Unable to initialize output, falling back to Cairo\n" +msgstr "Impossible d'initialiser l'affichage, utilisation de Cairo\n" + +#: ../src/gtk/window.cpp:1022 +#, c-format +msgid "Unknown file type %s" +msgstr "Type de fichier inconnu %s" + +#: ../src/gtk/joypadconfig.cpp:153 +msgid "Up" +msgstr "Haut" + +#: ../src/gtk/joypadconfig.cpp:30 +msgid "Up :" +msgstr "Haut :" + +#: tmp/gameboy.ui.h:14 +msgid "Use a Game Boy boot ROM file" +msgstr "Utiliser une ROM de démarrage GameBoy" + +#: tmp/gameboyadvance.ui.h:15 +msgid "Use a bios file" +msgstr "Utiliser un fichier bios" + +#: tmp/vbam.ui.h:23 +msgid "VBA" +msgstr "VBA" + +#: ../src/gtk/main.cpp:41 ../src/gtk/windowcallbacks.cpp:506 +msgid "VBA-M" +msgstr "VBA-M" + +#: ../src/gtk/window.cpp:1159 +#, c-format +msgid "VBA-M - %d%%" +msgstr "VBA-M - %d%%" + +#: ../src/gtk/window.cpp:1164 +#, c-format +msgid "VBA-M - %d%% (%d, %d fps)" +msgstr "VBA-M - %d%% (%d, %d fps)" + +#: ../src/gtk/windowcallbacks.cpp:99 ../src/gtk/windowcallbacks.cpp:134 +msgid "VisualBoyAdvance save game" +msgstr "Sauvegarde VisualBoyAdvance" + +#: ../src/gtk/main.cpp:81 +#, c-format +msgid "VisualBoyAdvance version %s [GTK+]\n" +msgstr "VisualBoyAdvance version %s [GTK+]\n" + +#: tmp/sound.ui.h:11 +msgid "Volume : " +msgstr "Volume : " + +#: tmp/vbam.ui.h:24 +msgid "_Disable cheats" +msgstr "_Désactiver les codes" + +#: tmp/vbam.ui.h:25 +msgid "_Display ..." +msgstr "_Affichage ..." + +#: tmp/vbam.ui.h:26 +msgid "_Emulation" +msgstr "_Emulation" + +#: tmp/vbam.ui.h:27 +msgid "_File" +msgstr "_Fichier" + +#: tmp/vbam.ui.h:28 +msgid "_Game Boy ..." +msgstr "_Game Boy ..." + +#: tmp/vbam.ui.h:29 +msgid "_Help" +msgstr "_Aide" + +#: tmp/vbam.ui.h:30 +msgid "_Joypads ..." +msgstr "_Manettes ..." + +#: tmp/vbam.ui.h:31 +msgid "_List cheats ..." +msgstr "_Codes de triche ..." + +#: tmp/vbam.ui.h:32 +msgid "_Options" +msgstr "_Options" + +#: tmp/vbam.ui.h:33 +msgid "_Preferences ..." +msgstr "_Préférences ..." + +#: tmp/vbam.ui.h:34 +msgid "_Reset" +msgstr "_Réinitialiser" + +#: tmp/vbam.ui.h:35 +msgid "_Sound ..." +msgstr "_Son ..." + +#: ../src/gtk/filters.cpp:70 +msgid "hq2x" +msgstr "hq2x" + +#: ../src/gtk/filters.cpp:71 +msgid "lq2x" +msgstr "lq2x" diff --git a/po/gvbam/gvbam.pot b/po/gvbam/gvbam.pot index d5fdad21..5aaa0c35 100644 --- a/po/gvbam/gvbam.pot +++ b/po/gvbam/gvbam.pot @@ -1,733 +1,733 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 21:22+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../src/gtk/cheatedit.cpp:83 -msgid "Generic Code" -msgstr "" - -#: ../src/gtk/cheatedit.cpp:88 -msgid "Gameshark Advance" -msgstr "" - -#: ../src/gtk/cheatedit.cpp:93 -msgid "CodeBreaker Advance" -msgstr "" - -#: ../src/gtk/cheatedit.cpp:103 -msgid "GameShark" -msgstr "" - -#: ../src/gtk/cheatedit.cpp:108 -msgid "GameGenie" -msgstr "" - -#: ../src/gtk/cheatlist.cpp:70 tmp/cheatlist.ui.h:5 -msgid "Open cheat list" -msgstr "" - -#: ../src/gtk/cheatlist.cpp:93 tmp/cheatlist.ui.h:6 -msgid "Save cheat list" -msgstr "" - -#: ../src/gtk/directoriesconfig.cpp:30 -msgid "GBA roms :" -msgstr "" - -#: ../src/gtk/directoriesconfig.cpp:31 -msgid "GB roms :" -msgstr "" - -#: ../src/gtk/directoriesconfig.cpp:32 -msgid "Batteries :" -msgstr "" - -#: ../src/gtk/directoriesconfig.cpp:33 -msgid "Saves :" -msgstr "" - -#: ../src/gtk/directoriesconfig.cpp:34 -msgid "Captures :" -msgstr "" - -#: ../src/gtk/directoriesconfig.cpp:38 -msgid "Directories config" -msgstr "" - -#: ../src/gtk/filters.cpp:60 ../src/gtk/filters.cpp:80 -#: tmp/gameboyadvance.ui.h:12 tmp/preferences.ui.h:7 -msgid "None" -msgstr "" - -#: ../src/gtk/filters.cpp:61 -msgid "2xSaI" -msgstr "" - -#: ../src/gtk/filters.cpp:62 -msgid "Super 2xSaI" -msgstr "" - -#: ../src/gtk/filters.cpp:63 -msgid "Super Eagle" -msgstr "" - -#: ../src/gtk/filters.cpp:64 -msgid "Pixelate" -msgstr "" - -#: ../src/gtk/filters.cpp:65 -msgid "AdvanceMAME Scale2x" -msgstr "" - -#: ../src/gtk/filters.cpp:66 -msgid "Bilinear" -msgstr "" - -#: ../src/gtk/filters.cpp:67 -msgid "Bilinear Plus" -msgstr "" - -#: ../src/gtk/filters.cpp:68 -msgid "Scanlines" -msgstr "" - -#: ../src/gtk/filters.cpp:69 -msgid "TV Mode" -msgstr "" - -#: ../src/gtk/filters.cpp:70 -msgid "hq2x" -msgstr "" - -#: ../src/gtk/filters.cpp:71 -msgid "lq2x" -msgstr "" - -#: ../src/gtk/filters.cpp:81 -msgid "Smart interframe blending" -msgstr "" - -#: ../src/gtk/filters.cpp:82 -msgid "Interframe motion blur" -msgstr "" - -#: ../src/gtk/gameboyadvanceconfig.cpp:75 -msgid "All files" -msgstr "" - -#: ../src/gtk/gameboyadvanceconfig.cpp:79 -msgid "Gameboy Advance BIOS" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:30 -msgid "Up :" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:31 -msgid "Down :" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:32 -msgid "Left :" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:33 -msgid "Right :" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:34 -msgid "Button A :" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:35 -msgid "Button B :" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:36 -msgid "Button L :" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:37 -msgid "Button R :" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:38 -msgid "Select :" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:39 -msgid "Start :" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:40 -msgid "Speed :" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:41 -msgid "Capture :" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:42 -msgid "Autofire A :" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:43 -msgid "Autofire B :" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:47 -msgid "Joypad config" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:49 -msgid "Joypad :" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:50 -msgid "Default joypad" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:129 -msgid "Joy " -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:135 -msgid " Button " -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:142 -msgid " Axis " -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:150 -msgid " Hat " -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:153 -msgid "Up" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:154 -msgid "Down" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:155 -msgid "Right" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:156 -msgid "Left" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:165 -msgid "" -msgstr "" - -#: ../src/gtk/main.cpp:41 ../src/gtk/windowcallbacks.cpp:506 -msgid "VBA-M" -msgstr "" - -#: ../src/gtk/main.cpp:50 -msgid "Main VBA-M options" -msgstr "" - -#: ../src/gtk/main.cpp:55 -msgid "Output version information." -msgstr "" - -#: ../src/gtk/main.cpp:81 -#, c-format -msgid "VisualBoyAdvance version %s [GTK+]\n" -msgstr "" - -#: ../src/gtk/screenarea-opengl.cpp:41 -#, c-format -msgid "*** OpenGL : Cannot open display.\n" -msgstr "" - -#: ../src/gtk/window.cpp:427 -#, c-format -msgid "Unable to initialize output, falling back to Cairo\n" -msgstr "" - -#: ../src/gtk/window.cpp:468 -#, c-format -msgid "Failed to init SDL: %s" -msgstr "" - -#: ../src/gtk/window.cpp:1022 -#, c-format -msgid "Unknown file type %s" -msgstr "" - -#: ../src/gtk/window.cpp:1159 -#, c-format -msgid "VBA-M - %d%%" -msgstr "" - -#: ../src/gtk/window.cpp:1164 -#, c-format -msgid "VBA-M - %d%% (%d, %d fps)" -msgstr "" - -#: ../src/gtk/window.cpp:1266 -msgid "Open" -msgstr "" - -#: ../src/gtk/window.cpp:1301 -msgid "All Gameboy Advance files" -msgstr "" - -#: ../src/gtk/window.cpp:1308 -msgid "Gameboy Advance files" -msgstr "" - -#: ../src/gtk/window.cpp:1315 -msgid "Gameboy files" -msgstr "" - -#: ../src/gtk/window.cpp:1341 -msgid "Loaded battery" -msgstr "" - -#: ../src/gtk/window.cpp:1358 -msgid "Saved battery" -msgstr "" - -#: ../src/gtk/window.cpp:1383 ../src/gtk/window.cpp:1428 -msgid "----/--/-- --:--:--" -msgstr "" - -#: ../src/gtk/window.cpp:1413 -msgid "%Y/%m/%d %H:%M:%S" -msgstr "" - -#: ../src/gtk/windowcallbacks.cpp:84 -msgid "Load game" -msgstr "" - -#: ../src/gtk/windowcallbacks.cpp:99 ../src/gtk/windowcallbacks.cpp:134 -msgid "VisualBoyAdvance save game" -msgstr "" - -#: ../src/gtk/windowcallbacks.cpp:117 -msgid "Save game" -msgstr "" - -#: ../src/gtk/windowcallbacks.cpp:150 ../src/gtk/windowcallbacks.cpp:312 -msgid "File already exists. Overwrite it?" -msgstr "" - -#: ../src/gtk/windowcallbacks.cpp:277 -msgid "Save screenshot" -msgstr "" - -#: ../src/gtk/windowcallbacks.cpp:294 -msgid "PNG image" -msgstr "" - -#: ../src/gtk/windowcallbacks.cpp:508 -msgid "Nintendo GameBoy Advance emulator." -msgstr "" - -#: tmp/cheatedit.ui.h:1 -msgid "Codes" -msgstr "" - -#: tmp/cheatedit.ui.h:2 -msgid "Description" -msgstr "" - -#: tmp/cheatedit.ui.h:3 -msgid "Type" -msgstr "" - -#: tmp/cheatedit.ui.h:4 -msgid "Edit cheat" -msgstr "" - -#: tmp/cheatlist.ui.h:1 -msgid "Add new cheat" -msgstr "" - -#: tmp/cheatlist.ui.h:2 -msgid "Cheat list" -msgstr "" - -#: tmp/cheatlist.ui.h:3 -msgid "Delete all cheats" -msgstr "" - -#: tmp/cheatlist.ui.h:4 -msgid "Delete selected cheat" -msgstr "" - -#: tmp/cheatlist.ui.h:7 -msgid "Toggle all Cheats" -msgstr "" - -#: tmp/display.ui.h:1 -msgid "Filters" -msgstr "" - -#: tmp/display.ui.h:2 -msgid "Output module" -msgstr "" - -#: tmp/display.ui.h:3 -msgid "Zoom" -msgstr "" - -#: tmp/display.ui.h:4 -msgid "Cairo" -msgstr "" - -#: tmp/display.ui.h:5 -msgid "Default scale : " -msgstr "" - -#: tmp/display.ui.h:6 -msgid "Fullscreen filter : " -msgstr "" - -#: tmp/display.ui.h:7 -msgid "Interframe blending : " -msgstr "" - -#: tmp/display.ui.h:8 -msgid "OpenGL" -msgstr "" - -#: tmp/gameboy.ui.h:1 -msgid "Boot ROM" -msgstr "" - -#: tmp/gameboy.ui.h:2 -msgid "System and peripherals" -msgstr "" - -#: tmp/gameboy.ui.h:3 tmp/gameboyadvance.ui.h:4 -msgid "Automatic" -msgstr "" - -#: tmp/gameboy.ui.h:4 -msgid "Boot ROM file : " -msgstr "" - -#: tmp/gameboy.ui.h:5 -msgid "Display Super Game Boy borders" -msgstr "" - -#: tmp/gameboy.ui.h:6 -msgid "Emulate a Game Boy Printer" -msgstr "" - -#: tmp/gameboy.ui.h:7 -msgid "Emulated system : " -msgstr "" - -#: tmp/gameboy.ui.h:8 -msgid "Game Boy" -msgstr "" - -#: tmp/gameboy.ui.h:9 -msgid "Game Boy Advance" -msgstr "" - -#: tmp/gameboy.ui.h:10 -msgid "Game Boy Color" -msgstr "" - -#: tmp/gameboy.ui.h:11 -msgid "GameBoy settings" -msgstr "" - -#: tmp/gameboy.ui.h:12 -msgid "Super Game Boy" -msgstr "" - -#: tmp/gameboy.ui.h:13 -msgid "Super Game Boy 2" -msgstr "" - -#: tmp/gameboy.ui.h:14 -msgid "Use a Game Boy boot ROM file" -msgstr "" - -#: tmp/gameboyadvance.ui.h:1 -msgid "Bios" -msgstr "" - -#: tmp/gameboyadvance.ui.h:2 -msgid "Cartridge" -msgstr "" - -#: tmp/gameboyadvance.ui.h:3 -msgid "Real-Time Clock" -msgstr "" - -#: tmp/gameboyadvance.ui.h:5 -msgid "Bios file : " -msgstr "" - -#: tmp/gameboyadvance.ui.h:6 -msgid "EEPROM" -msgstr "" - -#: tmp/gameboyadvance.ui.h:7 -msgid "EEPROM + Sensor" -msgstr "" - -#: tmp/gameboyadvance.ui.h:8 -msgid "Enable real-time clock" -msgstr "" - -#: tmp/gameboyadvance.ui.h:9 -msgid "Flash" -msgstr "" - -#: tmp/gameboyadvance.ui.h:10 -msgid "Flash size : " -msgstr "" - -#: tmp/gameboyadvance.ui.h:11 -msgid "Game Boy Advance settings" -msgstr "" - -#: tmp/gameboyadvance.ui.h:13 -msgid "SRAM" -msgstr "" - -#: tmp/gameboyadvance.ui.h:14 -msgid "Save type : " -msgstr "" - -#: tmp/gameboyadvance.ui.h:15 -msgid "Use a bios file" -msgstr "" - -#: tmp/preferences.ui.h:1 -msgid "Appearance" -msgstr "" - -#: tmp/preferences.ui.h:2 -msgid "Frameskip" -msgstr "" - -#: tmp/preferences.ui.h:3 -msgid "General" -msgstr "" - -#: tmp/preferences.ui.h:4 -msgid "Detailed" -msgstr "" - -#: tmp/preferences.ui.h:5 -msgid "Enable automatic frame skipping" -msgstr "" - -#: tmp/preferences.ui.h:6 -msgid "Frameskip level : " -msgstr "" - -#: tmp/preferences.ui.h:8 -msgid "Pause when inactive" -msgstr "" - -#: tmp/preferences.ui.h:9 -msgid "Percentage" -msgstr "" - -#: tmp/preferences.ui.h:10 -msgid "Preferences" -msgstr "" - -#: tmp/preferences.ui.h:11 -msgid "Speed indicator : " -msgstr "" - -#: tmp/sound.ui.h:2 -#, no-c-format -msgid "100 %" -msgstr "" - -#: tmp/sound.ui.h:4 -#, no-c-format -msgid "200 %" -msgstr "" - -#: tmp/sound.ui.h:6 -#, no-c-format -msgid "25 %" -msgstr "" - -#: tmp/sound.ui.h:8 -#, no-c-format -msgid "50 %" -msgstr "" - -#: tmp/sound.ui.h:9 -msgid "Mute" -msgstr "" - -#: tmp/sound.ui.h:10 -msgid "Sample rate : " -msgstr "" - -#: tmp/sound.ui.h:11 -msgid "Volume : " -msgstr "" - -#: tmp/vbam.ui.h:1 -msgid "Auto load most recent" -msgstr "" - -#: tmp/vbam.ui.h:2 -msgid "D_irectories ..." -msgstr "" - -#: tmp/vbam.ui.h:3 -msgid "From _File ..." -msgstr "" - -#: tmp/vbam.ui.h:4 -msgid "Game Boy _Advance ..." -msgstr "" - -#: tmp/vbam.ui.h:5 -msgid "Loa_d state" -msgstr "" - -#: tmp/vbam.ui.h:6 -msgid "Most recent" -msgstr "" - -#: tmp/vbam.ui.h:7 -msgid "Oldest slot" -msgstr "" - -#: tmp/vbam.ui.h:8 -msgid "Open rece_nt" -msgstr "" - -#: tmp/vbam.ui.h:9 -msgid "Pause" -msgstr "" - -#: tmp/vbam.ui.h:10 -msgid "S_ave state" -msgstr "" - -#: tmp/vbam.ui.h:11 -msgid "Screen capt_ure..." -msgstr "" - -#: tmp/vbam.ui.h:12 -msgid "Slot1" -msgstr "" - -#: tmp/vbam.ui.h:13 -msgid "Slot10" -msgstr "" - -#: tmp/vbam.ui.h:14 -msgid "Slot2" -msgstr "" - -#: tmp/vbam.ui.h:15 -msgid "Slot3" -msgstr "" - -#: tmp/vbam.ui.h:16 -msgid "Slot4" -msgstr "" - -#: tmp/vbam.ui.h:17 -msgid "Slot5" -msgstr "" - -#: tmp/vbam.ui.h:18 -msgid "Slot6" -msgstr "" - -#: tmp/vbam.ui.h:19 -msgid "Slot7" -msgstr "" - -#: tmp/vbam.ui.h:20 -msgid "Slot8" -msgstr "" - -#: tmp/vbam.ui.h:21 -msgid "Slot9" -msgstr "" - -#: tmp/vbam.ui.h:22 -msgid "To _File ..." -msgstr "" - -#: tmp/vbam.ui.h:23 -msgid "VBA" -msgstr "" - -#: tmp/vbam.ui.h:24 -msgid "_Disable cheats" -msgstr "" - -#: tmp/vbam.ui.h:25 -msgid "_Display ..." -msgstr "" - -#: tmp/vbam.ui.h:26 -msgid "_Emulation" -msgstr "" - -#: tmp/vbam.ui.h:27 -msgid "_File" -msgstr "" - -#: tmp/vbam.ui.h:28 -msgid "_Game Boy ..." -msgstr "" - -#: tmp/vbam.ui.h:29 -msgid "_Help" -msgstr "" - -#: tmp/vbam.ui.h:30 -msgid "_Joypads ..." -msgstr "" - -#: tmp/vbam.ui.h:31 -msgid "_List cheats ..." -msgstr "" - -#: tmp/vbam.ui.h:32 -msgid "_Options" -msgstr "" - -#: tmp/vbam.ui.h:33 -msgid "_Preferences ..." -msgstr "" - -#: tmp/vbam.ui.h:34 -msgid "_Reset" -msgstr "" - -#: tmp/vbam.ui.h:35 -msgid "_Sound ..." -msgstr "" +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 21:22+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/gtk/cheatedit.cpp:83 +msgid "Generic Code" +msgstr "" + +#: ../src/gtk/cheatedit.cpp:88 +msgid "Gameshark Advance" +msgstr "" + +#: ../src/gtk/cheatedit.cpp:93 +msgid "CodeBreaker Advance" +msgstr "" + +#: ../src/gtk/cheatedit.cpp:103 +msgid "GameShark" +msgstr "" + +#: ../src/gtk/cheatedit.cpp:108 +msgid "GameGenie" +msgstr "" + +#: ../src/gtk/cheatlist.cpp:70 tmp/cheatlist.ui.h:5 +msgid "Open cheat list" +msgstr "" + +#: ../src/gtk/cheatlist.cpp:93 tmp/cheatlist.ui.h:6 +msgid "Save cheat list" +msgstr "" + +#: ../src/gtk/directoriesconfig.cpp:30 +msgid "GBA roms :" +msgstr "" + +#: ../src/gtk/directoriesconfig.cpp:31 +msgid "GB roms :" +msgstr "" + +#: ../src/gtk/directoriesconfig.cpp:32 +msgid "Batteries :" +msgstr "" + +#: ../src/gtk/directoriesconfig.cpp:33 +msgid "Saves :" +msgstr "" + +#: ../src/gtk/directoriesconfig.cpp:34 +msgid "Captures :" +msgstr "" + +#: ../src/gtk/directoriesconfig.cpp:38 +msgid "Directories config" +msgstr "" + +#: ../src/gtk/filters.cpp:60 ../src/gtk/filters.cpp:80 +#: tmp/gameboyadvance.ui.h:12 tmp/preferences.ui.h:7 +msgid "None" +msgstr "" + +#: ../src/gtk/filters.cpp:61 +msgid "2xSaI" +msgstr "" + +#: ../src/gtk/filters.cpp:62 +msgid "Super 2xSaI" +msgstr "" + +#: ../src/gtk/filters.cpp:63 +msgid "Super Eagle" +msgstr "" + +#: ../src/gtk/filters.cpp:64 +msgid "Pixelate" +msgstr "" + +#: ../src/gtk/filters.cpp:65 +msgid "AdvanceMAME Scale2x" +msgstr "" + +#: ../src/gtk/filters.cpp:66 +msgid "Bilinear" +msgstr "" + +#: ../src/gtk/filters.cpp:67 +msgid "Bilinear Plus" +msgstr "" + +#: ../src/gtk/filters.cpp:68 +msgid "Scanlines" +msgstr "" + +#: ../src/gtk/filters.cpp:69 +msgid "TV Mode" +msgstr "" + +#: ../src/gtk/filters.cpp:70 +msgid "hq2x" +msgstr "" + +#: ../src/gtk/filters.cpp:71 +msgid "lq2x" +msgstr "" + +#: ../src/gtk/filters.cpp:81 +msgid "Smart interframe blending" +msgstr "" + +#: ../src/gtk/filters.cpp:82 +msgid "Interframe motion blur" +msgstr "" + +#: ../src/gtk/gameboyadvanceconfig.cpp:75 +msgid "All files" +msgstr "" + +#: ../src/gtk/gameboyadvanceconfig.cpp:79 +msgid "Gameboy Advance BIOS" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:30 +msgid "Up :" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:31 +msgid "Down :" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:32 +msgid "Left :" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:33 +msgid "Right :" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:34 +msgid "Button A :" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:35 +msgid "Button B :" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:36 +msgid "Button L :" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:37 +msgid "Button R :" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:38 +msgid "Select :" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:39 +msgid "Start :" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:40 +msgid "Speed :" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:41 +msgid "Capture :" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:42 +msgid "Autofire A :" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:43 +msgid "Autofire B :" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:47 +msgid "Joypad config" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:49 +msgid "Joypad :" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:50 +msgid "Default joypad" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:129 +msgid "Joy " +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:135 +msgid " Button " +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:142 +msgid " Axis " +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:150 +msgid " Hat " +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:153 +msgid "Up" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:154 +msgid "Down" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:155 +msgid "Right" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:156 +msgid "Left" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:165 +msgid "" +msgstr "" + +#: ../src/gtk/main.cpp:41 ../src/gtk/windowcallbacks.cpp:506 +msgid "VBA-M" +msgstr "" + +#: ../src/gtk/main.cpp:50 +msgid "Main VBA-M options" +msgstr "" + +#: ../src/gtk/main.cpp:55 +msgid "Output version information." +msgstr "" + +#: ../src/gtk/main.cpp:81 +#, c-format +msgid "VisualBoyAdvance version %s [GTK+]\n" +msgstr "" + +#: ../src/gtk/screenarea-opengl.cpp:41 +#, c-format +msgid "*** OpenGL : Cannot open display.\n" +msgstr "" + +#: ../src/gtk/window.cpp:427 +#, c-format +msgid "Unable to initialize output, falling back to Cairo\n" +msgstr "" + +#: ../src/gtk/window.cpp:468 +#, c-format +msgid "Failed to init SDL: %s" +msgstr "" + +#: ../src/gtk/window.cpp:1022 +#, c-format +msgid "Unknown file type %s" +msgstr "" + +#: ../src/gtk/window.cpp:1159 +#, c-format +msgid "VBA-M - %d%%" +msgstr "" + +#: ../src/gtk/window.cpp:1164 +#, c-format +msgid "VBA-M - %d%% (%d, %d fps)" +msgstr "" + +#: ../src/gtk/window.cpp:1266 +msgid "Open" +msgstr "" + +#: ../src/gtk/window.cpp:1301 +msgid "All Gameboy Advance files" +msgstr "" + +#: ../src/gtk/window.cpp:1308 +msgid "Gameboy Advance files" +msgstr "" + +#: ../src/gtk/window.cpp:1315 +msgid "Gameboy files" +msgstr "" + +#: ../src/gtk/window.cpp:1341 +msgid "Loaded battery" +msgstr "" + +#: ../src/gtk/window.cpp:1358 +msgid "Saved battery" +msgstr "" + +#: ../src/gtk/window.cpp:1383 ../src/gtk/window.cpp:1428 +msgid "----/--/-- --:--:--" +msgstr "" + +#: ../src/gtk/window.cpp:1413 +msgid "%Y/%m/%d %H:%M:%S" +msgstr "" + +#: ../src/gtk/windowcallbacks.cpp:84 +msgid "Load game" +msgstr "" + +#: ../src/gtk/windowcallbacks.cpp:99 ../src/gtk/windowcallbacks.cpp:134 +msgid "VisualBoyAdvance save game" +msgstr "" + +#: ../src/gtk/windowcallbacks.cpp:117 +msgid "Save game" +msgstr "" + +#: ../src/gtk/windowcallbacks.cpp:150 ../src/gtk/windowcallbacks.cpp:312 +msgid "File already exists. Overwrite it?" +msgstr "" + +#: ../src/gtk/windowcallbacks.cpp:277 +msgid "Save screenshot" +msgstr "" + +#: ../src/gtk/windowcallbacks.cpp:294 +msgid "PNG image" +msgstr "" + +#: ../src/gtk/windowcallbacks.cpp:508 +msgid "Nintendo GameBoy Advance emulator." +msgstr "" + +#: tmp/cheatedit.ui.h:1 +msgid "Codes" +msgstr "" + +#: tmp/cheatedit.ui.h:2 +msgid "Description" +msgstr "" + +#: tmp/cheatedit.ui.h:3 +msgid "Type" +msgstr "" + +#: tmp/cheatedit.ui.h:4 +msgid "Edit cheat" +msgstr "" + +#: tmp/cheatlist.ui.h:1 +msgid "Add new cheat" +msgstr "" + +#: tmp/cheatlist.ui.h:2 +msgid "Cheat list" +msgstr "" + +#: tmp/cheatlist.ui.h:3 +msgid "Delete all cheats" +msgstr "" + +#: tmp/cheatlist.ui.h:4 +msgid "Delete selected cheat" +msgstr "" + +#: tmp/cheatlist.ui.h:7 +msgid "Toggle all Cheats" +msgstr "" + +#: tmp/display.ui.h:1 +msgid "Filters" +msgstr "" + +#: tmp/display.ui.h:2 +msgid "Output module" +msgstr "" + +#: tmp/display.ui.h:3 +msgid "Zoom" +msgstr "" + +#: tmp/display.ui.h:4 +msgid "Cairo" +msgstr "" + +#: tmp/display.ui.h:5 +msgid "Default scale : " +msgstr "" + +#: tmp/display.ui.h:6 +msgid "Fullscreen filter : " +msgstr "" + +#: tmp/display.ui.h:7 +msgid "Interframe blending : " +msgstr "" + +#: tmp/display.ui.h:8 +msgid "OpenGL" +msgstr "" + +#: tmp/gameboy.ui.h:1 +msgid "Boot ROM" +msgstr "" + +#: tmp/gameboy.ui.h:2 +msgid "System and peripherals" +msgstr "" + +#: tmp/gameboy.ui.h:3 tmp/gameboyadvance.ui.h:4 +msgid "Automatic" +msgstr "" + +#: tmp/gameboy.ui.h:4 +msgid "Boot ROM file : " +msgstr "" + +#: tmp/gameboy.ui.h:5 +msgid "Display Super Game Boy borders" +msgstr "" + +#: tmp/gameboy.ui.h:6 +msgid "Emulate a Game Boy Printer" +msgstr "" + +#: tmp/gameboy.ui.h:7 +msgid "Emulated system : " +msgstr "" + +#: tmp/gameboy.ui.h:8 +msgid "Game Boy" +msgstr "" + +#: tmp/gameboy.ui.h:9 +msgid "Game Boy Advance" +msgstr "" + +#: tmp/gameboy.ui.h:10 +msgid "Game Boy Color" +msgstr "" + +#: tmp/gameboy.ui.h:11 +msgid "GameBoy settings" +msgstr "" + +#: tmp/gameboy.ui.h:12 +msgid "Super Game Boy" +msgstr "" + +#: tmp/gameboy.ui.h:13 +msgid "Super Game Boy 2" +msgstr "" + +#: tmp/gameboy.ui.h:14 +msgid "Use a Game Boy boot ROM file" +msgstr "" + +#: tmp/gameboyadvance.ui.h:1 +msgid "Bios" +msgstr "" + +#: tmp/gameboyadvance.ui.h:2 +msgid "Cartridge" +msgstr "" + +#: tmp/gameboyadvance.ui.h:3 +msgid "Real-Time Clock" +msgstr "" + +#: tmp/gameboyadvance.ui.h:5 +msgid "Bios file : " +msgstr "" + +#: tmp/gameboyadvance.ui.h:6 +msgid "EEPROM" +msgstr "" + +#: tmp/gameboyadvance.ui.h:7 +msgid "EEPROM + Sensor" +msgstr "" + +#: tmp/gameboyadvance.ui.h:8 +msgid "Enable real-time clock" +msgstr "" + +#: tmp/gameboyadvance.ui.h:9 +msgid "Flash" +msgstr "" + +#: tmp/gameboyadvance.ui.h:10 +msgid "Flash size : " +msgstr "" + +#: tmp/gameboyadvance.ui.h:11 +msgid "Game Boy Advance settings" +msgstr "" + +#: tmp/gameboyadvance.ui.h:13 +msgid "SRAM" +msgstr "" + +#: tmp/gameboyadvance.ui.h:14 +msgid "Save type : " +msgstr "" + +#: tmp/gameboyadvance.ui.h:15 +msgid "Use a bios file" +msgstr "" + +#: tmp/preferences.ui.h:1 +msgid "Appearance" +msgstr "" + +#: tmp/preferences.ui.h:2 +msgid "Frameskip" +msgstr "" + +#: tmp/preferences.ui.h:3 +msgid "General" +msgstr "" + +#: tmp/preferences.ui.h:4 +msgid "Detailed" +msgstr "" + +#: tmp/preferences.ui.h:5 +msgid "Enable automatic frame skipping" +msgstr "" + +#: tmp/preferences.ui.h:6 +msgid "Frameskip level : " +msgstr "" + +#: tmp/preferences.ui.h:8 +msgid "Pause when inactive" +msgstr "" + +#: tmp/preferences.ui.h:9 +msgid "Percentage" +msgstr "" + +#: tmp/preferences.ui.h:10 +msgid "Preferences" +msgstr "" + +#: tmp/preferences.ui.h:11 +msgid "Speed indicator : " +msgstr "" + +#: tmp/sound.ui.h:2 +#, no-c-format +msgid "100 %" +msgstr "" + +#: tmp/sound.ui.h:4 +#, no-c-format +msgid "200 %" +msgstr "" + +#: tmp/sound.ui.h:6 +#, no-c-format +msgid "25 %" +msgstr "" + +#: tmp/sound.ui.h:8 +#, no-c-format +msgid "50 %" +msgstr "" + +#: tmp/sound.ui.h:9 +msgid "Mute" +msgstr "" + +#: tmp/sound.ui.h:10 +msgid "Sample rate : " +msgstr "" + +#: tmp/sound.ui.h:11 +msgid "Volume : " +msgstr "" + +#: tmp/vbam.ui.h:1 +msgid "Auto load most recent" +msgstr "" + +#: tmp/vbam.ui.h:2 +msgid "D_irectories ..." +msgstr "" + +#: tmp/vbam.ui.h:3 +msgid "From _File ..." +msgstr "" + +#: tmp/vbam.ui.h:4 +msgid "Game Boy _Advance ..." +msgstr "" + +#: tmp/vbam.ui.h:5 +msgid "Loa_d state" +msgstr "" + +#: tmp/vbam.ui.h:6 +msgid "Most recent" +msgstr "" + +#: tmp/vbam.ui.h:7 +msgid "Oldest slot" +msgstr "" + +#: tmp/vbam.ui.h:8 +msgid "Open rece_nt" +msgstr "" + +#: tmp/vbam.ui.h:9 +msgid "Pause" +msgstr "" + +#: tmp/vbam.ui.h:10 +msgid "S_ave state" +msgstr "" + +#: tmp/vbam.ui.h:11 +msgid "Screen capt_ure..." +msgstr "" + +#: tmp/vbam.ui.h:12 +msgid "Slot1" +msgstr "" + +#: tmp/vbam.ui.h:13 +msgid "Slot10" +msgstr "" + +#: tmp/vbam.ui.h:14 +msgid "Slot2" +msgstr "" + +#: tmp/vbam.ui.h:15 +msgid "Slot3" +msgstr "" + +#: tmp/vbam.ui.h:16 +msgid "Slot4" +msgstr "" + +#: tmp/vbam.ui.h:17 +msgid "Slot5" +msgstr "" + +#: tmp/vbam.ui.h:18 +msgid "Slot6" +msgstr "" + +#: tmp/vbam.ui.h:19 +msgid "Slot7" +msgstr "" + +#: tmp/vbam.ui.h:20 +msgid "Slot8" +msgstr "" + +#: tmp/vbam.ui.h:21 +msgid "Slot9" +msgstr "" + +#: tmp/vbam.ui.h:22 +msgid "To _File ..." +msgstr "" + +#: tmp/vbam.ui.h:23 +msgid "VBA" +msgstr "" + +#: tmp/vbam.ui.h:24 +msgid "_Disable cheats" +msgstr "" + +#: tmp/vbam.ui.h:25 +msgid "_Display ..." +msgstr "" + +#: tmp/vbam.ui.h:26 +msgid "_Emulation" +msgstr "" + +#: tmp/vbam.ui.h:27 +msgid "_File" +msgstr "" + +#: tmp/vbam.ui.h:28 +msgid "_Game Boy ..." +msgstr "" + +#: tmp/vbam.ui.h:29 +msgid "_Help" +msgstr "" + +#: tmp/vbam.ui.h:30 +msgid "_Joypads ..." +msgstr "" + +#: tmp/vbam.ui.h:31 +msgid "_List cheats ..." +msgstr "" + +#: tmp/vbam.ui.h:32 +msgid "_Options" +msgstr "" + +#: tmp/vbam.ui.h:33 +msgid "_Preferences ..." +msgstr "" + +#: tmp/vbam.ui.h:34 +msgid "_Reset" +msgstr "" + +#: tmp/vbam.ui.h:35 +msgid "_Sound ..." +msgstr "" diff --git a/po/gvbam/it_IT.po b/po/gvbam/it_IT.po index fb07deae..314f96df 100644 --- a/po/gvbam/it_IT.po +++ b/po/gvbam/it_IT.po @@ -1,736 +1,736 @@ -# This file is distributed under the same license as the VBA-M package. -# -# Translators: -# , 2011. -# jpage89 , 2011. -msgid "" -msgstr "" -"Project-Id-Version: VBA-M\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 20:50+0100\n" -"PO-Revision-Date: 2011-05-19 01:33+0000\n" -"Last-Translator: jpage89 \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it_IT\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ../src/gtk/joypadconfig.cpp:142 -msgid " Axis " -msgstr " Analogici " - -#: ../src/gtk/joypadconfig.cpp:135 -msgid " Button " -msgstr " Pulsante " - -#: ../src/gtk/joypadconfig.cpp:150 -msgid " Hat " -msgstr " Hat " - -#: ../src/gtk/window.cpp:1413 -msgid "%Y/%m/%d %H:%M:%S" -msgstr "%d/%m/%Y %H:%M:%S" - -#: ../src/gtk/screenarea-opengl.cpp:41 -#, c-format -msgid "*** OpenGL : Cannot open display.\n" -msgstr "" -"*** OpenGL : Impossibile aprire display.\n" -"\n" - -#: ../src/gtk/window.cpp:1383 ../src/gtk/window.cpp:1428 -msgid "----/--/-- --:--:--" -msgstr "--/--/---- --:--:--" - -#: tmp/sound.ui.h:2 -#, no-c-format -msgid "100 %" -msgstr "100 %" - -#: tmp/sound.ui.h:4 -#, no-c-format -msgid "200 %" -msgstr "200 %" - -#: tmp/sound.ui.h:6 -#, no-c-format -msgid "25 %" -msgstr "25 %" - -#: ../src/gtk/filters.cpp:61 -msgid "2xSaI" -msgstr "2xSal" - -#: tmp/sound.ui.h:8 -#, no-c-format -msgid "50 %" -msgstr "50 %" - -#: ../src/gtk/joypadconfig.cpp:165 -msgid "" -msgstr "" - -#: tmp/preferences.ui.h:1 -msgid "Appearance" -msgstr "Aspetto" - -#: tmp/gameboyadvance.ui.h:1 -msgid "Bios" -msgstr "Bios" - -#: tmp/gameboy.ui.h:1 -msgid "Boot ROM" -msgstr "ROM di boot" - -#: tmp/gameboyadvance.ui.h:2 -msgid "Cartridge" -msgstr "Cartuccia" - -#: tmp/cheatedit.ui.h:1 -msgid "Codes" -msgstr "Codici" - -#: tmp/cheatedit.ui.h:2 -msgid "Description" -msgstr "Descrizione" - -#: tmp/display.ui.h:1 -msgid "Filters" -msgstr "Filtri" - -#: tmp/preferences.ui.h:2 -msgid "Frameskip" -msgstr "Salto dei frames" - -#: tmp/preferences.ui.h:3 -msgid "General" -msgstr "Generale" - -#: tmp/display.ui.h:2 -msgid "Output module" -msgstr "Modulo Output" - -#: tmp/gameboyadvance.ui.h:3 -msgid "Real-Time Clock" -msgstr "orologio in tempo reale" - -#: tmp/gameboy.ui.h:2 -msgid "System and peripherals" -msgstr "Sistema e periferiche" - -#: tmp/cheatedit.ui.h:3 -msgid "Type" -msgstr "Tipo" - -#: tmp/display.ui.h:3 -msgid "Zoom" -msgstr "Zoom" - -#: tmp/cheatlist.ui.h:1 -msgid "Add new cheat" -msgstr "Aggiungi nuovo cheat" - -#: ../src/gtk/filters.cpp:65 -msgid "AdvanceMAME Scale2x" -msgstr "AdvanceMAME Scale 2x" - -#: ../src/gtk/window.cpp:1301 -msgid "All Gameboy Advance files" -msgstr "Tutti i files Gameboy Advance" - -#: ../src/gtk/gameboyadvanceconfig.cpp:75 -msgid "All files" -msgstr "Tutti i files" - -#: tmp/vbam.ui.h:1 -msgid "Auto load most recent" -msgstr "Carica più recente in automatico" - -#: ../src/gtk/joypadconfig.cpp:42 -msgid "Autofire A :" -msgstr "Fuoco automatico A:" - -#: ../src/gtk/joypadconfig.cpp:43 -msgid "Autofire B :" -msgstr "Fuoco automatico B:" - -#: tmp/gameboy.ui.h:3 tmp/gameboyadvance.ui.h:4 -msgid "Automatic" -msgstr "Automatico" - -#: ../src/gtk/directoriesconfig.cpp:32 -msgid "Batteries :" -msgstr "Batterie:" - -#: ../src/gtk/filters.cpp:66 -msgid "Bilinear" -msgstr "Bilineare" - -#: ../src/gtk/filters.cpp:67 -msgid "Bilinear Plus" -msgstr "Bilineare Plus" - -#: tmp/gameboyadvance.ui.h:5 -msgid "Bios file : " -msgstr "File di bios : " - -#: tmp/gameboy.ui.h:4 -msgid "Boot ROM file : " -msgstr "FIle ROM di Boot : " - -#: ../src/gtk/joypadconfig.cpp:34 -msgid "Button A :" -msgstr "Pulsante A:" - -#: ../src/gtk/joypadconfig.cpp:35 -msgid "Button B :" -msgstr "Pulsante B:" - -#: ../src/gtk/joypadconfig.cpp:36 -msgid "Button L :" -msgstr "Pulsante L:" - -#: ../src/gtk/joypadconfig.cpp:37 -msgid "Button R :" -msgstr "Pulsante R:" - -#: tmp/display.ui.h:4 -msgid "Cairo" -msgstr "Cairo" - -#: ../src/gtk/joypadconfig.cpp:41 -msgid "Capture :" -msgstr "Cattura:" - -#: ../src/gtk/directoriesconfig.cpp:34 -msgid "Captures :" -msgstr "Cattura:" - -#: tmp/cheatlist.ui.h:2 -msgid "Cheat list" -msgstr "Lista cheat" - -#: ../src/gtk/cheatedit.cpp:93 -msgid "CodeBreaker Advance" -msgstr "CodeBreaker Advance" - -#: tmp/vbam.ui.h:2 -msgid "D_irectories ..." -msgstr "P_ercorsi ..." - -#: ../src/gtk/joypadconfig.cpp:50 -msgid "Default joypad" -msgstr "Joypad predefinito" - -#: tmp/display.ui.h:5 -msgid "Default scale : " -msgstr "Dimensione predefinita : " - -#: tmp/cheatlist.ui.h:3 -msgid "Delete all cheats" -msgstr "Cancella tutti i cheats" - -#: tmp/cheatlist.ui.h:4 -msgid "Delete selected cheat" -msgstr "Cancella cheat selezionato" - -#: tmp/preferences.ui.h:4 -msgid "Detailed" -msgstr "Dettagliato" - -#: ../src/gtk/directoriesconfig.cpp:38 -msgid "Directories config" -msgstr "Configura percorsi" - -#: tmp/gameboy.ui.h:5 -msgid "Display Super Game Boy borders" -msgstr "Visualizza bordi Super Game Boy" - -#: ../src/gtk/joypadconfig.cpp:154 -msgid "Down" -msgstr "Giù" - -#: ../src/gtk/joypadconfig.cpp:31 -msgid "Down :" -msgstr "Giù:" - -#: tmp/gameboyadvance.ui.h:6 -msgid "EEPROM" -msgstr "EEPROM" - -#: tmp/gameboyadvance.ui.h:7 -msgid "EEPROM + Sensor" -msgstr "EEPROM + Sensore" - -#: tmp/cheatedit.ui.h:4 -msgid "Edit cheat" -msgstr "Modifica cheat" - -#: tmp/gameboy.ui.h:6 -msgid "Emulate a Game Boy Printer" -msgstr "Emula una Game Boy Printer" - -#: tmp/gameboy.ui.h:7 -msgid "Emulated system : " -msgstr "Sistema emulato : " - -#: tmp/preferences.ui.h:5 -msgid "Enable automatic frame skipping" -msgstr "Abilita salto frame automatico" - -#: tmp/gameboyadvance.ui.h:8 -msgid "Enable real-time clock" -msgstr "Abilita orologio in tempo reale" - -#: ../src/gtk/window.cpp:468 -#, c-format -msgid "Failed to init SDL: %s" -msgstr "Impossibile inizializzare SDL: %s" - -#: ../src/gtk/windowcallbacks.cpp:150 ../src/gtk/windowcallbacks.cpp:312 -msgid "File already exists. Overwrite it?" -msgstr "Il file esiste. Sovrascrivere?" - -#: tmp/gameboyadvance.ui.h:9 -msgid "Flash" -msgstr "Flash" - -#: tmp/gameboyadvance.ui.h:10 -msgid "Flash size : " -msgstr "Dimensioni Flash : " - -#: tmp/preferences.ui.h:6 -msgid "Frameskip level : " -msgstr "Salto dei frames : " - -#: tmp/vbam.ui.h:3 -msgid "From _File ..." -msgstr "Da_File ..." - -#: tmp/display.ui.h:6 -msgid "Fullscreen filter : " -msgstr "Filtro a tutto schermo : " - -#: ../src/gtk/directoriesconfig.cpp:31 -msgid "GB roms :" -msgstr "Rom GB:" - -#: ../src/gtk/directoriesconfig.cpp:30 -msgid "GBA roms :" -msgstr "Rom GBA:" - -#: tmp/gameboy.ui.h:8 -msgid "Game Boy" -msgstr "Game Boy" - -#: tmp/gameboy.ui.h:9 -msgid "Game Boy Advance" -msgstr "Game Boy Advance" - -#: tmp/gameboyadvance.ui.h:11 -msgid "Game Boy Advance settings" -msgstr "Impostazioni Game Boy Advance" - -#: tmp/gameboy.ui.h:10 -msgid "Game Boy Color" -msgstr "Game Boy Color" - -#: tmp/vbam.ui.h:4 -msgid "Game Boy _Advance ..." -msgstr "Game Boy _Advance ..." - -#: tmp/gameboy.ui.h:11 -msgid "GameBoy settings" -msgstr "Impostazioni GameBoy" - -#: ../src/gtk/cheatedit.cpp:108 -msgid "GameGenie" -msgstr "GameGenie" - -#: ../src/gtk/cheatedit.cpp:103 -msgid "GameShark" -msgstr "GameShark" - -#: ../src/gtk/gameboyadvanceconfig.cpp:79 -msgid "Gameboy Advance BIOS" -msgstr "BIOS Gameboy Advance" - -#: ../src/gtk/window.cpp:1308 -msgid "Gameboy Advance files" -msgstr "Files Gameboy Advance" - -#: ../src/gtk/window.cpp:1315 -msgid "Gameboy files" -msgstr "Files Gameboy" - -#: ../src/gtk/cheatedit.cpp:88 -msgid "Gameshark Advance" -msgstr "Gameshark Advance" - -#: ../src/gtk/cheatedit.cpp:83 -msgid "Generic Code" -msgstr "Codice Generico" - -#: tmp/display.ui.h:7 -msgid "Interframe blending : " -msgstr "Miscelazione dei frames : " - -#: ../src/gtk/filters.cpp:82 -msgid "Interframe motion blur" -msgstr "Interframe motion blur" - -#: ../src/gtk/joypadconfig.cpp:129 -msgid "Joy " -msgstr "Joy" - -#: ../src/gtk/joypadconfig.cpp:49 -msgid "Joypad :" -msgstr "Joypad:" - -#: ../src/gtk/joypadconfig.cpp:47 -msgid "Joypad config" -msgstr "Connfigura joypad" - -#: ../src/gtk/joypadconfig.cpp:156 -msgid "Left" -msgstr "Sinistra" - -#: ../src/gtk/joypadconfig.cpp:32 -msgid "Left :" -msgstr "Sinistra:" - -#: tmp/vbam.ui.h:5 -msgid "Loa_d state" -msgstr "Cari_ca stato" - -#: ../src/gtk/windowcallbacks.cpp:84 -msgid "Load game" -msgstr "Carica" - -#: ../src/gtk/window.cpp:1341 -msgid "Loaded battery" -msgstr "Batteria caricata" - -#: ../src/gtk/main.cpp:50 -msgid "Main VBA-M options" -msgstr "Opzioni principali VMA-B" - -#: tmp/vbam.ui.h:6 -msgid "Most recent" -msgstr "Più recenti" - -#: tmp/sound.ui.h:9 -msgid "Mute" -msgstr "Muto" - -#: ../src/gtk/windowcallbacks.cpp:508 -msgid "Nintendo GameBoy Advance emulator." -msgstr "Emulatore Nintendo Gameboy Advance." - -#: ../src/gtk/filters.cpp:60 ../src/gtk/filters.cpp:80 -#: tmp/gameboyadvance.ui.h:12 tmp/preferences.ui.h:7 -msgid "None" -msgstr "Vuoto" - -#: tmp/vbam.ui.h:7 -msgid "Oldest slot" -msgstr "Slot più vecchio" - -#: ../src/gtk/window.cpp:1266 -msgid "Open" -msgstr "Apri" - -#: ../src/gtk/cheatlist.cpp:70 tmp/cheatlist.ui.h:5 -msgid "Open cheat list" -msgstr "Apri lista cheat" - -#: tmp/vbam.ui.h:8 -msgid "Open rece_nt" -msgstr "Apri rece_nti" - -#: tmp/display.ui.h:8 -msgid "OpenGL" -msgstr "OpenGL" - -#: ../src/gtk/main.cpp:55 -msgid "Output version information." -msgstr "Vedi informazioni di versione." - -#: ../src/gtk/windowcallbacks.cpp:294 -msgid "PNG image" -msgstr "Immagine PNG" - -#: tmp/vbam.ui.h:9 -msgid "Pause" -msgstr "Pausa" - -#: tmp/preferences.ui.h:8 -msgid "Pause when inactive" -msgstr "Metti in pausa quando inattivo" - -#: tmp/preferences.ui.h:9 -msgid "Percentage" -msgstr "Percentuale" - -#: ../src/gtk/filters.cpp:64 -msgid "Pixelate" -msgstr "Pixelate" - -#: tmp/preferences.ui.h:10 -msgid "Preferences" -msgstr "Preferenze" - -#: ../src/gtk/joypadconfig.cpp:155 -msgid "Right" -msgstr "Destra" - -#: ../src/gtk/joypadconfig.cpp:33 -msgid "Right :" -msgstr "Destra:" - -#: tmp/gameboyadvance.ui.h:13 -msgid "SRAM" -msgstr "SRAM" - -#: tmp/vbam.ui.h:10 -msgid "S_ave state" -msgstr "S_alva stato" - -#: tmp/sound.ui.h:10 -msgid "Sample rate : " -msgstr "Sample rate : " - -#: ../src/gtk/cheatlist.cpp:93 tmp/cheatlist.ui.h:6 -msgid "Save cheat list" -msgstr "Salva lista cheat" - -#: ../src/gtk/windowcallbacks.cpp:117 -msgid "Save game" -msgstr "Salva" - -#: ../src/gtk/windowcallbacks.cpp:277 -msgid "Save screenshot" -msgstr "Salva screenshot" - -#: tmp/gameboyadvance.ui.h:14 -msgid "Save type : " -msgstr "TIpo di salvataggio : " - -#: ../src/gtk/window.cpp:1358 -msgid "Saved battery" -msgstr "Batteria salvata" - -#: ../src/gtk/directoriesconfig.cpp:33 -msgid "Saves :" -msgstr "Salvataggi:" - -#: ../src/gtk/filters.cpp:68 -msgid "Scanlines" -msgstr "Scanlines" - -#: tmp/vbam.ui.h:11 -msgid "Screen capt_ure..." -msgstr "Cattura sche_rmo..." - -#: ../src/gtk/joypadconfig.cpp:38 -msgid "Select :" -msgstr "Select:" - -#: tmp/vbam.ui.h:12 -msgid "Slot1" -msgstr "Slot1" - -#: tmp/vbam.ui.h:13 -msgid "Slot10" -msgstr "Slot10" - -#: tmp/vbam.ui.h:14 -msgid "Slot2" -msgstr "Slot2" - -#: tmp/vbam.ui.h:15 -msgid "Slot3" -msgstr "Slot3" - -#: tmp/vbam.ui.h:16 -msgid "Slot4" -msgstr "Slot4" - -#: tmp/vbam.ui.h:17 -msgid "Slot5" -msgstr "Slot5" - -#: tmp/vbam.ui.h:18 -msgid "Slot6" -msgstr "Slot6" - -#: tmp/vbam.ui.h:19 -msgid "Slot7" -msgstr "Slot7" - -#: tmp/vbam.ui.h:20 -msgid "Slot8" -msgstr "Slot8" - -#: tmp/vbam.ui.h:21 -msgid "Slot9" -msgstr "Slot9" - -#: ../src/gtk/filters.cpp:81 -msgid "Smart interframe blending" -msgstr "Smart interframe blending" - -#: ../src/gtk/joypadconfig.cpp:40 -msgid "Speed :" -msgstr "Velocità:" - -#: tmp/preferences.ui.h:11 -msgid "Speed indicator : " -msgstr "Indicatore di velocità : " - -#: ../src/gtk/joypadconfig.cpp:39 -msgid "Start :" -msgstr "Start:" - -#: ../src/gtk/filters.cpp:62 -msgid "Super 2xSaI" -msgstr "Super 2xSal" - -#: ../src/gtk/filters.cpp:63 -msgid "Super Eagle" -msgstr "Super Eagle" - -#: tmp/gameboy.ui.h:12 -msgid "Super Game Boy" -msgstr "Super Game Boy" - -#: tmp/gameboy.ui.h:13 -msgid "Super Game Boy 2" -msgstr "Super Game Boy 2" - -#: ../src/gtk/filters.cpp:69 -msgid "TV Mode" -msgstr "Modo TV" - -#: tmp/vbam.ui.h:22 -msgid "To _File ..." -msgstr "A _File ..." - -#: tmp/cheatlist.ui.h:7 -msgid "Toggle all Cheats" -msgstr "Abilita/Disabilita i Cheats" - -#: ../src/gtk/window.cpp:427 -#, c-format -msgid "Unable to initialize output, falling back to Cairo\n" -msgstr "Impossibile inizializzare l'output, ritorno su Cairo\n" - -#: ../src/gtk/window.cpp:1022 -#, c-format -msgid "Unknown file type %s" -msgstr "Tipo di file sconosciuto %s" - -#: ../src/gtk/joypadconfig.cpp:153 -msgid "Up" -msgstr "Su" - -#: ../src/gtk/joypadconfig.cpp:30 -msgid "Up :" -msgstr "Su:" - -#: tmp/gameboy.ui.h:14 -msgid "Use a Game Boy boot ROM file" -msgstr "Usa una ROM di boot del Game Boy" - -#: tmp/gameboyadvance.ui.h:15 -msgid "Use a bios file" -msgstr "Usa un file di bios" - -#: tmp/vbam.ui.h:23 -msgid "VBA" -msgstr "VBA" - -#: ../src/gtk/main.cpp:41 ../src/gtk/windowcallbacks.cpp:506 -msgid "VBA-M" -msgstr "VBA-M" - -#: ../src/gtk/window.cpp:1159 -#, c-format -msgid "VBA-M - %d%%" -msgstr "VBA-M - %d%%" - -#: ../src/gtk/window.cpp:1164 -#, c-format -msgid "VBA-M - %d%% (%d, %d fps)" -msgstr "VBA-M - %d%% (%d, %d fps)" - -#: ../src/gtk/windowcallbacks.cpp:99 ../src/gtk/windowcallbacks.cpp:134 -msgid "VisualBoyAdvance save game" -msgstr "VisualBoyAdvance Salva" - -#: ../src/gtk/main.cpp:81 -#, c-format -msgid "VisualBoyAdvance version %s [GTK+]\n" -msgstr "VisualBoyAdvance versione %s [GTK+]\n" - -#: tmp/sound.ui.h:11 -msgid "Volume : " -msgstr "Volume : " - -#: tmp/vbam.ui.h:24 -msgid "_Disable cheats" -msgstr "_Disabilita cheats" - -#: tmp/vbam.ui.h:25 -msgid "_Display ..." -msgstr "_Schermo ..." - -#: tmp/vbam.ui.h:26 -msgid "_Emulation" -msgstr "_Emulazione" - -#: tmp/vbam.ui.h:27 -msgid "_File" -msgstr "_File" - -#: tmp/vbam.ui.h:28 -msgid "_Game Boy ..." -msgstr "_Game Boy ..." - -#: tmp/vbam.ui.h:29 -msgid "_Help" -msgstr "_Aiuto" - -#: tmp/vbam.ui.h:30 -msgid "_Joypads ..." -msgstr "_Joypads ..." - -#: tmp/vbam.ui.h:31 -msgid "_List cheats ..." -msgstr "_Lista cheats ..." - -#: tmp/vbam.ui.h:32 -msgid "_Options" -msgstr "_Opzioni" - -#: tmp/vbam.ui.h:33 -msgid "_Preferences ..." -msgstr "_Preferenze ..." - -#: tmp/vbam.ui.h:34 -msgid "_Reset" -msgstr "_Reset" - -#: tmp/vbam.ui.h:35 -msgid "_Sound ..." -msgstr "_Audio ..." - -#: ../src/gtk/filters.cpp:70 -msgid "hq2x" -msgstr "hq2x" - -#: ../src/gtk/filters.cpp:71 -msgid "lq2x" -msgstr "lq2x" +# This file is distributed under the same license as the VBA-M package. +# +# Translators: +# , 2011. +# jpage89 , 2011. +msgid "" +msgstr "" +"Project-Id-Version: VBA-M\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 20:50+0100\n" +"PO-Revision-Date: 2011-05-19 01:33+0000\n" +"Last-Translator: jpage89 \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ../src/gtk/joypadconfig.cpp:142 +msgid " Axis " +msgstr " Analogici " + +#: ../src/gtk/joypadconfig.cpp:135 +msgid " Button " +msgstr " Pulsante " + +#: ../src/gtk/joypadconfig.cpp:150 +msgid " Hat " +msgstr " Hat " + +#: ../src/gtk/window.cpp:1413 +msgid "%Y/%m/%d %H:%M:%S" +msgstr "%d/%m/%Y %H:%M:%S" + +#: ../src/gtk/screenarea-opengl.cpp:41 +#, c-format +msgid "*** OpenGL : Cannot open display.\n" +msgstr "" +"*** OpenGL : Impossibile aprire display.\n" +"\n" + +#: ../src/gtk/window.cpp:1383 ../src/gtk/window.cpp:1428 +msgid "----/--/-- --:--:--" +msgstr "--/--/---- --:--:--" + +#: tmp/sound.ui.h:2 +#, no-c-format +msgid "100 %" +msgstr "100 %" + +#: tmp/sound.ui.h:4 +#, no-c-format +msgid "200 %" +msgstr "200 %" + +#: tmp/sound.ui.h:6 +#, no-c-format +msgid "25 %" +msgstr "25 %" + +#: ../src/gtk/filters.cpp:61 +msgid "2xSaI" +msgstr "2xSal" + +#: tmp/sound.ui.h:8 +#, no-c-format +msgid "50 %" +msgstr "50 %" + +#: ../src/gtk/joypadconfig.cpp:165 +msgid "" +msgstr "" + +#: tmp/preferences.ui.h:1 +msgid "Appearance" +msgstr "Aspetto" + +#: tmp/gameboyadvance.ui.h:1 +msgid "Bios" +msgstr "Bios" + +#: tmp/gameboy.ui.h:1 +msgid "Boot ROM" +msgstr "ROM di boot" + +#: tmp/gameboyadvance.ui.h:2 +msgid "Cartridge" +msgstr "Cartuccia" + +#: tmp/cheatedit.ui.h:1 +msgid "Codes" +msgstr "Codici" + +#: tmp/cheatedit.ui.h:2 +msgid "Description" +msgstr "Descrizione" + +#: tmp/display.ui.h:1 +msgid "Filters" +msgstr "Filtri" + +#: tmp/preferences.ui.h:2 +msgid "Frameskip" +msgstr "Salto dei frames" + +#: tmp/preferences.ui.h:3 +msgid "General" +msgstr "Generale" + +#: tmp/display.ui.h:2 +msgid "Output module" +msgstr "Modulo Output" + +#: tmp/gameboyadvance.ui.h:3 +msgid "Real-Time Clock" +msgstr "orologio in tempo reale" + +#: tmp/gameboy.ui.h:2 +msgid "System and peripherals" +msgstr "Sistema e periferiche" + +#: tmp/cheatedit.ui.h:3 +msgid "Type" +msgstr "Tipo" + +#: tmp/display.ui.h:3 +msgid "Zoom" +msgstr "Zoom" + +#: tmp/cheatlist.ui.h:1 +msgid "Add new cheat" +msgstr "Aggiungi nuovo cheat" + +#: ../src/gtk/filters.cpp:65 +msgid "AdvanceMAME Scale2x" +msgstr "AdvanceMAME Scale 2x" + +#: ../src/gtk/window.cpp:1301 +msgid "All Gameboy Advance files" +msgstr "Tutti i files Gameboy Advance" + +#: ../src/gtk/gameboyadvanceconfig.cpp:75 +msgid "All files" +msgstr "Tutti i files" + +#: tmp/vbam.ui.h:1 +msgid "Auto load most recent" +msgstr "Carica più recente in automatico" + +#: ../src/gtk/joypadconfig.cpp:42 +msgid "Autofire A :" +msgstr "Fuoco automatico A:" + +#: ../src/gtk/joypadconfig.cpp:43 +msgid "Autofire B :" +msgstr "Fuoco automatico B:" + +#: tmp/gameboy.ui.h:3 tmp/gameboyadvance.ui.h:4 +msgid "Automatic" +msgstr "Automatico" + +#: ../src/gtk/directoriesconfig.cpp:32 +msgid "Batteries :" +msgstr "Batterie:" + +#: ../src/gtk/filters.cpp:66 +msgid "Bilinear" +msgstr "Bilineare" + +#: ../src/gtk/filters.cpp:67 +msgid "Bilinear Plus" +msgstr "Bilineare Plus" + +#: tmp/gameboyadvance.ui.h:5 +msgid "Bios file : " +msgstr "File di bios : " + +#: tmp/gameboy.ui.h:4 +msgid "Boot ROM file : " +msgstr "FIle ROM di Boot : " + +#: ../src/gtk/joypadconfig.cpp:34 +msgid "Button A :" +msgstr "Pulsante A:" + +#: ../src/gtk/joypadconfig.cpp:35 +msgid "Button B :" +msgstr "Pulsante B:" + +#: ../src/gtk/joypadconfig.cpp:36 +msgid "Button L :" +msgstr "Pulsante L:" + +#: ../src/gtk/joypadconfig.cpp:37 +msgid "Button R :" +msgstr "Pulsante R:" + +#: tmp/display.ui.h:4 +msgid "Cairo" +msgstr "Cairo" + +#: ../src/gtk/joypadconfig.cpp:41 +msgid "Capture :" +msgstr "Cattura:" + +#: ../src/gtk/directoriesconfig.cpp:34 +msgid "Captures :" +msgstr "Cattura:" + +#: tmp/cheatlist.ui.h:2 +msgid "Cheat list" +msgstr "Lista cheat" + +#: ../src/gtk/cheatedit.cpp:93 +msgid "CodeBreaker Advance" +msgstr "CodeBreaker Advance" + +#: tmp/vbam.ui.h:2 +msgid "D_irectories ..." +msgstr "P_ercorsi ..." + +#: ../src/gtk/joypadconfig.cpp:50 +msgid "Default joypad" +msgstr "Joypad predefinito" + +#: tmp/display.ui.h:5 +msgid "Default scale : " +msgstr "Dimensione predefinita : " + +#: tmp/cheatlist.ui.h:3 +msgid "Delete all cheats" +msgstr "Cancella tutti i cheats" + +#: tmp/cheatlist.ui.h:4 +msgid "Delete selected cheat" +msgstr "Cancella cheat selezionato" + +#: tmp/preferences.ui.h:4 +msgid "Detailed" +msgstr "Dettagliato" + +#: ../src/gtk/directoriesconfig.cpp:38 +msgid "Directories config" +msgstr "Configura percorsi" + +#: tmp/gameboy.ui.h:5 +msgid "Display Super Game Boy borders" +msgstr "Visualizza bordi Super Game Boy" + +#: ../src/gtk/joypadconfig.cpp:154 +msgid "Down" +msgstr "Giù" + +#: ../src/gtk/joypadconfig.cpp:31 +msgid "Down :" +msgstr "Giù:" + +#: tmp/gameboyadvance.ui.h:6 +msgid "EEPROM" +msgstr "EEPROM" + +#: tmp/gameboyadvance.ui.h:7 +msgid "EEPROM + Sensor" +msgstr "EEPROM + Sensore" + +#: tmp/cheatedit.ui.h:4 +msgid "Edit cheat" +msgstr "Modifica cheat" + +#: tmp/gameboy.ui.h:6 +msgid "Emulate a Game Boy Printer" +msgstr "Emula una Game Boy Printer" + +#: tmp/gameboy.ui.h:7 +msgid "Emulated system : " +msgstr "Sistema emulato : " + +#: tmp/preferences.ui.h:5 +msgid "Enable automatic frame skipping" +msgstr "Abilita salto frame automatico" + +#: tmp/gameboyadvance.ui.h:8 +msgid "Enable real-time clock" +msgstr "Abilita orologio in tempo reale" + +#: ../src/gtk/window.cpp:468 +#, c-format +msgid "Failed to init SDL: %s" +msgstr "Impossibile inizializzare SDL: %s" + +#: ../src/gtk/windowcallbacks.cpp:150 ../src/gtk/windowcallbacks.cpp:312 +msgid "File already exists. Overwrite it?" +msgstr "Il file esiste. Sovrascrivere?" + +#: tmp/gameboyadvance.ui.h:9 +msgid "Flash" +msgstr "Flash" + +#: tmp/gameboyadvance.ui.h:10 +msgid "Flash size : " +msgstr "Dimensioni Flash : " + +#: tmp/preferences.ui.h:6 +msgid "Frameskip level : " +msgstr "Salto dei frames : " + +#: tmp/vbam.ui.h:3 +msgid "From _File ..." +msgstr "Da_File ..." + +#: tmp/display.ui.h:6 +msgid "Fullscreen filter : " +msgstr "Filtro a tutto schermo : " + +#: ../src/gtk/directoriesconfig.cpp:31 +msgid "GB roms :" +msgstr "Rom GB:" + +#: ../src/gtk/directoriesconfig.cpp:30 +msgid "GBA roms :" +msgstr "Rom GBA:" + +#: tmp/gameboy.ui.h:8 +msgid "Game Boy" +msgstr "Game Boy" + +#: tmp/gameboy.ui.h:9 +msgid "Game Boy Advance" +msgstr "Game Boy Advance" + +#: tmp/gameboyadvance.ui.h:11 +msgid "Game Boy Advance settings" +msgstr "Impostazioni Game Boy Advance" + +#: tmp/gameboy.ui.h:10 +msgid "Game Boy Color" +msgstr "Game Boy Color" + +#: tmp/vbam.ui.h:4 +msgid "Game Boy _Advance ..." +msgstr "Game Boy _Advance ..." + +#: tmp/gameboy.ui.h:11 +msgid "GameBoy settings" +msgstr "Impostazioni GameBoy" + +#: ../src/gtk/cheatedit.cpp:108 +msgid "GameGenie" +msgstr "GameGenie" + +#: ../src/gtk/cheatedit.cpp:103 +msgid "GameShark" +msgstr "GameShark" + +#: ../src/gtk/gameboyadvanceconfig.cpp:79 +msgid "Gameboy Advance BIOS" +msgstr "BIOS Gameboy Advance" + +#: ../src/gtk/window.cpp:1308 +msgid "Gameboy Advance files" +msgstr "Files Gameboy Advance" + +#: ../src/gtk/window.cpp:1315 +msgid "Gameboy files" +msgstr "Files Gameboy" + +#: ../src/gtk/cheatedit.cpp:88 +msgid "Gameshark Advance" +msgstr "Gameshark Advance" + +#: ../src/gtk/cheatedit.cpp:83 +msgid "Generic Code" +msgstr "Codice Generico" + +#: tmp/display.ui.h:7 +msgid "Interframe blending : " +msgstr "Miscelazione dei frames : " + +#: ../src/gtk/filters.cpp:82 +msgid "Interframe motion blur" +msgstr "Interframe motion blur" + +#: ../src/gtk/joypadconfig.cpp:129 +msgid "Joy " +msgstr "Joy" + +#: ../src/gtk/joypadconfig.cpp:49 +msgid "Joypad :" +msgstr "Joypad:" + +#: ../src/gtk/joypadconfig.cpp:47 +msgid "Joypad config" +msgstr "Connfigura joypad" + +#: ../src/gtk/joypadconfig.cpp:156 +msgid "Left" +msgstr "Sinistra" + +#: ../src/gtk/joypadconfig.cpp:32 +msgid "Left :" +msgstr "Sinistra:" + +#: tmp/vbam.ui.h:5 +msgid "Loa_d state" +msgstr "Cari_ca stato" + +#: ../src/gtk/windowcallbacks.cpp:84 +msgid "Load game" +msgstr "Carica" + +#: ../src/gtk/window.cpp:1341 +msgid "Loaded battery" +msgstr "Batteria caricata" + +#: ../src/gtk/main.cpp:50 +msgid "Main VBA-M options" +msgstr "Opzioni principali VMA-B" + +#: tmp/vbam.ui.h:6 +msgid "Most recent" +msgstr "Più recenti" + +#: tmp/sound.ui.h:9 +msgid "Mute" +msgstr "Muto" + +#: ../src/gtk/windowcallbacks.cpp:508 +msgid "Nintendo GameBoy Advance emulator." +msgstr "Emulatore Nintendo Gameboy Advance." + +#: ../src/gtk/filters.cpp:60 ../src/gtk/filters.cpp:80 +#: tmp/gameboyadvance.ui.h:12 tmp/preferences.ui.h:7 +msgid "None" +msgstr "Vuoto" + +#: tmp/vbam.ui.h:7 +msgid "Oldest slot" +msgstr "Slot più vecchio" + +#: ../src/gtk/window.cpp:1266 +msgid "Open" +msgstr "Apri" + +#: ../src/gtk/cheatlist.cpp:70 tmp/cheatlist.ui.h:5 +msgid "Open cheat list" +msgstr "Apri lista cheat" + +#: tmp/vbam.ui.h:8 +msgid "Open rece_nt" +msgstr "Apri rece_nti" + +#: tmp/display.ui.h:8 +msgid "OpenGL" +msgstr "OpenGL" + +#: ../src/gtk/main.cpp:55 +msgid "Output version information." +msgstr "Vedi informazioni di versione." + +#: ../src/gtk/windowcallbacks.cpp:294 +msgid "PNG image" +msgstr "Immagine PNG" + +#: tmp/vbam.ui.h:9 +msgid "Pause" +msgstr "Pausa" + +#: tmp/preferences.ui.h:8 +msgid "Pause when inactive" +msgstr "Metti in pausa quando inattivo" + +#: tmp/preferences.ui.h:9 +msgid "Percentage" +msgstr "Percentuale" + +#: ../src/gtk/filters.cpp:64 +msgid "Pixelate" +msgstr "Pixelate" + +#: tmp/preferences.ui.h:10 +msgid "Preferences" +msgstr "Preferenze" + +#: ../src/gtk/joypadconfig.cpp:155 +msgid "Right" +msgstr "Destra" + +#: ../src/gtk/joypadconfig.cpp:33 +msgid "Right :" +msgstr "Destra:" + +#: tmp/gameboyadvance.ui.h:13 +msgid "SRAM" +msgstr "SRAM" + +#: tmp/vbam.ui.h:10 +msgid "S_ave state" +msgstr "S_alva stato" + +#: tmp/sound.ui.h:10 +msgid "Sample rate : " +msgstr "Sample rate : " + +#: ../src/gtk/cheatlist.cpp:93 tmp/cheatlist.ui.h:6 +msgid "Save cheat list" +msgstr "Salva lista cheat" + +#: ../src/gtk/windowcallbacks.cpp:117 +msgid "Save game" +msgstr "Salva" + +#: ../src/gtk/windowcallbacks.cpp:277 +msgid "Save screenshot" +msgstr "Salva screenshot" + +#: tmp/gameboyadvance.ui.h:14 +msgid "Save type : " +msgstr "TIpo di salvataggio : " + +#: ../src/gtk/window.cpp:1358 +msgid "Saved battery" +msgstr "Batteria salvata" + +#: ../src/gtk/directoriesconfig.cpp:33 +msgid "Saves :" +msgstr "Salvataggi:" + +#: ../src/gtk/filters.cpp:68 +msgid "Scanlines" +msgstr "Scanlines" + +#: tmp/vbam.ui.h:11 +msgid "Screen capt_ure..." +msgstr "Cattura sche_rmo..." + +#: ../src/gtk/joypadconfig.cpp:38 +msgid "Select :" +msgstr "Select:" + +#: tmp/vbam.ui.h:12 +msgid "Slot1" +msgstr "Slot1" + +#: tmp/vbam.ui.h:13 +msgid "Slot10" +msgstr "Slot10" + +#: tmp/vbam.ui.h:14 +msgid "Slot2" +msgstr "Slot2" + +#: tmp/vbam.ui.h:15 +msgid "Slot3" +msgstr "Slot3" + +#: tmp/vbam.ui.h:16 +msgid "Slot4" +msgstr "Slot4" + +#: tmp/vbam.ui.h:17 +msgid "Slot5" +msgstr "Slot5" + +#: tmp/vbam.ui.h:18 +msgid "Slot6" +msgstr "Slot6" + +#: tmp/vbam.ui.h:19 +msgid "Slot7" +msgstr "Slot7" + +#: tmp/vbam.ui.h:20 +msgid "Slot8" +msgstr "Slot8" + +#: tmp/vbam.ui.h:21 +msgid "Slot9" +msgstr "Slot9" + +#: ../src/gtk/filters.cpp:81 +msgid "Smart interframe blending" +msgstr "Smart interframe blending" + +#: ../src/gtk/joypadconfig.cpp:40 +msgid "Speed :" +msgstr "Velocità:" + +#: tmp/preferences.ui.h:11 +msgid "Speed indicator : " +msgstr "Indicatore di velocità : " + +#: ../src/gtk/joypadconfig.cpp:39 +msgid "Start :" +msgstr "Start:" + +#: ../src/gtk/filters.cpp:62 +msgid "Super 2xSaI" +msgstr "Super 2xSal" + +#: ../src/gtk/filters.cpp:63 +msgid "Super Eagle" +msgstr "Super Eagle" + +#: tmp/gameboy.ui.h:12 +msgid "Super Game Boy" +msgstr "Super Game Boy" + +#: tmp/gameboy.ui.h:13 +msgid "Super Game Boy 2" +msgstr "Super Game Boy 2" + +#: ../src/gtk/filters.cpp:69 +msgid "TV Mode" +msgstr "Modo TV" + +#: tmp/vbam.ui.h:22 +msgid "To _File ..." +msgstr "A _File ..." + +#: tmp/cheatlist.ui.h:7 +msgid "Toggle all Cheats" +msgstr "Abilita/Disabilita i Cheats" + +#: ../src/gtk/window.cpp:427 +#, c-format +msgid "Unable to initialize output, falling back to Cairo\n" +msgstr "Impossibile inizializzare l'output, ritorno su Cairo\n" + +#: ../src/gtk/window.cpp:1022 +#, c-format +msgid "Unknown file type %s" +msgstr "Tipo di file sconosciuto %s" + +#: ../src/gtk/joypadconfig.cpp:153 +msgid "Up" +msgstr "Su" + +#: ../src/gtk/joypadconfig.cpp:30 +msgid "Up :" +msgstr "Su:" + +#: tmp/gameboy.ui.h:14 +msgid "Use a Game Boy boot ROM file" +msgstr "Usa una ROM di boot del Game Boy" + +#: tmp/gameboyadvance.ui.h:15 +msgid "Use a bios file" +msgstr "Usa un file di bios" + +#: tmp/vbam.ui.h:23 +msgid "VBA" +msgstr "VBA" + +#: ../src/gtk/main.cpp:41 ../src/gtk/windowcallbacks.cpp:506 +msgid "VBA-M" +msgstr "VBA-M" + +#: ../src/gtk/window.cpp:1159 +#, c-format +msgid "VBA-M - %d%%" +msgstr "VBA-M - %d%%" + +#: ../src/gtk/window.cpp:1164 +#, c-format +msgid "VBA-M - %d%% (%d, %d fps)" +msgstr "VBA-M - %d%% (%d, %d fps)" + +#: ../src/gtk/windowcallbacks.cpp:99 ../src/gtk/windowcallbacks.cpp:134 +msgid "VisualBoyAdvance save game" +msgstr "VisualBoyAdvance Salva" + +#: ../src/gtk/main.cpp:81 +#, c-format +msgid "VisualBoyAdvance version %s [GTK+]\n" +msgstr "VisualBoyAdvance versione %s [GTK+]\n" + +#: tmp/sound.ui.h:11 +msgid "Volume : " +msgstr "Volume : " + +#: tmp/vbam.ui.h:24 +msgid "_Disable cheats" +msgstr "_Disabilita cheats" + +#: tmp/vbam.ui.h:25 +msgid "_Display ..." +msgstr "_Schermo ..." + +#: tmp/vbam.ui.h:26 +msgid "_Emulation" +msgstr "_Emulazione" + +#: tmp/vbam.ui.h:27 +msgid "_File" +msgstr "_File" + +#: tmp/vbam.ui.h:28 +msgid "_Game Boy ..." +msgstr "_Game Boy ..." + +#: tmp/vbam.ui.h:29 +msgid "_Help" +msgstr "_Aiuto" + +#: tmp/vbam.ui.h:30 +msgid "_Joypads ..." +msgstr "_Joypads ..." + +#: tmp/vbam.ui.h:31 +msgid "_List cheats ..." +msgstr "_Lista cheats ..." + +#: tmp/vbam.ui.h:32 +msgid "_Options" +msgstr "_Opzioni" + +#: tmp/vbam.ui.h:33 +msgid "_Preferences ..." +msgstr "_Preferenze ..." + +#: tmp/vbam.ui.h:34 +msgid "_Reset" +msgstr "_Reset" + +#: tmp/vbam.ui.h:35 +msgid "_Sound ..." +msgstr "_Audio ..." + +#: ../src/gtk/filters.cpp:70 +msgid "hq2x" +msgstr "hq2x" + +#: ../src/gtk/filters.cpp:71 +msgid "lq2x" +msgstr "lq2x" diff --git a/po/gvbam/nb.po b/po/gvbam/nb.po index 5dec7e5c..a258abac 100644 --- a/po/gvbam/nb.po +++ b/po/gvbam/nb.po @@ -1,733 +1,733 @@ -# This file is distributed under the same license as the VBA-M package. -# -# Translators: -# , 2011. -msgid "" -msgstr "" -"Project-Id-Version: VBA-M\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 20:50+0100\n" -"PO-Revision-Date: 2011-06-29 21:29+0000\n" -"Last-Translator: cytronacid \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ../src/gtk/joypadconfig.cpp:142 -msgid " Axis " -msgstr "Akse" - -#: ../src/gtk/joypadconfig.cpp:135 -msgid " Button " -msgstr "Knapp" - -#: ../src/gtk/joypadconfig.cpp:150 -msgid " Hat " -msgstr "Topp" - -#: ../src/gtk/window.cpp:1413 -msgid "%Y/%m/%d %H:%M:%S" -msgstr "%Y/%m/%d% %H:%M:%S" - -#: ../src/gtk/screenarea-opengl.cpp:41 -#, c-format -msgid "*** OpenGL : Cannot open display.\n" -msgstr "*** OpenGL: Kan ikke åpne vindu \\n\n" - -#: ../src/gtk/window.cpp:1383 ../src/gtk/window.cpp:1428 -msgid "----/--/-- --:--:--" -msgstr "---/--/- --:--:--" - -#: tmp/sound.ui.h:2 -#, no-c-format -msgid "100 %" -msgstr "100 %" - -#: tmp/sound.ui.h:4 -#, no-c-format -msgid "200 %" -msgstr "200 %" - -#: tmp/sound.ui.h:6 -#, no-c-format -msgid "25 %" -msgstr "25 %" - -#: ../src/gtk/filters.cpp:61 -msgid "2xSaI" -msgstr "2xSal" - -#: tmp/sound.ui.h:8 -#, no-c-format -msgid "50 %" -msgstr "50 %" - -#: ../src/gtk/joypadconfig.cpp:165 -msgid "" -msgstr "" - -#: tmp/preferences.ui.h:1 -msgid "Appearance" -msgstr "Utseende" - -#: tmp/gameboyadvance.ui.h:1 -msgid "Bios" -msgstr "Bios" - -#: tmp/gameboy.ui.h:1 -msgid "Boot ROM" -msgstr "Boot ROM" - -#: tmp/gameboyadvance.ui.h:2 -msgid "Cartridge" -msgstr "Kasett" - -#: tmp/cheatedit.ui.h:1 -msgid "Codes" -msgstr "Koder" - -#: tmp/cheatedit.ui.h:2 -msgid "Description" -msgstr "Beskrivelse" - -#: tmp/display.ui.h:1 -msgid "Filters" -msgstr "Filtere" - -#: tmp/preferences.ui.h:2 -msgid "Frameskip" -msgstr "Bilde-hopp" - -#: tmp/preferences.ui.h:3 -msgid "General" -msgstr "" - -#: tmp/display.ui.h:2 -msgid "Output module" -msgstr " Utgnags modul" - -#: tmp/gameboyadvance.ui.h:3 -msgid "Real-Time Clock" -msgstr "Sann-Tids Klokke" - -#: tmp/gameboy.ui.h:2 -msgid "System and peripherals" -msgstr "System og tillegsutstyr" - -#: tmp/cheatedit.ui.h:3 -msgid "Type" -msgstr "Tast inn" - -#: tmp/display.ui.h:3 -msgid "Zoom" -msgstr "Zoom" - -#: tmp/cheatlist.ui.h:1 -msgid "Add new cheat" -msgstr "Legg til ny kode" - -#: ../src/gtk/filters.cpp:65 -msgid "AdvanceMAME Scale2x" -msgstr "AdvanceNAME Scale2x" - -#: ../src/gtk/window.cpp:1301 -msgid "All Gameboy Advance files" -msgstr "Alle Gameboy Advance filer" - -#: ../src/gtk/gameboyadvanceconfig.cpp:75 -msgid "All files" -msgstr "Alle filer" - -#: tmp/vbam.ui.h:1 -msgid "Auto load most recent" -msgstr "Automatisk last inn tidligste" - -#: ../src/gtk/joypadconfig.cpp:42 -msgid "Autofire A :" -msgstr "Autotrykk-A :" - -#: ../src/gtk/joypadconfig.cpp:43 -msgid "Autofire B :" -msgstr "Autotrykk-B :" - -#: tmp/gameboy.ui.h:3 tmp/gameboyadvance.ui.h:4 -msgid "Automatic" -msgstr "Automatisk" - -#: ../src/gtk/directoriesconfig.cpp:32 -msgid "Batteries :" -msgstr "Batterier :" - -#: ../src/gtk/filters.cpp:66 -msgid "Bilinear" -msgstr "Bilineær" - -#: ../src/gtk/filters.cpp:67 -msgid "Bilinear Plus" -msgstr "Bilineær +" - -#: tmp/gameboyadvance.ui.h:5 -msgid "Bios file : " -msgstr "Bios fil : " - -#: tmp/gameboy.ui.h:4 -msgid "Boot ROM file : " -msgstr "Start ROM fil : " - -#: ../src/gtk/joypadconfig.cpp:34 -msgid "Button A :" -msgstr "A-Knapp :" - -#: ../src/gtk/joypadconfig.cpp:35 -msgid "Button B :" -msgstr "B-Knapp :" - -#: ../src/gtk/joypadconfig.cpp:36 -msgid "Button L :" -msgstr "L-Knapp :" - -#: ../src/gtk/joypadconfig.cpp:37 -msgid "Button R :" -msgstr "R-Knapp: " - -#: tmp/display.ui.h:4 -msgid "Cairo" -msgstr "Cairo" - -#: ../src/gtk/joypadconfig.cpp:41 -msgid "Capture :" -msgstr "Opptak :" - -#: ../src/gtk/directoriesconfig.cpp:34 -msgid "Captures :" -msgstr "Opptak :" - -#: tmp/cheatlist.ui.h:2 -msgid "Cheat list" -msgstr "Kode liste" - -#: ../src/gtk/cheatedit.cpp:93 -msgid "CodeBreaker Advance" -msgstr "Codebreaker Advanced" - -#: tmp/vbam.ui.h:2 -msgid "D_irectories ..." -msgstr "D_irektiorie ..." - -#: ../src/gtk/joypadconfig.cpp:50 -msgid "Default joypad" -msgstr "Standard Joypad" - -#: tmp/display.ui.h:5 -msgid "Default scale : " -msgstr "Standard skala :" - -#: tmp/cheatlist.ui.h:3 -msgid "Delete all cheats" -msgstr "Slett alle koder" - -#: tmp/cheatlist.ui.h:4 -msgid "Delete selected cheat" -msgstr "Slett Valgt kode" - -#: tmp/preferences.ui.h:4 -msgid "Detailed" -msgstr "Detaljert" - -#: ../src/gtk/directoriesconfig.cpp:38 -msgid "Directories config" -msgstr "Direktorie konfigurasjon" - -#: tmp/gameboy.ui.h:5 -msgid "Display Super Game Boy borders" -msgstr "Vis Super Game Boy rammer" - -#: ../src/gtk/joypadconfig.cpp:154 -msgid "Down" -msgstr "Ned" - -#: ../src/gtk/joypadconfig.cpp:31 -msgid "Down :" -msgstr "Ned :" - -#: tmp/gameboyadvance.ui.h:6 -msgid "EEPROM" -msgstr "EEPROM" - -#: tmp/gameboyadvance.ui.h:7 -msgid "EEPROM + Sensor" -msgstr "EEPROM + Sensor" - -#: tmp/cheatedit.ui.h:4 -msgid "Edit cheat" -msgstr "Endre kode" - -#: tmp/gameboy.ui.h:6 -msgid "Emulate a Game Boy Printer" -msgstr "Emuler en Gameboy Printer" - -#: tmp/gameboy.ui.h:7 -msgid "Emulated system : " -msgstr "Emulert system : " - -#: tmp/preferences.ui.h:5 -msgid "Enable automatic frame skipping" -msgstr "Slå på automatisk bilde-hopp" - -#: tmp/gameboyadvance.ui.h:8 -msgid "Enable real-time clock" -msgstr "Slå på sann-tids klokke" - -#: ../src/gtk/window.cpp:468 -#, c-format -msgid "Failed to init SDL: %s" -msgstr "Kan ikke initialisere SDL: %s" - -#: ../src/gtk/windowcallbacks.cpp:150 ../src/gtk/windowcallbacks.cpp:312 -msgid "File already exists. Overwrite it?" -msgstr "Fillen finnes allerede. Lagre over?" - -#: tmp/gameboyadvance.ui.h:9 -msgid "Flash" -msgstr "Flash" - -#: tmp/gameboyadvance.ui.h:10 -msgid "Flash size : " -msgstr "Flash størelse :" - -#: tmp/preferences.ui.h:6 -msgid "Frameskip level : " -msgstr "Bilde-hopp nivå :" - -#: tmp/vbam.ui.h:3 -msgid "From _File ..." -msgstr "Fra_Fil" - -#: tmp/display.ui.h:6 -msgid "Fullscreen filter : " -msgstr "Fullskjerm filter :" - -#: ../src/gtk/directoriesconfig.cpp:31 -msgid "GB roms :" -msgstr "Gameboy roms :" - -#: ../src/gtk/directoriesconfig.cpp:30 -msgid "GBA roms :" -msgstr "GBA roms :" - -#: tmp/gameboy.ui.h:8 -msgid "Game Boy" -msgstr "Game Boy" - -#: tmp/gameboy.ui.h:9 -msgid "Game Boy Advance" -msgstr "Game Boy Advance" - -#: tmp/gameboyadvance.ui.h:11 -msgid "Game Boy Advance settings" -msgstr "Game Boy Advance instillinger" - -#: tmp/gameboy.ui.h:10 -msgid "Game Boy Color" -msgstr "Game Boy Color" - -#: tmp/vbam.ui.h:4 -msgid "Game Boy _Advance ..." -msgstr "Game Boy _Advance ..." - -#: tmp/gameboy.ui.h:11 -msgid "GameBoy settings" -msgstr "GameBoy Innstillinger" - -#: ../src/gtk/cheatedit.cpp:108 -msgid "GameGenie" -msgstr "GameGenie" - -#: ../src/gtk/cheatedit.cpp:103 -msgid "GameShark" -msgstr "Gameshark" - -#: ../src/gtk/gameboyadvanceconfig.cpp:79 -msgid "Gameboy Advance BIOS" -msgstr "Gameboy Advance BIOS" - -#: ../src/gtk/window.cpp:1308 -msgid "Gameboy Advance files" -msgstr "Gameboy Advance filer" - -#: ../src/gtk/window.cpp:1315 -msgid "Gameboy files" -msgstr "Gameboy filer" - -#: ../src/gtk/cheatedit.cpp:88 -msgid "Gameshark Advance" -msgstr "Gameshark Advance" - -#: ../src/gtk/cheatedit.cpp:83 -msgid "Generic Code" -msgstr "Generisk kode" - -#: tmp/display.ui.h:7 -msgid "Interframe blending : " -msgstr "Internramme Blending :" - -#: ../src/gtk/filters.cpp:82 -msgid "Interframe motion blur" -msgstr "Bevegelses skurr" - -#: ../src/gtk/joypadconfig.cpp:129 -msgid "Joy " -msgstr "Joy" - -#: ../src/gtk/joypadconfig.cpp:49 -msgid "Joypad :" -msgstr "Joypad :" - -#: ../src/gtk/joypadconfig.cpp:47 -msgid "Joypad config" -msgstr "Joypad Konfigurasjon" - -#: ../src/gtk/joypadconfig.cpp:156 -msgid "Left" -msgstr "Venstre" - -#: ../src/gtk/joypadconfig.cpp:32 -msgid "Left :" -msgstr "Venstre : " - -#: tmp/vbam.ui.h:5 -msgid "Loa_d state" -msgstr "Last i_nn status" - -#: ../src/gtk/windowcallbacks.cpp:84 -msgid "Load game" -msgstr "Last inn" - -#: ../src/gtk/window.cpp:1341 -msgid "Loaded battery" -msgstr "Batteri oppladet" - -#: ../src/gtk/main.cpp:50 -msgid "Main VBA-M options" -msgstr "Hoved VBA-M Innstillinger" - -#: tmp/vbam.ui.h:6 -msgid "Most recent" -msgstr "Tidligest" - -#: tmp/sound.ui.h:9 -msgid "Mute" -msgstr "Mute" - -#: ../src/gtk/windowcallbacks.cpp:508 -msgid "Nintendo GameBoy Advance emulator." -msgstr "Nintendo GameBoy Advance emulator" - -#: ../src/gtk/filters.cpp:60 ../src/gtk/filters.cpp:80 -#: tmp/gameboyadvance.ui.h:12 tmp/preferences.ui.h:7 -msgid "None" -msgstr "Ingen" - -#: tmp/vbam.ui.h:7 -msgid "Oldest slot" -msgstr "Gamleste fil" - -#: ../src/gtk/window.cpp:1266 -msgid "Open" -msgstr "Åpne" - -#: ../src/gtk/cheatlist.cpp:70 tmp/cheatlist.ui.h:5 -msgid "Open cheat list" -msgstr "Åpne cheat liste" - -#: tmp/vbam.ui.h:8 -msgid "Open rece_nt" -msgstr "Åpne Tidlige_re" - -#: tmp/display.ui.h:8 -msgid "OpenGL" -msgstr "OpenGL" - -#: ../src/gtk/main.cpp:55 -msgid "Output version information." -msgstr "Utgang." - -#: ../src/gtk/windowcallbacks.cpp:294 -msgid "PNG image" -msgstr "PNG Bildefil" - -#: tmp/vbam.ui.h:9 -msgid "Pause" -msgstr "Pause" - -#: tmp/preferences.ui.h:8 -msgid "Pause when inactive" -msgstr "Pause når inaktiv" - -#: tmp/preferences.ui.h:9 -msgid "Percentage" -msgstr "Prosent" - -#: ../src/gtk/filters.cpp:64 -msgid "Pixelate" -msgstr "Pixeler" - -#: tmp/preferences.ui.h:10 -msgid "Preferences" -msgstr "Valg" - -#: ../src/gtk/joypadconfig.cpp:155 -msgid "Right" -msgstr "Høyre" - -#: ../src/gtk/joypadconfig.cpp:33 -msgid "Right :" -msgstr "Høyre :" - -#: tmp/gameboyadvance.ui.h:13 -msgid "SRAM" -msgstr "SRAM" - -#: tmp/vbam.ui.h:10 -msgid "S_ave state" -msgstr "Lag_rings fil" - -#: tmp/sound.ui.h:10 -msgid "Sample rate : " -msgstr "Prøve Ratio :" - -#: ../src/gtk/cheatlist.cpp:93 tmp/cheatlist.ui.h:6 -msgid "Save cheat list" -msgstr "Lagre cheat Liste" - -#: ../src/gtk/windowcallbacks.cpp:117 -msgid "Save game" -msgstr "Lagre" - -#: ../src/gtk/windowcallbacks.cpp:277 -msgid "Save screenshot" -msgstr "Lagre screenshot" - -#: tmp/gameboyadvance.ui.h:14 -msgid "Save type : " -msgstr "Lagrings type : " - -#: ../src/gtk/window.cpp:1358 -msgid "Saved battery" -msgstr "Lagret bateri" - -#: ../src/gtk/directoriesconfig.cpp:33 -msgid "Saves :" -msgstr "Lagrede filer :" - -#: ../src/gtk/filters.cpp:68 -msgid "Scanlines" -msgstr "Scannelinjer" - -#: tmp/vbam.ui.h:11 -msgid "Screen capt_ure..." -msgstr "Screen Capt_ure..." - -#: ../src/gtk/joypadconfig.cpp:38 -msgid "Select :" -msgstr "Select :" - -#: tmp/vbam.ui.h:12 -msgid "Slot1" -msgstr "Fil1" - -#: tmp/vbam.ui.h:13 -msgid "Slot10" -msgstr "Fil10" - -#: tmp/vbam.ui.h:14 -msgid "Slot2" -msgstr "Fil2" - -#: tmp/vbam.ui.h:15 -msgid "Slot3" -msgstr "Fil3" - -#: tmp/vbam.ui.h:16 -msgid "Slot4" -msgstr "Fil4" - -#: tmp/vbam.ui.h:17 -msgid "Slot5" -msgstr "Fil5" - -#: tmp/vbam.ui.h:18 -msgid "Slot6" -msgstr "Fil6" - -#: tmp/vbam.ui.h:19 -msgid "Slot7" -msgstr "Fil7" - -#: tmp/vbam.ui.h:20 -msgid "Slot8" -msgstr "Fil8" - -#: tmp/vbam.ui.h:21 -msgid "Slot9" -msgstr "Fil9" - -#: ../src/gtk/filters.cpp:81 -msgid "Smart interframe blending" -msgstr "Smart ramme" - -#: ../src/gtk/joypadconfig.cpp:40 -msgid "Speed :" -msgstr "Fart :" - -#: tmp/preferences.ui.h:11 -msgid "Speed indicator : " -msgstr "Farts viser : " - -#: ../src/gtk/joypadconfig.cpp:39 -msgid "Start :" -msgstr "Start: " - -#: ../src/gtk/filters.cpp:62 -msgid "Super 2xSaI" -msgstr "Super 2xSal" - -#: ../src/gtk/filters.cpp:63 -msgid "Super Eagle" -msgstr "Super Eagle" - -#: tmp/gameboy.ui.h:12 -msgid "Super Game Boy" -msgstr "Super Game Boy" - -#: tmp/gameboy.ui.h:13 -msgid "Super Game Boy 2" -msgstr "Super Game Boy 2" - -#: ../src/gtk/filters.cpp:69 -msgid "TV Mode" -msgstr "TV Modus" - -#: tmp/vbam.ui.h:22 -msgid "To _File ..." -msgstr "Til _Fil" - -#: tmp/cheatlist.ui.h:7 -msgid "Toggle all Cheats" -msgstr "Merk alle Koder" - -#: ../src/gtk/window.cpp:427 -#, c-format -msgid "Unable to initialize output, falling back to Cairo\n" -msgstr "Kan ikke initialisere utgang, Går til bake til Cairo \\n\n" - -#: ../src/gtk/window.cpp:1022 -#, c-format -msgid "Unknown file type %s" -msgstr "Ukjent fil-type %s" - -#: ../src/gtk/joypadconfig.cpp:153 -msgid "Up" -msgstr "Opp" - -#: ../src/gtk/joypadconfig.cpp:30 -msgid "Up :" -msgstr "Opp :" - -#: tmp/gameboy.ui.h:14 -msgid "Use a Game Boy boot ROM file" -msgstr "Bruk en Game Boy Start-ROM fil" - -#: tmp/gameboyadvance.ui.h:15 -msgid "Use a bios file" -msgstr "Bruk bios fil" - -#: tmp/vbam.ui.h:23 -msgid "VBA" -msgstr "VBA" - -#: ../src/gtk/main.cpp:41 ../src/gtk/windowcallbacks.cpp:506 -msgid "VBA-M" -msgstr "VBA-M" - -#: ../src/gtk/window.cpp:1159 -#, c-format -msgid "VBA-M - %d%%" -msgstr "VBA-M %d%%" - -#: ../src/gtk/window.cpp:1164 -#, c-format -msgid "VBA-M - %d%% (%d, %d fps)" -msgstr "VBA-M - %d%% ( %d %d fps ) " - -#: ../src/gtk/windowcallbacks.cpp:99 ../src/gtk/windowcallbacks.cpp:134 -msgid "VisualBoyAdvance save game" -msgstr "VisualBoyAdvance lagre spill" - -#: ../src/gtk/main.cpp:81 -#, c-format -msgid "VisualBoyAdvance version %s [GTK+]\n" -msgstr "VisualBoyAdvance version %s [GTK+] \\n\n" - -#: tmp/sound.ui.h:11 -msgid "Volume : " -msgstr "Volum : " - -#: tmp/vbam.ui.h:24 -msgid "_Disable cheats" -msgstr "_Slå av koder" - -#: tmp/vbam.ui.h:25 -msgid "_Display ..." -msgstr "_Vis ..." - -#: tmp/vbam.ui.h:26 -msgid "_Emulation" -msgstr "_Emulasjon" - -#: tmp/vbam.ui.h:27 -msgid "_File" -msgstr "_Fil" - -#: tmp/vbam.ui.h:28 -msgid "_Game Boy ..." -msgstr "_Game Boy ..." - -#: tmp/vbam.ui.h:29 -msgid "_Help" -msgstr "_Help" - -#: tmp/vbam.ui.h:30 -msgid "_Joypads ..." -msgstr "_joypads ..." - -#: tmp/vbam.ui.h:31 -msgid "_List cheats ..." -msgstr "_Vis koder ..." - -#: tmp/vbam.ui.h:32 -msgid "_Options" -msgstr "_Innstillinger" - -#: tmp/vbam.ui.h:33 -msgid "_Preferences ..." -msgstr "_Valg" - -#: tmp/vbam.ui.h:34 -msgid "_Reset" -msgstr "_Reset" - -#: tmp/vbam.ui.h:35 -msgid "_Sound ..." -msgstr "_Lyd ..." - -#: ../src/gtk/filters.cpp:70 -msgid "hq2x" -msgstr "hq2x" - -#: ../src/gtk/filters.cpp:71 -msgid "lq2x" -msgstr "lq2x" +# This file is distributed under the same license as the VBA-M package. +# +# Translators: +# , 2011. +msgid "" +msgstr "" +"Project-Id-Version: VBA-M\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 20:50+0100\n" +"PO-Revision-Date: 2011-06-29 21:29+0000\n" +"Last-Translator: cytronacid \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ../src/gtk/joypadconfig.cpp:142 +msgid " Axis " +msgstr "Akse" + +#: ../src/gtk/joypadconfig.cpp:135 +msgid " Button " +msgstr "Knapp" + +#: ../src/gtk/joypadconfig.cpp:150 +msgid " Hat " +msgstr "Topp" + +#: ../src/gtk/window.cpp:1413 +msgid "%Y/%m/%d %H:%M:%S" +msgstr "%Y/%m/%d% %H:%M:%S" + +#: ../src/gtk/screenarea-opengl.cpp:41 +#, c-format +msgid "*** OpenGL : Cannot open display.\n" +msgstr "*** OpenGL: Kan ikke åpne vindu \\n\n" + +#: ../src/gtk/window.cpp:1383 ../src/gtk/window.cpp:1428 +msgid "----/--/-- --:--:--" +msgstr "---/--/- --:--:--" + +#: tmp/sound.ui.h:2 +#, no-c-format +msgid "100 %" +msgstr "100 %" + +#: tmp/sound.ui.h:4 +#, no-c-format +msgid "200 %" +msgstr "200 %" + +#: tmp/sound.ui.h:6 +#, no-c-format +msgid "25 %" +msgstr "25 %" + +#: ../src/gtk/filters.cpp:61 +msgid "2xSaI" +msgstr "2xSal" + +#: tmp/sound.ui.h:8 +#, no-c-format +msgid "50 %" +msgstr "50 %" + +#: ../src/gtk/joypadconfig.cpp:165 +msgid "" +msgstr "" + +#: tmp/preferences.ui.h:1 +msgid "Appearance" +msgstr "Utseende" + +#: tmp/gameboyadvance.ui.h:1 +msgid "Bios" +msgstr "Bios" + +#: tmp/gameboy.ui.h:1 +msgid "Boot ROM" +msgstr "Boot ROM" + +#: tmp/gameboyadvance.ui.h:2 +msgid "Cartridge" +msgstr "Kasett" + +#: tmp/cheatedit.ui.h:1 +msgid "Codes" +msgstr "Koder" + +#: tmp/cheatedit.ui.h:2 +msgid "Description" +msgstr "Beskrivelse" + +#: tmp/display.ui.h:1 +msgid "Filters" +msgstr "Filtere" + +#: tmp/preferences.ui.h:2 +msgid "Frameskip" +msgstr "Bilde-hopp" + +#: tmp/preferences.ui.h:3 +msgid "General" +msgstr "" + +#: tmp/display.ui.h:2 +msgid "Output module" +msgstr " Utgnags modul" + +#: tmp/gameboyadvance.ui.h:3 +msgid "Real-Time Clock" +msgstr "Sann-Tids Klokke" + +#: tmp/gameboy.ui.h:2 +msgid "System and peripherals" +msgstr "System og tillegsutstyr" + +#: tmp/cheatedit.ui.h:3 +msgid "Type" +msgstr "Tast inn" + +#: tmp/display.ui.h:3 +msgid "Zoom" +msgstr "Zoom" + +#: tmp/cheatlist.ui.h:1 +msgid "Add new cheat" +msgstr "Legg til ny kode" + +#: ../src/gtk/filters.cpp:65 +msgid "AdvanceMAME Scale2x" +msgstr "AdvanceNAME Scale2x" + +#: ../src/gtk/window.cpp:1301 +msgid "All Gameboy Advance files" +msgstr "Alle Gameboy Advance filer" + +#: ../src/gtk/gameboyadvanceconfig.cpp:75 +msgid "All files" +msgstr "Alle filer" + +#: tmp/vbam.ui.h:1 +msgid "Auto load most recent" +msgstr "Automatisk last inn tidligste" + +#: ../src/gtk/joypadconfig.cpp:42 +msgid "Autofire A :" +msgstr "Autotrykk-A :" + +#: ../src/gtk/joypadconfig.cpp:43 +msgid "Autofire B :" +msgstr "Autotrykk-B :" + +#: tmp/gameboy.ui.h:3 tmp/gameboyadvance.ui.h:4 +msgid "Automatic" +msgstr "Automatisk" + +#: ../src/gtk/directoriesconfig.cpp:32 +msgid "Batteries :" +msgstr "Batterier :" + +#: ../src/gtk/filters.cpp:66 +msgid "Bilinear" +msgstr "Bilineær" + +#: ../src/gtk/filters.cpp:67 +msgid "Bilinear Plus" +msgstr "Bilineær +" + +#: tmp/gameboyadvance.ui.h:5 +msgid "Bios file : " +msgstr "Bios fil : " + +#: tmp/gameboy.ui.h:4 +msgid "Boot ROM file : " +msgstr "Start ROM fil : " + +#: ../src/gtk/joypadconfig.cpp:34 +msgid "Button A :" +msgstr "A-Knapp :" + +#: ../src/gtk/joypadconfig.cpp:35 +msgid "Button B :" +msgstr "B-Knapp :" + +#: ../src/gtk/joypadconfig.cpp:36 +msgid "Button L :" +msgstr "L-Knapp :" + +#: ../src/gtk/joypadconfig.cpp:37 +msgid "Button R :" +msgstr "R-Knapp: " + +#: tmp/display.ui.h:4 +msgid "Cairo" +msgstr "Cairo" + +#: ../src/gtk/joypadconfig.cpp:41 +msgid "Capture :" +msgstr "Opptak :" + +#: ../src/gtk/directoriesconfig.cpp:34 +msgid "Captures :" +msgstr "Opptak :" + +#: tmp/cheatlist.ui.h:2 +msgid "Cheat list" +msgstr "Kode liste" + +#: ../src/gtk/cheatedit.cpp:93 +msgid "CodeBreaker Advance" +msgstr "Codebreaker Advanced" + +#: tmp/vbam.ui.h:2 +msgid "D_irectories ..." +msgstr "D_irektiorie ..." + +#: ../src/gtk/joypadconfig.cpp:50 +msgid "Default joypad" +msgstr "Standard Joypad" + +#: tmp/display.ui.h:5 +msgid "Default scale : " +msgstr "Standard skala :" + +#: tmp/cheatlist.ui.h:3 +msgid "Delete all cheats" +msgstr "Slett alle koder" + +#: tmp/cheatlist.ui.h:4 +msgid "Delete selected cheat" +msgstr "Slett Valgt kode" + +#: tmp/preferences.ui.h:4 +msgid "Detailed" +msgstr "Detaljert" + +#: ../src/gtk/directoriesconfig.cpp:38 +msgid "Directories config" +msgstr "Direktorie konfigurasjon" + +#: tmp/gameboy.ui.h:5 +msgid "Display Super Game Boy borders" +msgstr "Vis Super Game Boy rammer" + +#: ../src/gtk/joypadconfig.cpp:154 +msgid "Down" +msgstr "Ned" + +#: ../src/gtk/joypadconfig.cpp:31 +msgid "Down :" +msgstr "Ned :" + +#: tmp/gameboyadvance.ui.h:6 +msgid "EEPROM" +msgstr "EEPROM" + +#: tmp/gameboyadvance.ui.h:7 +msgid "EEPROM + Sensor" +msgstr "EEPROM + Sensor" + +#: tmp/cheatedit.ui.h:4 +msgid "Edit cheat" +msgstr "Endre kode" + +#: tmp/gameboy.ui.h:6 +msgid "Emulate a Game Boy Printer" +msgstr "Emuler en Gameboy Printer" + +#: tmp/gameboy.ui.h:7 +msgid "Emulated system : " +msgstr "Emulert system : " + +#: tmp/preferences.ui.h:5 +msgid "Enable automatic frame skipping" +msgstr "Slå på automatisk bilde-hopp" + +#: tmp/gameboyadvance.ui.h:8 +msgid "Enable real-time clock" +msgstr "Slå på sann-tids klokke" + +#: ../src/gtk/window.cpp:468 +#, c-format +msgid "Failed to init SDL: %s" +msgstr "Kan ikke initialisere SDL: %s" + +#: ../src/gtk/windowcallbacks.cpp:150 ../src/gtk/windowcallbacks.cpp:312 +msgid "File already exists. Overwrite it?" +msgstr "Fillen finnes allerede. Lagre over?" + +#: tmp/gameboyadvance.ui.h:9 +msgid "Flash" +msgstr "Flash" + +#: tmp/gameboyadvance.ui.h:10 +msgid "Flash size : " +msgstr "Flash størelse :" + +#: tmp/preferences.ui.h:6 +msgid "Frameskip level : " +msgstr "Bilde-hopp nivå :" + +#: tmp/vbam.ui.h:3 +msgid "From _File ..." +msgstr "Fra_Fil" + +#: tmp/display.ui.h:6 +msgid "Fullscreen filter : " +msgstr "Fullskjerm filter :" + +#: ../src/gtk/directoriesconfig.cpp:31 +msgid "GB roms :" +msgstr "Gameboy roms :" + +#: ../src/gtk/directoriesconfig.cpp:30 +msgid "GBA roms :" +msgstr "GBA roms :" + +#: tmp/gameboy.ui.h:8 +msgid "Game Boy" +msgstr "Game Boy" + +#: tmp/gameboy.ui.h:9 +msgid "Game Boy Advance" +msgstr "Game Boy Advance" + +#: tmp/gameboyadvance.ui.h:11 +msgid "Game Boy Advance settings" +msgstr "Game Boy Advance instillinger" + +#: tmp/gameboy.ui.h:10 +msgid "Game Boy Color" +msgstr "Game Boy Color" + +#: tmp/vbam.ui.h:4 +msgid "Game Boy _Advance ..." +msgstr "Game Boy _Advance ..." + +#: tmp/gameboy.ui.h:11 +msgid "GameBoy settings" +msgstr "GameBoy Innstillinger" + +#: ../src/gtk/cheatedit.cpp:108 +msgid "GameGenie" +msgstr "GameGenie" + +#: ../src/gtk/cheatedit.cpp:103 +msgid "GameShark" +msgstr "Gameshark" + +#: ../src/gtk/gameboyadvanceconfig.cpp:79 +msgid "Gameboy Advance BIOS" +msgstr "Gameboy Advance BIOS" + +#: ../src/gtk/window.cpp:1308 +msgid "Gameboy Advance files" +msgstr "Gameboy Advance filer" + +#: ../src/gtk/window.cpp:1315 +msgid "Gameboy files" +msgstr "Gameboy filer" + +#: ../src/gtk/cheatedit.cpp:88 +msgid "Gameshark Advance" +msgstr "Gameshark Advance" + +#: ../src/gtk/cheatedit.cpp:83 +msgid "Generic Code" +msgstr "Generisk kode" + +#: tmp/display.ui.h:7 +msgid "Interframe blending : " +msgstr "Internramme Blending :" + +#: ../src/gtk/filters.cpp:82 +msgid "Interframe motion blur" +msgstr "Bevegelses skurr" + +#: ../src/gtk/joypadconfig.cpp:129 +msgid "Joy " +msgstr "Joy" + +#: ../src/gtk/joypadconfig.cpp:49 +msgid "Joypad :" +msgstr "Joypad :" + +#: ../src/gtk/joypadconfig.cpp:47 +msgid "Joypad config" +msgstr "Joypad Konfigurasjon" + +#: ../src/gtk/joypadconfig.cpp:156 +msgid "Left" +msgstr "Venstre" + +#: ../src/gtk/joypadconfig.cpp:32 +msgid "Left :" +msgstr "Venstre : " + +#: tmp/vbam.ui.h:5 +msgid "Loa_d state" +msgstr "Last i_nn status" + +#: ../src/gtk/windowcallbacks.cpp:84 +msgid "Load game" +msgstr "Last inn" + +#: ../src/gtk/window.cpp:1341 +msgid "Loaded battery" +msgstr "Batteri oppladet" + +#: ../src/gtk/main.cpp:50 +msgid "Main VBA-M options" +msgstr "Hoved VBA-M Innstillinger" + +#: tmp/vbam.ui.h:6 +msgid "Most recent" +msgstr "Tidligest" + +#: tmp/sound.ui.h:9 +msgid "Mute" +msgstr "Mute" + +#: ../src/gtk/windowcallbacks.cpp:508 +msgid "Nintendo GameBoy Advance emulator." +msgstr "Nintendo GameBoy Advance emulator" + +#: ../src/gtk/filters.cpp:60 ../src/gtk/filters.cpp:80 +#: tmp/gameboyadvance.ui.h:12 tmp/preferences.ui.h:7 +msgid "None" +msgstr "Ingen" + +#: tmp/vbam.ui.h:7 +msgid "Oldest slot" +msgstr "Gamleste fil" + +#: ../src/gtk/window.cpp:1266 +msgid "Open" +msgstr "Åpne" + +#: ../src/gtk/cheatlist.cpp:70 tmp/cheatlist.ui.h:5 +msgid "Open cheat list" +msgstr "Åpne cheat liste" + +#: tmp/vbam.ui.h:8 +msgid "Open rece_nt" +msgstr "Åpne Tidlige_re" + +#: tmp/display.ui.h:8 +msgid "OpenGL" +msgstr "OpenGL" + +#: ../src/gtk/main.cpp:55 +msgid "Output version information." +msgstr "Utgang." + +#: ../src/gtk/windowcallbacks.cpp:294 +msgid "PNG image" +msgstr "PNG Bildefil" + +#: tmp/vbam.ui.h:9 +msgid "Pause" +msgstr "Pause" + +#: tmp/preferences.ui.h:8 +msgid "Pause when inactive" +msgstr "Pause når inaktiv" + +#: tmp/preferences.ui.h:9 +msgid "Percentage" +msgstr "Prosent" + +#: ../src/gtk/filters.cpp:64 +msgid "Pixelate" +msgstr "Pixeler" + +#: tmp/preferences.ui.h:10 +msgid "Preferences" +msgstr "Valg" + +#: ../src/gtk/joypadconfig.cpp:155 +msgid "Right" +msgstr "Høyre" + +#: ../src/gtk/joypadconfig.cpp:33 +msgid "Right :" +msgstr "Høyre :" + +#: tmp/gameboyadvance.ui.h:13 +msgid "SRAM" +msgstr "SRAM" + +#: tmp/vbam.ui.h:10 +msgid "S_ave state" +msgstr "Lag_rings fil" + +#: tmp/sound.ui.h:10 +msgid "Sample rate : " +msgstr "Prøve Ratio :" + +#: ../src/gtk/cheatlist.cpp:93 tmp/cheatlist.ui.h:6 +msgid "Save cheat list" +msgstr "Lagre cheat Liste" + +#: ../src/gtk/windowcallbacks.cpp:117 +msgid "Save game" +msgstr "Lagre" + +#: ../src/gtk/windowcallbacks.cpp:277 +msgid "Save screenshot" +msgstr "Lagre screenshot" + +#: tmp/gameboyadvance.ui.h:14 +msgid "Save type : " +msgstr "Lagrings type : " + +#: ../src/gtk/window.cpp:1358 +msgid "Saved battery" +msgstr "Lagret bateri" + +#: ../src/gtk/directoriesconfig.cpp:33 +msgid "Saves :" +msgstr "Lagrede filer :" + +#: ../src/gtk/filters.cpp:68 +msgid "Scanlines" +msgstr "Scannelinjer" + +#: tmp/vbam.ui.h:11 +msgid "Screen capt_ure..." +msgstr "Screen Capt_ure..." + +#: ../src/gtk/joypadconfig.cpp:38 +msgid "Select :" +msgstr "Select :" + +#: tmp/vbam.ui.h:12 +msgid "Slot1" +msgstr "Fil1" + +#: tmp/vbam.ui.h:13 +msgid "Slot10" +msgstr "Fil10" + +#: tmp/vbam.ui.h:14 +msgid "Slot2" +msgstr "Fil2" + +#: tmp/vbam.ui.h:15 +msgid "Slot3" +msgstr "Fil3" + +#: tmp/vbam.ui.h:16 +msgid "Slot4" +msgstr "Fil4" + +#: tmp/vbam.ui.h:17 +msgid "Slot5" +msgstr "Fil5" + +#: tmp/vbam.ui.h:18 +msgid "Slot6" +msgstr "Fil6" + +#: tmp/vbam.ui.h:19 +msgid "Slot7" +msgstr "Fil7" + +#: tmp/vbam.ui.h:20 +msgid "Slot8" +msgstr "Fil8" + +#: tmp/vbam.ui.h:21 +msgid "Slot9" +msgstr "Fil9" + +#: ../src/gtk/filters.cpp:81 +msgid "Smart interframe blending" +msgstr "Smart ramme" + +#: ../src/gtk/joypadconfig.cpp:40 +msgid "Speed :" +msgstr "Fart :" + +#: tmp/preferences.ui.h:11 +msgid "Speed indicator : " +msgstr "Farts viser : " + +#: ../src/gtk/joypadconfig.cpp:39 +msgid "Start :" +msgstr "Start: " + +#: ../src/gtk/filters.cpp:62 +msgid "Super 2xSaI" +msgstr "Super 2xSal" + +#: ../src/gtk/filters.cpp:63 +msgid "Super Eagle" +msgstr "Super Eagle" + +#: tmp/gameboy.ui.h:12 +msgid "Super Game Boy" +msgstr "Super Game Boy" + +#: tmp/gameboy.ui.h:13 +msgid "Super Game Boy 2" +msgstr "Super Game Boy 2" + +#: ../src/gtk/filters.cpp:69 +msgid "TV Mode" +msgstr "TV Modus" + +#: tmp/vbam.ui.h:22 +msgid "To _File ..." +msgstr "Til _Fil" + +#: tmp/cheatlist.ui.h:7 +msgid "Toggle all Cheats" +msgstr "Merk alle Koder" + +#: ../src/gtk/window.cpp:427 +#, c-format +msgid "Unable to initialize output, falling back to Cairo\n" +msgstr "Kan ikke initialisere utgang, Går til bake til Cairo \\n\n" + +#: ../src/gtk/window.cpp:1022 +#, c-format +msgid "Unknown file type %s" +msgstr "Ukjent fil-type %s" + +#: ../src/gtk/joypadconfig.cpp:153 +msgid "Up" +msgstr "Opp" + +#: ../src/gtk/joypadconfig.cpp:30 +msgid "Up :" +msgstr "Opp :" + +#: tmp/gameboy.ui.h:14 +msgid "Use a Game Boy boot ROM file" +msgstr "Bruk en Game Boy Start-ROM fil" + +#: tmp/gameboyadvance.ui.h:15 +msgid "Use a bios file" +msgstr "Bruk bios fil" + +#: tmp/vbam.ui.h:23 +msgid "VBA" +msgstr "VBA" + +#: ../src/gtk/main.cpp:41 ../src/gtk/windowcallbacks.cpp:506 +msgid "VBA-M" +msgstr "VBA-M" + +#: ../src/gtk/window.cpp:1159 +#, c-format +msgid "VBA-M - %d%%" +msgstr "VBA-M %d%%" + +#: ../src/gtk/window.cpp:1164 +#, c-format +msgid "VBA-M - %d%% (%d, %d fps)" +msgstr "VBA-M - %d%% ( %d %d fps ) " + +#: ../src/gtk/windowcallbacks.cpp:99 ../src/gtk/windowcallbacks.cpp:134 +msgid "VisualBoyAdvance save game" +msgstr "VisualBoyAdvance lagre spill" + +#: ../src/gtk/main.cpp:81 +#, c-format +msgid "VisualBoyAdvance version %s [GTK+]\n" +msgstr "VisualBoyAdvance version %s [GTK+] \\n\n" + +#: tmp/sound.ui.h:11 +msgid "Volume : " +msgstr "Volum : " + +#: tmp/vbam.ui.h:24 +msgid "_Disable cheats" +msgstr "_Slå av koder" + +#: tmp/vbam.ui.h:25 +msgid "_Display ..." +msgstr "_Vis ..." + +#: tmp/vbam.ui.h:26 +msgid "_Emulation" +msgstr "_Emulasjon" + +#: tmp/vbam.ui.h:27 +msgid "_File" +msgstr "_Fil" + +#: tmp/vbam.ui.h:28 +msgid "_Game Boy ..." +msgstr "_Game Boy ..." + +#: tmp/vbam.ui.h:29 +msgid "_Help" +msgstr "_Help" + +#: tmp/vbam.ui.h:30 +msgid "_Joypads ..." +msgstr "_joypads ..." + +#: tmp/vbam.ui.h:31 +msgid "_List cheats ..." +msgstr "_Vis koder ..." + +#: tmp/vbam.ui.h:32 +msgid "_Options" +msgstr "_Innstillinger" + +#: tmp/vbam.ui.h:33 +msgid "_Preferences ..." +msgstr "_Valg" + +#: tmp/vbam.ui.h:34 +msgid "_Reset" +msgstr "_Reset" + +#: tmp/vbam.ui.h:35 +msgid "_Sound ..." +msgstr "_Lyd ..." + +#: ../src/gtk/filters.cpp:70 +msgid "hq2x" +msgstr "hq2x" + +#: ../src/gtk/filters.cpp:71 +msgid "lq2x" +msgstr "lq2x" diff --git a/po/gvbam/nl.po b/po/gvbam/nl.po index 13f1cbc0..b00683f8 100644 --- a/po/gvbam/nl.po +++ b/po/gvbam/nl.po @@ -1,733 +1,733 @@ -# This file is distributed under the same license as the VBA-M package. -# -# Translators: -# , 2011. -msgid "" -msgstr "" -"Project-Id-Version: VBA-M\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 20:50+0100\n" -"PO-Revision-Date: 2011-11-17 23:25+0000\n" -"Last-Translator: Ghostbird \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ../src/gtk/joypadconfig.cpp:142 -msgid " Axis " -msgstr "As" - -#: ../src/gtk/joypadconfig.cpp:135 -msgid " Button " -msgstr "Knop" - -#: ../src/gtk/joypadconfig.cpp:150 -msgid " Hat " -msgstr "\"Hat\" knop" - -#: ../src/gtk/window.cpp:1413 -msgid "%Y/%m/%d %H:%M:%S" -msgstr "%d-%m-%Y %H:%M:%S" - -#: ../src/gtk/screenarea-opengl.cpp:41 -#, c-format -msgid "*** OpenGL : Cannot open display.\n" -msgstr "*** OpenGL : Kan scherm niet openen.\n" - -#: ../src/gtk/window.cpp:1383 ../src/gtk/window.cpp:1428 -msgid "----/--/-- --:--:--" -msgstr "dd-mm-jjjj uu:mm:ss" - -#: tmp/sound.ui.h:2 -#, no-c-format -msgid "100 %" -msgstr "100 %" - -#: tmp/sound.ui.h:4 -#, no-c-format -msgid "200 %" -msgstr "200 %" - -#: tmp/sound.ui.h:6 -#, no-c-format -msgid "25 %" -msgstr "25 %" - -#: ../src/gtk/filters.cpp:61 -msgid "2xSaI" -msgstr "2xSal" - -#: tmp/sound.ui.h:8 -#, no-c-format -msgid "50 %" -msgstr "50 %" - -#: ../src/gtk/joypadconfig.cpp:165 -msgid "" -msgstr "" - -#: tmp/preferences.ui.h:1 -msgid "Appearance" -msgstr "Weergave" - -#: tmp/gameboyadvance.ui.h:1 -msgid "Bios" -msgstr "BIOS" - -#: tmp/gameboy.ui.h:1 -msgid "Boot ROM" -msgstr "Opstart ROM" - -#: tmp/gameboyadvance.ui.h:2 -msgid "Cartridge" -msgstr "Cassette" - -#: tmp/cheatedit.ui.h:1 -msgid "Codes" -msgstr "Codes" - -#: tmp/cheatedit.ui.h:2 -msgid "Description" -msgstr "Beschrijving" - -#: tmp/display.ui.h:1 -msgid "Filters" -msgstr "Filters" - -#: tmp/preferences.ui.h:2 -msgid "Frameskip" -msgstr "Frameskip" - -#: tmp/preferences.ui.h:3 -msgid "General" -msgstr "Algemeen" - -#: tmp/display.ui.h:2 -msgid "Output module" -msgstr "Uitvoer module" - -#: tmp/gameboyadvance.ui.h:3 -msgid "Real-Time Clock" -msgstr "Realtimeklok" - -#: tmp/gameboy.ui.h:2 -msgid "System and peripherals" -msgstr "Systeem en perifere delen" - -#: tmp/cheatedit.ui.h:3 -msgid "Type" -msgstr "Type" - -#: tmp/display.ui.h:3 -msgid "Zoom" -msgstr "Vergroting" - -#: tmp/cheatlist.ui.h:1 -msgid "Add new cheat" -msgstr "Cheat toevoegen" - -#: ../src/gtk/filters.cpp:65 -msgid "AdvanceMAME Scale2x" -msgstr "AdvanceMAME Scale2x" - -#: ../src/gtk/window.cpp:1301 -msgid "All Gameboy Advance files" -msgstr "Alle Gameboy Advance bestanden" - -#: ../src/gtk/gameboyadvanceconfig.cpp:75 -msgid "All files" -msgstr "Alle bestanden" - -#: tmp/vbam.ui.h:1 -msgid "Auto load most recent" -msgstr "Automatisch recentste laden" - -#: ../src/gtk/joypadconfig.cpp:42 -msgid "Autofire A :" -msgstr "Automatisch drukken op A :" - -#: ../src/gtk/joypadconfig.cpp:43 -msgid "Autofire B :" -msgstr "Automatisch drukken op B :" - -#: tmp/gameboy.ui.h:3 tmp/gameboyadvance.ui.h:4 -msgid "Automatic" -msgstr "Automatisch" - -#: ../src/gtk/directoriesconfig.cpp:32 -msgid "Batteries :" -msgstr "Batterijen :" - -#: ../src/gtk/filters.cpp:66 -msgid "Bilinear" -msgstr "Bilineair" - -#: ../src/gtk/filters.cpp:67 -msgid "Bilinear Plus" -msgstr "Bilineair Plus" - -#: tmp/gameboyadvance.ui.h:5 -msgid "Bios file : " -msgstr "BIOS bestand :" - -#: tmp/gameboy.ui.h:4 -msgid "Boot ROM file : " -msgstr "Opstart ROM bestand :" - -#: ../src/gtk/joypadconfig.cpp:34 -msgid "Button A :" -msgstr "Knop A :" - -#: ../src/gtk/joypadconfig.cpp:35 -msgid "Button B :" -msgstr "Knop B :" - -#: ../src/gtk/joypadconfig.cpp:36 -msgid "Button L :" -msgstr "Knop L :" - -#: ../src/gtk/joypadconfig.cpp:37 -msgid "Button R :" -msgstr "Knop R :" - -#: tmp/display.ui.h:4 -msgid "Cairo" -msgstr "Cairo" - -#: ../src/gtk/joypadconfig.cpp:41 -msgid "Capture :" -msgstr "Capture :" - -#: ../src/gtk/directoriesconfig.cpp:34 -msgid "Captures :" -msgstr "Captures :" - -#: tmp/cheatlist.ui.h:2 -msgid "Cheat list" -msgstr "Cheat lijst" - -#: ../src/gtk/cheatedit.cpp:93 -msgid "CodeBreaker Advance" -msgstr "CodeBreaker Advance" - -#: tmp/vbam.ui.h:2 -msgid "D_irectories ..." -msgstr "Mappen" - -#: ../src/gtk/joypadconfig.cpp:50 -msgid "Default joypad" -msgstr "Standaard joypad" - -#: tmp/display.ui.h:5 -msgid "Default scale : " -msgstr "Standaard schaal :" - -#: tmp/cheatlist.ui.h:3 -msgid "Delete all cheats" -msgstr "Verwijder alle cheats" - -#: tmp/cheatlist.ui.h:4 -msgid "Delete selected cheat" -msgstr "Verwijder geselecteerde cheat" - -#: tmp/preferences.ui.h:4 -msgid "Detailed" -msgstr "Gedetaileerd" - -#: ../src/gtk/directoriesconfig.cpp:38 -msgid "Directories config" -msgstr "Mappen instellen" - -#: tmp/gameboy.ui.h:5 -msgid "Display Super Game Boy borders" -msgstr "Toon Super Game Boy randen" - -#: ../src/gtk/joypadconfig.cpp:154 -msgid "Down" -msgstr "Omlaag" - -#: ../src/gtk/joypadconfig.cpp:31 -msgid "Down :" -msgstr "Omlaag :" - -#: tmp/gameboyadvance.ui.h:6 -msgid "EEPROM" -msgstr "EEPROM" - -#: tmp/gameboyadvance.ui.h:7 -msgid "EEPROM + Sensor" -msgstr "EEPROM + Sensor" - -#: tmp/cheatedit.ui.h:4 -msgid "Edit cheat" -msgstr "Bewerk cheat" - -#: tmp/gameboy.ui.h:6 -msgid "Emulate a Game Boy Printer" -msgstr "Emuleer een Game Boy Printer" - -#: tmp/gameboy.ui.h:7 -msgid "Emulated system : " -msgstr "Geëmuleerde systeem :" - -#: tmp/preferences.ui.h:5 -msgid "Enable automatic frame skipping" -msgstr "Gebruik automatische frameskip" - -#: tmp/gameboyadvance.ui.h:8 -msgid "Enable real-time clock" -msgstr "Gebruik realtimeklok" - -#: ../src/gtk/window.cpp:468 -#, c-format -msgid "Failed to init SDL: %s" -msgstr "Initialisatie van SDL mislukt: %s" - -#: ../src/gtk/windowcallbacks.cpp:150 ../src/gtk/windowcallbacks.cpp:312 -msgid "File already exists. Overwrite it?" -msgstr "Bestand bestaat al. Overschrijven?" - -#: tmp/gameboyadvance.ui.h:9 -msgid "Flash" -msgstr "Flash" - -#: tmp/gameboyadvance.ui.h:10 -msgid "Flash size : " -msgstr "Flash grootte :" - -#: tmp/preferences.ui.h:6 -msgid "Frameskip level : " -msgstr "Frameskip niveau:" - -#: tmp/vbam.ui.h:3 -msgid "From _File ..." -msgstr "Van bestand..." - -#: tmp/display.ui.h:6 -msgid "Fullscreen filter : " -msgstr "Volledig scherm filter :" - -#: ../src/gtk/directoriesconfig.cpp:31 -msgid "GB roms :" -msgstr "GB roms :" - -#: ../src/gtk/directoriesconfig.cpp:30 -msgid "GBA roms :" -msgstr "GBA roms :" - -#: tmp/gameboy.ui.h:8 -msgid "Game Boy" -msgstr "Game Boy" - -#: tmp/gameboy.ui.h:9 -msgid "Game Boy Advance" -msgstr "Game Boy Advance" - -#: tmp/gameboyadvance.ui.h:11 -msgid "Game Boy Advance settings" -msgstr "Game Boy Advance instellingen" - -#: tmp/gameboy.ui.h:10 -msgid "Game Boy Color" -msgstr "Game Boy Color" - -#: tmp/vbam.ui.h:4 -msgid "Game Boy _Advance ..." -msgstr "Game Boy Advance" - -#: tmp/gameboy.ui.h:11 -msgid "GameBoy settings" -msgstr "GameBoy instellingen" - -#: ../src/gtk/cheatedit.cpp:108 -msgid "GameGenie" -msgstr "GameGenie" - -#: ../src/gtk/cheatedit.cpp:103 -msgid "GameShark" -msgstr "GameShark" - -#: ../src/gtk/gameboyadvanceconfig.cpp:79 -msgid "Gameboy Advance BIOS" -msgstr "Gameboy Advance BIOS" - -#: ../src/gtk/window.cpp:1308 -msgid "Gameboy Advance files" -msgstr "Gameboy Advance bestanden" - -#: ../src/gtk/window.cpp:1315 -msgid "Gameboy files" -msgstr "Gameboy bestanden" - -#: ../src/gtk/cheatedit.cpp:88 -msgid "Gameshark Advance" -msgstr "Gameshark Advance" - -#: ../src/gtk/cheatedit.cpp:83 -msgid "Generic Code" -msgstr "Algemene Code" - -#: tmp/display.ui.h:7 -msgid "Interframe blending : " -msgstr "Vloeiende beeldovergangen :" - -#: ../src/gtk/filters.cpp:82 -msgid "Interframe motion blur" -msgstr "Bewegingsonscherpte tussen frames" - -#: ../src/gtk/joypadconfig.cpp:129 -msgid "Joy " -msgstr "Joy" - -#: ../src/gtk/joypadconfig.cpp:49 -msgid "Joypad :" -msgstr "Joypad :" - -#: ../src/gtk/joypadconfig.cpp:47 -msgid "Joypad config" -msgstr "Joypad instellingen" - -#: ../src/gtk/joypadconfig.cpp:156 -msgid "Left" -msgstr "Links" - -#: ../src/gtk/joypadconfig.cpp:32 -msgid "Left :" -msgstr "Links :" - -#: tmp/vbam.ui.h:5 -msgid "Loa_d state" -msgstr "Status laden" - -#: ../src/gtk/windowcallbacks.cpp:84 -msgid "Load game" -msgstr "Spel laden" - -#: ../src/gtk/window.cpp:1341 -msgid "Loaded battery" -msgstr "Geladen batterij" - -#: ../src/gtk/main.cpp:50 -msgid "Main VBA-M options" -msgstr "Hoofd VBA-M opties" - -#: tmp/vbam.ui.h:6 -msgid "Most recent" -msgstr "Recentste" - -#: tmp/sound.ui.h:9 -msgid "Mute" -msgstr "Dempen" - -#: ../src/gtk/windowcallbacks.cpp:508 -msgid "Nintendo GameBoy Advance emulator." -msgstr "Nintendo GameBoy Advance emulator" - -#: ../src/gtk/filters.cpp:60 ../src/gtk/filters.cpp:80 -#: tmp/gameboyadvance.ui.h:12 tmp/preferences.ui.h:7 -msgid "None" -msgstr "Geen" - -#: tmp/vbam.ui.h:7 -msgid "Oldest slot" -msgstr "Oudste opslagplaats" - -#: ../src/gtk/window.cpp:1266 -msgid "Open" -msgstr "Open" - -#: ../src/gtk/cheatlist.cpp:70 tmp/cheatlist.ui.h:5 -msgid "Open cheat list" -msgstr "Open cheat lijst" - -#: tmp/vbam.ui.h:8 -msgid "Open rece_nt" -msgstr "Open recent" - -#: tmp/display.ui.h:8 -msgid "OpenGL" -msgstr "OpenGL" - -#: ../src/gtk/main.cpp:55 -msgid "Output version information." -msgstr "Toon versie informatie." - -#: ../src/gtk/windowcallbacks.cpp:294 -msgid "PNG image" -msgstr "PNG plaatje" - -#: tmp/vbam.ui.h:9 -msgid "Pause" -msgstr "Pause" - -#: tmp/preferences.ui.h:8 -msgid "Pause when inactive" -msgstr "Pauzeer wanneer inactief" - -#: tmp/preferences.ui.h:9 -msgid "Percentage" -msgstr "Percentage" - -#: ../src/gtk/filters.cpp:64 -msgid "Pixelate" -msgstr "Verpixelen" - -#: tmp/preferences.ui.h:10 -msgid "Preferences" -msgstr "Voorkeuren" - -#: ../src/gtk/joypadconfig.cpp:155 -msgid "Right" -msgstr "Rechts" - -#: ../src/gtk/joypadconfig.cpp:33 -msgid "Right :" -msgstr "Rechts :" - -#: tmp/gameboyadvance.ui.h:13 -msgid "SRAM" -msgstr "SRAM" - -#: tmp/vbam.ui.h:10 -msgid "S_ave state" -msgstr "Status opslaan" - -#: tmp/sound.ui.h:10 -msgid "Sample rate : " -msgstr "Sample ratio :" - -#: ../src/gtk/cheatlist.cpp:93 tmp/cheatlist.ui.h:6 -msgid "Save cheat list" -msgstr "Cheat lijst opslaan" - -#: ../src/gtk/windowcallbacks.cpp:117 -msgid "Save game" -msgstr "Spel opslaan" - -#: ../src/gtk/windowcallbacks.cpp:277 -msgid "Save screenshot" -msgstr "Screenshot opslaan" - -#: tmp/gameboyadvance.ui.h:14 -msgid "Save type : " -msgstr "Opslag type :" - -#: ../src/gtk/window.cpp:1358 -msgid "Saved battery" -msgstr "Opgeslagen batterij" - -#: ../src/gtk/directoriesconfig.cpp:33 -msgid "Saves :" -msgstr "Opgeslagen spelen :" - -#: ../src/gtk/filters.cpp:68 -msgid "Scanlines" -msgstr "Beeldlijnen" - -#: tmp/vbam.ui.h:11 -msgid "Screen capt_ure..." -msgstr "Beeld opslaan" - -#: ../src/gtk/joypadconfig.cpp:38 -msgid "Select :" -msgstr "Selecteer :" - -#: tmp/vbam.ui.h:12 -msgid "Slot1" -msgstr "Plaats1" - -#: tmp/vbam.ui.h:13 -msgid "Slot10" -msgstr "Plaats10" - -#: tmp/vbam.ui.h:14 -msgid "Slot2" -msgstr "Plaats2" - -#: tmp/vbam.ui.h:15 -msgid "Slot3" -msgstr "Plaats3" - -#: tmp/vbam.ui.h:16 -msgid "Slot4" -msgstr "Plaats4" - -#: tmp/vbam.ui.h:17 -msgid "Slot5" -msgstr "Plaats5" - -#: tmp/vbam.ui.h:18 -msgid "Slot6" -msgstr "Plaats6" - -#: tmp/vbam.ui.h:19 -msgid "Slot7" -msgstr "Plaats7" - -#: tmp/vbam.ui.h:20 -msgid "Slot8" -msgstr "Plaats8" - -#: tmp/vbam.ui.h:21 -msgid "Slot9" -msgstr "Plaats9" - -#: ../src/gtk/filters.cpp:81 -msgid "Smart interframe blending" -msgstr "Intelligent overvloeien tussen frames" - -#: ../src/gtk/joypadconfig.cpp:40 -msgid "Speed :" -msgstr "Snelheid :" - -#: tmp/preferences.ui.h:11 -msgid "Speed indicator : " -msgstr "Snelheidsindicator :" - -#: ../src/gtk/joypadconfig.cpp:39 -msgid "Start :" -msgstr "Start :" - -#: ../src/gtk/filters.cpp:62 -msgid "Super 2xSaI" -msgstr "Super 2xSal" - -#: ../src/gtk/filters.cpp:63 -msgid "Super Eagle" -msgstr "Super Eagle" - -#: tmp/gameboy.ui.h:12 -msgid "Super Game Boy" -msgstr "Super Game Boy" - -#: tmp/gameboy.ui.h:13 -msgid "Super Game Boy 2" -msgstr "Super Game Boy 2" - -#: ../src/gtk/filters.cpp:69 -msgid "TV Mode" -msgstr "TV Modus" - -#: tmp/vbam.ui.h:22 -msgid "To _File ..." -msgstr "Naar bestand..." - -#: tmp/cheatlist.ui.h:7 -msgid "Toggle all Cheats" -msgstr "Alle cheats omschakelen" - -#: ../src/gtk/window.cpp:427 -#, c-format -msgid "Unable to initialize output, falling back to Cairo\n" -msgstr "Kan uitvoer niet initialiseren, terugvallen op Cairo\n" - -#: ../src/gtk/window.cpp:1022 -#, c-format -msgid "Unknown file type %s" -msgstr "Onbekend bestandstype %s" - -#: ../src/gtk/joypadconfig.cpp:153 -msgid "Up" -msgstr "Omhoog" - -#: ../src/gtk/joypadconfig.cpp:30 -msgid "Up :" -msgstr "Omhoog :" - -#: tmp/gameboy.ui.h:14 -msgid "Use a Game Boy boot ROM file" -msgstr "Gebruik een Game Boy opstart ROM bestand" - -#: tmp/gameboyadvance.ui.h:15 -msgid "Use a bios file" -msgstr "Gebruik een BIOS bestand" - -#: tmp/vbam.ui.h:23 -msgid "VBA" -msgstr "VBA" - -#: ../src/gtk/main.cpp:41 ../src/gtk/windowcallbacks.cpp:506 -msgid "VBA-M" -msgstr "VBA-M" - -#: ../src/gtk/window.cpp:1159 -#, c-format -msgid "VBA-M - %d%%" -msgstr "VBA-M - %d%%" - -#: ../src/gtk/window.cpp:1164 -#, c-format -msgid "VBA-M - %d%% (%d, %d fps)" -msgstr "VBA-M -%d%% (%d, %d fps)" - -#: ../src/gtk/windowcallbacks.cpp:99 ../src/gtk/windowcallbacks.cpp:134 -msgid "VisualBoyAdvance save game" -msgstr "VisualBoyAdvance opgeslagen spel" - -#: ../src/gtk/main.cpp:81 -#, c-format -msgid "VisualBoyAdvance version %s [GTK+]\n" -msgstr "VisualBoyAdvance versie %s[GTK+]\n" - -#: tmp/sound.ui.h:11 -msgid "Volume : " -msgstr "Volume :" - -#: tmp/vbam.ui.h:24 -msgid "_Disable cheats" -msgstr "Schakel cheats uit" - -#: tmp/vbam.ui.h:25 -msgid "_Display ..." -msgstr "Beeldscherm" - -#: tmp/vbam.ui.h:26 -msgid "_Emulation" -msgstr "Emulatie" - -#: tmp/vbam.ui.h:27 -msgid "_File" -msgstr "Bestand" - -#: tmp/vbam.ui.h:28 -msgid "_Game Boy ..." -msgstr "Game Boy" - -#: tmp/vbam.ui.h:29 -msgid "_Help" -msgstr "Help" - -#: tmp/vbam.ui.h:30 -msgid "_Joypads ..." -msgstr "Joypads" - -#: tmp/vbam.ui.h:31 -msgid "_List cheats ..." -msgstr "Toon cheats" - -#: tmp/vbam.ui.h:32 -msgid "_Options" -msgstr "Opties" - -#: tmp/vbam.ui.h:33 -msgid "_Preferences ..." -msgstr "Voorkeuren" - -#: tmp/vbam.ui.h:34 -msgid "_Reset" -msgstr "Reset" - -#: tmp/vbam.ui.h:35 -msgid "_Sound ..." -msgstr "Geluid" - -#: ../src/gtk/filters.cpp:70 -msgid "hq2x" -msgstr "hq2x" - -#: ../src/gtk/filters.cpp:71 -msgid "lq2x" -msgstr "lq2x" +# This file is distributed under the same license as the VBA-M package. +# +# Translators: +# , 2011. +msgid "" +msgstr "" +"Project-Id-Version: VBA-M\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 20:50+0100\n" +"PO-Revision-Date: 2011-11-17 23:25+0000\n" +"Last-Translator: Ghostbird \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ../src/gtk/joypadconfig.cpp:142 +msgid " Axis " +msgstr "As" + +#: ../src/gtk/joypadconfig.cpp:135 +msgid " Button " +msgstr "Knop" + +#: ../src/gtk/joypadconfig.cpp:150 +msgid " Hat " +msgstr "\"Hat\" knop" + +#: ../src/gtk/window.cpp:1413 +msgid "%Y/%m/%d %H:%M:%S" +msgstr "%d-%m-%Y %H:%M:%S" + +#: ../src/gtk/screenarea-opengl.cpp:41 +#, c-format +msgid "*** OpenGL : Cannot open display.\n" +msgstr "*** OpenGL : Kan scherm niet openen.\n" + +#: ../src/gtk/window.cpp:1383 ../src/gtk/window.cpp:1428 +msgid "----/--/-- --:--:--" +msgstr "dd-mm-jjjj uu:mm:ss" + +#: tmp/sound.ui.h:2 +#, no-c-format +msgid "100 %" +msgstr "100 %" + +#: tmp/sound.ui.h:4 +#, no-c-format +msgid "200 %" +msgstr "200 %" + +#: tmp/sound.ui.h:6 +#, no-c-format +msgid "25 %" +msgstr "25 %" + +#: ../src/gtk/filters.cpp:61 +msgid "2xSaI" +msgstr "2xSal" + +#: tmp/sound.ui.h:8 +#, no-c-format +msgid "50 %" +msgstr "50 %" + +#: ../src/gtk/joypadconfig.cpp:165 +msgid "" +msgstr "" + +#: tmp/preferences.ui.h:1 +msgid "Appearance" +msgstr "Weergave" + +#: tmp/gameboyadvance.ui.h:1 +msgid "Bios" +msgstr "BIOS" + +#: tmp/gameboy.ui.h:1 +msgid "Boot ROM" +msgstr "Opstart ROM" + +#: tmp/gameboyadvance.ui.h:2 +msgid "Cartridge" +msgstr "Cassette" + +#: tmp/cheatedit.ui.h:1 +msgid "Codes" +msgstr "Codes" + +#: tmp/cheatedit.ui.h:2 +msgid "Description" +msgstr "Beschrijving" + +#: tmp/display.ui.h:1 +msgid "Filters" +msgstr "Filters" + +#: tmp/preferences.ui.h:2 +msgid "Frameskip" +msgstr "Frameskip" + +#: tmp/preferences.ui.h:3 +msgid "General" +msgstr "Algemeen" + +#: tmp/display.ui.h:2 +msgid "Output module" +msgstr "Uitvoer module" + +#: tmp/gameboyadvance.ui.h:3 +msgid "Real-Time Clock" +msgstr "Realtimeklok" + +#: tmp/gameboy.ui.h:2 +msgid "System and peripherals" +msgstr "Systeem en perifere delen" + +#: tmp/cheatedit.ui.h:3 +msgid "Type" +msgstr "Type" + +#: tmp/display.ui.h:3 +msgid "Zoom" +msgstr "Vergroting" + +#: tmp/cheatlist.ui.h:1 +msgid "Add new cheat" +msgstr "Cheat toevoegen" + +#: ../src/gtk/filters.cpp:65 +msgid "AdvanceMAME Scale2x" +msgstr "AdvanceMAME Scale2x" + +#: ../src/gtk/window.cpp:1301 +msgid "All Gameboy Advance files" +msgstr "Alle Gameboy Advance bestanden" + +#: ../src/gtk/gameboyadvanceconfig.cpp:75 +msgid "All files" +msgstr "Alle bestanden" + +#: tmp/vbam.ui.h:1 +msgid "Auto load most recent" +msgstr "Automatisch recentste laden" + +#: ../src/gtk/joypadconfig.cpp:42 +msgid "Autofire A :" +msgstr "Automatisch drukken op A :" + +#: ../src/gtk/joypadconfig.cpp:43 +msgid "Autofire B :" +msgstr "Automatisch drukken op B :" + +#: tmp/gameboy.ui.h:3 tmp/gameboyadvance.ui.h:4 +msgid "Automatic" +msgstr "Automatisch" + +#: ../src/gtk/directoriesconfig.cpp:32 +msgid "Batteries :" +msgstr "Batterijen :" + +#: ../src/gtk/filters.cpp:66 +msgid "Bilinear" +msgstr "Bilineair" + +#: ../src/gtk/filters.cpp:67 +msgid "Bilinear Plus" +msgstr "Bilineair Plus" + +#: tmp/gameboyadvance.ui.h:5 +msgid "Bios file : " +msgstr "BIOS bestand :" + +#: tmp/gameboy.ui.h:4 +msgid "Boot ROM file : " +msgstr "Opstart ROM bestand :" + +#: ../src/gtk/joypadconfig.cpp:34 +msgid "Button A :" +msgstr "Knop A :" + +#: ../src/gtk/joypadconfig.cpp:35 +msgid "Button B :" +msgstr "Knop B :" + +#: ../src/gtk/joypadconfig.cpp:36 +msgid "Button L :" +msgstr "Knop L :" + +#: ../src/gtk/joypadconfig.cpp:37 +msgid "Button R :" +msgstr "Knop R :" + +#: tmp/display.ui.h:4 +msgid "Cairo" +msgstr "Cairo" + +#: ../src/gtk/joypadconfig.cpp:41 +msgid "Capture :" +msgstr "Capture :" + +#: ../src/gtk/directoriesconfig.cpp:34 +msgid "Captures :" +msgstr "Captures :" + +#: tmp/cheatlist.ui.h:2 +msgid "Cheat list" +msgstr "Cheat lijst" + +#: ../src/gtk/cheatedit.cpp:93 +msgid "CodeBreaker Advance" +msgstr "CodeBreaker Advance" + +#: tmp/vbam.ui.h:2 +msgid "D_irectories ..." +msgstr "Mappen" + +#: ../src/gtk/joypadconfig.cpp:50 +msgid "Default joypad" +msgstr "Standaard joypad" + +#: tmp/display.ui.h:5 +msgid "Default scale : " +msgstr "Standaard schaal :" + +#: tmp/cheatlist.ui.h:3 +msgid "Delete all cheats" +msgstr "Verwijder alle cheats" + +#: tmp/cheatlist.ui.h:4 +msgid "Delete selected cheat" +msgstr "Verwijder geselecteerde cheat" + +#: tmp/preferences.ui.h:4 +msgid "Detailed" +msgstr "Gedetaileerd" + +#: ../src/gtk/directoriesconfig.cpp:38 +msgid "Directories config" +msgstr "Mappen instellen" + +#: tmp/gameboy.ui.h:5 +msgid "Display Super Game Boy borders" +msgstr "Toon Super Game Boy randen" + +#: ../src/gtk/joypadconfig.cpp:154 +msgid "Down" +msgstr "Omlaag" + +#: ../src/gtk/joypadconfig.cpp:31 +msgid "Down :" +msgstr "Omlaag :" + +#: tmp/gameboyadvance.ui.h:6 +msgid "EEPROM" +msgstr "EEPROM" + +#: tmp/gameboyadvance.ui.h:7 +msgid "EEPROM + Sensor" +msgstr "EEPROM + Sensor" + +#: tmp/cheatedit.ui.h:4 +msgid "Edit cheat" +msgstr "Bewerk cheat" + +#: tmp/gameboy.ui.h:6 +msgid "Emulate a Game Boy Printer" +msgstr "Emuleer een Game Boy Printer" + +#: tmp/gameboy.ui.h:7 +msgid "Emulated system : " +msgstr "Geëmuleerde systeem :" + +#: tmp/preferences.ui.h:5 +msgid "Enable automatic frame skipping" +msgstr "Gebruik automatische frameskip" + +#: tmp/gameboyadvance.ui.h:8 +msgid "Enable real-time clock" +msgstr "Gebruik realtimeklok" + +#: ../src/gtk/window.cpp:468 +#, c-format +msgid "Failed to init SDL: %s" +msgstr "Initialisatie van SDL mislukt: %s" + +#: ../src/gtk/windowcallbacks.cpp:150 ../src/gtk/windowcallbacks.cpp:312 +msgid "File already exists. Overwrite it?" +msgstr "Bestand bestaat al. Overschrijven?" + +#: tmp/gameboyadvance.ui.h:9 +msgid "Flash" +msgstr "Flash" + +#: tmp/gameboyadvance.ui.h:10 +msgid "Flash size : " +msgstr "Flash grootte :" + +#: tmp/preferences.ui.h:6 +msgid "Frameskip level : " +msgstr "Frameskip niveau:" + +#: tmp/vbam.ui.h:3 +msgid "From _File ..." +msgstr "Van bestand..." + +#: tmp/display.ui.h:6 +msgid "Fullscreen filter : " +msgstr "Volledig scherm filter :" + +#: ../src/gtk/directoriesconfig.cpp:31 +msgid "GB roms :" +msgstr "GB roms :" + +#: ../src/gtk/directoriesconfig.cpp:30 +msgid "GBA roms :" +msgstr "GBA roms :" + +#: tmp/gameboy.ui.h:8 +msgid "Game Boy" +msgstr "Game Boy" + +#: tmp/gameboy.ui.h:9 +msgid "Game Boy Advance" +msgstr "Game Boy Advance" + +#: tmp/gameboyadvance.ui.h:11 +msgid "Game Boy Advance settings" +msgstr "Game Boy Advance instellingen" + +#: tmp/gameboy.ui.h:10 +msgid "Game Boy Color" +msgstr "Game Boy Color" + +#: tmp/vbam.ui.h:4 +msgid "Game Boy _Advance ..." +msgstr "Game Boy Advance" + +#: tmp/gameboy.ui.h:11 +msgid "GameBoy settings" +msgstr "GameBoy instellingen" + +#: ../src/gtk/cheatedit.cpp:108 +msgid "GameGenie" +msgstr "GameGenie" + +#: ../src/gtk/cheatedit.cpp:103 +msgid "GameShark" +msgstr "GameShark" + +#: ../src/gtk/gameboyadvanceconfig.cpp:79 +msgid "Gameboy Advance BIOS" +msgstr "Gameboy Advance BIOS" + +#: ../src/gtk/window.cpp:1308 +msgid "Gameboy Advance files" +msgstr "Gameboy Advance bestanden" + +#: ../src/gtk/window.cpp:1315 +msgid "Gameboy files" +msgstr "Gameboy bestanden" + +#: ../src/gtk/cheatedit.cpp:88 +msgid "Gameshark Advance" +msgstr "Gameshark Advance" + +#: ../src/gtk/cheatedit.cpp:83 +msgid "Generic Code" +msgstr "Algemene Code" + +#: tmp/display.ui.h:7 +msgid "Interframe blending : " +msgstr "Vloeiende beeldovergangen :" + +#: ../src/gtk/filters.cpp:82 +msgid "Interframe motion blur" +msgstr "Bewegingsonscherpte tussen frames" + +#: ../src/gtk/joypadconfig.cpp:129 +msgid "Joy " +msgstr "Joy" + +#: ../src/gtk/joypadconfig.cpp:49 +msgid "Joypad :" +msgstr "Joypad :" + +#: ../src/gtk/joypadconfig.cpp:47 +msgid "Joypad config" +msgstr "Joypad instellingen" + +#: ../src/gtk/joypadconfig.cpp:156 +msgid "Left" +msgstr "Links" + +#: ../src/gtk/joypadconfig.cpp:32 +msgid "Left :" +msgstr "Links :" + +#: tmp/vbam.ui.h:5 +msgid "Loa_d state" +msgstr "Status laden" + +#: ../src/gtk/windowcallbacks.cpp:84 +msgid "Load game" +msgstr "Spel laden" + +#: ../src/gtk/window.cpp:1341 +msgid "Loaded battery" +msgstr "Geladen batterij" + +#: ../src/gtk/main.cpp:50 +msgid "Main VBA-M options" +msgstr "Hoofd VBA-M opties" + +#: tmp/vbam.ui.h:6 +msgid "Most recent" +msgstr "Recentste" + +#: tmp/sound.ui.h:9 +msgid "Mute" +msgstr "Dempen" + +#: ../src/gtk/windowcallbacks.cpp:508 +msgid "Nintendo GameBoy Advance emulator." +msgstr "Nintendo GameBoy Advance emulator" + +#: ../src/gtk/filters.cpp:60 ../src/gtk/filters.cpp:80 +#: tmp/gameboyadvance.ui.h:12 tmp/preferences.ui.h:7 +msgid "None" +msgstr "Geen" + +#: tmp/vbam.ui.h:7 +msgid "Oldest slot" +msgstr "Oudste opslagplaats" + +#: ../src/gtk/window.cpp:1266 +msgid "Open" +msgstr "Open" + +#: ../src/gtk/cheatlist.cpp:70 tmp/cheatlist.ui.h:5 +msgid "Open cheat list" +msgstr "Open cheat lijst" + +#: tmp/vbam.ui.h:8 +msgid "Open rece_nt" +msgstr "Open recent" + +#: tmp/display.ui.h:8 +msgid "OpenGL" +msgstr "OpenGL" + +#: ../src/gtk/main.cpp:55 +msgid "Output version information." +msgstr "Toon versie informatie." + +#: ../src/gtk/windowcallbacks.cpp:294 +msgid "PNG image" +msgstr "PNG plaatje" + +#: tmp/vbam.ui.h:9 +msgid "Pause" +msgstr "Pause" + +#: tmp/preferences.ui.h:8 +msgid "Pause when inactive" +msgstr "Pauzeer wanneer inactief" + +#: tmp/preferences.ui.h:9 +msgid "Percentage" +msgstr "Percentage" + +#: ../src/gtk/filters.cpp:64 +msgid "Pixelate" +msgstr "Verpixelen" + +#: tmp/preferences.ui.h:10 +msgid "Preferences" +msgstr "Voorkeuren" + +#: ../src/gtk/joypadconfig.cpp:155 +msgid "Right" +msgstr "Rechts" + +#: ../src/gtk/joypadconfig.cpp:33 +msgid "Right :" +msgstr "Rechts :" + +#: tmp/gameboyadvance.ui.h:13 +msgid "SRAM" +msgstr "SRAM" + +#: tmp/vbam.ui.h:10 +msgid "S_ave state" +msgstr "Status opslaan" + +#: tmp/sound.ui.h:10 +msgid "Sample rate : " +msgstr "Sample ratio :" + +#: ../src/gtk/cheatlist.cpp:93 tmp/cheatlist.ui.h:6 +msgid "Save cheat list" +msgstr "Cheat lijst opslaan" + +#: ../src/gtk/windowcallbacks.cpp:117 +msgid "Save game" +msgstr "Spel opslaan" + +#: ../src/gtk/windowcallbacks.cpp:277 +msgid "Save screenshot" +msgstr "Screenshot opslaan" + +#: tmp/gameboyadvance.ui.h:14 +msgid "Save type : " +msgstr "Opslag type :" + +#: ../src/gtk/window.cpp:1358 +msgid "Saved battery" +msgstr "Opgeslagen batterij" + +#: ../src/gtk/directoriesconfig.cpp:33 +msgid "Saves :" +msgstr "Opgeslagen spelen :" + +#: ../src/gtk/filters.cpp:68 +msgid "Scanlines" +msgstr "Beeldlijnen" + +#: tmp/vbam.ui.h:11 +msgid "Screen capt_ure..." +msgstr "Beeld opslaan" + +#: ../src/gtk/joypadconfig.cpp:38 +msgid "Select :" +msgstr "Selecteer :" + +#: tmp/vbam.ui.h:12 +msgid "Slot1" +msgstr "Plaats1" + +#: tmp/vbam.ui.h:13 +msgid "Slot10" +msgstr "Plaats10" + +#: tmp/vbam.ui.h:14 +msgid "Slot2" +msgstr "Plaats2" + +#: tmp/vbam.ui.h:15 +msgid "Slot3" +msgstr "Plaats3" + +#: tmp/vbam.ui.h:16 +msgid "Slot4" +msgstr "Plaats4" + +#: tmp/vbam.ui.h:17 +msgid "Slot5" +msgstr "Plaats5" + +#: tmp/vbam.ui.h:18 +msgid "Slot6" +msgstr "Plaats6" + +#: tmp/vbam.ui.h:19 +msgid "Slot7" +msgstr "Plaats7" + +#: tmp/vbam.ui.h:20 +msgid "Slot8" +msgstr "Plaats8" + +#: tmp/vbam.ui.h:21 +msgid "Slot9" +msgstr "Plaats9" + +#: ../src/gtk/filters.cpp:81 +msgid "Smart interframe blending" +msgstr "Intelligent overvloeien tussen frames" + +#: ../src/gtk/joypadconfig.cpp:40 +msgid "Speed :" +msgstr "Snelheid :" + +#: tmp/preferences.ui.h:11 +msgid "Speed indicator : " +msgstr "Snelheidsindicator :" + +#: ../src/gtk/joypadconfig.cpp:39 +msgid "Start :" +msgstr "Start :" + +#: ../src/gtk/filters.cpp:62 +msgid "Super 2xSaI" +msgstr "Super 2xSal" + +#: ../src/gtk/filters.cpp:63 +msgid "Super Eagle" +msgstr "Super Eagle" + +#: tmp/gameboy.ui.h:12 +msgid "Super Game Boy" +msgstr "Super Game Boy" + +#: tmp/gameboy.ui.h:13 +msgid "Super Game Boy 2" +msgstr "Super Game Boy 2" + +#: ../src/gtk/filters.cpp:69 +msgid "TV Mode" +msgstr "TV Modus" + +#: tmp/vbam.ui.h:22 +msgid "To _File ..." +msgstr "Naar bestand..." + +#: tmp/cheatlist.ui.h:7 +msgid "Toggle all Cheats" +msgstr "Alle cheats omschakelen" + +#: ../src/gtk/window.cpp:427 +#, c-format +msgid "Unable to initialize output, falling back to Cairo\n" +msgstr "Kan uitvoer niet initialiseren, terugvallen op Cairo\n" + +#: ../src/gtk/window.cpp:1022 +#, c-format +msgid "Unknown file type %s" +msgstr "Onbekend bestandstype %s" + +#: ../src/gtk/joypadconfig.cpp:153 +msgid "Up" +msgstr "Omhoog" + +#: ../src/gtk/joypadconfig.cpp:30 +msgid "Up :" +msgstr "Omhoog :" + +#: tmp/gameboy.ui.h:14 +msgid "Use a Game Boy boot ROM file" +msgstr "Gebruik een Game Boy opstart ROM bestand" + +#: tmp/gameboyadvance.ui.h:15 +msgid "Use a bios file" +msgstr "Gebruik een BIOS bestand" + +#: tmp/vbam.ui.h:23 +msgid "VBA" +msgstr "VBA" + +#: ../src/gtk/main.cpp:41 ../src/gtk/windowcallbacks.cpp:506 +msgid "VBA-M" +msgstr "VBA-M" + +#: ../src/gtk/window.cpp:1159 +#, c-format +msgid "VBA-M - %d%%" +msgstr "VBA-M - %d%%" + +#: ../src/gtk/window.cpp:1164 +#, c-format +msgid "VBA-M - %d%% (%d, %d fps)" +msgstr "VBA-M -%d%% (%d, %d fps)" + +#: ../src/gtk/windowcallbacks.cpp:99 ../src/gtk/windowcallbacks.cpp:134 +msgid "VisualBoyAdvance save game" +msgstr "VisualBoyAdvance opgeslagen spel" + +#: ../src/gtk/main.cpp:81 +#, c-format +msgid "VisualBoyAdvance version %s [GTK+]\n" +msgstr "VisualBoyAdvance versie %s[GTK+]\n" + +#: tmp/sound.ui.h:11 +msgid "Volume : " +msgstr "Volume :" + +#: tmp/vbam.ui.h:24 +msgid "_Disable cheats" +msgstr "Schakel cheats uit" + +#: tmp/vbam.ui.h:25 +msgid "_Display ..." +msgstr "Beeldscherm" + +#: tmp/vbam.ui.h:26 +msgid "_Emulation" +msgstr "Emulatie" + +#: tmp/vbam.ui.h:27 +msgid "_File" +msgstr "Bestand" + +#: tmp/vbam.ui.h:28 +msgid "_Game Boy ..." +msgstr "Game Boy" + +#: tmp/vbam.ui.h:29 +msgid "_Help" +msgstr "Help" + +#: tmp/vbam.ui.h:30 +msgid "_Joypads ..." +msgstr "Joypads" + +#: tmp/vbam.ui.h:31 +msgid "_List cheats ..." +msgstr "Toon cheats" + +#: tmp/vbam.ui.h:32 +msgid "_Options" +msgstr "Opties" + +#: tmp/vbam.ui.h:33 +msgid "_Preferences ..." +msgstr "Voorkeuren" + +#: tmp/vbam.ui.h:34 +msgid "_Reset" +msgstr "Reset" + +#: tmp/vbam.ui.h:35 +msgid "_Sound ..." +msgstr "Geluid" + +#: ../src/gtk/filters.cpp:70 +msgid "hq2x" +msgstr "hq2x" + +#: ../src/gtk/filters.cpp:71 +msgid "lq2x" +msgstr "lq2x" diff --git a/po/gvbam/pl.po b/po/gvbam/pl.po index 9fe14ba5..1df2e0a5 100644 --- a/po/gvbam/pl.po +++ b/po/gvbam/pl.po @@ -1,735 +1,735 @@ -# This file is distributed under the same license as the VBA-M package. -# -# Translators: -# Admc , 2011. -# , 2011. -msgid "" -msgstr "" -"Project-Id-Version: VBA-M\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 20:50+0100\n" -"PO-Revision-Date: 2011-05-21 15:53+0000\n" -"Last-Translator: Admc \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2)\n" - -#: ../src/gtk/joypadconfig.cpp:142 -msgid " Axis " -msgstr " Oś " - -#: ../src/gtk/joypadconfig.cpp:135 -msgid " Button " -msgstr " Przycisk " - -#: ../src/gtk/joypadconfig.cpp:150 -msgid " Hat " -msgstr " Hat " - -#: ../src/gtk/window.cpp:1413 -msgid "%Y/%m/%d %H:%M:%S" -msgstr "%d.%m.%Y %H:%M:%S" - -#: ../src/gtk/screenarea-opengl.cpp:41 -#, c-format -msgid "*** OpenGL : Cannot open display.\n" -msgstr "*** OpenGL : Cannot open display.\n" - -#: ../src/gtk/window.cpp:1383 ../src/gtk/window.cpp:1428 -msgid "----/--/-- --:--:--" -msgstr "----.--.-- --:--:--" - -#: tmp/sound.ui.h:2 -#, no-c-format -msgid "100 %" -msgstr "100%" - -#: tmp/sound.ui.h:4 -#, no-c-format -msgid "200 %" -msgstr "200%" - -#: tmp/sound.ui.h:6 -#, no-c-format -msgid "25 %" -msgstr "25%" - -#: ../src/gtk/filters.cpp:61 -msgid "2xSaI" -msgstr "2xSaI" - -#: tmp/sound.ui.h:8 -#, no-c-format -msgid "50 %" -msgstr "50%" - -#: ../src/gtk/joypadconfig.cpp:165 -msgid "" -msgstr "" - -#: tmp/preferences.ui.h:1 -msgid "Appearance" -msgstr "Wygląd" - -#: tmp/gameboyadvance.ui.h:1 -msgid "Bios" -msgstr "Bios" - -#: tmp/gameboy.ui.h:1 -msgid "Boot ROM" -msgstr "ROM bootowalny" - -#: tmp/gameboyadvance.ui.h:2 -msgid "Cartridge" -msgstr "Kartridż" - -#: tmp/cheatedit.ui.h:1 -msgid "Codes" -msgstr "Kody" - -#: tmp/cheatedit.ui.h:2 -msgid "Description" -msgstr "Opis" - -#: tmp/display.ui.h:1 -msgid "Filters" -msgstr "Filtry" - -#: tmp/preferences.ui.h:2 -msgid "Frameskip" -msgstr "Pomijanie klatek" - -#: tmp/preferences.ui.h:3 -msgid "General" -msgstr "Ogólne" - -#: tmp/display.ui.h:2 -msgid "Output module" -msgstr "Moduł wyjścia" - -#: tmp/gameboyadvance.ui.h:3 -msgid "Real-Time Clock" -msgstr "Zegar czasu rzeczywistego" - -#: tmp/gameboy.ui.h:2 -msgid "System and peripherals" -msgstr "System i urządzenia peryferyjne" - -#: tmp/cheatedit.ui.h:3 -msgid "Type" -msgstr "Typ" - -#: tmp/display.ui.h:3 -msgid "Zoom" -msgstr "Powiększenie" - -#: tmp/cheatlist.ui.h:1 -msgid "Add new cheat" -msgstr "Dodaj nowy kod" - -#: ../src/gtk/filters.cpp:65 -msgid "AdvanceMAME Scale2x" -msgstr "AdvanceMAME Scale2x" - -#: ../src/gtk/window.cpp:1301 -msgid "All Gameboy Advance files" -msgstr "Wszystkie pliki Gameboy Advance" - -#: ../src/gtk/gameboyadvanceconfig.cpp:75 -msgid "All files" -msgstr "Wszystkie pliki" - -#: tmp/vbam.ui.h:1 -msgid "Auto load most recent" -msgstr "Automatycznie wczytaj najnowszy zapis" - -#: ../src/gtk/joypadconfig.cpp:42 -msgid "Autofire A :" -msgstr "Auto A:" - -#: ../src/gtk/joypadconfig.cpp:43 -msgid "Autofire B :" -msgstr "Auto B:" - -#: tmp/gameboy.ui.h:3 tmp/gameboyadvance.ui.h:4 -msgid "Automatic" -msgstr "Automatycznie" - -#: ../src/gtk/directoriesconfig.cpp:32 -msgid "Batteries :" -msgstr "Pliki baterii:" - -#: ../src/gtk/filters.cpp:66 -msgid "Bilinear" -msgstr "Dwuliniowe" - -#: ../src/gtk/filters.cpp:67 -msgid "Bilinear Plus" -msgstr "Dwuliniowe Plus" - -#: tmp/gameboyadvance.ui.h:5 -msgid "Bios file : " -msgstr "Plik biosu: " - -#: tmp/gameboy.ui.h:4 -msgid "Boot ROM file : " -msgstr "Plik bootowalnego romu:" - -#: ../src/gtk/joypadconfig.cpp:34 -msgid "Button A :" -msgstr "Przycisk A:" - -#: ../src/gtk/joypadconfig.cpp:35 -msgid "Button B :" -msgstr "Przycisk B:" - -#: ../src/gtk/joypadconfig.cpp:36 -msgid "Button L :" -msgstr "Przycisk L:" - -#: ../src/gtk/joypadconfig.cpp:37 -msgid "Button R :" -msgstr "Przycisk R:" - -#: tmp/display.ui.h:4 -msgid "Cairo" -msgstr "Cairo" - -#: ../src/gtk/joypadconfig.cpp:41 -msgid "Capture :" -msgstr "Zrzut ekranu" - -#: ../src/gtk/directoriesconfig.cpp:34 -msgid "Captures :" -msgstr "Zrzuty ekranu:" - -#: tmp/cheatlist.ui.h:2 -msgid "Cheat list" -msgstr "Lista kodów" - -#: ../src/gtk/cheatedit.cpp:93 -msgid "CodeBreaker Advance" -msgstr "CodeBreaker Advance" - -#: tmp/vbam.ui.h:2 -msgid "D_irectories ..." -msgstr "_Katalogi..." - -#: ../src/gtk/joypadconfig.cpp:50 -msgid "Default joypad" -msgstr "Użyj jako domyślny" - -#: tmp/display.ui.h:5 -msgid "Default scale : " -msgstr "Domyślna skala: " - -#: tmp/cheatlist.ui.h:3 -msgid "Delete all cheats" -msgstr "Usuń wszystkie kody" - -#: tmp/cheatlist.ui.h:4 -msgid "Delete selected cheat" -msgstr "Usuń zaznaczony kod" - -#: tmp/preferences.ui.h:4 -msgid "Detailed" -msgstr "Szczegółowy" - -#: ../src/gtk/directoriesconfig.cpp:38 -msgid "Directories config" -msgstr "Konfiguracja emulatora:" - -#: tmp/gameboy.ui.h:5 -msgid "Display Super Game Boy borders" -msgstr "Wyświetl ramki Super Game Boya" - -#: ../src/gtk/joypadconfig.cpp:154 -msgid "Down" -msgstr " W dół " - -#: ../src/gtk/joypadconfig.cpp:31 -msgid "Down :" -msgstr "Strzałka w dół:" - -#: tmp/gameboyadvance.ui.h:6 -msgid "EEPROM" -msgstr "EEPROM" - -#: tmp/gameboyadvance.ui.h:7 -msgid "EEPROM + Sensor" -msgstr "EEPROM + Sensor" - -#: tmp/cheatedit.ui.h:4 -msgid "Edit cheat" -msgstr "Edytuj kod" - -#: tmp/gameboy.ui.h:6 -msgid "Emulate a Game Boy Printer" -msgstr "Emulacja drukarki" - -#: tmp/gameboy.ui.h:7 -msgid "Emulated system : " -msgstr "Emulowana konsola: " - -#: tmp/preferences.ui.h:5 -msgid "Enable automatic frame skipping" -msgstr "Włącz automatyczne pomijanie klatek" - -#: tmp/gameboyadvance.ui.h:8 -msgid "Enable real-time clock" -msgstr "Włącz zegar czasu rzeczywistego" - -#: ../src/gtk/window.cpp:468 -#, c-format -msgid "Failed to init SDL: %s" -msgstr "Nie można zainicjować SDL: %s" - -#: ../src/gtk/windowcallbacks.cpp:150 ../src/gtk/windowcallbacks.cpp:312 -msgid "File already exists. Overwrite it?" -msgstr "Plik istnieje. Zastąpić?" - -#: tmp/gameboyadvance.ui.h:9 -msgid "Flash" -msgstr "Flash" - -#: tmp/gameboyadvance.ui.h:10 -msgid "Flash size : " -msgstr "Rozmiar pamięci flash: " - -#: tmp/preferences.ui.h:6 -msgid "Frameskip level : " -msgstr "Poziom pomijania klatek: " - -#: tmp/vbam.ui.h:3 -msgid "From _File ..." -msgstr "Z _pliku..." - -#: tmp/display.ui.h:6 -msgid "Fullscreen filter : " -msgstr "Filtr pełnego ekranu: " - -#: ../src/gtk/directoriesconfig.cpp:31 -msgid "GB roms :" -msgstr "Romy GB:" - -#: ../src/gtk/directoriesconfig.cpp:30 -msgid "GBA roms :" -msgstr "Romy GBA:" - -#: tmp/gameboy.ui.h:8 -msgid "Game Boy" -msgstr "Game Boy" - -#: tmp/gameboy.ui.h:9 -msgid "Game Boy Advance" -msgstr "Game Boy Advance" - -#: tmp/gameboyadvance.ui.h:11 -msgid "Game Boy Advance settings" -msgstr "Ustawienia Game Boya Advance" - -#: tmp/gameboy.ui.h:10 -msgid "Game Boy Color" -msgstr "Game Boy Color" - -#: tmp/vbam.ui.h:4 -msgid "Game Boy _Advance ..." -msgstr "Game Boy _Advance..." - -#: tmp/gameboy.ui.h:11 -msgid "GameBoy settings" -msgstr "Ustawienia GameBoya" - -#: ../src/gtk/cheatedit.cpp:108 -msgid "GameGenie" -msgstr "GameGenie" - -#: ../src/gtk/cheatedit.cpp:103 -msgid "GameShark" -msgstr "GameShark" - -#: ../src/gtk/gameboyadvanceconfig.cpp:79 -msgid "Gameboy Advance BIOS" -msgstr "BIOS GBA" - -#: ../src/gtk/window.cpp:1308 -msgid "Gameboy Advance files" -msgstr "Pliki Gameboy Advance" - -#: ../src/gtk/window.cpp:1315 -msgid "Gameboy files" -msgstr "Pliki Gameboy" - -#: ../src/gtk/cheatedit.cpp:88 -msgid "Gameshark Advance" -msgstr "Gameshark Advance" - -#: ../src/gtk/cheatedit.cpp:83 -msgid "Generic Code" -msgstr "Inny kod" - -#: tmp/display.ui.h:7 -msgid "Interframe blending : " -msgstr "Rozmycie międzyklatkowe:" - -#: ../src/gtk/filters.cpp:82 -msgid "Interframe motion blur" -msgstr "Międzyklatkowe rozmywanie ruchu" - -#: ../src/gtk/joypadconfig.cpp:129 -msgid "Joy " -msgstr "Joy " - -#: ../src/gtk/joypadconfig.cpp:49 -msgid "Joypad :" -msgstr "Joypad:" - -#: ../src/gtk/joypadconfig.cpp:47 -msgid "Joypad config" -msgstr "Sterowanie" - -#: ../src/gtk/joypadconfig.cpp:156 -msgid "Left" -msgstr "W prawo" - -#: ../src/gtk/joypadconfig.cpp:32 -msgid "Left :" -msgstr "Strzałka w lewo:" - -#: tmp/vbam.ui.h:5 -msgid "Loa_d state" -msgstr "_Wczytaj grę:" - -#: ../src/gtk/windowcallbacks.cpp:84 -msgid "Load game" -msgstr "Wczytaj grę" - -#: ../src/gtk/window.cpp:1341 -msgid "Loaded battery" -msgstr "Wczytano baterię" - -#: ../src/gtk/main.cpp:50 -msgid "Main VBA-M options" -msgstr "Ogólne opcje VBA-M" - -#: tmp/vbam.ui.h:6 -msgid "Most recent" -msgstr "Najnowszy" - -#: tmp/sound.ui.h:9 -msgid "Mute" -msgstr "Wycisz" - -#: ../src/gtk/windowcallbacks.cpp:508 -msgid "Nintendo GameBoy Advance emulator." -msgstr "Emulator Nintendo GameBoy Advance." - -#: ../src/gtk/filters.cpp:60 ../src/gtk/filters.cpp:80 -#: tmp/gameboyadvance.ui.h:12 tmp/preferences.ui.h:7 -msgid "None" -msgstr "Brak" - -#: tmp/vbam.ui.h:7 -msgid "Oldest slot" -msgstr "Najstarszy" - -#: ../src/gtk/window.cpp:1266 -msgid "Open" -msgstr "Otwórz" - -#: ../src/gtk/cheatlist.cpp:70 tmp/cheatlist.ui.h:5 -msgid "Open cheat list" -msgstr "Otwórz listę kodów" - -#: tmp/vbam.ui.h:8 -msgid "Open rece_nt" -msgstr "Osta_nio otwierane" - -#: tmp/display.ui.h:8 -msgid "OpenGL" -msgstr "OpenGL" - -#: ../src/gtk/main.cpp:55 -msgid "Output version information." -msgstr "Wyświetla wersję programu." - -#: ../src/gtk/windowcallbacks.cpp:294 -msgid "PNG image" -msgstr "Obraz PNS" - -#: tmp/vbam.ui.h:9 -msgid "Pause" -msgstr "Pauza" - -#: tmp/preferences.ui.h:8 -msgid "Pause when inactive" -msgstr "Pauzuj kiedy okno jest nieaktywne" - -#: tmp/preferences.ui.h:9 -msgid "Percentage" -msgstr "Procentowy" - -#: ../src/gtk/filters.cpp:64 -msgid "Pixelate" -msgstr "Pixelate" - -#: tmp/preferences.ui.h:10 -msgid "Preferences" -msgstr "Preferencje" - -#: ../src/gtk/joypadconfig.cpp:155 -msgid "Right" -msgstr "W lewo" - -#: ../src/gtk/joypadconfig.cpp:33 -msgid "Right :" -msgstr "Strzałka w prawo:" - -#: tmp/gameboyadvance.ui.h:13 -msgid "SRAM" -msgstr "SRAM" - -#: tmp/vbam.ui.h:10 -msgid "S_ave state" -msgstr "_Zapisz grę" - -#: tmp/sound.ui.h:10 -msgid "Sample rate : " -msgstr "Częstotliwość próbkowania:" - -#: ../src/gtk/cheatlist.cpp:93 tmp/cheatlist.ui.h:6 -msgid "Save cheat list" -msgstr "Zapisz listę kodów" - -#: ../src/gtk/windowcallbacks.cpp:117 -msgid "Save game" -msgstr "Zapisz grę" - -#: ../src/gtk/windowcallbacks.cpp:277 -msgid "Save screenshot" -msgstr "Zapisz zrzut ekranu" - -#: tmp/gameboyadvance.ui.h:14 -msgid "Save type : " -msgstr "Typ zapisu: " - -#: ../src/gtk/window.cpp:1358 -msgid "Saved battery" -msgstr "Zapisano baterię" - -#: ../src/gtk/directoriesconfig.cpp:33 -msgid "Saves :" -msgstr "Zapisy gier:" - -#: ../src/gtk/filters.cpp:68 -msgid "Scanlines" -msgstr "Scanlines" - -#: tmp/vbam.ui.h:11 -msgid "Screen capt_ure..." -msgstr "Zrzut ekran_u..." - -#: ../src/gtk/joypadconfig.cpp:38 -msgid "Select :" -msgstr "Przycisk Select:" - -#: tmp/vbam.ui.h:12 -msgid "Slot1" -msgstr "Slot1" - -#: tmp/vbam.ui.h:13 -msgid "Slot10" -msgstr "Slot10" - -#: tmp/vbam.ui.h:14 -msgid "Slot2" -msgstr "Slot2" - -#: tmp/vbam.ui.h:15 -msgid "Slot3" -msgstr "Slot3" - -#: tmp/vbam.ui.h:16 -msgid "Slot4" -msgstr "Slot4" - -#: tmp/vbam.ui.h:17 -msgid "Slot5" -msgstr "Slot5" - -#: tmp/vbam.ui.h:18 -msgid "Slot6" -msgstr "Slot6" - -#: tmp/vbam.ui.h:19 -msgid "Slot7" -msgstr "Slot7" - -#: tmp/vbam.ui.h:20 -msgid "Slot8" -msgstr "Slot8" - -#: tmp/vbam.ui.h:21 -msgid "Slot9" -msgstr "Slot9" - -#: ../src/gtk/filters.cpp:81 -msgid "Smart interframe blending" -msgstr "Inteligentne rozmywanie międzyklatkowe" - -#: ../src/gtk/joypadconfig.cpp:40 -msgid "Speed :" -msgstr "Przyspieszenie" - -#: tmp/preferences.ui.h:11 -msgid "Speed indicator : " -msgstr "Miernik prędkości: " - -#: ../src/gtk/joypadconfig.cpp:39 -msgid "Start :" -msgstr "Przycisk Start:" - -#: ../src/gtk/filters.cpp:62 -msgid "Super 2xSaI" -msgstr "Super 2xSaI" - -#: ../src/gtk/filters.cpp:63 -msgid "Super Eagle" -msgstr "Super Eagle" - -#: tmp/gameboy.ui.h:12 -msgid "Super Game Boy" -msgstr "Super Game Boy" - -#: tmp/gameboy.ui.h:13 -msgid "Super Game Boy 2" -msgstr "Super Game Boy 2" - -#: ../src/gtk/filters.cpp:69 -msgid "TV Mode" -msgstr "Tryb TV" - -#: tmp/vbam.ui.h:22 -msgid "To _File ..." -msgstr "Do pliku..." - -#: tmp/cheatlist.ui.h:7 -msgid "Toggle all Cheats" -msgstr "Włącz/wyłącz wszystkie kody" - -#: ../src/gtk/window.cpp:427 -#, c-format -msgid "Unable to initialize output, falling back to Cairo\n" -msgstr "Nie można uruchomić wyjścia, powrót do Cairo\n" - -#: ../src/gtk/window.cpp:1022 -#, c-format -msgid "Unknown file type %s" -msgstr "Nieznany typ pliku %s" - -#: ../src/gtk/joypadconfig.cpp:153 -msgid "Up" -msgstr " W górę " - -#: ../src/gtk/joypadconfig.cpp:30 -msgid "Up :" -msgstr "Strzałka w górę:" - -#: tmp/gameboy.ui.h:14 -msgid "Use a Game Boy boot ROM file" -msgstr "Użyj bootowalnego romu Game Boya" - -#: tmp/gameboyadvance.ui.h:15 -msgid "Use a bios file" -msgstr "Użyj pliku biosu" - -#: tmp/vbam.ui.h:23 -msgid "VBA" -msgstr "VBA" - -#: ../src/gtk/main.cpp:41 ../src/gtk/windowcallbacks.cpp:506 -msgid "VBA-M" -msgstr "VBA-M" - -#: ../src/gtk/window.cpp:1159 -#, c-format -msgid "VBA-M - %d%%" -msgstr "VBA-M - %d%%" - -#: ../src/gtk/window.cpp:1164 -#, c-format -msgid "VBA-M - %d%% (%d, %d fps)" -msgstr "VBA-M - %d%% (%d, %d klatek na sekundę)" - -#: ../src/gtk/windowcallbacks.cpp:99 ../src/gtk/windowcallbacks.cpp:134 -msgid "VisualBoyAdvance save game" -msgstr "Zapis gry VisualBoyAdvance" - -#: ../src/gtk/main.cpp:81 -#, c-format -msgid "VisualBoyAdvance version %s [GTK+]\n" -msgstr "VisualBoyAdvance wersja %s [GTK+]\n" - -#: tmp/sound.ui.h:11 -msgid "Volume : " -msgstr "Głośność: " - -#: tmp/vbam.ui.h:24 -msgid "_Disable cheats" -msgstr "Wyłacz _kody" - -#: tmp/vbam.ui.h:25 -msgid "_Display ..." -msgstr "_Ekran..." - -#: tmp/vbam.ui.h:26 -msgid "_Emulation" -msgstr "_Emulacja" - -#: tmp/vbam.ui.h:27 -msgid "_File" -msgstr "_Plik" - -#: tmp/vbam.ui.h:28 -msgid "_Game Boy ..." -msgstr "_Game Boy..." - -#: tmp/vbam.ui.h:29 -msgid "_Help" -msgstr "P_omoc" - -#: tmp/vbam.ui.h:30 -msgid "_Joypads ..." -msgstr "_Sterowanie..." - -#: tmp/vbam.ui.h:31 -msgid "_List cheats ..." -msgstr "_Lista kodów..." - -#: tmp/vbam.ui.h:32 -msgid "_Options" -msgstr "_Opcje" - -#: tmp/vbam.ui.h:33 -msgid "_Preferences ..." -msgstr "_Preferencje..." - -#: tmp/vbam.ui.h:34 -msgid "_Reset" -msgstr "_Reset" - -#: tmp/vbam.ui.h:35 -msgid "_Sound ..." -msgstr "_Dźwięk..." - -#: ../src/gtk/filters.cpp:70 -msgid "hq2x" -msgstr "Wysoka jakość 2x" - -#: ../src/gtk/filters.cpp:71 -msgid "lq2x" -msgstr "Niska jakość 2x" +# This file is distributed under the same license as the VBA-M package. +# +# Translators: +# Admc , 2011. +# , 2011. +msgid "" +msgstr "" +"Project-Id-Version: VBA-M\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 20:50+0100\n" +"PO-Revision-Date: 2011-05-21 15:53+0000\n" +"Last-Translator: Admc \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2)\n" + +#: ../src/gtk/joypadconfig.cpp:142 +msgid " Axis " +msgstr " Oś " + +#: ../src/gtk/joypadconfig.cpp:135 +msgid " Button " +msgstr " Przycisk " + +#: ../src/gtk/joypadconfig.cpp:150 +msgid " Hat " +msgstr " Hat " + +#: ../src/gtk/window.cpp:1413 +msgid "%Y/%m/%d %H:%M:%S" +msgstr "%d.%m.%Y %H:%M:%S" + +#: ../src/gtk/screenarea-opengl.cpp:41 +#, c-format +msgid "*** OpenGL : Cannot open display.\n" +msgstr "*** OpenGL : Cannot open display.\n" + +#: ../src/gtk/window.cpp:1383 ../src/gtk/window.cpp:1428 +msgid "----/--/-- --:--:--" +msgstr "----.--.-- --:--:--" + +#: tmp/sound.ui.h:2 +#, no-c-format +msgid "100 %" +msgstr "100%" + +#: tmp/sound.ui.h:4 +#, no-c-format +msgid "200 %" +msgstr "200%" + +#: tmp/sound.ui.h:6 +#, no-c-format +msgid "25 %" +msgstr "25%" + +#: ../src/gtk/filters.cpp:61 +msgid "2xSaI" +msgstr "2xSaI" + +#: tmp/sound.ui.h:8 +#, no-c-format +msgid "50 %" +msgstr "50%" + +#: ../src/gtk/joypadconfig.cpp:165 +msgid "" +msgstr "" + +#: tmp/preferences.ui.h:1 +msgid "Appearance" +msgstr "Wygląd" + +#: tmp/gameboyadvance.ui.h:1 +msgid "Bios" +msgstr "Bios" + +#: tmp/gameboy.ui.h:1 +msgid "Boot ROM" +msgstr "ROM bootowalny" + +#: tmp/gameboyadvance.ui.h:2 +msgid "Cartridge" +msgstr "Kartridż" + +#: tmp/cheatedit.ui.h:1 +msgid "Codes" +msgstr "Kody" + +#: tmp/cheatedit.ui.h:2 +msgid "Description" +msgstr "Opis" + +#: tmp/display.ui.h:1 +msgid "Filters" +msgstr "Filtry" + +#: tmp/preferences.ui.h:2 +msgid "Frameskip" +msgstr "Pomijanie klatek" + +#: tmp/preferences.ui.h:3 +msgid "General" +msgstr "Ogólne" + +#: tmp/display.ui.h:2 +msgid "Output module" +msgstr "Moduł wyjścia" + +#: tmp/gameboyadvance.ui.h:3 +msgid "Real-Time Clock" +msgstr "Zegar czasu rzeczywistego" + +#: tmp/gameboy.ui.h:2 +msgid "System and peripherals" +msgstr "System i urządzenia peryferyjne" + +#: tmp/cheatedit.ui.h:3 +msgid "Type" +msgstr "Typ" + +#: tmp/display.ui.h:3 +msgid "Zoom" +msgstr "Powiększenie" + +#: tmp/cheatlist.ui.h:1 +msgid "Add new cheat" +msgstr "Dodaj nowy kod" + +#: ../src/gtk/filters.cpp:65 +msgid "AdvanceMAME Scale2x" +msgstr "AdvanceMAME Scale2x" + +#: ../src/gtk/window.cpp:1301 +msgid "All Gameboy Advance files" +msgstr "Wszystkie pliki Gameboy Advance" + +#: ../src/gtk/gameboyadvanceconfig.cpp:75 +msgid "All files" +msgstr "Wszystkie pliki" + +#: tmp/vbam.ui.h:1 +msgid "Auto load most recent" +msgstr "Automatycznie wczytaj najnowszy zapis" + +#: ../src/gtk/joypadconfig.cpp:42 +msgid "Autofire A :" +msgstr "Auto A:" + +#: ../src/gtk/joypadconfig.cpp:43 +msgid "Autofire B :" +msgstr "Auto B:" + +#: tmp/gameboy.ui.h:3 tmp/gameboyadvance.ui.h:4 +msgid "Automatic" +msgstr "Automatycznie" + +#: ../src/gtk/directoriesconfig.cpp:32 +msgid "Batteries :" +msgstr "Pliki baterii:" + +#: ../src/gtk/filters.cpp:66 +msgid "Bilinear" +msgstr "Dwuliniowe" + +#: ../src/gtk/filters.cpp:67 +msgid "Bilinear Plus" +msgstr "Dwuliniowe Plus" + +#: tmp/gameboyadvance.ui.h:5 +msgid "Bios file : " +msgstr "Plik biosu: " + +#: tmp/gameboy.ui.h:4 +msgid "Boot ROM file : " +msgstr "Plik bootowalnego romu:" + +#: ../src/gtk/joypadconfig.cpp:34 +msgid "Button A :" +msgstr "Przycisk A:" + +#: ../src/gtk/joypadconfig.cpp:35 +msgid "Button B :" +msgstr "Przycisk B:" + +#: ../src/gtk/joypadconfig.cpp:36 +msgid "Button L :" +msgstr "Przycisk L:" + +#: ../src/gtk/joypadconfig.cpp:37 +msgid "Button R :" +msgstr "Przycisk R:" + +#: tmp/display.ui.h:4 +msgid "Cairo" +msgstr "Cairo" + +#: ../src/gtk/joypadconfig.cpp:41 +msgid "Capture :" +msgstr "Zrzut ekranu" + +#: ../src/gtk/directoriesconfig.cpp:34 +msgid "Captures :" +msgstr "Zrzuty ekranu:" + +#: tmp/cheatlist.ui.h:2 +msgid "Cheat list" +msgstr "Lista kodów" + +#: ../src/gtk/cheatedit.cpp:93 +msgid "CodeBreaker Advance" +msgstr "CodeBreaker Advance" + +#: tmp/vbam.ui.h:2 +msgid "D_irectories ..." +msgstr "_Katalogi..." + +#: ../src/gtk/joypadconfig.cpp:50 +msgid "Default joypad" +msgstr "Użyj jako domyślny" + +#: tmp/display.ui.h:5 +msgid "Default scale : " +msgstr "Domyślna skala: " + +#: tmp/cheatlist.ui.h:3 +msgid "Delete all cheats" +msgstr "Usuń wszystkie kody" + +#: tmp/cheatlist.ui.h:4 +msgid "Delete selected cheat" +msgstr "Usuń zaznaczony kod" + +#: tmp/preferences.ui.h:4 +msgid "Detailed" +msgstr "Szczegółowy" + +#: ../src/gtk/directoriesconfig.cpp:38 +msgid "Directories config" +msgstr "Konfiguracja emulatora:" + +#: tmp/gameboy.ui.h:5 +msgid "Display Super Game Boy borders" +msgstr "Wyświetl ramki Super Game Boya" + +#: ../src/gtk/joypadconfig.cpp:154 +msgid "Down" +msgstr " W dół " + +#: ../src/gtk/joypadconfig.cpp:31 +msgid "Down :" +msgstr "Strzałka w dół:" + +#: tmp/gameboyadvance.ui.h:6 +msgid "EEPROM" +msgstr "EEPROM" + +#: tmp/gameboyadvance.ui.h:7 +msgid "EEPROM + Sensor" +msgstr "EEPROM + Sensor" + +#: tmp/cheatedit.ui.h:4 +msgid "Edit cheat" +msgstr "Edytuj kod" + +#: tmp/gameboy.ui.h:6 +msgid "Emulate a Game Boy Printer" +msgstr "Emulacja drukarki" + +#: tmp/gameboy.ui.h:7 +msgid "Emulated system : " +msgstr "Emulowana konsola: " + +#: tmp/preferences.ui.h:5 +msgid "Enable automatic frame skipping" +msgstr "Włącz automatyczne pomijanie klatek" + +#: tmp/gameboyadvance.ui.h:8 +msgid "Enable real-time clock" +msgstr "Włącz zegar czasu rzeczywistego" + +#: ../src/gtk/window.cpp:468 +#, c-format +msgid "Failed to init SDL: %s" +msgstr "Nie można zainicjować SDL: %s" + +#: ../src/gtk/windowcallbacks.cpp:150 ../src/gtk/windowcallbacks.cpp:312 +msgid "File already exists. Overwrite it?" +msgstr "Plik istnieje. Zastąpić?" + +#: tmp/gameboyadvance.ui.h:9 +msgid "Flash" +msgstr "Flash" + +#: tmp/gameboyadvance.ui.h:10 +msgid "Flash size : " +msgstr "Rozmiar pamięci flash: " + +#: tmp/preferences.ui.h:6 +msgid "Frameskip level : " +msgstr "Poziom pomijania klatek: " + +#: tmp/vbam.ui.h:3 +msgid "From _File ..." +msgstr "Z _pliku..." + +#: tmp/display.ui.h:6 +msgid "Fullscreen filter : " +msgstr "Filtr pełnego ekranu: " + +#: ../src/gtk/directoriesconfig.cpp:31 +msgid "GB roms :" +msgstr "Romy GB:" + +#: ../src/gtk/directoriesconfig.cpp:30 +msgid "GBA roms :" +msgstr "Romy GBA:" + +#: tmp/gameboy.ui.h:8 +msgid "Game Boy" +msgstr "Game Boy" + +#: tmp/gameboy.ui.h:9 +msgid "Game Boy Advance" +msgstr "Game Boy Advance" + +#: tmp/gameboyadvance.ui.h:11 +msgid "Game Boy Advance settings" +msgstr "Ustawienia Game Boya Advance" + +#: tmp/gameboy.ui.h:10 +msgid "Game Boy Color" +msgstr "Game Boy Color" + +#: tmp/vbam.ui.h:4 +msgid "Game Boy _Advance ..." +msgstr "Game Boy _Advance..." + +#: tmp/gameboy.ui.h:11 +msgid "GameBoy settings" +msgstr "Ustawienia GameBoya" + +#: ../src/gtk/cheatedit.cpp:108 +msgid "GameGenie" +msgstr "GameGenie" + +#: ../src/gtk/cheatedit.cpp:103 +msgid "GameShark" +msgstr "GameShark" + +#: ../src/gtk/gameboyadvanceconfig.cpp:79 +msgid "Gameboy Advance BIOS" +msgstr "BIOS GBA" + +#: ../src/gtk/window.cpp:1308 +msgid "Gameboy Advance files" +msgstr "Pliki Gameboy Advance" + +#: ../src/gtk/window.cpp:1315 +msgid "Gameboy files" +msgstr "Pliki Gameboy" + +#: ../src/gtk/cheatedit.cpp:88 +msgid "Gameshark Advance" +msgstr "Gameshark Advance" + +#: ../src/gtk/cheatedit.cpp:83 +msgid "Generic Code" +msgstr "Inny kod" + +#: tmp/display.ui.h:7 +msgid "Interframe blending : " +msgstr "Rozmycie międzyklatkowe:" + +#: ../src/gtk/filters.cpp:82 +msgid "Interframe motion blur" +msgstr "Międzyklatkowe rozmywanie ruchu" + +#: ../src/gtk/joypadconfig.cpp:129 +msgid "Joy " +msgstr "Joy " + +#: ../src/gtk/joypadconfig.cpp:49 +msgid "Joypad :" +msgstr "Joypad:" + +#: ../src/gtk/joypadconfig.cpp:47 +msgid "Joypad config" +msgstr "Sterowanie" + +#: ../src/gtk/joypadconfig.cpp:156 +msgid "Left" +msgstr "W prawo" + +#: ../src/gtk/joypadconfig.cpp:32 +msgid "Left :" +msgstr "Strzałka w lewo:" + +#: tmp/vbam.ui.h:5 +msgid "Loa_d state" +msgstr "_Wczytaj grę:" + +#: ../src/gtk/windowcallbacks.cpp:84 +msgid "Load game" +msgstr "Wczytaj grę" + +#: ../src/gtk/window.cpp:1341 +msgid "Loaded battery" +msgstr "Wczytano baterię" + +#: ../src/gtk/main.cpp:50 +msgid "Main VBA-M options" +msgstr "Ogólne opcje VBA-M" + +#: tmp/vbam.ui.h:6 +msgid "Most recent" +msgstr "Najnowszy" + +#: tmp/sound.ui.h:9 +msgid "Mute" +msgstr "Wycisz" + +#: ../src/gtk/windowcallbacks.cpp:508 +msgid "Nintendo GameBoy Advance emulator." +msgstr "Emulator Nintendo GameBoy Advance." + +#: ../src/gtk/filters.cpp:60 ../src/gtk/filters.cpp:80 +#: tmp/gameboyadvance.ui.h:12 tmp/preferences.ui.h:7 +msgid "None" +msgstr "Brak" + +#: tmp/vbam.ui.h:7 +msgid "Oldest slot" +msgstr "Najstarszy" + +#: ../src/gtk/window.cpp:1266 +msgid "Open" +msgstr "Otwórz" + +#: ../src/gtk/cheatlist.cpp:70 tmp/cheatlist.ui.h:5 +msgid "Open cheat list" +msgstr "Otwórz listę kodów" + +#: tmp/vbam.ui.h:8 +msgid "Open rece_nt" +msgstr "Osta_nio otwierane" + +#: tmp/display.ui.h:8 +msgid "OpenGL" +msgstr "OpenGL" + +#: ../src/gtk/main.cpp:55 +msgid "Output version information." +msgstr "Wyświetla wersję programu." + +#: ../src/gtk/windowcallbacks.cpp:294 +msgid "PNG image" +msgstr "Obraz PNS" + +#: tmp/vbam.ui.h:9 +msgid "Pause" +msgstr "Pauza" + +#: tmp/preferences.ui.h:8 +msgid "Pause when inactive" +msgstr "Pauzuj kiedy okno jest nieaktywne" + +#: tmp/preferences.ui.h:9 +msgid "Percentage" +msgstr "Procentowy" + +#: ../src/gtk/filters.cpp:64 +msgid "Pixelate" +msgstr "Pixelate" + +#: tmp/preferences.ui.h:10 +msgid "Preferences" +msgstr "Preferencje" + +#: ../src/gtk/joypadconfig.cpp:155 +msgid "Right" +msgstr "W lewo" + +#: ../src/gtk/joypadconfig.cpp:33 +msgid "Right :" +msgstr "Strzałka w prawo:" + +#: tmp/gameboyadvance.ui.h:13 +msgid "SRAM" +msgstr "SRAM" + +#: tmp/vbam.ui.h:10 +msgid "S_ave state" +msgstr "_Zapisz grę" + +#: tmp/sound.ui.h:10 +msgid "Sample rate : " +msgstr "Częstotliwość próbkowania:" + +#: ../src/gtk/cheatlist.cpp:93 tmp/cheatlist.ui.h:6 +msgid "Save cheat list" +msgstr "Zapisz listę kodów" + +#: ../src/gtk/windowcallbacks.cpp:117 +msgid "Save game" +msgstr "Zapisz grę" + +#: ../src/gtk/windowcallbacks.cpp:277 +msgid "Save screenshot" +msgstr "Zapisz zrzut ekranu" + +#: tmp/gameboyadvance.ui.h:14 +msgid "Save type : " +msgstr "Typ zapisu: " + +#: ../src/gtk/window.cpp:1358 +msgid "Saved battery" +msgstr "Zapisano baterię" + +#: ../src/gtk/directoriesconfig.cpp:33 +msgid "Saves :" +msgstr "Zapisy gier:" + +#: ../src/gtk/filters.cpp:68 +msgid "Scanlines" +msgstr "Scanlines" + +#: tmp/vbam.ui.h:11 +msgid "Screen capt_ure..." +msgstr "Zrzut ekran_u..." + +#: ../src/gtk/joypadconfig.cpp:38 +msgid "Select :" +msgstr "Przycisk Select:" + +#: tmp/vbam.ui.h:12 +msgid "Slot1" +msgstr "Slot1" + +#: tmp/vbam.ui.h:13 +msgid "Slot10" +msgstr "Slot10" + +#: tmp/vbam.ui.h:14 +msgid "Slot2" +msgstr "Slot2" + +#: tmp/vbam.ui.h:15 +msgid "Slot3" +msgstr "Slot3" + +#: tmp/vbam.ui.h:16 +msgid "Slot4" +msgstr "Slot4" + +#: tmp/vbam.ui.h:17 +msgid "Slot5" +msgstr "Slot5" + +#: tmp/vbam.ui.h:18 +msgid "Slot6" +msgstr "Slot6" + +#: tmp/vbam.ui.h:19 +msgid "Slot7" +msgstr "Slot7" + +#: tmp/vbam.ui.h:20 +msgid "Slot8" +msgstr "Slot8" + +#: tmp/vbam.ui.h:21 +msgid "Slot9" +msgstr "Slot9" + +#: ../src/gtk/filters.cpp:81 +msgid "Smart interframe blending" +msgstr "Inteligentne rozmywanie międzyklatkowe" + +#: ../src/gtk/joypadconfig.cpp:40 +msgid "Speed :" +msgstr "Przyspieszenie" + +#: tmp/preferences.ui.h:11 +msgid "Speed indicator : " +msgstr "Miernik prędkości: " + +#: ../src/gtk/joypadconfig.cpp:39 +msgid "Start :" +msgstr "Przycisk Start:" + +#: ../src/gtk/filters.cpp:62 +msgid "Super 2xSaI" +msgstr "Super 2xSaI" + +#: ../src/gtk/filters.cpp:63 +msgid "Super Eagle" +msgstr "Super Eagle" + +#: tmp/gameboy.ui.h:12 +msgid "Super Game Boy" +msgstr "Super Game Boy" + +#: tmp/gameboy.ui.h:13 +msgid "Super Game Boy 2" +msgstr "Super Game Boy 2" + +#: ../src/gtk/filters.cpp:69 +msgid "TV Mode" +msgstr "Tryb TV" + +#: tmp/vbam.ui.h:22 +msgid "To _File ..." +msgstr "Do pliku..." + +#: tmp/cheatlist.ui.h:7 +msgid "Toggle all Cheats" +msgstr "Włącz/wyłącz wszystkie kody" + +#: ../src/gtk/window.cpp:427 +#, c-format +msgid "Unable to initialize output, falling back to Cairo\n" +msgstr "Nie można uruchomić wyjścia, powrót do Cairo\n" + +#: ../src/gtk/window.cpp:1022 +#, c-format +msgid "Unknown file type %s" +msgstr "Nieznany typ pliku %s" + +#: ../src/gtk/joypadconfig.cpp:153 +msgid "Up" +msgstr " W górę " + +#: ../src/gtk/joypadconfig.cpp:30 +msgid "Up :" +msgstr "Strzałka w górę:" + +#: tmp/gameboy.ui.h:14 +msgid "Use a Game Boy boot ROM file" +msgstr "Użyj bootowalnego romu Game Boya" + +#: tmp/gameboyadvance.ui.h:15 +msgid "Use a bios file" +msgstr "Użyj pliku biosu" + +#: tmp/vbam.ui.h:23 +msgid "VBA" +msgstr "VBA" + +#: ../src/gtk/main.cpp:41 ../src/gtk/windowcallbacks.cpp:506 +msgid "VBA-M" +msgstr "VBA-M" + +#: ../src/gtk/window.cpp:1159 +#, c-format +msgid "VBA-M - %d%%" +msgstr "VBA-M - %d%%" + +#: ../src/gtk/window.cpp:1164 +#, c-format +msgid "VBA-M - %d%% (%d, %d fps)" +msgstr "VBA-M - %d%% (%d, %d klatek na sekundę)" + +#: ../src/gtk/windowcallbacks.cpp:99 ../src/gtk/windowcallbacks.cpp:134 +msgid "VisualBoyAdvance save game" +msgstr "Zapis gry VisualBoyAdvance" + +#: ../src/gtk/main.cpp:81 +#, c-format +msgid "VisualBoyAdvance version %s [GTK+]\n" +msgstr "VisualBoyAdvance wersja %s [GTK+]\n" + +#: tmp/sound.ui.h:11 +msgid "Volume : " +msgstr "Głośność: " + +#: tmp/vbam.ui.h:24 +msgid "_Disable cheats" +msgstr "Wyłacz _kody" + +#: tmp/vbam.ui.h:25 +msgid "_Display ..." +msgstr "_Ekran..." + +#: tmp/vbam.ui.h:26 +msgid "_Emulation" +msgstr "_Emulacja" + +#: tmp/vbam.ui.h:27 +msgid "_File" +msgstr "_Plik" + +#: tmp/vbam.ui.h:28 +msgid "_Game Boy ..." +msgstr "_Game Boy..." + +#: tmp/vbam.ui.h:29 +msgid "_Help" +msgstr "P_omoc" + +#: tmp/vbam.ui.h:30 +msgid "_Joypads ..." +msgstr "_Sterowanie..." + +#: tmp/vbam.ui.h:31 +msgid "_List cheats ..." +msgstr "_Lista kodów..." + +#: tmp/vbam.ui.h:32 +msgid "_Options" +msgstr "_Opcje" + +#: tmp/vbam.ui.h:33 +msgid "_Preferences ..." +msgstr "_Preferencje..." + +#: tmp/vbam.ui.h:34 +msgid "_Reset" +msgstr "_Reset" + +#: tmp/vbam.ui.h:35 +msgid "_Sound ..." +msgstr "_Dźwięk..." + +#: ../src/gtk/filters.cpp:70 +msgid "hq2x" +msgstr "Wysoka jakość 2x" + +#: ../src/gtk/filters.cpp:71 +msgid "lq2x" +msgstr "Niska jakość 2x" diff --git a/po/gvbam/pt_BR.po b/po/gvbam/pt_BR.po index 5fbf0896..afd16691 100644 --- a/po/gvbam/pt_BR.po +++ b/po/gvbam/pt_BR.po @@ -1,738 +1,738 @@ -# This file is distributed under the same license as the VBA-M package. -# -# Translators: -# bgK , 2011. -# cachopo , 2011. -# King_Bud , 2011. -# Roque Cronus , 2011. -msgid "" -msgstr "" -"Project-Id-Version: VBA-M\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 20:50+0100\n" -"PO-Revision-Date: 2011-05-07 07:14+0000\n" -"Last-Translator: bgK \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: ../src/gtk/joypadconfig.cpp:142 -msgid " Axis " -msgstr " Eixo " - -#: ../src/gtk/joypadconfig.cpp:135 -msgid " Button " -msgstr " Button " - -#: ../src/gtk/joypadconfig.cpp:150 -msgid " Hat " -msgstr " Pivô " - -#: ../src/gtk/window.cpp:1413 -msgid "%Y/%m/%d %H:%M:%S" -msgstr "%Y/%m/%d %H:%M:%S" - -#: ../src/gtk/screenarea-opengl.cpp:41 -#, c-format -msgid "*** OpenGL : Cannot open display.\n" -msgstr "*** OpenGL: Não foi possível abrir o display.\\n\n" - -#: ../src/gtk/window.cpp:1383 ../src/gtk/window.cpp:1428 -msgid "----/--/-- --:--:--" -msgstr "----/--/-- --:--:--" - -#: tmp/sound.ui.h:2 -#, no-c-format -msgid "100 %" -msgstr "100 %" - -#: tmp/sound.ui.h:4 -#, no-c-format -msgid "200 %" -msgstr "200 %" - -#: tmp/sound.ui.h:6 -#, no-c-format -msgid "25 %" -msgstr "25 %" - -#: ../src/gtk/filters.cpp:61 -msgid "2xSaI" -msgstr "2xSaI" - -#: tmp/sound.ui.h:8 -#, no-c-format -msgid "50 %" -msgstr "50 %" - -#: ../src/gtk/joypadconfig.cpp:165 -msgid "" -msgstr "" - -#: tmp/preferences.ui.h:1 -msgid "Appearance" -msgstr "Aparência" - -#: tmp/gameboyadvance.ui.h:1 -msgid "Bios" -msgstr "Bios" - -#: tmp/gameboy.ui.h:1 -msgid "Boot ROM" -msgstr "ROM de inicialização" - -#: tmp/gameboyadvance.ui.h:2 -msgid "Cartridge" -msgstr "Cartucho " - -#: tmp/cheatedit.ui.h:1 -msgid "Codes" -msgstr "Códigos" - -#: tmp/cheatedit.ui.h:2 -msgid "Description" -msgstr "Descrição" - -#: tmp/display.ui.h:1 -msgid "Filters" -msgstr "Filtros" - -#: tmp/preferences.ui.h:2 -msgid "Frameskip" -msgstr "Pulo de quadro" - -#: tmp/preferences.ui.h:3 -msgid "General" -msgstr "Geral" - -#: tmp/display.ui.h:2 -msgid "Output module" -msgstr "Módulo de Saída" - -#: tmp/gameboyadvance.ui.h:3 -msgid "Real-Time Clock" -msgstr "Relógio em tempo real" - -#: tmp/gameboy.ui.h:2 -msgid "System and peripherals" -msgstr "Sistema e periféricos" - -#: tmp/cheatedit.ui.h:3 -msgid "Type" -msgstr "Tipo" - -#: tmp/display.ui.h:3 -msgid "Zoom" -msgstr "Zoom" - -#: tmp/cheatlist.ui.h:1 -msgid "Add new cheat" -msgstr "Adicionar novo código" - -#: ../src/gtk/filters.cpp:65 -msgid "AdvanceMAME Scale2x" -msgstr "AdvanceMAME Scale2x" - -#: ../src/gtk/window.cpp:1301 -msgid "All Gameboy Advance files" -msgstr "Todos os arquivos de Gameboy Advance" - -#: ../src/gtk/gameboyadvanceconfig.cpp:75 -msgid "All files" -msgstr "Todos os arquivos" - -#: tmp/vbam.ui.h:1 -msgid "Auto load most recent" -msgstr "Carregar automaticamente último state salvo" - -#: ../src/gtk/joypadconfig.cpp:42 -msgid "Autofire A :" -msgstr "A Turbo:" - -#: ../src/gtk/joypadconfig.cpp:43 -msgid "Autofire B :" -msgstr "B Turbo:" - -#: tmp/gameboy.ui.h:3 tmp/gameboyadvance.ui.h:4 -msgid "Automatic" -msgstr "Automático" - -#: ../src/gtk/directoriesconfig.cpp:32 -msgid "Batteries :" -msgstr "Baterias" - -#: ../src/gtk/filters.cpp:66 -msgid "Bilinear" -msgstr "Bilinear" - -#: ../src/gtk/filters.cpp:67 -msgid "Bilinear Plus" -msgstr "Bilinear Plus" - -#: tmp/gameboyadvance.ui.h:5 -msgid "Bios file : " -msgstr "Arquivo de bios : " - -#: tmp/gameboy.ui.h:4 -msgid "Boot ROM file : " -msgstr "Arquivo ROM de inicialização : " - -#: ../src/gtk/joypadconfig.cpp:34 -msgid "Button A :" -msgstr "Botão A :" - -#: ../src/gtk/joypadconfig.cpp:35 -msgid "Button B :" -msgstr "Botão B :" - -#: ../src/gtk/joypadconfig.cpp:36 -msgid "Button L :" -msgstr "Botão L :" - -#: ../src/gtk/joypadconfig.cpp:37 -msgid "Button R :" -msgstr "Botão R :" - -#: tmp/display.ui.h:4 -msgid "Cairo" -msgstr "Cairo" - -#: ../src/gtk/joypadconfig.cpp:41 -msgid "Capture :" -msgstr "Capturar tela :" - -#: ../src/gtk/directoriesconfig.cpp:34 -msgid "Captures :" -msgstr "Capturas de tela" - -#: tmp/cheatlist.ui.h:2 -msgid "Cheat list" -msgstr "Lista de Códigos" - -#: ../src/gtk/cheatedit.cpp:93 -msgid "CodeBreaker Advance" -msgstr "CodeBreaker Advance" - -#: tmp/vbam.ui.h:2 -msgid "D_irectories ..." -msgstr "Pastas ..." - -#: ../src/gtk/joypadconfig.cpp:50 -msgid "Default joypad" -msgstr "Controle Padrão" - -#: tmp/display.ui.h:5 -msgid "Default scale : " -msgstr "Escala padrão : " - -#: tmp/cheatlist.ui.h:3 -msgid "Delete all cheats" -msgstr "Deletar todos os códigos" - -#: tmp/cheatlist.ui.h:4 -msgid "Delete selected cheat" -msgstr "Deletar código selecionado" - -#: tmp/preferences.ui.h:4 -msgid "Detailed" -msgstr "Detalhado" - -#: ../src/gtk/directoriesconfig.cpp:38 -msgid "Directories config" -msgstr "Configuração de diretórios" - -#: tmp/gameboy.ui.h:5 -msgid "Display Super Game Boy borders" -msgstr "Mostrar as bordas do Super Game Boy" - -#: ../src/gtk/joypadconfig.cpp:154 -msgid "Down" -msgstr "Baixo" - -#: ../src/gtk/joypadconfig.cpp:31 -msgid "Down :" -msgstr "Baixo :" - -#: tmp/gameboyadvance.ui.h:6 -msgid "EEPROM" -msgstr "EEPROM" - -#: tmp/gameboyadvance.ui.h:7 -msgid "EEPROM + Sensor" -msgstr "EEPROM + Sensor" - -#: tmp/cheatedit.ui.h:4 -msgid "Edit cheat" -msgstr "Editar Código" - -#: tmp/gameboy.ui.h:6 -msgid "Emulate a Game Boy Printer" -msgstr "Emular a Impressora do Game Boy" - -#: tmp/gameboy.ui.h:7 -msgid "Emulated system : " -msgstr "Sistema emulado : " - -#: tmp/preferences.ui.h:5 -msgid "Enable automatic frame skipping" -msgstr "Habilitar pulo de quadro automático" - -#: tmp/gameboyadvance.ui.h:8 -msgid "Enable real-time clock" -msgstr "Habilitar relógio em tempo real" - -#: ../src/gtk/window.cpp:468 -#, c-format -msgid "Failed to init SDL: %s" -msgstr "Falha ao iniciar SDL: %s" - -#: ../src/gtk/windowcallbacks.cpp:150 ../src/gtk/windowcallbacks.cpp:312 -msgid "File already exists. Overwrite it?" -msgstr "Arquivo já existe. Sobrescrever?" - -#: tmp/gameboyadvance.ui.h:9 -msgid "Flash" -msgstr "Flash" - -#: tmp/gameboyadvance.ui.h:10 -msgid "Flash size : " -msgstr "Tamanho Flash : " - -#: tmp/preferences.ui.h:6 -msgid "Frameskip level : " -msgstr "Nível do pulo de quadro : " - -#: tmp/vbam.ui.h:3 -msgid "From _File ..." -msgstr "Do arquivo..." - -#: tmp/display.ui.h:6 -msgid "Fullscreen filter : " -msgstr "Filtro de tela cheia : " - -#: ../src/gtk/directoriesconfig.cpp:31 -msgid "GB roms :" -msgstr "Roms de GB" - -#: ../src/gtk/directoriesconfig.cpp:30 -msgid "GBA roms :" -msgstr "Roms de GBA" - -#: tmp/gameboy.ui.h:8 -msgid "Game Boy" -msgstr "Game Boy" - -#: tmp/gameboy.ui.h:9 -msgid "Game Boy Advance" -msgstr "Game Boy Advance" - -#: tmp/gameboyadvance.ui.h:11 -msgid "Game Boy Advance settings" -msgstr "Configurações do Game Boy Advance" - -#: tmp/gameboy.ui.h:10 -msgid "Game Boy Color" -msgstr "Game Boy Color" - -#: tmp/vbam.ui.h:4 -msgid "Game Boy _Advance ..." -msgstr "Game Boy _Advance ..." - -#: tmp/gameboy.ui.h:11 -msgid "GameBoy settings" -msgstr "Configurações do GameBoy" - -#: ../src/gtk/cheatedit.cpp:108 -msgid "GameGenie" -msgstr "GameGenie" - -#: ../src/gtk/cheatedit.cpp:103 -msgid "GameShark" -msgstr "GameShark" - -#: ../src/gtk/gameboyadvanceconfig.cpp:79 -msgid "Gameboy Advance BIOS" -msgstr "BIOS do Gameboy Advance" - -#: ../src/gtk/window.cpp:1308 -msgid "Gameboy Advance files" -msgstr "Arquivos de Gameboy Advance" - -#: ../src/gtk/window.cpp:1315 -msgid "Gameboy files" -msgstr "Arquivos de Gameboy" - -#: ../src/gtk/cheatedit.cpp:88 -msgid "Gameshark Advance" -msgstr "Gameshark Advance" - -#: ../src/gtk/cheatedit.cpp:83 -msgid "Generic Code" -msgstr "Código genérico" - -#: tmp/display.ui.h:7 -msgid "Interframe blending : " -msgstr "Mistura interframe : " - -#: ../src/gtk/filters.cpp:82 -msgid "Interframe motion blur" -msgstr "Desfoque de movimento interframe" - -#: ../src/gtk/joypadconfig.cpp:129 -msgid "Joy " -msgstr "Controle " - -#: ../src/gtk/joypadconfig.cpp:49 -msgid "Joypad :" -msgstr "Controle:" - -#: ../src/gtk/joypadconfig.cpp:47 -msgid "Joypad config" -msgstr "Configuração de Controle" - -#: ../src/gtk/joypadconfig.cpp:156 -msgid "Left" -msgstr "Esquerda" - -#: ../src/gtk/joypadconfig.cpp:32 -msgid "Left :" -msgstr "Esquerda : " - -#: tmp/vbam.ui.h:5 -msgid "Loa_d state" -msgstr "Carregar estado" - -#: ../src/gtk/windowcallbacks.cpp:84 -msgid "Load game" -msgstr "Carregar jogo" - -#: ../src/gtk/window.cpp:1341 -msgid "Loaded battery" -msgstr "Bateria carregada" - -#: ../src/gtk/main.cpp:50 -msgid "Main VBA-M options" -msgstr "Opções Principais do VBA-M" - -#: tmp/vbam.ui.h:6 -msgid "Most recent" -msgstr "Mais recente" - -#: tmp/sound.ui.h:9 -msgid "Mute" -msgstr "Mudo" - -#: ../src/gtk/windowcallbacks.cpp:508 -msgid "Nintendo GameBoy Advance emulator." -msgstr "Emulador de GameBoy Advance." - -#: ../src/gtk/filters.cpp:60 ../src/gtk/filters.cpp:80 -#: tmp/gameboyadvance.ui.h:12 tmp/preferences.ui.h:7 -msgid "None" -msgstr "Nenhum" - -#: tmp/vbam.ui.h:7 -msgid "Oldest slot" -msgstr "State mais antigo" - -#: ../src/gtk/window.cpp:1266 -msgid "Open" -msgstr "Abrir" - -#: ../src/gtk/cheatlist.cpp:70 tmp/cheatlist.ui.h:5 -msgid "Open cheat list" -msgstr "Abrir lista de códigos" - -#: tmp/vbam.ui.h:8 -msgid "Open rece_nt" -msgstr "Abrir Rece_nte" - -#: tmp/display.ui.h:8 -msgid "OpenGL" -msgstr "OpenGL" - -#: ../src/gtk/main.cpp:55 -msgid "Output version information." -msgstr "Informação da Versão de Saída." - -#: ../src/gtk/windowcallbacks.cpp:294 -msgid "PNG image" -msgstr "Imagem PNG" - -#: tmp/vbam.ui.h:9 -msgid "Pause" -msgstr "Pausar" - -#: tmp/preferences.ui.h:8 -msgid "Pause when inactive" -msgstr "Pausar quando inativo" - -#: tmp/preferences.ui.h:9 -msgid "Percentage" -msgstr "Porcentagem" - -#: ../src/gtk/filters.cpp:64 -msgid "Pixelate" -msgstr "Pixelização" - -#: tmp/preferences.ui.h:10 -msgid "Preferences" -msgstr "Preferências" - -#: ../src/gtk/joypadconfig.cpp:155 -msgid "Right" -msgstr "Direita" - -#: ../src/gtk/joypadconfig.cpp:33 -msgid "Right :" -msgstr "Direita :" - -#: tmp/gameboyadvance.ui.h:13 -msgid "SRAM" -msgstr "SRAM" - -#: tmp/vbam.ui.h:10 -msgid "S_ave state" -msgstr "S_alvar estado" - -#: tmp/sound.ui.h:10 -msgid "Sample rate : " -msgstr "Taxa de amostragem : " - -#: ../src/gtk/cheatlist.cpp:93 tmp/cheatlist.ui.h:6 -msgid "Save cheat list" -msgstr "Salvar lista de códigos" - -#: ../src/gtk/windowcallbacks.cpp:117 -msgid "Save game" -msgstr "Salvar jogo" - -#: ../src/gtk/windowcallbacks.cpp:277 -msgid "Save screenshot" -msgstr "Salvar screenshot" - -#: tmp/gameboyadvance.ui.h:14 -msgid "Save type : " -msgstr "Tipo de jogo salvo : " - -#: ../src/gtk/window.cpp:1358 -msgid "Saved battery" -msgstr "Bateria salva" - -#: ../src/gtk/directoriesconfig.cpp:33 -msgid "Saves :" -msgstr "Jogos salvos" - -#: ../src/gtk/filters.cpp:68 -msgid "Scanlines" -msgstr "Linhas de scan" - -#: tmp/vbam.ui.h:11 -msgid "Screen capt_ure..." -msgstr "Capt_urar Tela" - -#: ../src/gtk/joypadconfig.cpp:38 -msgid "Select :" -msgstr "Select :" - -#: tmp/vbam.ui.h:12 -msgid "Slot1" -msgstr "State 1" - -#: tmp/vbam.ui.h:13 -msgid "Slot10" -msgstr "State 10" - -#: tmp/vbam.ui.h:14 -msgid "Slot2" -msgstr "State 2" - -#: tmp/vbam.ui.h:15 -msgid "Slot3" -msgstr "State 3" - -#: tmp/vbam.ui.h:16 -msgid "Slot4" -msgstr "State 4" - -#: tmp/vbam.ui.h:17 -msgid "Slot5" -msgstr "State 5" - -#: tmp/vbam.ui.h:18 -msgid "Slot6" -msgstr "State 6" - -#: tmp/vbam.ui.h:19 -msgid "Slot7" -msgstr "State 7" - -#: tmp/vbam.ui.h:20 -msgid "Slot8" -msgstr "State 8" - -#: tmp/vbam.ui.h:21 -msgid "Slot9" -msgstr "State 9" - -#: ../src/gtk/filters.cpp:81 -msgid "Smart interframe blending" -msgstr "Mistura interframe inteligente" - -#: ../src/gtk/joypadconfig.cpp:40 -msgid "Speed :" -msgstr "Velocidade :" - -#: tmp/preferences.ui.h:11 -msgid "Speed indicator : " -msgstr "Indicador de velocidade : " - -#: ../src/gtk/joypadconfig.cpp:39 -msgid "Start :" -msgstr "Start :" - -#: ../src/gtk/filters.cpp:62 -msgid "Super 2xSaI" -msgstr "Super 2xSaI" - -#: ../src/gtk/filters.cpp:63 -msgid "Super Eagle" -msgstr "Super Eagle" - -#: tmp/gameboy.ui.h:12 -msgid "Super Game Boy" -msgstr "Super Game Boy" - -#: tmp/gameboy.ui.h:13 -msgid "Super Game Boy 2" -msgstr "Super Game Boy 2" - -#: ../src/gtk/filters.cpp:69 -msgid "TV Mode" -msgstr "Modo TV" - -#: tmp/vbam.ui.h:22 -msgid "To _File ..." -msgstr "Para o arquivo ..." - -#: tmp/cheatlist.ui.h:7 -msgid "Toggle all Cheats" -msgstr "Ligar/Desligar todos os códigos" - -#: ../src/gtk/window.cpp:427 -#, c-format -msgid "Unable to initialize output, falling back to Cairo\n" -msgstr "" -"Utilizando Cairo, já que não foi possível carregar o módulo de saída gráfico." -"\\n\n" - -#: ../src/gtk/window.cpp:1022 -#, c-format -msgid "Unknown file type %s" -msgstr "Tipo de arquivo desconhecido %s" - -#: ../src/gtk/joypadconfig.cpp:153 -msgid "Up" -msgstr "Cima" - -#: ../src/gtk/joypadconfig.cpp:30 -msgid "Up :" -msgstr "Cima :" - -#: tmp/gameboy.ui.h:14 -msgid "Use a Game Boy boot ROM file" -msgstr "Usar um arquivo ROM de inicialização do Game Boy" - -#: tmp/gameboyadvance.ui.h:15 -msgid "Use a bios file" -msgstr "Usar um arquivo de bios" - -#: tmp/vbam.ui.h:23 -msgid "VBA" -msgstr "VBA" - -#: ../src/gtk/main.cpp:41 ../src/gtk/windowcallbacks.cpp:506 -msgid "VBA-M" -msgstr "VBA-M" - -#: ../src/gtk/window.cpp:1159 -#, c-format -msgid "VBA-M - %d%%" -msgstr "VBA-M - %d%%" - -#: ../src/gtk/window.cpp:1164 -#, c-format -msgid "VBA-M - %d%% (%d, %d fps)" -msgstr "VBA-M - %d%% (%d, %d fps)" - -#: ../src/gtk/windowcallbacks.cpp:99 ../src/gtk/windowcallbacks.cpp:134 -msgid "VisualBoyAdvance save game" -msgstr "Jogo salvo do VisualBoyAdvance" - -#: ../src/gtk/main.cpp:81 -#, c-format -msgid "VisualBoyAdvance version %s [GTK+]\n" -msgstr "VisualBoyAdvance Versão %s [GTK+]\\n\n" - -#: tmp/sound.ui.h:11 -msgid "Volume : " -msgstr "Volume : " - -#: tmp/vbam.ui.h:24 -msgid "_Disable cheats" -msgstr "Desabilitar códigos ..." - -#: tmp/vbam.ui.h:25 -msgid "_Display ..." -msgstr "Exibição ..." - -#: tmp/vbam.ui.h:26 -msgid "_Emulation" -msgstr "_Emulação" - -#: tmp/vbam.ui.h:27 -msgid "_File" -msgstr "Arquivo" - -#: tmp/vbam.ui.h:28 -msgid "_Game Boy ..." -msgstr "_Game Boy ..." - -#: tmp/vbam.ui.h:29 -msgid "_Help" -msgstr "Ajuda" - -#: tmp/vbam.ui.h:30 -msgid "_Joypads ..." -msgstr "Controles ..." - -#: tmp/vbam.ui.h:31 -msgid "_List cheats ..." -msgstr "Listar códigos ..." - -#: tmp/vbam.ui.h:32 -msgid "_Options" -msgstr "Opções" - -#: tmp/vbam.ui.h:33 -msgid "_Preferences ..." -msgstr "Preferências ..." - -#: tmp/vbam.ui.h:34 -msgid "_Reset" -msgstr "Reiniciar" - -#: tmp/vbam.ui.h:35 -msgid "_Sound ..." -msgstr "_Som ..." - -#: ../src/gtk/filters.cpp:70 -msgid "hq2x" -msgstr "hq2x" - -#: ../src/gtk/filters.cpp:71 -msgid "lq2x" -msgstr "lq2x" +# This file is distributed under the same license as the VBA-M package. +# +# Translators: +# bgK , 2011. +# cachopo , 2011. +# King_Bud , 2011. +# Roque Cronus , 2011. +msgid "" +msgstr "" +"Project-Id-Version: VBA-M\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 20:50+0100\n" +"PO-Revision-Date: 2011-05-07 07:14+0000\n" +"Last-Translator: bgK \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1)\n" + +#: ../src/gtk/joypadconfig.cpp:142 +msgid " Axis " +msgstr " Eixo " + +#: ../src/gtk/joypadconfig.cpp:135 +msgid " Button " +msgstr " Button " + +#: ../src/gtk/joypadconfig.cpp:150 +msgid " Hat " +msgstr " Pivô " + +#: ../src/gtk/window.cpp:1413 +msgid "%Y/%m/%d %H:%M:%S" +msgstr "%Y/%m/%d %H:%M:%S" + +#: ../src/gtk/screenarea-opengl.cpp:41 +#, c-format +msgid "*** OpenGL : Cannot open display.\n" +msgstr "*** OpenGL: Não foi possível abrir o display.\\n\n" + +#: ../src/gtk/window.cpp:1383 ../src/gtk/window.cpp:1428 +msgid "----/--/-- --:--:--" +msgstr "----/--/-- --:--:--" + +#: tmp/sound.ui.h:2 +#, no-c-format +msgid "100 %" +msgstr "100 %" + +#: tmp/sound.ui.h:4 +#, no-c-format +msgid "200 %" +msgstr "200 %" + +#: tmp/sound.ui.h:6 +#, no-c-format +msgid "25 %" +msgstr "25 %" + +#: ../src/gtk/filters.cpp:61 +msgid "2xSaI" +msgstr "2xSaI" + +#: tmp/sound.ui.h:8 +#, no-c-format +msgid "50 %" +msgstr "50 %" + +#: ../src/gtk/joypadconfig.cpp:165 +msgid "" +msgstr "" + +#: tmp/preferences.ui.h:1 +msgid "Appearance" +msgstr "Aparência" + +#: tmp/gameboyadvance.ui.h:1 +msgid "Bios" +msgstr "Bios" + +#: tmp/gameboy.ui.h:1 +msgid "Boot ROM" +msgstr "ROM de inicialização" + +#: tmp/gameboyadvance.ui.h:2 +msgid "Cartridge" +msgstr "Cartucho " + +#: tmp/cheatedit.ui.h:1 +msgid "Codes" +msgstr "Códigos" + +#: tmp/cheatedit.ui.h:2 +msgid "Description" +msgstr "Descrição" + +#: tmp/display.ui.h:1 +msgid "Filters" +msgstr "Filtros" + +#: tmp/preferences.ui.h:2 +msgid "Frameskip" +msgstr "Pulo de quadro" + +#: tmp/preferences.ui.h:3 +msgid "General" +msgstr "Geral" + +#: tmp/display.ui.h:2 +msgid "Output module" +msgstr "Módulo de Saída" + +#: tmp/gameboyadvance.ui.h:3 +msgid "Real-Time Clock" +msgstr "Relógio em tempo real" + +#: tmp/gameboy.ui.h:2 +msgid "System and peripherals" +msgstr "Sistema e periféricos" + +#: tmp/cheatedit.ui.h:3 +msgid "Type" +msgstr "Tipo" + +#: tmp/display.ui.h:3 +msgid "Zoom" +msgstr "Zoom" + +#: tmp/cheatlist.ui.h:1 +msgid "Add new cheat" +msgstr "Adicionar novo código" + +#: ../src/gtk/filters.cpp:65 +msgid "AdvanceMAME Scale2x" +msgstr "AdvanceMAME Scale2x" + +#: ../src/gtk/window.cpp:1301 +msgid "All Gameboy Advance files" +msgstr "Todos os arquivos de Gameboy Advance" + +#: ../src/gtk/gameboyadvanceconfig.cpp:75 +msgid "All files" +msgstr "Todos os arquivos" + +#: tmp/vbam.ui.h:1 +msgid "Auto load most recent" +msgstr "Carregar automaticamente último state salvo" + +#: ../src/gtk/joypadconfig.cpp:42 +msgid "Autofire A :" +msgstr "A Turbo:" + +#: ../src/gtk/joypadconfig.cpp:43 +msgid "Autofire B :" +msgstr "B Turbo:" + +#: tmp/gameboy.ui.h:3 tmp/gameboyadvance.ui.h:4 +msgid "Automatic" +msgstr "Automático" + +#: ../src/gtk/directoriesconfig.cpp:32 +msgid "Batteries :" +msgstr "Baterias" + +#: ../src/gtk/filters.cpp:66 +msgid "Bilinear" +msgstr "Bilinear" + +#: ../src/gtk/filters.cpp:67 +msgid "Bilinear Plus" +msgstr "Bilinear Plus" + +#: tmp/gameboyadvance.ui.h:5 +msgid "Bios file : " +msgstr "Arquivo de bios : " + +#: tmp/gameboy.ui.h:4 +msgid "Boot ROM file : " +msgstr "Arquivo ROM de inicialização : " + +#: ../src/gtk/joypadconfig.cpp:34 +msgid "Button A :" +msgstr "Botão A :" + +#: ../src/gtk/joypadconfig.cpp:35 +msgid "Button B :" +msgstr "Botão B :" + +#: ../src/gtk/joypadconfig.cpp:36 +msgid "Button L :" +msgstr "Botão L :" + +#: ../src/gtk/joypadconfig.cpp:37 +msgid "Button R :" +msgstr "Botão R :" + +#: tmp/display.ui.h:4 +msgid "Cairo" +msgstr "Cairo" + +#: ../src/gtk/joypadconfig.cpp:41 +msgid "Capture :" +msgstr "Capturar tela :" + +#: ../src/gtk/directoriesconfig.cpp:34 +msgid "Captures :" +msgstr "Capturas de tela" + +#: tmp/cheatlist.ui.h:2 +msgid "Cheat list" +msgstr "Lista de Códigos" + +#: ../src/gtk/cheatedit.cpp:93 +msgid "CodeBreaker Advance" +msgstr "CodeBreaker Advance" + +#: tmp/vbam.ui.h:2 +msgid "D_irectories ..." +msgstr "Pastas ..." + +#: ../src/gtk/joypadconfig.cpp:50 +msgid "Default joypad" +msgstr "Controle Padrão" + +#: tmp/display.ui.h:5 +msgid "Default scale : " +msgstr "Escala padrão : " + +#: tmp/cheatlist.ui.h:3 +msgid "Delete all cheats" +msgstr "Deletar todos os códigos" + +#: tmp/cheatlist.ui.h:4 +msgid "Delete selected cheat" +msgstr "Deletar código selecionado" + +#: tmp/preferences.ui.h:4 +msgid "Detailed" +msgstr "Detalhado" + +#: ../src/gtk/directoriesconfig.cpp:38 +msgid "Directories config" +msgstr "Configuração de diretórios" + +#: tmp/gameboy.ui.h:5 +msgid "Display Super Game Boy borders" +msgstr "Mostrar as bordas do Super Game Boy" + +#: ../src/gtk/joypadconfig.cpp:154 +msgid "Down" +msgstr "Baixo" + +#: ../src/gtk/joypadconfig.cpp:31 +msgid "Down :" +msgstr "Baixo :" + +#: tmp/gameboyadvance.ui.h:6 +msgid "EEPROM" +msgstr "EEPROM" + +#: tmp/gameboyadvance.ui.h:7 +msgid "EEPROM + Sensor" +msgstr "EEPROM + Sensor" + +#: tmp/cheatedit.ui.h:4 +msgid "Edit cheat" +msgstr "Editar Código" + +#: tmp/gameboy.ui.h:6 +msgid "Emulate a Game Boy Printer" +msgstr "Emular a Impressora do Game Boy" + +#: tmp/gameboy.ui.h:7 +msgid "Emulated system : " +msgstr "Sistema emulado : " + +#: tmp/preferences.ui.h:5 +msgid "Enable automatic frame skipping" +msgstr "Habilitar pulo de quadro automático" + +#: tmp/gameboyadvance.ui.h:8 +msgid "Enable real-time clock" +msgstr "Habilitar relógio em tempo real" + +#: ../src/gtk/window.cpp:468 +#, c-format +msgid "Failed to init SDL: %s" +msgstr "Falha ao iniciar SDL: %s" + +#: ../src/gtk/windowcallbacks.cpp:150 ../src/gtk/windowcallbacks.cpp:312 +msgid "File already exists. Overwrite it?" +msgstr "Arquivo já existe. Sobrescrever?" + +#: tmp/gameboyadvance.ui.h:9 +msgid "Flash" +msgstr "Flash" + +#: tmp/gameboyadvance.ui.h:10 +msgid "Flash size : " +msgstr "Tamanho Flash : " + +#: tmp/preferences.ui.h:6 +msgid "Frameskip level : " +msgstr "Nível do pulo de quadro : " + +#: tmp/vbam.ui.h:3 +msgid "From _File ..." +msgstr "Do arquivo..." + +#: tmp/display.ui.h:6 +msgid "Fullscreen filter : " +msgstr "Filtro de tela cheia : " + +#: ../src/gtk/directoriesconfig.cpp:31 +msgid "GB roms :" +msgstr "Roms de GB" + +#: ../src/gtk/directoriesconfig.cpp:30 +msgid "GBA roms :" +msgstr "Roms de GBA" + +#: tmp/gameboy.ui.h:8 +msgid "Game Boy" +msgstr "Game Boy" + +#: tmp/gameboy.ui.h:9 +msgid "Game Boy Advance" +msgstr "Game Boy Advance" + +#: tmp/gameboyadvance.ui.h:11 +msgid "Game Boy Advance settings" +msgstr "Configurações do Game Boy Advance" + +#: tmp/gameboy.ui.h:10 +msgid "Game Boy Color" +msgstr "Game Boy Color" + +#: tmp/vbam.ui.h:4 +msgid "Game Boy _Advance ..." +msgstr "Game Boy _Advance ..." + +#: tmp/gameboy.ui.h:11 +msgid "GameBoy settings" +msgstr "Configurações do GameBoy" + +#: ../src/gtk/cheatedit.cpp:108 +msgid "GameGenie" +msgstr "GameGenie" + +#: ../src/gtk/cheatedit.cpp:103 +msgid "GameShark" +msgstr "GameShark" + +#: ../src/gtk/gameboyadvanceconfig.cpp:79 +msgid "Gameboy Advance BIOS" +msgstr "BIOS do Gameboy Advance" + +#: ../src/gtk/window.cpp:1308 +msgid "Gameboy Advance files" +msgstr "Arquivos de Gameboy Advance" + +#: ../src/gtk/window.cpp:1315 +msgid "Gameboy files" +msgstr "Arquivos de Gameboy" + +#: ../src/gtk/cheatedit.cpp:88 +msgid "Gameshark Advance" +msgstr "Gameshark Advance" + +#: ../src/gtk/cheatedit.cpp:83 +msgid "Generic Code" +msgstr "Código genérico" + +#: tmp/display.ui.h:7 +msgid "Interframe blending : " +msgstr "Mistura interframe : " + +#: ../src/gtk/filters.cpp:82 +msgid "Interframe motion blur" +msgstr "Desfoque de movimento interframe" + +#: ../src/gtk/joypadconfig.cpp:129 +msgid "Joy " +msgstr "Controle " + +#: ../src/gtk/joypadconfig.cpp:49 +msgid "Joypad :" +msgstr "Controle:" + +#: ../src/gtk/joypadconfig.cpp:47 +msgid "Joypad config" +msgstr "Configuração de Controle" + +#: ../src/gtk/joypadconfig.cpp:156 +msgid "Left" +msgstr "Esquerda" + +#: ../src/gtk/joypadconfig.cpp:32 +msgid "Left :" +msgstr "Esquerda : " + +#: tmp/vbam.ui.h:5 +msgid "Loa_d state" +msgstr "Carregar estado" + +#: ../src/gtk/windowcallbacks.cpp:84 +msgid "Load game" +msgstr "Carregar jogo" + +#: ../src/gtk/window.cpp:1341 +msgid "Loaded battery" +msgstr "Bateria carregada" + +#: ../src/gtk/main.cpp:50 +msgid "Main VBA-M options" +msgstr "Opções Principais do VBA-M" + +#: tmp/vbam.ui.h:6 +msgid "Most recent" +msgstr "Mais recente" + +#: tmp/sound.ui.h:9 +msgid "Mute" +msgstr "Mudo" + +#: ../src/gtk/windowcallbacks.cpp:508 +msgid "Nintendo GameBoy Advance emulator." +msgstr "Emulador de GameBoy Advance." + +#: ../src/gtk/filters.cpp:60 ../src/gtk/filters.cpp:80 +#: tmp/gameboyadvance.ui.h:12 tmp/preferences.ui.h:7 +msgid "None" +msgstr "Nenhum" + +#: tmp/vbam.ui.h:7 +msgid "Oldest slot" +msgstr "State mais antigo" + +#: ../src/gtk/window.cpp:1266 +msgid "Open" +msgstr "Abrir" + +#: ../src/gtk/cheatlist.cpp:70 tmp/cheatlist.ui.h:5 +msgid "Open cheat list" +msgstr "Abrir lista de códigos" + +#: tmp/vbam.ui.h:8 +msgid "Open rece_nt" +msgstr "Abrir Rece_nte" + +#: tmp/display.ui.h:8 +msgid "OpenGL" +msgstr "OpenGL" + +#: ../src/gtk/main.cpp:55 +msgid "Output version information." +msgstr "Informação da Versão de Saída." + +#: ../src/gtk/windowcallbacks.cpp:294 +msgid "PNG image" +msgstr "Imagem PNG" + +#: tmp/vbam.ui.h:9 +msgid "Pause" +msgstr "Pausar" + +#: tmp/preferences.ui.h:8 +msgid "Pause when inactive" +msgstr "Pausar quando inativo" + +#: tmp/preferences.ui.h:9 +msgid "Percentage" +msgstr "Porcentagem" + +#: ../src/gtk/filters.cpp:64 +msgid "Pixelate" +msgstr "Pixelização" + +#: tmp/preferences.ui.h:10 +msgid "Preferences" +msgstr "Preferências" + +#: ../src/gtk/joypadconfig.cpp:155 +msgid "Right" +msgstr "Direita" + +#: ../src/gtk/joypadconfig.cpp:33 +msgid "Right :" +msgstr "Direita :" + +#: tmp/gameboyadvance.ui.h:13 +msgid "SRAM" +msgstr "SRAM" + +#: tmp/vbam.ui.h:10 +msgid "S_ave state" +msgstr "S_alvar estado" + +#: tmp/sound.ui.h:10 +msgid "Sample rate : " +msgstr "Taxa de amostragem : " + +#: ../src/gtk/cheatlist.cpp:93 tmp/cheatlist.ui.h:6 +msgid "Save cheat list" +msgstr "Salvar lista de códigos" + +#: ../src/gtk/windowcallbacks.cpp:117 +msgid "Save game" +msgstr "Salvar jogo" + +#: ../src/gtk/windowcallbacks.cpp:277 +msgid "Save screenshot" +msgstr "Salvar screenshot" + +#: tmp/gameboyadvance.ui.h:14 +msgid "Save type : " +msgstr "Tipo de jogo salvo : " + +#: ../src/gtk/window.cpp:1358 +msgid "Saved battery" +msgstr "Bateria salva" + +#: ../src/gtk/directoriesconfig.cpp:33 +msgid "Saves :" +msgstr "Jogos salvos" + +#: ../src/gtk/filters.cpp:68 +msgid "Scanlines" +msgstr "Linhas de scan" + +#: tmp/vbam.ui.h:11 +msgid "Screen capt_ure..." +msgstr "Capt_urar Tela" + +#: ../src/gtk/joypadconfig.cpp:38 +msgid "Select :" +msgstr "Select :" + +#: tmp/vbam.ui.h:12 +msgid "Slot1" +msgstr "State 1" + +#: tmp/vbam.ui.h:13 +msgid "Slot10" +msgstr "State 10" + +#: tmp/vbam.ui.h:14 +msgid "Slot2" +msgstr "State 2" + +#: tmp/vbam.ui.h:15 +msgid "Slot3" +msgstr "State 3" + +#: tmp/vbam.ui.h:16 +msgid "Slot4" +msgstr "State 4" + +#: tmp/vbam.ui.h:17 +msgid "Slot5" +msgstr "State 5" + +#: tmp/vbam.ui.h:18 +msgid "Slot6" +msgstr "State 6" + +#: tmp/vbam.ui.h:19 +msgid "Slot7" +msgstr "State 7" + +#: tmp/vbam.ui.h:20 +msgid "Slot8" +msgstr "State 8" + +#: tmp/vbam.ui.h:21 +msgid "Slot9" +msgstr "State 9" + +#: ../src/gtk/filters.cpp:81 +msgid "Smart interframe blending" +msgstr "Mistura interframe inteligente" + +#: ../src/gtk/joypadconfig.cpp:40 +msgid "Speed :" +msgstr "Velocidade :" + +#: tmp/preferences.ui.h:11 +msgid "Speed indicator : " +msgstr "Indicador de velocidade : " + +#: ../src/gtk/joypadconfig.cpp:39 +msgid "Start :" +msgstr "Start :" + +#: ../src/gtk/filters.cpp:62 +msgid "Super 2xSaI" +msgstr "Super 2xSaI" + +#: ../src/gtk/filters.cpp:63 +msgid "Super Eagle" +msgstr "Super Eagle" + +#: tmp/gameboy.ui.h:12 +msgid "Super Game Boy" +msgstr "Super Game Boy" + +#: tmp/gameboy.ui.h:13 +msgid "Super Game Boy 2" +msgstr "Super Game Boy 2" + +#: ../src/gtk/filters.cpp:69 +msgid "TV Mode" +msgstr "Modo TV" + +#: tmp/vbam.ui.h:22 +msgid "To _File ..." +msgstr "Para o arquivo ..." + +#: tmp/cheatlist.ui.h:7 +msgid "Toggle all Cheats" +msgstr "Ligar/Desligar todos os códigos" + +#: ../src/gtk/window.cpp:427 +#, c-format +msgid "Unable to initialize output, falling back to Cairo\n" +msgstr "" +"Utilizando Cairo, já que não foi possível carregar o módulo de saída gráfico." +"\\n\n" + +#: ../src/gtk/window.cpp:1022 +#, c-format +msgid "Unknown file type %s" +msgstr "Tipo de arquivo desconhecido %s" + +#: ../src/gtk/joypadconfig.cpp:153 +msgid "Up" +msgstr "Cima" + +#: ../src/gtk/joypadconfig.cpp:30 +msgid "Up :" +msgstr "Cima :" + +#: tmp/gameboy.ui.h:14 +msgid "Use a Game Boy boot ROM file" +msgstr "Usar um arquivo ROM de inicialização do Game Boy" + +#: tmp/gameboyadvance.ui.h:15 +msgid "Use a bios file" +msgstr "Usar um arquivo de bios" + +#: tmp/vbam.ui.h:23 +msgid "VBA" +msgstr "VBA" + +#: ../src/gtk/main.cpp:41 ../src/gtk/windowcallbacks.cpp:506 +msgid "VBA-M" +msgstr "VBA-M" + +#: ../src/gtk/window.cpp:1159 +#, c-format +msgid "VBA-M - %d%%" +msgstr "VBA-M - %d%%" + +#: ../src/gtk/window.cpp:1164 +#, c-format +msgid "VBA-M - %d%% (%d, %d fps)" +msgstr "VBA-M - %d%% (%d, %d fps)" + +#: ../src/gtk/windowcallbacks.cpp:99 ../src/gtk/windowcallbacks.cpp:134 +msgid "VisualBoyAdvance save game" +msgstr "Jogo salvo do VisualBoyAdvance" + +#: ../src/gtk/main.cpp:81 +#, c-format +msgid "VisualBoyAdvance version %s [GTK+]\n" +msgstr "VisualBoyAdvance Versão %s [GTK+]\\n\n" + +#: tmp/sound.ui.h:11 +msgid "Volume : " +msgstr "Volume : " + +#: tmp/vbam.ui.h:24 +msgid "_Disable cheats" +msgstr "Desabilitar códigos ..." + +#: tmp/vbam.ui.h:25 +msgid "_Display ..." +msgstr "Exibição ..." + +#: tmp/vbam.ui.h:26 +msgid "_Emulation" +msgstr "_Emulação" + +#: tmp/vbam.ui.h:27 +msgid "_File" +msgstr "Arquivo" + +#: tmp/vbam.ui.h:28 +msgid "_Game Boy ..." +msgstr "_Game Boy ..." + +#: tmp/vbam.ui.h:29 +msgid "_Help" +msgstr "Ajuda" + +#: tmp/vbam.ui.h:30 +msgid "_Joypads ..." +msgstr "Controles ..." + +#: tmp/vbam.ui.h:31 +msgid "_List cheats ..." +msgstr "Listar códigos ..." + +#: tmp/vbam.ui.h:32 +msgid "_Options" +msgstr "Opções" + +#: tmp/vbam.ui.h:33 +msgid "_Preferences ..." +msgstr "Preferências ..." + +#: tmp/vbam.ui.h:34 +msgid "_Reset" +msgstr "Reiniciar" + +#: tmp/vbam.ui.h:35 +msgid "_Sound ..." +msgstr "_Som ..." + +#: ../src/gtk/filters.cpp:70 +msgid "hq2x" +msgstr "hq2x" + +#: ../src/gtk/filters.cpp:71 +msgid "lq2x" +msgstr "lq2x" diff --git a/po/gvbam/sv.po b/po/gvbam/sv.po index fcf1dcfe..9566cd4b 100644 --- a/po/gvbam/sv.po +++ b/po/gvbam/sv.po @@ -1,735 +1,735 @@ -# This file is distributed under the same license as the VBA-M package. -# -# Translators: -# , 2011. -# , 2011. -# woop65 , 2011. -msgid "" -msgstr "" -"Project-Id-Version: VBA-M\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 20:50+0100\n" -"PO-Revision-Date: 2011-11-11 09:44+0000\n" -"Last-Translator: masterjaz \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ../src/gtk/joypadconfig.cpp:142 -msgid " Axis " -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:135 -msgid " Button " -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:150 -msgid " Hat " -msgstr "" - -#: ../src/gtk/window.cpp:1413 -msgid "%Y/%m/%d %H:%M:%S" -msgstr "" - -#: ../src/gtk/screenarea-opengl.cpp:41 -#, c-format -msgid "*** OpenGL : Cannot open display.\n" -msgstr "" - -#: ../src/gtk/window.cpp:1383 ../src/gtk/window.cpp:1428 -msgid "----/--/-- --:--:--" -msgstr "" - -#: tmp/sound.ui.h:2 -#, no-c-format -msgid "100 %" -msgstr "" - -#: tmp/sound.ui.h:4 -#, no-c-format -msgid "200 %" -msgstr "" - -#: tmp/sound.ui.h:6 -#, no-c-format -msgid "25 %" -msgstr "" - -#: ../src/gtk/filters.cpp:61 -msgid "2xSaI" -msgstr "2xSaI" - -#: tmp/sound.ui.h:8 -#, no-c-format -msgid "50 %" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:165 -msgid "" -msgstr "" - -#: tmp/preferences.ui.h:1 -msgid "Appearance" -msgstr "" - -#: tmp/gameboyadvance.ui.h:1 -msgid "Bios" -msgstr "" - -#: tmp/gameboy.ui.h:1 -msgid "Boot ROM" -msgstr "" - -#: tmp/gameboyadvance.ui.h:2 -msgid "Cartridge" -msgstr "" - -#: tmp/cheatedit.ui.h:1 -msgid "Codes" -msgstr "" - -#: tmp/cheatedit.ui.h:2 -msgid "Description" -msgstr "" - -#: tmp/display.ui.h:1 -msgid "Filters" -msgstr "" - -#: tmp/preferences.ui.h:2 -msgid "Frameskip" -msgstr "" - -#: tmp/preferences.ui.h:3 -msgid "General" -msgstr "" - -#: tmp/display.ui.h:2 -msgid "Output module" -msgstr "" - -#: tmp/gameboyadvance.ui.h:3 -msgid "Real-Time Clock" -msgstr "" - -#: tmp/gameboy.ui.h:2 -msgid "System and peripherals" -msgstr "" - -#: tmp/cheatedit.ui.h:3 -msgid "Type" -msgstr "" - -#: tmp/display.ui.h:3 -msgid "Zoom" -msgstr "" - -#: tmp/cheatlist.ui.h:1 -msgid "Add new cheat" -msgstr "" - -#: ../src/gtk/filters.cpp:65 -msgid "AdvanceMAME Scale2x" -msgstr "AdvanceMAME Scale2x" - -#: ../src/gtk/window.cpp:1301 -msgid "All Gameboy Advance files" -msgstr "" - -#: ../src/gtk/gameboyadvanceconfig.cpp:75 -msgid "All files" -msgstr "Alla filer" - -#: tmp/vbam.ui.h:1 -msgid "Auto load most recent" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:42 -msgid "Autofire A :" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:43 -msgid "Autofire B :" -msgstr "" - -#: tmp/gameboy.ui.h:3 tmp/gameboyadvance.ui.h:4 -msgid "Automatic" -msgstr "" - -#: ../src/gtk/directoriesconfig.cpp:32 -msgid "Batteries :" -msgstr "Batterier:" - -#: ../src/gtk/filters.cpp:66 -msgid "Bilinear" -msgstr "Bilinjär" - -#: ../src/gtk/filters.cpp:67 -msgid "Bilinear Plus" -msgstr "Bilinjär Plus" - -#: tmp/gameboyadvance.ui.h:5 -msgid "Bios file : " -msgstr "" - -#: tmp/gameboy.ui.h:4 -msgid "Boot ROM file : " -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:34 -msgid "Button A :" -msgstr "Knapp A:" - -#: ../src/gtk/joypadconfig.cpp:35 -msgid "Button B :" -msgstr "Knapp B:" - -#: ../src/gtk/joypadconfig.cpp:36 -msgid "Button L :" -msgstr "Knapp L:" - -#: ../src/gtk/joypadconfig.cpp:37 -msgid "Button R :" -msgstr "Knapp R:" - -#: tmp/display.ui.h:4 -msgid "Cairo" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:41 -msgid "Capture :" -msgstr "" - -#: ../src/gtk/directoriesconfig.cpp:34 -msgid "Captures :" -msgstr "" - -#: tmp/cheatlist.ui.h:2 -msgid "Cheat list" -msgstr "" - -#: ../src/gtk/cheatedit.cpp:93 -msgid "CodeBreaker Advance" -msgstr "Codebreaker Advance" - -#: tmp/vbam.ui.h:2 -msgid "D_irectories ..." -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:50 -msgid "Default joypad" -msgstr "" - -#: tmp/display.ui.h:5 -msgid "Default scale : " -msgstr "" - -#: tmp/cheatlist.ui.h:3 -msgid "Delete all cheats" -msgstr "" - -#: tmp/cheatlist.ui.h:4 -msgid "Delete selected cheat" -msgstr "" - -#: tmp/preferences.ui.h:4 -msgid "Detailed" -msgstr "" - -#: ../src/gtk/directoriesconfig.cpp:38 -msgid "Directories config" -msgstr "" - -#: tmp/gameboy.ui.h:5 -msgid "Display Super Game Boy borders" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:154 -msgid "Down" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:31 -msgid "Down :" -msgstr "Ner:" - -#: tmp/gameboyadvance.ui.h:6 -msgid "EEPROM" -msgstr "" - -#: tmp/gameboyadvance.ui.h:7 -msgid "EEPROM + Sensor" -msgstr "" - -#: tmp/cheatedit.ui.h:4 -msgid "Edit cheat" -msgstr "" - -#: tmp/gameboy.ui.h:6 -msgid "Emulate a Game Boy Printer" -msgstr "" - -#: tmp/gameboy.ui.h:7 -msgid "Emulated system : " -msgstr "" - -#: tmp/preferences.ui.h:5 -msgid "Enable automatic frame skipping" -msgstr "" - -#: tmp/gameboyadvance.ui.h:8 -msgid "Enable real-time clock" -msgstr "" - -#: ../src/gtk/window.cpp:468 -#, c-format -msgid "Failed to init SDL: %s" -msgstr "" - -#: ../src/gtk/windowcallbacks.cpp:150 ../src/gtk/windowcallbacks.cpp:312 -msgid "File already exists. Overwrite it?" -msgstr "" - -#: tmp/gameboyadvance.ui.h:9 -msgid "Flash" -msgstr "" - -#: tmp/gameboyadvance.ui.h:10 -msgid "Flash size : " -msgstr "" - -#: tmp/preferences.ui.h:6 -msgid "Frameskip level : " -msgstr "" - -#: tmp/vbam.ui.h:3 -msgid "From _File ..." -msgstr "" - -#: tmp/display.ui.h:6 -msgid "Fullscreen filter : " -msgstr "" - -#: ../src/gtk/directoriesconfig.cpp:31 -msgid "GB roms :" -msgstr "GB roms:" - -#: ../src/gtk/directoriesconfig.cpp:30 -msgid "GBA roms :" -msgstr "GBA roms:" - -#: tmp/gameboy.ui.h:8 -msgid "Game Boy" -msgstr "" - -#: tmp/gameboy.ui.h:9 -msgid "Game Boy Advance" -msgstr "" - -#: tmp/gameboyadvance.ui.h:11 -msgid "Game Boy Advance settings" -msgstr "" - -#: tmp/gameboy.ui.h:10 -msgid "Game Boy Color" -msgstr "" - -#: tmp/vbam.ui.h:4 -msgid "Game Boy _Advance ..." -msgstr "" - -#: tmp/gameboy.ui.h:11 -msgid "GameBoy settings" -msgstr "" - -#: ../src/gtk/cheatedit.cpp:108 -msgid "GameGenie" -msgstr "" - -#: ../src/gtk/cheatedit.cpp:103 -msgid "GameShark" -msgstr "" - -#: ../src/gtk/gameboyadvanceconfig.cpp:79 -msgid "Gameboy Advance BIOS" -msgstr "Gameboy Advance BIOS" - -#: ../src/gtk/window.cpp:1308 -msgid "Gameboy Advance files" -msgstr "" - -#: ../src/gtk/window.cpp:1315 -msgid "Gameboy files" -msgstr "" - -#: ../src/gtk/cheatedit.cpp:88 -msgid "Gameshark Advance" -msgstr "Gameshark Advance" - -#: ../src/gtk/cheatedit.cpp:83 -msgid "Generic Code" -msgstr "Generisk kod" - -#: tmp/display.ui.h:7 -msgid "Interframe blending : " -msgstr "" - -#: ../src/gtk/filters.cpp:82 -msgid "Interframe motion blur" -msgstr "Interframe rörelseoskärpa" - -#: ../src/gtk/joypadconfig.cpp:129 -msgid "Joy " -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:49 -msgid "Joypad :" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:47 -msgid "Joypad config" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:156 -msgid "Left" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:32 -msgid "Left :" -msgstr "Vänster:" - -#: tmp/vbam.ui.h:5 -msgid "Loa_d state" -msgstr "" - -#: ../src/gtk/windowcallbacks.cpp:84 -msgid "Load game" -msgstr "" - -#: ../src/gtk/window.cpp:1341 -msgid "Loaded battery" -msgstr "" - -#: ../src/gtk/main.cpp:50 -msgid "Main VBA-M options" -msgstr "" - -#: tmp/vbam.ui.h:6 -msgid "Most recent" -msgstr "" - -#: tmp/sound.ui.h:9 -msgid "Mute" -msgstr "" - -#: ../src/gtk/windowcallbacks.cpp:508 -msgid "Nintendo GameBoy Advance emulator." -msgstr "" - -#: ../src/gtk/filters.cpp:60 ../src/gtk/filters.cpp:80 -#: tmp/gameboyadvance.ui.h:12 tmp/preferences.ui.h:7 -msgid "None" -msgstr "Inga" - -#: tmp/vbam.ui.h:7 -msgid "Oldest slot" -msgstr "" - -#: ../src/gtk/window.cpp:1266 -msgid "Open" -msgstr "" - -#: ../src/gtk/cheatlist.cpp:70 tmp/cheatlist.ui.h:5 -msgid "Open cheat list" -msgstr "Öppna fusklista" - -#: tmp/vbam.ui.h:8 -msgid "Open rece_nt" -msgstr "" - -#: tmp/display.ui.h:8 -msgid "OpenGL" -msgstr "" - -#: ../src/gtk/main.cpp:55 -msgid "Output version information." -msgstr "" - -#: ../src/gtk/windowcallbacks.cpp:294 -msgid "PNG image" -msgstr "" - -#: tmp/vbam.ui.h:9 -msgid "Pause" -msgstr "" - -#: tmp/preferences.ui.h:8 -msgid "Pause when inactive" -msgstr "" - -#: tmp/preferences.ui.h:9 -msgid "Percentage" -msgstr "" - -#: ../src/gtk/filters.cpp:64 -msgid "Pixelate" -msgstr "" - -#: tmp/preferences.ui.h:10 -msgid "Preferences" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:155 -msgid "Right" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:33 -msgid "Right :" -msgstr "Höger:" - -#: tmp/gameboyadvance.ui.h:13 -msgid "SRAM" -msgstr "" - -#: tmp/vbam.ui.h:10 -msgid "S_ave state" -msgstr "" - -#: tmp/sound.ui.h:10 -msgid "Sample rate : " -msgstr "" - -#: ../src/gtk/cheatlist.cpp:93 tmp/cheatlist.ui.h:6 -msgid "Save cheat list" -msgstr "Spara fusklista" - -#: ../src/gtk/windowcallbacks.cpp:117 -msgid "Save game" -msgstr "" - -#: ../src/gtk/windowcallbacks.cpp:277 -msgid "Save screenshot" -msgstr "" - -#: tmp/gameboyadvance.ui.h:14 -msgid "Save type : " -msgstr "" - -#: ../src/gtk/window.cpp:1358 -msgid "Saved battery" -msgstr "" - -#: ../src/gtk/directoriesconfig.cpp:33 -msgid "Saves :" -msgstr "Spara:" - -#: ../src/gtk/filters.cpp:68 -msgid "Scanlines" -msgstr "" - -#: tmp/vbam.ui.h:11 -msgid "Screen capt_ure..." -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:38 -msgid "Select :" -msgstr "Select:" - -#: tmp/vbam.ui.h:12 -msgid "Slot1" -msgstr "" - -#: tmp/vbam.ui.h:13 -msgid "Slot10" -msgstr "" - -#: tmp/vbam.ui.h:14 -msgid "Slot2" -msgstr "" - -#: tmp/vbam.ui.h:15 -msgid "Slot3" -msgstr "" - -#: tmp/vbam.ui.h:16 -msgid "Slot4" -msgstr "" - -#: tmp/vbam.ui.h:17 -msgid "Slot5" -msgstr "" - -#: tmp/vbam.ui.h:18 -msgid "Slot6" -msgstr "" - -#: tmp/vbam.ui.h:19 -msgid "Slot7" -msgstr "" - -#: tmp/vbam.ui.h:20 -msgid "Slot8" -msgstr "" - -#: tmp/vbam.ui.h:21 -msgid "Slot9" -msgstr "" - -#: ../src/gtk/filters.cpp:81 -msgid "Smart interframe blending" -msgstr "Smart interframe blending" - -#: ../src/gtk/joypadconfig.cpp:40 -msgid "Speed :" -msgstr "Hastighet:" - -#: tmp/preferences.ui.h:11 -msgid "Speed indicator : " -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:39 -msgid "Start :" -msgstr "Start:" - -#: ../src/gtk/filters.cpp:62 -msgid "Super 2xSaI" -msgstr "Super 2xSaI" - -#: ../src/gtk/filters.cpp:63 -msgid "Super Eagle" -msgstr "Super Eagle" - -#: tmp/gameboy.ui.h:12 -msgid "Super Game Boy" -msgstr "" - -#: tmp/gameboy.ui.h:13 -msgid "Super Game Boy 2" -msgstr "" - -#: ../src/gtk/filters.cpp:69 -msgid "TV Mode" -msgstr "TV-läge" - -#: tmp/vbam.ui.h:22 -msgid "To _File ..." -msgstr "" - -#: tmp/cheatlist.ui.h:7 -msgid "Toggle all Cheats" -msgstr "" - -#: ../src/gtk/window.cpp:427 -#, c-format -msgid "Unable to initialize output, falling back to Cairo\n" -msgstr "" - -#: ../src/gtk/window.cpp:1022 -#, c-format -msgid "Unknown file type %s" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:153 -msgid "Up" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:30 -msgid "Up :" -msgstr "Upp:" - -#: tmp/gameboy.ui.h:14 -msgid "Use a Game Boy boot ROM file" -msgstr "" - -#: tmp/gameboyadvance.ui.h:15 -msgid "Use a bios file" -msgstr "" - -#: tmp/vbam.ui.h:23 -msgid "VBA" -msgstr "" - -#: ../src/gtk/main.cpp:41 ../src/gtk/windowcallbacks.cpp:506 -msgid "VBA-M" -msgstr "" - -#: ../src/gtk/window.cpp:1159 -#, c-format -msgid "VBA-M - %d%%" -msgstr "" - -#: ../src/gtk/window.cpp:1164 -#, c-format -msgid "VBA-M - %d%% (%d, %d fps)" -msgstr "" - -#: ../src/gtk/windowcallbacks.cpp:99 ../src/gtk/windowcallbacks.cpp:134 -msgid "VisualBoyAdvance save game" -msgstr "" - -#: ../src/gtk/main.cpp:81 -#, c-format -msgid "VisualBoyAdvance version %s [GTK+]\n" -msgstr "" - -#: tmp/sound.ui.h:11 -msgid "Volume : " -msgstr "" - -#: tmp/vbam.ui.h:24 -msgid "_Disable cheats" -msgstr "" - -#: tmp/vbam.ui.h:25 -msgid "_Display ..." -msgstr "" - -#: tmp/vbam.ui.h:26 -msgid "_Emulation" -msgstr "" - -#: tmp/vbam.ui.h:27 -msgid "_File" -msgstr "" - -#: tmp/vbam.ui.h:28 -msgid "_Game Boy ..." -msgstr "" - -#: tmp/vbam.ui.h:29 -msgid "_Help" -msgstr "" - -#: tmp/vbam.ui.h:30 -msgid "_Joypads ..." -msgstr "" - -#: tmp/vbam.ui.h:31 -msgid "_List cheats ..." -msgstr "" - -#: tmp/vbam.ui.h:32 -msgid "_Options" -msgstr "" - -#: tmp/vbam.ui.h:33 -msgid "_Preferences ..." -msgstr "" - -#: tmp/vbam.ui.h:34 -msgid "_Reset" -msgstr "" - -#: tmp/vbam.ui.h:35 -msgid "_Sound ..." -msgstr "" - -#: ../src/gtk/filters.cpp:70 -msgid "hq2x" -msgstr "hq2x" - -#: ../src/gtk/filters.cpp:71 -msgid "lq2x" -msgstr "lq2x" +# This file is distributed under the same license as the VBA-M package. +# +# Translators: +# , 2011. +# , 2011. +# woop65 , 2011. +msgid "" +msgstr "" +"Project-Id-Version: VBA-M\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 20:50+0100\n" +"PO-Revision-Date: 2011-11-11 09:44+0000\n" +"Last-Translator: masterjaz \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ../src/gtk/joypadconfig.cpp:142 +msgid " Axis " +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:135 +msgid " Button " +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:150 +msgid " Hat " +msgstr "" + +#: ../src/gtk/window.cpp:1413 +msgid "%Y/%m/%d %H:%M:%S" +msgstr "" + +#: ../src/gtk/screenarea-opengl.cpp:41 +#, c-format +msgid "*** OpenGL : Cannot open display.\n" +msgstr "" + +#: ../src/gtk/window.cpp:1383 ../src/gtk/window.cpp:1428 +msgid "----/--/-- --:--:--" +msgstr "" + +#: tmp/sound.ui.h:2 +#, no-c-format +msgid "100 %" +msgstr "" + +#: tmp/sound.ui.h:4 +#, no-c-format +msgid "200 %" +msgstr "" + +#: tmp/sound.ui.h:6 +#, no-c-format +msgid "25 %" +msgstr "" + +#: ../src/gtk/filters.cpp:61 +msgid "2xSaI" +msgstr "2xSaI" + +#: tmp/sound.ui.h:8 +#, no-c-format +msgid "50 %" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:165 +msgid "" +msgstr "" + +#: tmp/preferences.ui.h:1 +msgid "Appearance" +msgstr "" + +#: tmp/gameboyadvance.ui.h:1 +msgid "Bios" +msgstr "" + +#: tmp/gameboy.ui.h:1 +msgid "Boot ROM" +msgstr "" + +#: tmp/gameboyadvance.ui.h:2 +msgid "Cartridge" +msgstr "" + +#: tmp/cheatedit.ui.h:1 +msgid "Codes" +msgstr "" + +#: tmp/cheatedit.ui.h:2 +msgid "Description" +msgstr "" + +#: tmp/display.ui.h:1 +msgid "Filters" +msgstr "" + +#: tmp/preferences.ui.h:2 +msgid "Frameskip" +msgstr "" + +#: tmp/preferences.ui.h:3 +msgid "General" +msgstr "" + +#: tmp/display.ui.h:2 +msgid "Output module" +msgstr "" + +#: tmp/gameboyadvance.ui.h:3 +msgid "Real-Time Clock" +msgstr "" + +#: tmp/gameboy.ui.h:2 +msgid "System and peripherals" +msgstr "" + +#: tmp/cheatedit.ui.h:3 +msgid "Type" +msgstr "" + +#: tmp/display.ui.h:3 +msgid "Zoom" +msgstr "" + +#: tmp/cheatlist.ui.h:1 +msgid "Add new cheat" +msgstr "" + +#: ../src/gtk/filters.cpp:65 +msgid "AdvanceMAME Scale2x" +msgstr "AdvanceMAME Scale2x" + +#: ../src/gtk/window.cpp:1301 +msgid "All Gameboy Advance files" +msgstr "" + +#: ../src/gtk/gameboyadvanceconfig.cpp:75 +msgid "All files" +msgstr "Alla filer" + +#: tmp/vbam.ui.h:1 +msgid "Auto load most recent" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:42 +msgid "Autofire A :" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:43 +msgid "Autofire B :" +msgstr "" + +#: tmp/gameboy.ui.h:3 tmp/gameboyadvance.ui.h:4 +msgid "Automatic" +msgstr "" + +#: ../src/gtk/directoriesconfig.cpp:32 +msgid "Batteries :" +msgstr "Batterier:" + +#: ../src/gtk/filters.cpp:66 +msgid "Bilinear" +msgstr "Bilinjär" + +#: ../src/gtk/filters.cpp:67 +msgid "Bilinear Plus" +msgstr "Bilinjär Plus" + +#: tmp/gameboyadvance.ui.h:5 +msgid "Bios file : " +msgstr "" + +#: tmp/gameboy.ui.h:4 +msgid "Boot ROM file : " +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:34 +msgid "Button A :" +msgstr "Knapp A:" + +#: ../src/gtk/joypadconfig.cpp:35 +msgid "Button B :" +msgstr "Knapp B:" + +#: ../src/gtk/joypadconfig.cpp:36 +msgid "Button L :" +msgstr "Knapp L:" + +#: ../src/gtk/joypadconfig.cpp:37 +msgid "Button R :" +msgstr "Knapp R:" + +#: tmp/display.ui.h:4 +msgid "Cairo" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:41 +msgid "Capture :" +msgstr "" + +#: ../src/gtk/directoriesconfig.cpp:34 +msgid "Captures :" +msgstr "" + +#: tmp/cheatlist.ui.h:2 +msgid "Cheat list" +msgstr "" + +#: ../src/gtk/cheatedit.cpp:93 +msgid "CodeBreaker Advance" +msgstr "Codebreaker Advance" + +#: tmp/vbam.ui.h:2 +msgid "D_irectories ..." +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:50 +msgid "Default joypad" +msgstr "" + +#: tmp/display.ui.h:5 +msgid "Default scale : " +msgstr "" + +#: tmp/cheatlist.ui.h:3 +msgid "Delete all cheats" +msgstr "" + +#: tmp/cheatlist.ui.h:4 +msgid "Delete selected cheat" +msgstr "" + +#: tmp/preferences.ui.h:4 +msgid "Detailed" +msgstr "" + +#: ../src/gtk/directoriesconfig.cpp:38 +msgid "Directories config" +msgstr "" + +#: tmp/gameboy.ui.h:5 +msgid "Display Super Game Boy borders" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:154 +msgid "Down" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:31 +msgid "Down :" +msgstr "Ner:" + +#: tmp/gameboyadvance.ui.h:6 +msgid "EEPROM" +msgstr "" + +#: tmp/gameboyadvance.ui.h:7 +msgid "EEPROM + Sensor" +msgstr "" + +#: tmp/cheatedit.ui.h:4 +msgid "Edit cheat" +msgstr "" + +#: tmp/gameboy.ui.h:6 +msgid "Emulate a Game Boy Printer" +msgstr "" + +#: tmp/gameboy.ui.h:7 +msgid "Emulated system : " +msgstr "" + +#: tmp/preferences.ui.h:5 +msgid "Enable automatic frame skipping" +msgstr "" + +#: tmp/gameboyadvance.ui.h:8 +msgid "Enable real-time clock" +msgstr "" + +#: ../src/gtk/window.cpp:468 +#, c-format +msgid "Failed to init SDL: %s" +msgstr "" + +#: ../src/gtk/windowcallbacks.cpp:150 ../src/gtk/windowcallbacks.cpp:312 +msgid "File already exists. Overwrite it?" +msgstr "" + +#: tmp/gameboyadvance.ui.h:9 +msgid "Flash" +msgstr "" + +#: tmp/gameboyadvance.ui.h:10 +msgid "Flash size : " +msgstr "" + +#: tmp/preferences.ui.h:6 +msgid "Frameskip level : " +msgstr "" + +#: tmp/vbam.ui.h:3 +msgid "From _File ..." +msgstr "" + +#: tmp/display.ui.h:6 +msgid "Fullscreen filter : " +msgstr "" + +#: ../src/gtk/directoriesconfig.cpp:31 +msgid "GB roms :" +msgstr "GB roms:" + +#: ../src/gtk/directoriesconfig.cpp:30 +msgid "GBA roms :" +msgstr "GBA roms:" + +#: tmp/gameboy.ui.h:8 +msgid "Game Boy" +msgstr "" + +#: tmp/gameboy.ui.h:9 +msgid "Game Boy Advance" +msgstr "" + +#: tmp/gameboyadvance.ui.h:11 +msgid "Game Boy Advance settings" +msgstr "" + +#: tmp/gameboy.ui.h:10 +msgid "Game Boy Color" +msgstr "" + +#: tmp/vbam.ui.h:4 +msgid "Game Boy _Advance ..." +msgstr "" + +#: tmp/gameboy.ui.h:11 +msgid "GameBoy settings" +msgstr "" + +#: ../src/gtk/cheatedit.cpp:108 +msgid "GameGenie" +msgstr "" + +#: ../src/gtk/cheatedit.cpp:103 +msgid "GameShark" +msgstr "" + +#: ../src/gtk/gameboyadvanceconfig.cpp:79 +msgid "Gameboy Advance BIOS" +msgstr "Gameboy Advance BIOS" + +#: ../src/gtk/window.cpp:1308 +msgid "Gameboy Advance files" +msgstr "" + +#: ../src/gtk/window.cpp:1315 +msgid "Gameboy files" +msgstr "" + +#: ../src/gtk/cheatedit.cpp:88 +msgid "Gameshark Advance" +msgstr "Gameshark Advance" + +#: ../src/gtk/cheatedit.cpp:83 +msgid "Generic Code" +msgstr "Generisk kod" + +#: tmp/display.ui.h:7 +msgid "Interframe blending : " +msgstr "" + +#: ../src/gtk/filters.cpp:82 +msgid "Interframe motion blur" +msgstr "Interframe rörelseoskärpa" + +#: ../src/gtk/joypadconfig.cpp:129 +msgid "Joy " +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:49 +msgid "Joypad :" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:47 +msgid "Joypad config" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:156 +msgid "Left" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:32 +msgid "Left :" +msgstr "Vänster:" + +#: tmp/vbam.ui.h:5 +msgid "Loa_d state" +msgstr "" + +#: ../src/gtk/windowcallbacks.cpp:84 +msgid "Load game" +msgstr "" + +#: ../src/gtk/window.cpp:1341 +msgid "Loaded battery" +msgstr "" + +#: ../src/gtk/main.cpp:50 +msgid "Main VBA-M options" +msgstr "" + +#: tmp/vbam.ui.h:6 +msgid "Most recent" +msgstr "" + +#: tmp/sound.ui.h:9 +msgid "Mute" +msgstr "" + +#: ../src/gtk/windowcallbacks.cpp:508 +msgid "Nintendo GameBoy Advance emulator." +msgstr "" + +#: ../src/gtk/filters.cpp:60 ../src/gtk/filters.cpp:80 +#: tmp/gameboyadvance.ui.h:12 tmp/preferences.ui.h:7 +msgid "None" +msgstr "Inga" + +#: tmp/vbam.ui.h:7 +msgid "Oldest slot" +msgstr "" + +#: ../src/gtk/window.cpp:1266 +msgid "Open" +msgstr "" + +#: ../src/gtk/cheatlist.cpp:70 tmp/cheatlist.ui.h:5 +msgid "Open cheat list" +msgstr "Öppna fusklista" + +#: tmp/vbam.ui.h:8 +msgid "Open rece_nt" +msgstr "" + +#: tmp/display.ui.h:8 +msgid "OpenGL" +msgstr "" + +#: ../src/gtk/main.cpp:55 +msgid "Output version information." +msgstr "" + +#: ../src/gtk/windowcallbacks.cpp:294 +msgid "PNG image" +msgstr "" + +#: tmp/vbam.ui.h:9 +msgid "Pause" +msgstr "" + +#: tmp/preferences.ui.h:8 +msgid "Pause when inactive" +msgstr "" + +#: tmp/preferences.ui.h:9 +msgid "Percentage" +msgstr "" + +#: ../src/gtk/filters.cpp:64 +msgid "Pixelate" +msgstr "" + +#: tmp/preferences.ui.h:10 +msgid "Preferences" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:155 +msgid "Right" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:33 +msgid "Right :" +msgstr "Höger:" + +#: tmp/gameboyadvance.ui.h:13 +msgid "SRAM" +msgstr "" + +#: tmp/vbam.ui.h:10 +msgid "S_ave state" +msgstr "" + +#: tmp/sound.ui.h:10 +msgid "Sample rate : " +msgstr "" + +#: ../src/gtk/cheatlist.cpp:93 tmp/cheatlist.ui.h:6 +msgid "Save cheat list" +msgstr "Spara fusklista" + +#: ../src/gtk/windowcallbacks.cpp:117 +msgid "Save game" +msgstr "" + +#: ../src/gtk/windowcallbacks.cpp:277 +msgid "Save screenshot" +msgstr "" + +#: tmp/gameboyadvance.ui.h:14 +msgid "Save type : " +msgstr "" + +#: ../src/gtk/window.cpp:1358 +msgid "Saved battery" +msgstr "" + +#: ../src/gtk/directoriesconfig.cpp:33 +msgid "Saves :" +msgstr "Spara:" + +#: ../src/gtk/filters.cpp:68 +msgid "Scanlines" +msgstr "" + +#: tmp/vbam.ui.h:11 +msgid "Screen capt_ure..." +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:38 +msgid "Select :" +msgstr "Select:" + +#: tmp/vbam.ui.h:12 +msgid "Slot1" +msgstr "" + +#: tmp/vbam.ui.h:13 +msgid "Slot10" +msgstr "" + +#: tmp/vbam.ui.h:14 +msgid "Slot2" +msgstr "" + +#: tmp/vbam.ui.h:15 +msgid "Slot3" +msgstr "" + +#: tmp/vbam.ui.h:16 +msgid "Slot4" +msgstr "" + +#: tmp/vbam.ui.h:17 +msgid "Slot5" +msgstr "" + +#: tmp/vbam.ui.h:18 +msgid "Slot6" +msgstr "" + +#: tmp/vbam.ui.h:19 +msgid "Slot7" +msgstr "" + +#: tmp/vbam.ui.h:20 +msgid "Slot8" +msgstr "" + +#: tmp/vbam.ui.h:21 +msgid "Slot9" +msgstr "" + +#: ../src/gtk/filters.cpp:81 +msgid "Smart interframe blending" +msgstr "Smart interframe blending" + +#: ../src/gtk/joypadconfig.cpp:40 +msgid "Speed :" +msgstr "Hastighet:" + +#: tmp/preferences.ui.h:11 +msgid "Speed indicator : " +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:39 +msgid "Start :" +msgstr "Start:" + +#: ../src/gtk/filters.cpp:62 +msgid "Super 2xSaI" +msgstr "Super 2xSaI" + +#: ../src/gtk/filters.cpp:63 +msgid "Super Eagle" +msgstr "Super Eagle" + +#: tmp/gameboy.ui.h:12 +msgid "Super Game Boy" +msgstr "" + +#: tmp/gameboy.ui.h:13 +msgid "Super Game Boy 2" +msgstr "" + +#: ../src/gtk/filters.cpp:69 +msgid "TV Mode" +msgstr "TV-läge" + +#: tmp/vbam.ui.h:22 +msgid "To _File ..." +msgstr "" + +#: tmp/cheatlist.ui.h:7 +msgid "Toggle all Cheats" +msgstr "" + +#: ../src/gtk/window.cpp:427 +#, c-format +msgid "Unable to initialize output, falling back to Cairo\n" +msgstr "" + +#: ../src/gtk/window.cpp:1022 +#, c-format +msgid "Unknown file type %s" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:153 +msgid "Up" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:30 +msgid "Up :" +msgstr "Upp:" + +#: tmp/gameboy.ui.h:14 +msgid "Use a Game Boy boot ROM file" +msgstr "" + +#: tmp/gameboyadvance.ui.h:15 +msgid "Use a bios file" +msgstr "" + +#: tmp/vbam.ui.h:23 +msgid "VBA" +msgstr "" + +#: ../src/gtk/main.cpp:41 ../src/gtk/windowcallbacks.cpp:506 +msgid "VBA-M" +msgstr "" + +#: ../src/gtk/window.cpp:1159 +#, c-format +msgid "VBA-M - %d%%" +msgstr "" + +#: ../src/gtk/window.cpp:1164 +#, c-format +msgid "VBA-M - %d%% (%d, %d fps)" +msgstr "" + +#: ../src/gtk/windowcallbacks.cpp:99 ../src/gtk/windowcallbacks.cpp:134 +msgid "VisualBoyAdvance save game" +msgstr "" + +#: ../src/gtk/main.cpp:81 +#, c-format +msgid "VisualBoyAdvance version %s [GTK+]\n" +msgstr "" + +#: tmp/sound.ui.h:11 +msgid "Volume : " +msgstr "" + +#: tmp/vbam.ui.h:24 +msgid "_Disable cheats" +msgstr "" + +#: tmp/vbam.ui.h:25 +msgid "_Display ..." +msgstr "" + +#: tmp/vbam.ui.h:26 +msgid "_Emulation" +msgstr "" + +#: tmp/vbam.ui.h:27 +msgid "_File" +msgstr "" + +#: tmp/vbam.ui.h:28 +msgid "_Game Boy ..." +msgstr "" + +#: tmp/vbam.ui.h:29 +msgid "_Help" +msgstr "" + +#: tmp/vbam.ui.h:30 +msgid "_Joypads ..." +msgstr "" + +#: tmp/vbam.ui.h:31 +msgid "_List cheats ..." +msgstr "" + +#: tmp/vbam.ui.h:32 +msgid "_Options" +msgstr "" + +#: tmp/vbam.ui.h:33 +msgid "_Preferences ..." +msgstr "" + +#: tmp/vbam.ui.h:34 +msgid "_Reset" +msgstr "" + +#: tmp/vbam.ui.h:35 +msgid "_Sound ..." +msgstr "" + +#: ../src/gtk/filters.cpp:70 +msgid "hq2x" +msgstr "hq2x" + +#: ../src/gtk/filters.cpp:71 +msgid "lq2x" +msgstr "lq2x" diff --git a/po/gvbam/zh_CN.po b/po/gvbam/zh_CN.po index 4d4fc42a..2d03c7de 100644 --- a/po/gvbam/zh_CN.po +++ b/po/gvbam/zh_CN.po @@ -1,733 +1,733 @@ -# This file is distributed under the same license as the VBA-M package. -# -# Translators: -# nabarl , 2011. -msgid "" -msgstr "" -"Project-Id-Version: VBA-M\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 20:50+0100\n" -"PO-Revision-Date: 2011-03-22 15:06+0000\n" -"Last-Translator: nabarl \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: ../src/gtk/joypadconfig.cpp:142 -msgid " Axis " -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:135 -msgid " Button " -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:150 -msgid " Hat " -msgstr "" - -#: ../src/gtk/window.cpp:1413 -msgid "%Y/%m/%d %H:%M:%S" -msgstr "%Y/%m/%d %H:%M:%S" - -#: ../src/gtk/screenarea-opengl.cpp:41 -#, c-format -msgid "*** OpenGL : Cannot open display.\n" -msgstr "" - -#: ../src/gtk/window.cpp:1383 ../src/gtk/window.cpp:1428 -msgid "----/--/-- --:--:--" -msgstr "----/--/-- --:--:--" - -#: tmp/sound.ui.h:2 -#, no-c-format -msgid "100 %" -msgstr "100 %" - -#: tmp/sound.ui.h:4 -#, no-c-format -msgid "200 %" -msgstr "200 %" - -#: tmp/sound.ui.h:6 -#, no-c-format -msgid "25 %" -msgstr "25 %" - -#: ../src/gtk/filters.cpp:61 -msgid "2xSaI" -msgstr "2xSaI" - -#: tmp/sound.ui.h:8 -#, no-c-format -msgid "50 %" -msgstr "50 %" - -#: ../src/gtk/joypadconfig.cpp:165 -msgid "" -msgstr "<未定义>" - -#: tmp/preferences.ui.h:1 -msgid "Appearance" -msgstr "外观" - -#: tmp/gameboyadvance.ui.h:1 -msgid "Bios" -msgstr "Bios" - -#: tmp/gameboy.ui.h:1 -msgid "Boot ROM" -msgstr "引导 ROM" - -#: tmp/gameboyadvance.ui.h:2 -msgid "Cartridge" -msgstr "卡带" - -#: tmp/cheatedit.ui.h:1 -msgid "Codes" -msgstr "" - -#: tmp/cheatedit.ui.h:2 -msgid "Description" -msgstr "说明" - -#: tmp/display.ui.h:1 -msgid "Filters" -msgstr "滤镜" - -#: tmp/preferences.ui.h:2 -msgid "Frameskip" -msgstr "跳帧" - -#: tmp/preferences.ui.h:3 -msgid "General" -msgstr "常规" - -#: tmp/display.ui.h:2 -msgid "Output module" -msgstr "输出模块" - -#: tmp/gameboyadvance.ui.h:3 -msgid "Real-Time Clock" -msgstr "实时时钟" - -#: tmp/gameboy.ui.h:2 -msgid "System and peripherals" -msgstr "" - -#: tmp/cheatedit.ui.h:3 -msgid "Type" -msgstr "类型" - -#: tmp/display.ui.h:3 -msgid "Zoom" -msgstr "缩放" - -#: tmp/cheatlist.ui.h:1 -msgid "Add new cheat" -msgstr "添加金手指" - -#: ../src/gtk/filters.cpp:65 -msgid "AdvanceMAME Scale2x" -msgstr "AdvanceMAME Scale2x" - -#: ../src/gtk/window.cpp:1301 -msgid "All Gameboy Advance files" -msgstr "" - -#: ../src/gtk/gameboyadvanceconfig.cpp:75 -msgid "All files" -msgstr "所有文件" - -#: tmp/vbam.ui.h:1 -msgid "Auto load most recent" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:42 -msgid "Autofire A :" -msgstr "A键连射 :" - -#: ../src/gtk/joypadconfig.cpp:43 -msgid "Autofire B :" -msgstr "B键连射 :" - -#: tmp/gameboy.ui.h:3 tmp/gameboyadvance.ui.h:4 -msgid "Automatic" -msgstr "自动" - -#: ../src/gtk/directoriesconfig.cpp:32 -msgid "Batteries :" -msgstr "" - -#: ../src/gtk/filters.cpp:66 -msgid "Bilinear" -msgstr "双线性" - -#: ../src/gtk/filters.cpp:67 -msgid "Bilinear Plus" -msgstr "双线性(加强)" - -#: tmp/gameboyadvance.ui.h:5 -msgid "Bios file : " -msgstr "Bios 文件 : " - -#: tmp/gameboy.ui.h:4 -msgid "Boot ROM file : " -msgstr "引导 ROM 文件 : " - -#: ../src/gtk/joypadconfig.cpp:34 -msgid "Button A :" -msgstr "A键:" - -#: ../src/gtk/joypadconfig.cpp:35 -msgid "Button B :" -msgstr "B键:" - -#: ../src/gtk/joypadconfig.cpp:36 -msgid "Button L :" -msgstr "L键:" - -#: ../src/gtk/joypadconfig.cpp:37 -msgid "Button R :" -msgstr "R键:" - -#: tmp/display.ui.h:4 -msgid "Cairo" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:41 -msgid "Capture :" -msgstr "截屏 :" - -#: ../src/gtk/directoriesconfig.cpp:34 -msgid "Captures :" -msgstr "" - -#: tmp/cheatlist.ui.h:2 -msgid "Cheat list" -msgstr "金手指列表" - -#: ../src/gtk/cheatedit.cpp:93 -msgid "CodeBreaker Advance" -msgstr "" - -#: tmp/vbam.ui.h:2 -msgid "D_irectories ..." -msgstr "目录...(_D)" - -#: ../src/gtk/joypadconfig.cpp:50 -msgid "Default joypad" -msgstr "默认手柄" - -#: tmp/display.ui.h:5 -msgid "Default scale : " -msgstr "" - -#: tmp/cheatlist.ui.h:3 -msgid "Delete all cheats" -msgstr "删除所有金手指" - -#: tmp/cheatlist.ui.h:4 -msgid "Delete selected cheat" -msgstr "删除所选金手指" - -#: tmp/preferences.ui.h:4 -msgid "Detailed" -msgstr "详细的" - -#: ../src/gtk/directoriesconfig.cpp:38 -msgid "Directories config" -msgstr "" - -#: tmp/gameboy.ui.h:5 -msgid "Display Super Game Boy borders" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:154 -msgid "Down" -msgstr "下" - -#: ../src/gtk/joypadconfig.cpp:31 -msgid "Down :" -msgstr "下:" - -#: tmp/gameboyadvance.ui.h:6 -msgid "EEPROM" -msgstr "EEPROM" - -#: tmp/gameboyadvance.ui.h:7 -msgid "EEPROM + Sensor" -msgstr "EEPROM + 传感器" - -#: tmp/cheatedit.ui.h:4 -msgid "Edit cheat" -msgstr "编辑金手指" - -#: tmp/gameboy.ui.h:6 -msgid "Emulate a Game Boy Printer" -msgstr "" - -#: tmp/gameboy.ui.h:7 -msgid "Emulated system : " -msgstr "" - -#: tmp/preferences.ui.h:5 -msgid "Enable automatic frame skipping" -msgstr "" - -#: tmp/gameboyadvance.ui.h:8 -msgid "Enable real-time clock" -msgstr "启用实时时钟" - -#: ../src/gtk/window.cpp:468 -#, c-format -msgid "Failed to init SDL: %s" -msgstr "" - -#: ../src/gtk/windowcallbacks.cpp:150 ../src/gtk/windowcallbacks.cpp:312 -msgid "File already exists. Overwrite it?" -msgstr "文件已存在,覆盖可以吗?" - -#: tmp/gameboyadvance.ui.h:9 -msgid "Flash" -msgstr "闪存" - -#: tmp/gameboyadvance.ui.h:10 -msgid "Flash size : " -msgstr "" - -#: tmp/preferences.ui.h:6 -msgid "Frameskip level : " -msgstr "跳帧等级 : " - -#: tmp/vbam.ui.h:3 -msgid "From _File ..." -msgstr "" - -#: tmp/display.ui.h:6 -msgid "Fullscreen filter : " -msgstr "全屏滤镜 : " - -#: ../src/gtk/directoriesconfig.cpp:31 -msgid "GB roms :" -msgstr "" - -#: ../src/gtk/directoriesconfig.cpp:30 -msgid "GBA roms :" -msgstr "" - -#: tmp/gameboy.ui.h:8 -msgid "Game Boy" -msgstr "Game Boy" - -#: tmp/gameboy.ui.h:9 -msgid "Game Boy Advance" -msgstr "Game Boy Advance" - -#: tmp/gameboyadvance.ui.h:11 -msgid "Game Boy Advance settings" -msgstr "Game Boy Advance 设置" - -#: tmp/gameboy.ui.h:10 -msgid "Game Boy Color" -msgstr "Game Boy Color" - -#: tmp/vbam.ui.h:4 -msgid "Game Boy _Advance ..." -msgstr "Game Boy Advance ...(_A)" - -#: tmp/gameboy.ui.h:11 -msgid "GameBoy settings" -msgstr "GameBoy 设置" - -#: ../src/gtk/cheatedit.cpp:108 -msgid "GameGenie" -msgstr "GameGenie" - -#: ../src/gtk/cheatedit.cpp:103 -msgid "GameShark" -msgstr "GameShark" - -#: ../src/gtk/gameboyadvanceconfig.cpp:79 -msgid "Gameboy Advance BIOS" -msgstr "Gameboy Advance BIOS" - -#: ../src/gtk/window.cpp:1308 -msgid "Gameboy Advance files" -msgstr "" - -#: ../src/gtk/window.cpp:1315 -msgid "Gameboy files" -msgstr "" - -#: ../src/gtk/cheatedit.cpp:88 -msgid "Gameshark Advance" -msgstr "" - -#: ../src/gtk/cheatedit.cpp:83 -msgid "Generic Code" -msgstr "" - -#: tmp/display.ui.h:7 -msgid "Interframe blending : " -msgstr "" - -#: ../src/gtk/filters.cpp:82 -msgid "Interframe motion blur" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:129 -msgid "Joy " -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:49 -msgid "Joypad :" -msgstr "手柄 :" - -#: ../src/gtk/joypadconfig.cpp:47 -msgid "Joypad config" -msgstr "手柄设置" - -#: ../src/gtk/joypadconfig.cpp:156 -msgid "Left" -msgstr "左" - -#: ../src/gtk/joypadconfig.cpp:32 -msgid "Left :" -msgstr "左:" - -#: tmp/vbam.ui.h:5 -msgid "Loa_d state" -msgstr "" - -#: ../src/gtk/windowcallbacks.cpp:84 -msgid "Load game" -msgstr "载入游戏" - -#: ../src/gtk/window.cpp:1341 -msgid "Loaded battery" -msgstr "" - -#: ../src/gtk/main.cpp:50 -msgid "Main VBA-M options" -msgstr "" - -#: tmp/vbam.ui.h:6 -msgid "Most recent" -msgstr "" - -#: tmp/sound.ui.h:9 -msgid "Mute" -msgstr "静音" - -#: ../src/gtk/windowcallbacks.cpp:508 -msgid "Nintendo GameBoy Advance emulator." -msgstr "任天堂 GameBoy Advance 模拟器。" - -#: ../src/gtk/filters.cpp:60 ../src/gtk/filters.cpp:80 -#: tmp/gameboyadvance.ui.h:12 tmp/preferences.ui.h:7 -msgid "None" -msgstr "" - -#: tmp/vbam.ui.h:7 -msgid "Oldest slot" -msgstr "" - -#: ../src/gtk/window.cpp:1266 -msgid "Open" -msgstr "" - -#: ../src/gtk/cheatlist.cpp:70 tmp/cheatlist.ui.h:5 -msgid "Open cheat list" -msgstr "" - -#: tmp/vbam.ui.h:8 -msgid "Open rece_nt" -msgstr "" - -#: tmp/display.ui.h:8 -msgid "OpenGL" -msgstr "OpenGL" - -#: ../src/gtk/main.cpp:55 -msgid "Output version information." -msgstr "输出版本信息。" - -#: ../src/gtk/windowcallbacks.cpp:294 -msgid "PNG image" -msgstr "PNG 图像" - -#: tmp/vbam.ui.h:9 -msgid "Pause" -msgstr "暂停" - -#: tmp/preferences.ui.h:8 -msgid "Pause when inactive" -msgstr "非激活状态时暂停" - -#: tmp/preferences.ui.h:9 -msgid "Percentage" -msgstr "百分比" - -#: ../src/gtk/filters.cpp:64 -msgid "Pixelate" -msgstr "像素化" - -#: tmp/preferences.ui.h:10 -msgid "Preferences" -msgstr "配置" - -#: ../src/gtk/joypadconfig.cpp:155 -msgid "Right" -msgstr "右" - -#: ../src/gtk/joypadconfig.cpp:33 -msgid "Right :" -msgstr "右:" - -#: tmp/gameboyadvance.ui.h:13 -msgid "SRAM" -msgstr "SRAM" - -#: tmp/vbam.ui.h:10 -msgid "S_ave state" -msgstr "" - -#: tmp/sound.ui.h:10 -msgid "Sample rate : " -msgstr "采样率 : " - -#: ../src/gtk/cheatlist.cpp:93 tmp/cheatlist.ui.h:6 -msgid "Save cheat list" -msgstr "" - -#: ../src/gtk/windowcallbacks.cpp:117 -msgid "Save game" -msgstr "保存游戏" - -#: ../src/gtk/windowcallbacks.cpp:277 -msgid "Save screenshot" -msgstr "保存截屏" - -#: tmp/gameboyadvance.ui.h:14 -msgid "Save type : " -msgstr "保存类型 : " - -#: ../src/gtk/window.cpp:1358 -msgid "Saved battery" -msgstr "" - -#: ../src/gtk/directoriesconfig.cpp:33 -msgid "Saves :" -msgstr "" - -#: ../src/gtk/filters.cpp:68 -msgid "Scanlines" -msgstr "扫描线" - -#: tmp/vbam.ui.h:11 -msgid "Screen capt_ure..." -msgstr "屏幕捕获...(_U)" - -#: ../src/gtk/joypadconfig.cpp:38 -msgid "Select :" -msgstr "Select :" - -#: tmp/vbam.ui.h:12 -msgid "Slot1" -msgstr "记忆槽 1" - -#: tmp/vbam.ui.h:13 -msgid "Slot10" -msgstr "记忆槽 10" - -#: tmp/vbam.ui.h:14 -msgid "Slot2" -msgstr "记忆槽 2" - -#: tmp/vbam.ui.h:15 -msgid "Slot3" -msgstr "记忆槽 3" - -#: tmp/vbam.ui.h:16 -msgid "Slot4" -msgstr "记忆槽 4" - -#: tmp/vbam.ui.h:17 -msgid "Slot5" -msgstr "记忆槽 5" - -#: tmp/vbam.ui.h:18 -msgid "Slot6" -msgstr "记忆槽 6" - -#: tmp/vbam.ui.h:19 -msgid "Slot7" -msgstr "记忆槽 7" - -#: tmp/vbam.ui.h:20 -msgid "Slot8" -msgstr "记忆槽 8" - -#: tmp/vbam.ui.h:21 -msgid "Slot9" -msgstr "记忆槽 9" - -#: ../src/gtk/filters.cpp:81 -msgid "Smart interframe blending" -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:40 -msgid "Speed :" -msgstr "速度 :" - -#: tmp/preferences.ui.h:11 -msgid "Speed indicator : " -msgstr "" - -#: ../src/gtk/joypadconfig.cpp:39 -msgid "Start :" -msgstr "Start :" - -#: ../src/gtk/filters.cpp:62 -msgid "Super 2xSaI" -msgstr "Super 2xSaI" - -#: ../src/gtk/filters.cpp:63 -msgid "Super Eagle" -msgstr "Super Eagle" - -#: tmp/gameboy.ui.h:12 -msgid "Super Game Boy" -msgstr "Super Game Boy" - -#: tmp/gameboy.ui.h:13 -msgid "Super Game Boy 2" -msgstr "Super Game Boy 2" - -#: ../src/gtk/filters.cpp:69 -msgid "TV Mode" -msgstr "TV模式" - -#: tmp/vbam.ui.h:22 -msgid "To _File ..." -msgstr "" - -#: tmp/cheatlist.ui.h:7 -msgid "Toggle all Cheats" -msgstr "" - -#: ../src/gtk/window.cpp:427 -#, c-format -msgid "Unable to initialize output, falling back to Cairo\n" -msgstr "" - -#: ../src/gtk/window.cpp:1022 -#, c-format -msgid "Unknown file type %s" -msgstr "未知文件类型 %s" - -#: ../src/gtk/joypadconfig.cpp:153 -msgid "Up" -msgstr "上" - -#: ../src/gtk/joypadconfig.cpp:30 -msgid "Up :" -msgstr "上:" - -#: tmp/gameboy.ui.h:14 -msgid "Use a Game Boy boot ROM file" -msgstr "使用 Game Boy 引导 ROM 文件" - -#: tmp/gameboyadvance.ui.h:15 -msgid "Use a bios file" -msgstr "使用 bios 文件" - -#: tmp/vbam.ui.h:23 -msgid "VBA" -msgstr "VBA" - -#: ../src/gtk/main.cpp:41 ../src/gtk/windowcallbacks.cpp:506 -msgid "VBA-M" -msgstr "VBA-M" - -#: ../src/gtk/window.cpp:1159 -#, c-format -msgid "VBA-M - %d%%" -msgstr "VBA-M - %d%%" - -#: ../src/gtk/window.cpp:1164 -#, c-format -msgid "VBA-M - %d%% (%d, %d fps)" -msgstr "VBA-M - %d%% (%d, %d fps)" - -#: ../src/gtk/windowcallbacks.cpp:99 ../src/gtk/windowcallbacks.cpp:134 -msgid "VisualBoyAdvance save game" -msgstr "VisualBoyAdvance 保存游戏" - -#: ../src/gtk/main.cpp:81 -#, c-format -msgid "VisualBoyAdvance version %s [GTK+]\n" -msgstr "" - -#: tmp/sound.ui.h:11 -msgid "Volume : " -msgstr "音量 : " - -#: tmp/vbam.ui.h:24 -msgid "_Disable cheats" -msgstr "" - -#: tmp/vbam.ui.h:25 -msgid "_Display ..." -msgstr "显示...(_D)" - -#: tmp/vbam.ui.h:26 -msgid "_Emulation" -msgstr "模拟(_E)" - -#: tmp/vbam.ui.h:27 -msgid "_File" -msgstr "文件(_F)" - -#: tmp/vbam.ui.h:28 -msgid "_Game Boy ..." -msgstr "Game Boy ...(_G)" - -#: tmp/vbam.ui.h:29 -msgid "_Help" -msgstr "帮助(_H)" - -#: tmp/vbam.ui.h:30 -msgid "_Joypads ..." -msgstr "手柄...(_J)" - -#: tmp/vbam.ui.h:31 -msgid "_List cheats ..." -msgstr "" - -#: tmp/vbam.ui.h:32 -msgid "_Options" -msgstr "选项...(_O)" - -#: tmp/vbam.ui.h:33 -msgid "_Preferences ..." -msgstr "配置...(_P)" - -#: tmp/vbam.ui.h:34 -msgid "_Reset" -msgstr "复位(_R)" - -#: tmp/vbam.ui.h:35 -msgid "_Sound ..." -msgstr "声音...(_S)" - -#: ../src/gtk/filters.cpp:70 -msgid "hq2x" -msgstr "hq2x" - -#: ../src/gtk/filters.cpp:71 -msgid "lq2x" -msgstr "lq2x" +# This file is distributed under the same license as the VBA-M package. +# +# Translators: +# nabarl , 2011. +msgid "" +msgstr "" +"Project-Id-Version: VBA-M\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 20:50+0100\n" +"PO-Revision-Date: 2011-03-22 15:06+0000\n" +"Last-Translator: nabarl \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0\n" + +#: ../src/gtk/joypadconfig.cpp:142 +msgid " Axis " +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:135 +msgid " Button " +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:150 +msgid " Hat " +msgstr "" + +#: ../src/gtk/window.cpp:1413 +msgid "%Y/%m/%d %H:%M:%S" +msgstr "%Y/%m/%d %H:%M:%S" + +#: ../src/gtk/screenarea-opengl.cpp:41 +#, c-format +msgid "*** OpenGL : Cannot open display.\n" +msgstr "" + +#: ../src/gtk/window.cpp:1383 ../src/gtk/window.cpp:1428 +msgid "----/--/-- --:--:--" +msgstr "----/--/-- --:--:--" + +#: tmp/sound.ui.h:2 +#, no-c-format +msgid "100 %" +msgstr "100 %" + +#: tmp/sound.ui.h:4 +#, no-c-format +msgid "200 %" +msgstr "200 %" + +#: tmp/sound.ui.h:6 +#, no-c-format +msgid "25 %" +msgstr "25 %" + +#: ../src/gtk/filters.cpp:61 +msgid "2xSaI" +msgstr "2xSaI" + +#: tmp/sound.ui.h:8 +#, no-c-format +msgid "50 %" +msgstr "50 %" + +#: ../src/gtk/joypadconfig.cpp:165 +msgid "" +msgstr "<未定义>" + +#: tmp/preferences.ui.h:1 +msgid "Appearance" +msgstr "外观" + +#: tmp/gameboyadvance.ui.h:1 +msgid "Bios" +msgstr "Bios" + +#: tmp/gameboy.ui.h:1 +msgid "Boot ROM" +msgstr "引导 ROM" + +#: tmp/gameboyadvance.ui.h:2 +msgid "Cartridge" +msgstr "卡带" + +#: tmp/cheatedit.ui.h:1 +msgid "Codes" +msgstr "" + +#: tmp/cheatedit.ui.h:2 +msgid "Description" +msgstr "说明" + +#: tmp/display.ui.h:1 +msgid "Filters" +msgstr "滤镜" + +#: tmp/preferences.ui.h:2 +msgid "Frameskip" +msgstr "跳帧" + +#: tmp/preferences.ui.h:3 +msgid "General" +msgstr "常规" + +#: tmp/display.ui.h:2 +msgid "Output module" +msgstr "输出模块" + +#: tmp/gameboyadvance.ui.h:3 +msgid "Real-Time Clock" +msgstr "实时时钟" + +#: tmp/gameboy.ui.h:2 +msgid "System and peripherals" +msgstr "" + +#: tmp/cheatedit.ui.h:3 +msgid "Type" +msgstr "类型" + +#: tmp/display.ui.h:3 +msgid "Zoom" +msgstr "缩放" + +#: tmp/cheatlist.ui.h:1 +msgid "Add new cheat" +msgstr "添加金手指" + +#: ../src/gtk/filters.cpp:65 +msgid "AdvanceMAME Scale2x" +msgstr "AdvanceMAME Scale2x" + +#: ../src/gtk/window.cpp:1301 +msgid "All Gameboy Advance files" +msgstr "" + +#: ../src/gtk/gameboyadvanceconfig.cpp:75 +msgid "All files" +msgstr "所有文件" + +#: tmp/vbam.ui.h:1 +msgid "Auto load most recent" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:42 +msgid "Autofire A :" +msgstr "A键连射 :" + +#: ../src/gtk/joypadconfig.cpp:43 +msgid "Autofire B :" +msgstr "B键连射 :" + +#: tmp/gameboy.ui.h:3 tmp/gameboyadvance.ui.h:4 +msgid "Automatic" +msgstr "自动" + +#: ../src/gtk/directoriesconfig.cpp:32 +msgid "Batteries :" +msgstr "" + +#: ../src/gtk/filters.cpp:66 +msgid "Bilinear" +msgstr "双线性" + +#: ../src/gtk/filters.cpp:67 +msgid "Bilinear Plus" +msgstr "双线性(加强)" + +#: tmp/gameboyadvance.ui.h:5 +msgid "Bios file : " +msgstr "Bios 文件 : " + +#: tmp/gameboy.ui.h:4 +msgid "Boot ROM file : " +msgstr "引导 ROM 文件 : " + +#: ../src/gtk/joypadconfig.cpp:34 +msgid "Button A :" +msgstr "A键:" + +#: ../src/gtk/joypadconfig.cpp:35 +msgid "Button B :" +msgstr "B键:" + +#: ../src/gtk/joypadconfig.cpp:36 +msgid "Button L :" +msgstr "L键:" + +#: ../src/gtk/joypadconfig.cpp:37 +msgid "Button R :" +msgstr "R键:" + +#: tmp/display.ui.h:4 +msgid "Cairo" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:41 +msgid "Capture :" +msgstr "截屏 :" + +#: ../src/gtk/directoriesconfig.cpp:34 +msgid "Captures :" +msgstr "" + +#: tmp/cheatlist.ui.h:2 +msgid "Cheat list" +msgstr "金手指列表" + +#: ../src/gtk/cheatedit.cpp:93 +msgid "CodeBreaker Advance" +msgstr "" + +#: tmp/vbam.ui.h:2 +msgid "D_irectories ..." +msgstr "目录...(_D)" + +#: ../src/gtk/joypadconfig.cpp:50 +msgid "Default joypad" +msgstr "默认手柄" + +#: tmp/display.ui.h:5 +msgid "Default scale : " +msgstr "" + +#: tmp/cheatlist.ui.h:3 +msgid "Delete all cheats" +msgstr "删除所有金手指" + +#: tmp/cheatlist.ui.h:4 +msgid "Delete selected cheat" +msgstr "删除所选金手指" + +#: tmp/preferences.ui.h:4 +msgid "Detailed" +msgstr "详细的" + +#: ../src/gtk/directoriesconfig.cpp:38 +msgid "Directories config" +msgstr "" + +#: tmp/gameboy.ui.h:5 +msgid "Display Super Game Boy borders" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:154 +msgid "Down" +msgstr "下" + +#: ../src/gtk/joypadconfig.cpp:31 +msgid "Down :" +msgstr "下:" + +#: tmp/gameboyadvance.ui.h:6 +msgid "EEPROM" +msgstr "EEPROM" + +#: tmp/gameboyadvance.ui.h:7 +msgid "EEPROM + Sensor" +msgstr "EEPROM + 传感器" + +#: tmp/cheatedit.ui.h:4 +msgid "Edit cheat" +msgstr "编辑金手指" + +#: tmp/gameboy.ui.h:6 +msgid "Emulate a Game Boy Printer" +msgstr "" + +#: tmp/gameboy.ui.h:7 +msgid "Emulated system : " +msgstr "" + +#: tmp/preferences.ui.h:5 +msgid "Enable automatic frame skipping" +msgstr "" + +#: tmp/gameboyadvance.ui.h:8 +msgid "Enable real-time clock" +msgstr "启用实时时钟" + +#: ../src/gtk/window.cpp:468 +#, c-format +msgid "Failed to init SDL: %s" +msgstr "" + +#: ../src/gtk/windowcallbacks.cpp:150 ../src/gtk/windowcallbacks.cpp:312 +msgid "File already exists. Overwrite it?" +msgstr "文件已存在,覆盖可以吗?" + +#: tmp/gameboyadvance.ui.h:9 +msgid "Flash" +msgstr "闪存" + +#: tmp/gameboyadvance.ui.h:10 +msgid "Flash size : " +msgstr "" + +#: tmp/preferences.ui.h:6 +msgid "Frameskip level : " +msgstr "跳帧等级 : " + +#: tmp/vbam.ui.h:3 +msgid "From _File ..." +msgstr "" + +#: tmp/display.ui.h:6 +msgid "Fullscreen filter : " +msgstr "全屏滤镜 : " + +#: ../src/gtk/directoriesconfig.cpp:31 +msgid "GB roms :" +msgstr "" + +#: ../src/gtk/directoriesconfig.cpp:30 +msgid "GBA roms :" +msgstr "" + +#: tmp/gameboy.ui.h:8 +msgid "Game Boy" +msgstr "Game Boy" + +#: tmp/gameboy.ui.h:9 +msgid "Game Boy Advance" +msgstr "Game Boy Advance" + +#: tmp/gameboyadvance.ui.h:11 +msgid "Game Boy Advance settings" +msgstr "Game Boy Advance 设置" + +#: tmp/gameboy.ui.h:10 +msgid "Game Boy Color" +msgstr "Game Boy Color" + +#: tmp/vbam.ui.h:4 +msgid "Game Boy _Advance ..." +msgstr "Game Boy Advance ...(_A)" + +#: tmp/gameboy.ui.h:11 +msgid "GameBoy settings" +msgstr "GameBoy 设置" + +#: ../src/gtk/cheatedit.cpp:108 +msgid "GameGenie" +msgstr "GameGenie" + +#: ../src/gtk/cheatedit.cpp:103 +msgid "GameShark" +msgstr "GameShark" + +#: ../src/gtk/gameboyadvanceconfig.cpp:79 +msgid "Gameboy Advance BIOS" +msgstr "Gameboy Advance BIOS" + +#: ../src/gtk/window.cpp:1308 +msgid "Gameboy Advance files" +msgstr "" + +#: ../src/gtk/window.cpp:1315 +msgid "Gameboy files" +msgstr "" + +#: ../src/gtk/cheatedit.cpp:88 +msgid "Gameshark Advance" +msgstr "" + +#: ../src/gtk/cheatedit.cpp:83 +msgid "Generic Code" +msgstr "" + +#: tmp/display.ui.h:7 +msgid "Interframe blending : " +msgstr "" + +#: ../src/gtk/filters.cpp:82 +msgid "Interframe motion blur" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:129 +msgid "Joy " +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:49 +msgid "Joypad :" +msgstr "手柄 :" + +#: ../src/gtk/joypadconfig.cpp:47 +msgid "Joypad config" +msgstr "手柄设置" + +#: ../src/gtk/joypadconfig.cpp:156 +msgid "Left" +msgstr "左" + +#: ../src/gtk/joypadconfig.cpp:32 +msgid "Left :" +msgstr "左:" + +#: tmp/vbam.ui.h:5 +msgid "Loa_d state" +msgstr "" + +#: ../src/gtk/windowcallbacks.cpp:84 +msgid "Load game" +msgstr "载入游戏" + +#: ../src/gtk/window.cpp:1341 +msgid "Loaded battery" +msgstr "" + +#: ../src/gtk/main.cpp:50 +msgid "Main VBA-M options" +msgstr "" + +#: tmp/vbam.ui.h:6 +msgid "Most recent" +msgstr "" + +#: tmp/sound.ui.h:9 +msgid "Mute" +msgstr "静音" + +#: ../src/gtk/windowcallbacks.cpp:508 +msgid "Nintendo GameBoy Advance emulator." +msgstr "任天堂 GameBoy Advance 模拟器。" + +#: ../src/gtk/filters.cpp:60 ../src/gtk/filters.cpp:80 +#: tmp/gameboyadvance.ui.h:12 tmp/preferences.ui.h:7 +msgid "None" +msgstr "" + +#: tmp/vbam.ui.h:7 +msgid "Oldest slot" +msgstr "" + +#: ../src/gtk/window.cpp:1266 +msgid "Open" +msgstr "" + +#: ../src/gtk/cheatlist.cpp:70 tmp/cheatlist.ui.h:5 +msgid "Open cheat list" +msgstr "" + +#: tmp/vbam.ui.h:8 +msgid "Open rece_nt" +msgstr "" + +#: tmp/display.ui.h:8 +msgid "OpenGL" +msgstr "OpenGL" + +#: ../src/gtk/main.cpp:55 +msgid "Output version information." +msgstr "输出版本信息。" + +#: ../src/gtk/windowcallbacks.cpp:294 +msgid "PNG image" +msgstr "PNG 图像" + +#: tmp/vbam.ui.h:9 +msgid "Pause" +msgstr "暂停" + +#: tmp/preferences.ui.h:8 +msgid "Pause when inactive" +msgstr "非激活状态时暂停" + +#: tmp/preferences.ui.h:9 +msgid "Percentage" +msgstr "百分比" + +#: ../src/gtk/filters.cpp:64 +msgid "Pixelate" +msgstr "像素化" + +#: tmp/preferences.ui.h:10 +msgid "Preferences" +msgstr "配置" + +#: ../src/gtk/joypadconfig.cpp:155 +msgid "Right" +msgstr "右" + +#: ../src/gtk/joypadconfig.cpp:33 +msgid "Right :" +msgstr "右:" + +#: tmp/gameboyadvance.ui.h:13 +msgid "SRAM" +msgstr "SRAM" + +#: tmp/vbam.ui.h:10 +msgid "S_ave state" +msgstr "" + +#: tmp/sound.ui.h:10 +msgid "Sample rate : " +msgstr "采样率 : " + +#: ../src/gtk/cheatlist.cpp:93 tmp/cheatlist.ui.h:6 +msgid "Save cheat list" +msgstr "" + +#: ../src/gtk/windowcallbacks.cpp:117 +msgid "Save game" +msgstr "保存游戏" + +#: ../src/gtk/windowcallbacks.cpp:277 +msgid "Save screenshot" +msgstr "保存截屏" + +#: tmp/gameboyadvance.ui.h:14 +msgid "Save type : " +msgstr "保存类型 : " + +#: ../src/gtk/window.cpp:1358 +msgid "Saved battery" +msgstr "" + +#: ../src/gtk/directoriesconfig.cpp:33 +msgid "Saves :" +msgstr "" + +#: ../src/gtk/filters.cpp:68 +msgid "Scanlines" +msgstr "扫描线" + +#: tmp/vbam.ui.h:11 +msgid "Screen capt_ure..." +msgstr "屏幕捕获...(_U)" + +#: ../src/gtk/joypadconfig.cpp:38 +msgid "Select :" +msgstr "Select :" + +#: tmp/vbam.ui.h:12 +msgid "Slot1" +msgstr "记忆槽 1" + +#: tmp/vbam.ui.h:13 +msgid "Slot10" +msgstr "记忆槽 10" + +#: tmp/vbam.ui.h:14 +msgid "Slot2" +msgstr "记忆槽 2" + +#: tmp/vbam.ui.h:15 +msgid "Slot3" +msgstr "记忆槽 3" + +#: tmp/vbam.ui.h:16 +msgid "Slot4" +msgstr "记忆槽 4" + +#: tmp/vbam.ui.h:17 +msgid "Slot5" +msgstr "记忆槽 5" + +#: tmp/vbam.ui.h:18 +msgid "Slot6" +msgstr "记忆槽 6" + +#: tmp/vbam.ui.h:19 +msgid "Slot7" +msgstr "记忆槽 7" + +#: tmp/vbam.ui.h:20 +msgid "Slot8" +msgstr "记忆槽 8" + +#: tmp/vbam.ui.h:21 +msgid "Slot9" +msgstr "记忆槽 9" + +#: ../src/gtk/filters.cpp:81 +msgid "Smart interframe blending" +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:40 +msgid "Speed :" +msgstr "速度 :" + +#: tmp/preferences.ui.h:11 +msgid "Speed indicator : " +msgstr "" + +#: ../src/gtk/joypadconfig.cpp:39 +msgid "Start :" +msgstr "Start :" + +#: ../src/gtk/filters.cpp:62 +msgid "Super 2xSaI" +msgstr "Super 2xSaI" + +#: ../src/gtk/filters.cpp:63 +msgid "Super Eagle" +msgstr "Super Eagle" + +#: tmp/gameboy.ui.h:12 +msgid "Super Game Boy" +msgstr "Super Game Boy" + +#: tmp/gameboy.ui.h:13 +msgid "Super Game Boy 2" +msgstr "Super Game Boy 2" + +#: ../src/gtk/filters.cpp:69 +msgid "TV Mode" +msgstr "TV模式" + +#: tmp/vbam.ui.h:22 +msgid "To _File ..." +msgstr "" + +#: tmp/cheatlist.ui.h:7 +msgid "Toggle all Cheats" +msgstr "" + +#: ../src/gtk/window.cpp:427 +#, c-format +msgid "Unable to initialize output, falling back to Cairo\n" +msgstr "" + +#: ../src/gtk/window.cpp:1022 +#, c-format +msgid "Unknown file type %s" +msgstr "未知文件类型 %s" + +#: ../src/gtk/joypadconfig.cpp:153 +msgid "Up" +msgstr "上" + +#: ../src/gtk/joypadconfig.cpp:30 +msgid "Up :" +msgstr "上:" + +#: tmp/gameboy.ui.h:14 +msgid "Use a Game Boy boot ROM file" +msgstr "使用 Game Boy 引导 ROM 文件" + +#: tmp/gameboyadvance.ui.h:15 +msgid "Use a bios file" +msgstr "使用 bios 文件" + +#: tmp/vbam.ui.h:23 +msgid "VBA" +msgstr "VBA" + +#: ../src/gtk/main.cpp:41 ../src/gtk/windowcallbacks.cpp:506 +msgid "VBA-M" +msgstr "VBA-M" + +#: ../src/gtk/window.cpp:1159 +#, c-format +msgid "VBA-M - %d%%" +msgstr "VBA-M - %d%%" + +#: ../src/gtk/window.cpp:1164 +#, c-format +msgid "VBA-M - %d%% (%d, %d fps)" +msgstr "VBA-M - %d%% (%d, %d fps)" + +#: ../src/gtk/windowcallbacks.cpp:99 ../src/gtk/windowcallbacks.cpp:134 +msgid "VisualBoyAdvance save game" +msgstr "VisualBoyAdvance 保存游戏" + +#: ../src/gtk/main.cpp:81 +#, c-format +msgid "VisualBoyAdvance version %s [GTK+]\n" +msgstr "" + +#: tmp/sound.ui.h:11 +msgid "Volume : " +msgstr "音量 : " + +#: tmp/vbam.ui.h:24 +msgid "_Disable cheats" +msgstr "" + +#: tmp/vbam.ui.h:25 +msgid "_Display ..." +msgstr "显示...(_D)" + +#: tmp/vbam.ui.h:26 +msgid "_Emulation" +msgstr "模拟(_E)" + +#: tmp/vbam.ui.h:27 +msgid "_File" +msgstr "文件(_F)" + +#: tmp/vbam.ui.h:28 +msgid "_Game Boy ..." +msgstr "Game Boy ...(_G)" + +#: tmp/vbam.ui.h:29 +msgid "_Help" +msgstr "帮助(_H)" + +#: tmp/vbam.ui.h:30 +msgid "_Joypads ..." +msgstr "手柄...(_J)" + +#: tmp/vbam.ui.h:31 +msgid "_List cheats ..." +msgstr "" + +#: tmp/vbam.ui.h:32 +msgid "_Options" +msgstr "选项...(_O)" + +#: tmp/vbam.ui.h:33 +msgid "_Preferences ..." +msgstr "配置...(_P)" + +#: tmp/vbam.ui.h:34 +msgid "_Reset" +msgstr "复位(_R)" + +#: tmp/vbam.ui.h:35 +msgid "_Sound ..." +msgstr "声音...(_S)" + +#: ../src/gtk/filters.cpp:70 +msgid "hq2x" +msgstr "hq2x" + +#: ../src/gtk/filters.cpp:71 +msgid "lq2x" +msgstr "lq2x" diff --git a/po/update_pot.sh b/po/update_pot.sh index 5ed32438..d4e9c5f0 100755 --- a/po/update_pot.sh +++ b/po/update_pot.sh @@ -1,22 +1,22 @@ -#!/bin/sh - -# Generate translation template file for the GTK+ port -intltool-extract --local --type=gettext/glade ../src/gtk/ui/cheatedit.ui -intltool-extract --local --type=gettext/glade ../src/gtk/ui/cheatlist.ui -intltool-extract --local --type=gettext/glade ../src/gtk/ui/display.ui -intltool-extract --local --type=gettext/glade ../src/gtk/ui/gameboyadvance.ui -intltool-extract --local --type=gettext/glade ../src/gtk/ui/gameboy.ui -intltool-extract --local --type=gettext/glade ../src/gtk/ui/preferences.ui -intltool-extract --local --type=gettext/glade ../src/gtk/ui/sound.ui -intltool-extract --local --type=gettext/glade ../src/gtk/ui/vbam.ui - -xgettext -k_ -kN_ -o gvbam/gvbam.pot ../src/gtk/*.cpp tmp/*.h - -rm -r tmp/ - -# Generate translation template file for the wxWidgets port -wxrc -g ../src/wx/wxvbam.xrc -o wx-xrc-strings.h - -xgettext -k_ -kN_ -o wxvbam/wxvbam.pot ../src/wx/*.cpp ../src/wx/*.h ../src/wx/widgets/*.cpp wx-xrc-strings.h - -rm -r wx-xrc-strings.h +#!/bin/sh + +# Generate translation template file for the GTK+ port +intltool-extract --local --type=gettext/glade ../src/gtk/ui/cheatedit.ui +intltool-extract --local --type=gettext/glade ../src/gtk/ui/cheatlist.ui +intltool-extract --local --type=gettext/glade ../src/gtk/ui/display.ui +intltool-extract --local --type=gettext/glade ../src/gtk/ui/gameboyadvance.ui +intltool-extract --local --type=gettext/glade ../src/gtk/ui/gameboy.ui +intltool-extract --local --type=gettext/glade ../src/gtk/ui/preferences.ui +intltool-extract --local --type=gettext/glade ../src/gtk/ui/sound.ui +intltool-extract --local --type=gettext/glade ../src/gtk/ui/vbam.ui + +xgettext -k_ -kN_ -o gvbam/gvbam.pot ../src/gtk/*.cpp tmp/*.h + +rm -r tmp/ + +# Generate translation template file for the wxWidgets port +wxrc -g ../src/wx/wxvbam.xrc -o wx-xrc-strings.h + +xgettext -k_ -kN_ -o wxvbam/wxvbam.pot ../src/wx/*.cpp ../src/wx/*.h ../src/wx/widgets/*.cpp wx-xrc-strings.h + +rm -r wx-xrc-strings.h diff --git a/po/wxvbam/en.po b/po/wxvbam/en.po index 37f81d46..4309ee41 100644 --- a/po/wxvbam/en.po +++ b/po/wxvbam/en.po @@ -1,3502 +1,3502 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: VBA-M\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 20:50+0100\n" -"PO-Revision-Date: 2011-12-03 19:43+0000\n" -"Last-Translator: bgK \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ../src/wx/wxvbam.cpp:326 -msgid "" -"\n" -"\tbuilt-in" -msgstr "" -"\n" -"\tbuilt-in" - -#: ../src/wx/cmdevents.cpp:905 ../src/wx/cmdevents.cpp:977 -msgid " files (" -msgstr " files (" - -#: ../src/wx/panel.cpp:335 -msgid " player " -msgstr " player " - -#: wx-xrc-strings.h:215 -#, c-format -msgid "% of normal:" -msgstr "% of normal:" - -#: ../src/wx/guiinit.cpp:1323 -#, c-format -msgid "%d frames = %.2f ms" -msgstr "%d frames = %.2f ms" - -#: ../src/wx/guiinit.cpp:1492 -#, c-format -msgid "%d x %d - %dbpp @ %dHz" -msgstr "%d x %d - %dbpp @ %dHz" - -#: ../src/wx/sys.cpp:303 -#, c-format -msgid "%d%%" -msgstr "%d%%" - -#: ../src/wx/sys.cpp:297 -#, c-format -msgid "%d%%(%d, %d fps)" -msgstr "%d%%(%d, %d fps)" - -#: ../src/wx/panel.cpp:55 -#, c-format -msgid "%s is not a valid ROM file" -msgstr "%s is not a valid ROM file" - -#: wx-xrc-strings.h:691 -msgid "&0" -msgstr "&0" - -#: wx-xrc-strings.h:38 wx-xrc-strings.h:53 wx-xrc-strings.h:692 -msgid "&1" -msgstr "&1" - -#: wx-xrc-strings.h:189 -msgid "&16 bits" -msgstr "&16 bits" - -#: wx-xrc-strings.h:613 -msgid "&16-bit" -msgstr "&16-bit" - -#: wx-xrc-strings.h:39 wx-xrc-strings.h:54 -msgid "&2" -msgstr "&2" - -#: wx-xrc-strings.h:676 -msgid "&256" -msgstr "&256" - -#: wx-xrc-strings.h:40 wx-xrc-strings.h:55 -msgid "&3" -msgstr "&3" - -#: wx-xrc-strings.h:190 -msgid "&32 bits" -msgstr "&32 bits" - -#: wx-xrc-strings.h:614 -msgid "&32-bit" -msgstr "&32-bit" - -#: wx-xrc-strings.h:41 wx-xrc-strings.h:56 -msgid "&4" -msgstr "&4" - -#: wx-xrc-strings.h:42 wx-xrc-strings.h:57 -msgid "&5" -msgstr "&5" - -#: wx-xrc-strings.h:43 wx-xrc-strings.h:58 -msgid "&6" -msgstr "&6" - -#: wx-xrc-strings.h:44 wx-xrc-strings.h:59 -msgid "&7" -msgstr "&7" - -#: wx-xrc-strings.h:45 wx-xrc-strings.h:60 -msgid "&8" -msgstr "&8" - -#: wx-xrc-strings.h:188 -msgid "&8 bits" -msgstr "&8 bits" - -#: wx-xrc-strings.h:612 -msgid "&8-bit" -msgstr "&8-bit" - -#: wx-xrc-strings.h:46 wx-xrc-strings.h:61 -msgid "&9" -msgstr "&9" - -#: wx-xrc-strings.h:31 -msgid "&A" -msgstr "&A" - -#: wx-xrc-strings.h:543 -msgid "&AGBPrint" -msgstr "&AGBPrint" - -#: wx-xrc-strings.h:198 -msgid "&Add cheat" -msgstr "&Add cheat" - -#: wx-xrc-strings.h:450 -msgid "&Assign" -msgstr "&Assign" - -#: wx-xrc-strings.h:37 -msgid "&Auto load most recent" -msgstr "&Auto load most recent" - -#: wx-xrc-strings.h:207 -msgid "&Auto-apply IPS/UPS/PPF patches" -msgstr "&Auto-apply IPS/UPS/PPF patches" - -#: wx-xrc-strings.h:30 -msgid "&Autofire" -msgstr "&Autofire" - -#: wx-xrc-strings.h:456 -msgid "&Automatic" -msgstr "&Automatic" - -#: wx-xrc-strings.h:32 -msgid "&B" -msgstr "&B" - -#: wx-xrc-strings.h:210 -msgid "&BMP" -msgstr "&BMP" - -#: wx-xrc-strings.h:7 wx-xrc-strings.h:11 -msgid "&Battery file..." -msgstr "&Battery file..." - -#: wx-xrc-strings.h:98 -msgid "&Break into GDB" -msgstr "&Break into GDB" - -#: wx-xrc-strings.h:197 wx-xrc-strings.h:547 -msgid "&Clear" -msgstr "&Clear" - -#: ../src/wx/sys.cpp:613 ../src/wx/sys.cpp:680 -msgid "&Close" -msgstr "&Close" - -#: wx-xrc-strings.h:95 -msgid "&Debug" -msgstr "&Debug" - -#: wx-xrc-strings.h:313 -msgid "&Defaults" -msgstr "&Defaults" - -#: wx-xrc-strings.h:173 wx-xrc-strings.h:200 -msgid "&Description" -msgstr "&Description" - -#: wx-xrc-strings.h:87 -msgid "&Disassemble..." -msgstr "&Disassemble..." - -#: ../src/wx/sys.cpp:556 wx-xrc-strings.h:121 -msgid "&Discard" -msgstr "&Discard" - -#: wx-xrc-strings.h:99 -msgid "&Disconnect" -msgstr "&Disconnect" - -#: wx-xrc-strings.h:104 -msgid "&Display ..." -msgstr "&Display ..." - -#: wx-xrc-strings.h:25 -msgid "&Emulation" -msgstr "&Emulation" - -#: wx-xrc-strings.h:69 -msgid "&Enable cheats" -msgstr "&Enable cheats" - -#: wx-xrc-strings.h:13 -msgid "&Export" -msgstr "&Export" - -#: wx-xrc-strings.h:2 -msgid "&File" -msgstr "&File" - -#: wx-xrc-strings.h:5 -msgid "&Freeze recent list" -msgstr "&Freeze recent list" - -#: wx-xrc-strings.h:29 -msgid "&Fullscreen" -msgstr "&Fullscreen" - -#: wx-xrc-strings.h:100 -msgid "&GDB" -msgstr "&GDB" - -#: wx-xrc-strings.h:9 wx-xrc-strings.h:12 -msgid "&Gameshark snapshot..." -msgstr "&Gameshark snapshot..." - -#: wx-xrc-strings.h:101 -msgid "&General ..." -msgstr "&General ..." - -#: wx-xrc-strings.h:459 wx-xrc-strings.h:508 wx-xrc-strings.h:615 -msgid "&Go" -msgstr "&Go" - -#: wx-xrc-strings.h:181 -msgid "&Greater than" -msgstr "&Greater than" - -#: wx-xrc-strings.h:111 -msgid "&Help" -msgstr "&Help" - -#: wx-xrc-strings.h:186 -msgid "&Hexadecimal" -msgstr "&Hexadecimal" - -#: wx-xrc-strings.h:89 -msgid "&IO Viewer..." -msgstr "&IO Viewer..." - -#: wx-xrc-strings.h:10 -msgid "&Import" -msgstr "&Import" - -#: wx-xrc-strings.h:107 -msgid "&Joypads ..." -msgstr "&Joypads ..." - -#: wx-xrc-strings.h:109 -msgid "&Key Shortcuts ..." -msgstr "&Key Shortcuts ..." - -#: wx-xrc-strings.h:33 -msgid "&L" -msgstr "&L" - -#: wx-xrc-strings.h:179 -msgid "&Less than" -msgstr "&Less than" - -#: wx-xrc-strings.h:108 -msgid "&Link ..." -msgstr "&Link ..." - -#: wx-xrc-strings.h:97 -msgid "&Load and wait..." -msgstr "&Load and wait..." - -#: wx-xrc-strings.h:51 -msgid "&Load state" -msgstr "&Load state" - -#: wx-xrc-strings.h:619 -msgid "&Load..." -msgstr "&Load..." - -#: wx-xrc-strings.h:88 -msgid "&Logging..." -msgstr "&Logging..." - -#: wx-xrc-strings.h:90 -msgid "&Map Viewer..." -msgstr "&Map Viewer..." - -#: wx-xrc-strings.h:506 wx-xrc-strings.h:532 -msgid "&Next" -msgstr "&Next" - -#: wx-xrc-strings.h:86 -msgid "&Next frame" -msgstr "&Next frame" - -#: wx-xrc-strings.h:178 -msgid "&Not equal" -msgstr "&Not equal" - -#: wx-xrc-strings.h:243 wx-xrc-strings.h:284 -msgid "&Number of frames to skip :" -msgstr "&Number of frames to skip :" - -#: wx-xrc-strings.h:92 -msgid "&OAM Viewer..." -msgstr "&OAM Viewer..." - -#: wx-xrc-strings.h:74 -msgid "&OBJ" -msgstr "&OBJ" - -#: wx-xrc-strings.h:52 -msgid "&Oldest slot" -msgstr "&Oldest slot" - -#: wx-xrc-strings.h:110 -msgid "&Options" -msgstr "&Options" - -#: wx-xrc-strings.h:209 -msgid "&PNG" -msgstr "&PNG" - -#: wx-xrc-strings.h:93 -msgid "&Palette Viewer..." -msgstr "&Palette Viewer..." - -#: wx-xrc-strings.h:26 -msgid "&Pause" -msgstr "&Pause" - -#: wx-xrc-strings.h:24 -msgid "&Play" -msgstr "&Play" - -#: wx-xrc-strings.h:34 -msgid "&R" -msgstr "&R" - -#: wx-xrc-strings.h:21 -msgid "&Record" -msgstr "&Record" - -#: wx-xrc-strings.h:570 wx-xrc-strings.h:594 wx-xrc-strings.h:609 -#: wx-xrc-strings.h:618 wx-xrc-strings.h:638 wx-xrc-strings.h:650 -#: wx-xrc-strings.h:661 wx-xrc-strings.h:672 wx-xrc-strings.h:689 -#: wx-xrc-strings.h:702 -msgid "&Refresh" -msgstr "&Refresh" - -#: wx-xrc-strings.h:451 -msgid "&Remove" -msgstr "&Remove" - -#: wx-xrc-strings.h:28 -msgid "&Reset" -msgstr "&Reset" - -#: wx-xrc-strings.h:4 -msgid "&Reset recent list" -msgstr "&Reset recent list" - -#: wx-xrc-strings.h:211 -msgid "&Rewind interval :" -msgstr "&Rewind interval :" - -#: wx-xrc-strings.h:546 wx-xrc-strings.h:595 wx-xrc-strings.h:610 -msgid "&Save" -msgstr "&Save" - -#: wx-xrc-strings.h:64 -msgid "&Save state" -msgstr "&Save state" - -#: wx-xrc-strings.h:620 wx-xrc-strings.h:639 wx-xrc-strings.h:651 -#: wx-xrc-strings.h:690 wx-xrc-strings.h:703 -msgid "&Save..." -msgstr "&Save..." - -#: wx-xrc-strings.h:195 -msgid "&Search" -msgstr "&Search" - -#: wx-xrc-strings.h:105 -msgid "&Sound ..." -msgstr "&Sound ..." - -#: wx-xrc-strings.h:85 -msgid "&Sound Channels" -msgstr "&Sound Channels" - -#: wx-xrc-strings.h:384 -msgid "&Sync game to audio" -msgstr "&Sync game to audio" - -#: wx-xrc-strings.h:458 -msgid "&THUMB" -msgstr "&THUMB" - -#: wx-xrc-strings.h:214 -msgid "&Throttle" -msgstr "&Throttle" - -#: wx-xrc-strings.h:94 -msgid "&Tile Viewer..." -msgstr "&Tile Viewer..." - -#: wx-xrc-strings.h:27 -msgid "&Turbo mode" -msgstr "&Turbo mode" - -#: wx-xrc-strings.h:174 -msgid "&Type" -msgstr "&Type" - -#: wx-xrc-strings.h:542 -msgid "&Undefined instruction" -msgstr "&Undefined instruction" - -#: wx-xrc-strings.h:185 -msgid "&Unsigned" -msgstr "&Unsigned" - -#: wx-xrc-strings.h:202 -msgid "&Value" -msgstr "&Value" - -#: wx-xrc-strings.h:78 -msgid "&View Layers" -msgstr "&View Layers" - -#: wx-xrc-strings.h:75 -msgid "&WIN 0" -msgstr "&WIN 0" - -#: wx-xrc-strings.h:96 -msgid "&Wait for connection..." -msgstr "&Wait for connection..." - -#: wx-xrc-strings.h:568 -msgid "0 " -msgstr "0 " - -#: wx-xrc-strings.h:326 -msgid "0 = no limit" -msgstr "0 = no limit" - -#: wx-xrc-strings.h:325 -msgid "0 = no maximum" -msgstr "0 = no maximum" - -#: wx-xrc-strings.h:216 -msgid "0 = no throttle" -msgstr "0 = no throttle" - -#: wx-xrc-strings.h:502 wx-xrc-strings.h:524 -msgid "00" -msgstr "00" - -#: wx-xrc-strings.h:510 wx-xrc-strings.h:512 wx-xrc-strings.h:514 -#: wx-xrc-strings.h:516 wx-xrc-strings.h:518 wx-xrc-strings.h:520 -#: wx-xrc-strings.h:522 -msgid "0000" -msgstr "0000" - -#: wx-xrc-strings.h:461 wx-xrc-strings.h:463 wx-xrc-strings.h:465 -#: wx-xrc-strings.h:467 wx-xrc-strings.h:469 wx-xrc-strings.h:471 -#: wx-xrc-strings.h:473 wx-xrc-strings.h:475 wx-xrc-strings.h:477 -#: wx-xrc-strings.h:479 wx-xrc-strings.h:481 wx-xrc-strings.h:483 -#: wx-xrc-strings.h:485 wx-xrc-strings.h:487 wx-xrc-strings.h:489 -#: wx-xrc-strings.h:491 wx-xrc-strings.h:493 -msgid "00000000" -msgstr "00000000" - -#: wx-xrc-strings.h:694 -msgid "0x&8000" -msgstr "0x&8000" - -#: wx-xrc-strings.h:695 -msgid "0x&8800" -msgstr "0x&8800" - -#: ../src/wx/viewers.cpp:798 -msgid "0x0000 - ROM" -msgstr "0x0000 - ROM" - -#: ../src/wx/viewers.cpp:703 -msgid "0x00000000 - BIOS" -msgstr "0x00000000 - BIOS" - -#: ../src/wx/viewers.cpp:704 -msgid "0x02000000 - WRAM" -msgstr "0x02000000 - WRAM" - -#: ../src/wx/viewers.cpp:705 -msgid "0x03000000 - IRAM" -msgstr "0x03000000 - IRAM" - -#: ../src/wx/viewers.cpp:706 -msgid "0x04000000 - I/O" -msgstr "0x04000000 - I/O" - -#: ../src/wx/viewers.cpp:707 -msgid "0x05000000 - PALETTE" -msgstr "0x05000000 - PALETTE" - -#: ../src/wx/viewers.cpp:708 -msgid "0x06000000 - VRAM" -msgstr "0x06000000 - VRAM" - -#: ../src/wx/viewers.cpp:709 -msgid "0x07000000 - OAM" -msgstr "0x07000000 - OAM" - -#: ../src/wx/viewers.cpp:710 -msgid "0x08000000 - ROM" -msgstr "0x08000000 - ROM" - -#: ../src/wx/viewers.cpp:799 -msgid "0x4000 - ROM" -msgstr "0x4000 - ROM" - -#: wx-xrc-strings.h:682 -msgid "0x60&10000" -msgstr "0x60&10000" - -#: wx-xrc-strings.h:678 -msgid "0x600&0000" -msgstr "0x600&0000" - -#: wx-xrc-strings.h:679 -msgid "0x600&4000" -msgstr "0x600&4000" - -#: wx-xrc-strings.h:680 -msgid "0x600&8000" -msgstr "0x600&8000" - -#: wx-xrc-strings.h:681 -msgid "0x600&C000" -msgstr "0x600&C000" - -#: wx-xrc-strings.h:596 -msgid "0x8000" -msgstr "0x8000" - -#: ../src/wx/viewers.cpp:800 -msgid "0x8000 - VRAM" -msgstr "0x8000 - VRAM" - -#: wx-xrc-strings.h:597 -msgid "0x8800" -msgstr "0x8800" - -#: wx-xrc-strings.h:599 -msgid "0x9800" -msgstr "0x9800" - -#: wx-xrc-strings.h:600 -msgid "0x9C00" -msgstr "0x9C00" - -#: ../src/wx/viewers.cpp:801 -msgid "0xA000 - SRAM" -msgstr "0xA000 - SRAM" - -#: ../src/wx/viewers.cpp:802 -msgid "0xC000 - RAM" -msgstr "0xC000 - RAM" - -#: ../src/wx/viewers.cpp:803 -msgid "0xD000 - WRAM" -msgstr "0xD000 - WRAM" - -#: ../src/wx/viewers.cpp:804 -msgid "0xFF00 - I/O" -msgstr "0xFF00 - I/O" - -#: ../src/wx/viewers.cpp:805 -msgid "0xFF80 - RAM" -msgstr "0xFF80 - RAM" - -#: wx-xrc-strings.h:567 -msgid "1 " -msgstr "1 " - -#: wx-xrc-strings.h:47 wx-xrc-strings.h:62 -msgid "1&0" -msgstr "1&0" - -#: wx-xrc-strings.h:675 -msgid "1&6" -msgstr "1&6" - -#: wx-xrc-strings.h:558 -msgid "10 " -msgstr "10 " - -#: wx-xrc-strings.h:220 wx-xrc-strings.h:369 -msgid "100%" -msgstr "100%" - -#: wx-xrc-strings.h:557 -msgid "11 " -msgstr "11 " - -#: wx-xrc-strings.h:375 -msgid "11 KHz" -msgstr "11 KHz" - -#: wx-xrc-strings.h:556 -msgid "12 " -msgstr "12 " - -#: wx-xrc-strings.h:276 wx-xrc-strings.h:308 -msgid "128K" -msgstr "128K" - -#: wx-xrc-strings.h:555 -msgid "13 " -msgstr "13 " - -#: wx-xrc-strings.h:554 -msgid "14 " -msgstr "14 " - -#: wx-xrc-strings.h:553 -msgid "15 " -msgstr "15 " - -#: wx-xrc-strings.h:221 -msgid "150%" -msgstr "150%" - -#: ../src/wx/guiinit.cpp:886 -msgid "16-bit " -msgstr "16-bit " - -#: wx-xrc-strings.h:116 -msgid "1x" -msgstr "1x" - -#: wx-xrc-strings.h:154 -msgid "2" -msgstr "2" - -#: wx-xrc-strings.h:566 -msgid "2 " -msgstr "2 " - -#: wx-xrc-strings.h:222 -msgid "200%" -msgstr "200%" - -#: wx-xrc-strings.h:374 -msgid "22 KHz" -msgstr "22 KHz" - -#: wx-xrc-strings.h:218 -msgid "25%" -msgstr "25%" - -#: wx-xrc-strings.h:117 -msgid "2x" -msgstr "2x" - -#: wx-xrc-strings.h:343 -msgid "2xSaI" -msgstr "2xSaI" - -#: wx-xrc-strings.h:155 -msgid "3" -msgstr "3" - -#: wx-xrc-strings.h:565 -msgid "3 " -msgstr "3 " - -#: ../src/wx/guiinit.cpp:889 -msgid "32-bit " -msgstr "32-bit " - -#: wx-xrc-strings.h:118 -msgid "3x" -msgstr "3x" - -#: wx-xrc-strings.h:156 -msgid "4" -msgstr "4" - -#: wx-xrc-strings.h:564 -msgid "4 " -msgstr "4 " - -#: wx-xrc-strings.h:373 -msgid "44.1 KHz" -msgstr "44.1 KHz" - -#: wx-xrc-strings.h:372 -msgid "48 KHz" -msgstr "48 KHz" - -#: wx-xrc-strings.h:119 -msgid "4x" -msgstr "4x" - -#: wx-xrc-strings.h:563 -msgid "5 " -msgstr "5 " - -#: wx-xrc-strings.h:219 -msgid "50%" -msgstr "50%" - -#: wx-xrc-strings.h:562 -msgid "6 " -msgstr "6 " - -#: wx-xrc-strings.h:275 wx-xrc-strings.h:307 -msgid "64K" -msgstr "64K" - -#: wx-xrc-strings.h:561 -msgid "7 " -msgstr "7 " - -#: wx-xrc-strings.h:560 -msgid "8 " -msgstr "8 " - -#: ../src/wx/guiinit.cpp:883 -msgid "8-bit " -msgstr "8-bit " - -#: wx-xrc-strings.h:559 -msgid "9 " -msgstr "9 " - -#: ../src/wx/wxvbam.cpp:259 -msgid "=" -msgstr "=" - -#: wx-xrc-strings.h:418 -msgid "A" -msgstr "A" - -#: wx-xrc-strings.h:457 -msgid "A&RM" -msgstr "A&RM" - -#: wx-xrc-strings.h:68 -msgid "A&utomatically save/load cheats" -msgstr "A&utomatically save/load cheats" - -#: wx-xrc-strings.h:509 -msgid "AF:" -msgstr "AF:" - -#: ../src/wx/widgets/keyedit.cpp:81 ../src/wx/widgets/keyedit.cpp:165 -msgid "ALT" -msgstr "ALT" - -#: wx-xrc-strings.h:455 -msgid "Accelerator Editor" -msgstr "Accelerator Editor" - -#: wx-xrc-strings.h:204 -msgid "Add cheat" -msgstr "Add cheat" - -#: wx-xrc-strings.h:168 -msgid "Add new cheat" -msgstr "Add new cheat" - -#: ../src/wx/guiinit.cpp:2589 wx-xrc-strings.h:201 -msgid "Address" -msgstr "Address" - -#: wx-xrc-strings.h:590 wx-xrc-strings.h:604 wx-xrc-strings.h:622 -#: wx-xrc-strings.h:657 wx-xrc-strings.h:688 wx-xrc-strings.h:701 -msgid "Address:" -msgstr "Address:" - -#: wx-xrc-strings.h:347 -msgid "Advance MAME Scale2x" -msgstr "Advance MAME Scale2x" - -#: wx-xrc-strings.h:365 wx-xrc-strings.h:386 -msgid "Advanced" -msgstr "Advanced" - -#: ../src/wx/guiinit.cpp:160 -msgid "All players joined." -msgstr "All players joined." - -#: wx-xrc-strings.h:234 -msgid "Always" -msgstr "Always" - -#: wx-xrc-strings.h:581 wx-xrc-strings.h:603 -msgid "Auto &update" -msgstr "Auto &update" - -#: wx-xrc-strings.h:429 -msgid "Autofire A" -msgstr "Autofire A" - -#: wx-xrc-strings.h:431 -msgid "Autofire B" -msgstr "Autofire B" - -#: wx-xrc-strings.h:226 wx-xrc-strings.h:235 wx-xrc-strings.h:268 -#: wx-xrc-strings.h:299 -msgid "Automatic" -msgstr "Automatic" - -#: wx-xrc-strings.h:503 wx-xrc-strings.h:529 wx-xrc-strings.h:569 -#: wx-xrc-strings.h:616 wx-xrc-strings.h:637 wx-xrc-strings.h:649 -#: wx-xrc-strings.h:659 wx-xrc-strings.h:671 wx-xrc-strings.h:686 -#: wx-xrc-strings.h:699 -msgid "Automatic &update" -msgstr "Automatic &update" - -#: wx-xrc-strings.h:237 -msgid "Automatically &gather entire printed page" -msgstr "Automatically &gather entire printed page" - -#: wx-xrc-strings.h:238 -msgid "Automatically &save printouts as snapshots" -msgstr "Automatically &save printouts as snapshots" - -#: ../src/wx/widgets/joyedit.cpp:82 -#, c-format -msgid "Axis%d+" -msgstr "Axis%d+" - -#: ../src/wx/widgets/joyedit.cpp:85 -#, c-format -msgid "Axis%d-" -msgstr "Axis%d-" - -#: ../src/wx/widgets/joyedit.cpp:141 -msgid "Axis([0-9]+)([+-])" -msgstr "Axis([0-9]+)([+-])" - -#: wx-xrc-strings.h:420 -msgid "B" -msgstr "B" - -#: ../src/wx/viewsupt.cpp:685 -msgid "B:" -msgstr "B:" - -#: wx-xrc-strings.h:511 -msgid "BC:" -msgstr "BC:" - -#: wx-xrc-strings.h:70 -msgid "BG &0" -msgstr "BG &0" - -#: wx-xrc-strings.h:71 -msgid "BG &1" -msgstr "BG &1" - -#: wx-xrc-strings.h:72 -msgid "BG &2" -msgstr "BG &2" - -#: wx-xrc-strings.h:73 -msgid "BG &3" -msgstr "BG &3" - -#: wx-xrc-strings.h:575 -msgid "BG0" -msgstr "BG0" - -#: wx-xrc-strings.h:576 -msgid "BG1" -msgstr "BG1" - -#: wx-xrc-strings.h:577 -msgid "BG2" -msgstr "BG2" - -#: wx-xrc-strings.h:578 -msgid "BG3" -msgstr "BG3" - -#: wx-xrc-strings.h:263 wx-xrc-strings.h:579 wx-xrc-strings.h:655 -#: wx-xrc-strings.h:665 -msgid "Background" -msgstr "Background" - -#: ../src/wx/wxvbam.cpp:383 -msgid "Bad configuration option or multiple ROM files given:\n" -msgstr "Bad configuration option or multiple ROM files given:\n" - -#: wx-xrc-strings.h:647 -msgid "Bank:" -msgstr "Bank:" - -#: wx-xrc-strings.h:376 -msgid "Basic" -msgstr "Basic" - -#: ../src/wx/cmdevents.cpp:634 ../src/wx/cmdevents.cpp:796 -msgid "Battery file (*.sav)|*.sav|Flash save (*.dat)|*.dat" -msgstr "Battery file (*.sav)|*.sav|Flash save (*.dat)|*.dat" - -#: wx-xrc-strings.h:348 -msgid "Bilinear" -msgstr "Bilinear" - -#: wx-xrc-strings.h:349 -msgid "Bilinear Plus" -msgstr "Bilinear Plus" - -#: wx-xrc-strings.h:336 -msgid "Bilinear scaling filter" -msgstr "Bilinear scaling filter" - -#: wx-xrc-strings.h:287 -msgid "Bios file :" -msgstr "Bios file :" - -#: wx-xrc-strings.h:255 -msgid "Blue Sea" -msgstr "Blue Sea" - -#: wx-xrc-strings.h:246 -msgid "Boot &ROM file :" -msgstr "Boot &ROM file :" - -#: wx-xrc-strings.h:249 wx-xrc-strings.h:289 -msgid "Boot ROM" -msgstr "Boot ROM" - -#: wx-xrc-strings.h:248 -msgid "Boot ROM &file :" -msgstr "Boot ROM &file :" - -#: ../src/wx/widgets/joyedit.cpp:88 -#, c-format -msgid "Button%d" -msgstr "Button%d" - -#: ../src/wx/widgets/joyedit.cpp:143 -msgid "Button([0-9]+)" -msgstr "Button([0-9]+)" - -#: wx-xrc-strings.h:498 wx-xrc-strings.h:528 -msgid "C" -msgstr "C" - -#: wx-xrc-strings.h:660 -msgid "C&hange backdrop color..." -msgstr "C&hange backdrop color..." - -#: wx-xrc-strings.h:175 -msgid "C&odes" -msgstr "C&odes" - -#: wx-xrc-strings.h:120 -msgid "C&ontinue" -msgstr "C&ontinue" - -#: ../src/wx/widgets/keyedit.cpp:168 -msgid "CONTROL" -msgstr "CONTROL" - -#: wx-xrc-strings.h:492 -msgid "CPSR:" -msgstr "CPSR:" - -#: wx-xrc-strings.h:130 wx-xrc-strings.h:138 -msgid "CRC:" -msgstr "CRC:" - -#: ../src/wx/widgets/keyedit.cpp:84 ../src/wx/widgets/keyedit.cpp:167 -msgid "CTRL" -msgstr "CTRL" - -#: wx-xrc-strings.h:335 -msgid "Cairo" -msgstr "Cairo" - -#: ../src/wx/dsound.cpp:123 -#, c-format -msgid "Cannot CreateSoundBuffer %08x" -msgstr "Cannot CreateSoundBuffer %08x" - -#: ../src/wx/dsound.cpp:188 -#, c-format -msgid "Cannot Play primary %08x" -msgstr "Cannot Play primary %08x" - -#: ../src/wx/dsound.cpp:109 -#, c-format -msgid "Cannot SetCooperativeLevel %08x" -msgstr "Cannot SetCooperativeLevel %08x" - -#: ../src/wx/dsound.cpp:93 ../src/wx/dsound.cpp:104 -#, c-format -msgid "Cannot create DirectSound %08x" -msgstr "Cannot create DirectSound %08x" - -#: ../src/wx/panel.cpp:1831 -msgid "Cannot create conversion buffer" -msgstr "Cannot create conversion buffer" - -#: ../src/wx/cmdevents.cpp:679 -#, c-format -msgid "Cannot open file %s" -msgstr "Cannot open file %s" - -#: ../src/wx/sys.cpp:118 -#, c-format -msgid "Cannot open output file %s" -msgstr "Cannot open output file %s" - -#: ../src/wx/sys.cpp:173 -#, c-format -msgid "Cannot open recording file %s" -msgstr "Cannot open recording file %s" - -#: ../src/wx/sys.cpp:162 -msgid "Cannot play game recording while recording" -msgstr "Cannot play game recording while recording" - -#: wx-xrc-strings.h:278 -msgid "Cartridge" -msgstr "Cartridge" - -#: wx-xrc-strings.h:136 -msgid "Cartridge type:" -msgstr "Cartridge type:" - -#: wx-xrc-strings.h:395 -msgid "Center" -msgstr "Center" - -#: wx-xrc-strings.h:79 -msgid "Channel &1" -msgstr "Channel &1" - -#: wx-xrc-strings.h:80 -msgid "Channel &2" -msgstr "Channel &2" - -#: wx-xrc-strings.h:81 -msgid "Channel &3" -msgstr "Channel &3" - -#: wx-xrc-strings.h:82 -msgid "Channel &4" -msgstr "Channel &4" - -#: wx-xrc-strings.h:598 wx-xrc-strings.h:683 wx-xrc-strings.h:696 -msgid "Char Base" -msgstr "Char Base" - -#: wx-xrc-strings.h:584 -msgid "Char Base:" -msgstr "Char Base:" - -#: wx-xrc-strings.h:172 -msgid "Cheat list" -msgstr "Cheat list" - -#: wx-xrc-strings.h:144 -msgid "Checksum:" -msgstr "Checksum:" - -#: ../src/wx/panel.cpp:719 -#, c-format -msgid "Chose mode %dx%d-%d@%d" -msgstr "Chose mode %dx%d-%d@%d" - -#: wx-xrc-strings.h:440 -msgid "Clear" -msgstr "Clear" - -#: wx-xrc-strings.h:416 -msgid "" -"Click a field and press a key or move joystick to add. Press backspace to " -"delete last added key. Resize window or click inside and move pointer to " -"see entire contents if too small." -msgstr "" -"Click a field and press a key or move joystick to add. Press backspace to " -"delete last added key. Resize window or click inside and move pointer to " -"see entire contents if too small." - -#: wx-xrc-strings.h:654 wx-xrc-strings.h:664 -msgid "Click on a color for more information" -msgstr "Click on a color for more information" - -#: wx-xrc-strings.h:152 -msgid "Client" -msgstr "Client" - -#: wx-xrc-strings.h:448 -msgid "Co&mmands:" -msgstr "Co&mmands:" - -#: ../src/wx/guiinit.cpp:2501 -msgid "Code" -msgstr "Code" - -#: ../src/wx/guiinit.cpp:646 -msgid "CodeBreaker Advance" -msgstr "CodeBreaker Advance" - -#: wx-xrc-strings.h:139 -msgid "Color:" -msgstr "Color:" - -#: wx-xrc-strings.h:677 -msgid "Colors" -msgstr "Colors" - -#: wx-xrc-strings.h:586 wx-xrc-strings.h:629 -msgid "Colors:" -msgstr "Colors:" - -#: wx-xrc-strings.h:292 -msgid "Comment" -msgstr "Comment" - -#: wx-xrc-strings.h:183 -msgid "Compare type" -msgstr "Compare type" - -#: ../src/wx/wxvbam.cpp:308 -msgid "Configuration is read from, in order:" -msgstr "Configuration is read from, in order:" - -#: ../src/wx/wxvbam.cpp:287 -msgid "Configuration/build error: can't find built-in xrc" -msgstr "Configuration/build error: can't find built-in xrc" - -#: ../src/wx/guiinit.cpp:1835 -msgid "Confirm" -msgstr "Confirm" - -#: ../src/wx/cmdevents.cpp:641 ../src/wx/cmdevents.cpp:666 -#: ../src/wx/cmdevents.cpp:763 -msgid "Confirm import" -msgstr "Confirm import" - -#: ../src/wx/guiinit.cpp:61 wx-xrc-strings.h:164 -msgid "Connect" -msgstr "Connect" - -#: ../src/wx/guiinit.cpp:156 -#, c-format -msgid "Connected as #%d\n" -msgstr "Connected as #%d\n" - -#: ../src/wx/guiinit.cpp:151 -#, c-format -msgid "Connecting to %s\n" -msgstr "Connecting to %s\n" - -#: ../src/wx/cmdevents.cpp:2179 -msgid "" -"Copyright (C) 1999-2003 Forgotten\n" -"Copyright (C) 2004-2006 VBA development team\n" -"Copyright (C) 2007-2011 VBA-M development team" -msgstr "" -"Copyright (C) 1999-2003 Forgotten\n" -"Copyright (C) 2004-2006 VBA development team\n" -"Copyright (C) 2007-2011 VBA-M development team" - -#: ../src/wx/wxvbam.cpp:208 -msgid "Could not create main window" -msgstr "Could not create main window" - -#: ../src/wx/panel.cpp:153 ../src/wx/panel.cpp:234 -#, c-format -msgid "Could not load BIOS %s" -msgstr "Could not load BIOS %s" - -#: ../src/wx/dsound.cpp:143 -#, c-format -msgid "CreateSoundBuffer(primary) failed %08x" -msgstr "CreateSoundBuffer(primary) failed %08x" - -#: ../src/wx/dsound.cpp:159 -#, c-format -msgid "CreateSoundBuffer(secondary) failed %08x" -msgstr "CreateSoundBuffer(secondary) failed %08x" - -#: wx-xrc-strings.h:449 -msgid "Current Keys:" -msgstr "Current Keys:" - -#: wx-xrc-strings.h:617 -msgid "Current address:" -msgstr "Current address:" - -#: wx-xrc-strings.h:453 -msgid "Currently assigned to:" -msgstr "Currently assigned to:" - -#: wx-xrc-strings.h:253 -msgid "Custom Colors" -msgstr "Custom Colors" - -#: wx-xrc-strings.h:106 -msgid "D&irectories ..." -msgstr "D&irectories ..." - -#: wx-xrc-strings.h:513 -msgid "DE:" -msgstr "DE:" - -#: wx-xrc-strings.h:538 -msgid "DMA &0" -msgstr "DMA &0" - -#: wx-xrc-strings.h:539 -msgid "DMA &1" -msgstr "DMA &1" - -#: wx-xrc-strings.h:540 -msgid "DMA &2" -msgstr "DMA &2" - -#: wx-xrc-strings.h:541 -msgid "DMA &3" -msgstr "DMA &3" - -#: wx-xrc-strings.h:256 -msgid "Dark Night" -msgstr "Dark Night" - -#: wx-xrc-strings.h:191 -msgid "Data size" -msgstr "Data size" - -#: wx-xrc-strings.h:387 -msgid "Declicking" -msgstr "Declicking" - -#: wx-xrc-strings.h:250 wx-xrc-strings.h:294 wx-xrc-strings.h:298 -#: wx-xrc-strings.h:306 wx-xrc-strings.h:310 -msgid "Default" -msgstr "Default" - -#: ../src/wx/guiinit.cpp:1334 -msgid "Default device" -msgstr "Default device" - -#: wx-xrc-strings.h:322 -msgid "Default magnification :" -msgstr "Default magnification :" - -#: wx-xrc-strings.h:439 -msgid "Defaults" -msgstr "Defaults" - -#: wx-xrc-strings.h:170 -msgid "Delete all cheats" -msgstr "Delete all cheats" - -#: wx-xrc-strings.h:169 -msgid "Delete selected cheat" -msgstr "Delete selected cheat" - -#: ../src/wx/wxvbam.cpp:249 -msgid "Delete shared link state first, if it exists" -msgstr "Delete shared link state first, if it exists" - -#: ../src/wx/guiinit.cpp:2510 -msgid "Description" -msgstr "Description" - -#: wx-xrc-strings.h:148 -msgid "Description:" -msgstr "Description:" - -#: ../src/wx/guiinit.cpp:1486 -msgid "Desktop mode" -msgstr "Desktop mode" - -#: wx-xrc-strings.h:142 -msgid "Dest. code:" -msgstr "Dest. code:" - -#: wx-xrc-strings.h:318 -msgid "Detailed" -msgstr "Detailed" - -#: wx-xrc-strings.h:277 -msgid "Detect Now" -msgstr "Detect Now" - -#: wx-xrc-strings.h:381 -msgid "Device" -msgstr "Device" - -#: wx-xrc-strings.h:128 -msgid "Device type:" -msgstr "Device type:" - -#: wx-xrc-strings.h:83 -msgid "Direct Sound &A" -msgstr "Direct Sound &A" - -#: wx-xrc-strings.h:84 -msgid "Direct Sound &B" -msgstr "Direct Sound &B" - -#: wx-xrc-strings.h:334 -msgid "Direct3D 9" -msgstr "Direct3D 9" - -#: wx-xrc-strings.h:380 -msgid "DirectSound" -msgstr "DirectSound" - -#: wx-xrc-strings.h:410 -msgid "Directories config" -msgstr "Directories config" - -#: wx-xrc-strings.h:319 -msgid "Disable status messages" -msgstr "Disable status messages" - -#: wx-xrc-strings.h:295 wx-xrc-strings.h:311 -msgid "Disabled" -msgstr "Disabled" - -#: wx-xrc-strings.h:507 wx-xrc-strings.h:533 -msgid "Disassemble" -msgstr "Disassemble" - -#: wx-xrc-strings.h:232 -msgid "Display &borders :" -msgstr "Display &borders :" - -#: wx-xrc-strings.h:366 -msgid "Display settings" -msgstr "Display settings" - -#: wx-xrc-strings.h:49 -msgid "Do not change &battery save" -msgstr "Do not change &battery save" - -#: wx-xrc-strings.h:50 -msgid "Do not change &cheat list" -msgstr "Do not change &cheat list" - -#: wx-xrc-strings.h:419 -msgid "Down" -msgstr "Down" - -#: ../src/wx/guiinit.cpp:2159 -#, c-format -msgid "Duplicate menu accelerator: %s for %s and %s; keeping first" -msgstr "Duplicate menu accelerator: %s for %s and %s; keeping first" - -#: wx-xrc-strings.h:177 -msgid "E&qual" -msgstr "E&qual" - -#: wx-xrc-strings.h:269 wx-xrc-strings.h:300 -msgid "EEPROM" -msgstr "EEPROM" - -#: wx-xrc-strings.h:272 -msgid "EEPROM + Sensor" -msgstr "EEPROM + Sensor" - -#: ../src/wx/cmdevents.cpp:813 -msgid "EEPROM saves cannot be exported" -msgstr "EEPROM saves cannot be exported" - -#: wx-xrc-strings.h:303 -msgid "EEPROM+Sensor" -msgstr "EEPROM+Sensor" - -#: wx-xrc-strings.h:393 -msgid "Echo" -msgstr "Echo" - -#: wx-xrc-strings.h:176 -msgid "Edit cheat" -msgstr "Edit cheat" - -#: wx-xrc-strings.h:236 -msgid "Emulate a Game Boy &Printer" -msgstr "Emulate a Game Boy &Printer" - -#: wx-xrc-strings.h:239 -msgid "Emulate gameboy washed colors" -msgstr "Emulate gameboy washed colors" - -#: wx-xrc-strings.h:225 -msgid "Emulated &system :" -msgstr "Emulated &system :" - -#: wx-xrc-strings.h:407 -msgid "Emulator Saves" -msgstr "Emulator Saves" - -#: wx-xrc-strings.h:242 wx-xrc-strings.h:283 -msgid "Enable &automatic frame skipping" -msgstr "Enable &automatic frame skipping" - -#: wx-xrc-strings.h:280 -msgid "Enable AGB Printer" -msgstr "Enable AGB Printer" - -#: wx-xrc-strings.h:339 -msgid "Enable MMX" -msgstr "Enable MMX" - -#: wx-xrc-strings.h:383 -msgid "Enable hardware acceleration" -msgstr "Enable hardware acceleration" - -#: wx-xrc-strings.h:442 -msgid "Enable joybus" -msgstr "Enable joybus" - -#: wx-xrc-strings.h:444 -msgid "Enable link" -msgstr "Enable link" - -#: wx-xrc-strings.h:340 -msgid "Enable multithreading" -msgstr "Enable multithreading" - -#: wx-xrc-strings.h:279 -msgid "Enable real-time clock" -msgstr "Enable real-time clock" - -#: wx-xrc-strings.h:382 -msgid "Enable stereo upmixing" -msgstr "Enable stereo upmixing" - -#: wx-xrc-strings.h:445 -msgid "Enable wireless" -msgstr "Enable wireless" - -#: wx-xrc-strings.h:296 wx-xrc-strings.h:312 -msgid "Enabled" -msgstr "Enabled" - -#: wx-xrc-strings.h:388 wx-xrc-strings.h:389 -msgid "Enhance sound" -msgstr "Enhance sound" - -#: wx-xrc-strings.h:624 -msgid "Enter address and size" -msgstr "Enter address and size" - -#: ../src/wx/guiinit.cpp:182 -#, c-format -msgid "" -"Error %d occurred.\n" -"Please try again." -msgstr "" -"Error %d occurred.\n" -"Please try again." - -#: ../src/wx/panel.cpp:1979 -#, c-format -msgid "Error in audio recording (%s); aborting" -msgstr "Error in audio recording (%s); aborting" - -#: ../src/wx/panel.cpp:1974 -#, c-format -msgid "Error in audio/video recording (%s); aborting" -msgstr "Error in audio/video recording (%s); aborting" - -#: ../src/wx/panel.cpp:1988 -#, c-format -msgid "Error in video recording (%s); aborting" -msgstr "Error in video recording (%s); aborting" - -#: ../src/wx/cmdevents.cpp:647 -#, c-format -msgid "Error loading battery %s" -msgstr "Error loading battery %s" - -#: ../src/wx/cmdevents.cpp:742 -#, c-format -msgid "Error loading code file %s" -msgstr "Error loading code file %s" - -#: ../src/wx/cmdevents.cpp:786 -#, c-format -msgid "Error loading snapshot file %s" -msgstr "Error loading snapshot file %s" - -#: ../src/wx/panel.cpp:484 -#, c-format -msgid "Error loading state %s" -msgstr "Error loading state %s" - -#: ../src/wx/guiinit.cpp:126 -msgid "" -"Error occurred.\n" -"Please try again." -msgstr "" -"Error occurred.\n" -"Please try again." - -#: ../src/wx/sys.cpp:933 -#, c-format -msgid "Error opening pseudo tty: %s" -msgstr "Error opening pseudo tty: %s" - -#: ../src/wx/sys.cpp:179 ../src/wx/sys.cpp:187 -msgid "Error reading game recording" -msgstr "Error reading game recording" - -#: ../src/wx/cmdevents.cpp:843 -#, c-format -msgid "Error saving snapshot file %s" -msgstr "Error saving snapshot file %s" - -#: ../src/wx/panel.cpp:508 -#, c-format -msgid "Error saving state %s" -msgstr "Error saving state %s" - -#: ../src/wx/sys.cpp:1019 -#, c-format -msgid "Error setting up server socket (%d)" -msgstr "Error setting up server socket (%d)" - -#: ../src/wx/cmdevents.cpp:806 ../src/wx/panel.cpp:538 -#, c-format -msgid "Error writing battery %s" -msgstr "Error writing battery %s" - -#: ../src/wx/sys.cpp:123 ../src/wx/sys.cpp:143 ../src/wx/sys.cpp:269 -msgid "Error writing game recording" -msgstr "Error writing game recording" - -#: ../src/wx/panel.cpp:860 -msgid "Error writing rewind state" -msgstr "Error writing rewind state" - -#: wx-xrc-strings.h:150 -msgid "Export GameShark Snapshot" -msgstr "Export GameShark Snapshot" - -#: ../src/wx/cmdevents.cpp:831 -msgid "Exported from VisualBoyAdvance-M" -msgstr "Exported from VisualBoyAdvance-M" - -#: wx-xrc-strings.h:497 -msgid "F" -msgstr "F" - -#: ../src/wx/panel.cpp:722 -#, c-format -msgid "Failed to change mode to %dx%d-%d@%d" -msgstr "Failed to change mode to %dx%d-%d@%d" - -#: wx-xrc-strings.h:338 -msgid "Filters" -msgstr "Filters" - -#: wx-xrc-strings.h:67 -msgid "Find c&heat ..." -msgstr "Find c&heat ..." - -#: wx-xrc-strings.h:635 wx-xrc-strings.h:646 -msgid "Flags:" -msgstr "Flags:" - -#: wx-xrc-strings.h:271 wx-xrc-strings.h:302 -msgid "Flash" -msgstr "Flash" - -#: wx-xrc-strings.h:305 -msgid "Flash Size:" -msgstr "Flash Size:" - -#: wx-xrc-strings.h:274 -msgid "Flash size :" -msgstr "Flash size :" - -#: wx-xrc-strings.h:592 wx-xrc-strings.h:606 -msgid "Flip:" -msgstr "Flip:" - -#: wx-xrc-strings.h:203 -msgid "Format" -msgstr "Format" - -#: wx-xrc-strings.h:574 -msgid "Frame" -msgstr "Frame" - -#: wx-xrc-strings.h:572 -msgid "Frame 0" -msgstr "Frame 0" - -#: wx-xrc-strings.h:573 -msgid "Frame 1" -msgstr "Frame 1" - -#: wx-xrc-strings.h:241 wx-xrc-strings.h:282 -msgid "Frame Skip" -msgstr "Frame Skip" - -#: wx-xrc-strings.h:48 -msgid "From &File ..." -msgstr "From &File ..." - -#: wx-xrc-strings.h:327 -msgid "Full screen" -msgstr "Full screen" - -#: wx-xrc-strings.h:329 -msgid "Full screen at startup" -msgstr "Full screen at startup" - -#: wx-xrc-strings.h:341 -msgid "Fullscreen filter :" -msgstr "Fullscreen filter :" - -#: ../src/wx/panel.cpp:708 -#, c-format -msgid "Fullscreen mode %dx%d-%d@%d not supported" -msgstr "Fullscreen mode %dx%d-%d@%d not supported" - -#: ../src/wx/panel.cpp:678 -#, c-format -msgid "Fullscreen mode %dx%d-%d@%d not supported; looking for another" -msgstr "Fullscreen mode %dx%d-%d@%d not supported; looking for another" - -#: wx-xrc-strings.h:504 wx-xrc-strings.h:530 -msgid "G&oto PC" -msgstr "G&oto PC" - -#: wx-xrc-strings.h:182 -msgid "G&reater or equal" -msgstr "G&reater or equal" - -#: ../src/wx/viewsupt.cpp:680 -msgid "G:" -msgstr "G:" - -#: wx-xrc-strings.h:114 -msgid "GB Printer" -msgstr "GB Printer" - -#: ../src/wx/cmdevents.cpp:1651 -msgid "GDB Connection" -msgstr "GDB Connection" - -#: ../src/wx/cmdevents.cpp:754 -msgid "" -"GS & PAC Snapshots (*.sps;*.xps)|*.sps;*.xps|GameShark SP Snapshots (*.gsv)|" -"*.gsv" -msgstr "" -"GS & PAC Snapshots (*.sps;*.xps)|*.sps;*.xps|GameShark SP Snapshots (*.gsv)|" -"*.gsv" - -#: wx-xrc-strings.h:102 -msgid "Game &Boy ..." -msgstr "Game &Boy ..." - -#: wx-xrc-strings.h:231 wx-xrc-strings.h:397 -msgid "Game Boy" -msgstr "Game Boy" - -#: wx-xrc-strings.h:103 -msgid "Game Boy &Advance ..." -msgstr "Game Boy &Advance ..." - -#: wx-xrc-strings.h:227 wx-xrc-strings.h:402 -msgid "Game Boy Advance" -msgstr "Game Boy Advance" - -#: wx-xrc-strings.h:404 -msgid "Game Boy Advance ROMs" -msgstr "Game Boy Advance ROMs" - -#: wx-xrc-strings.h:290 -msgid "Game Boy Advance settings" -msgstr "Game Boy Advance settings" - -#: wx-xrc-strings.h:228 -msgid "Game Boy Color" -msgstr "Game Boy Color" - -#: wx-xrc-strings.h:405 -msgid "Game Boy ROMs" -msgstr "Game Boy ROMs" - -#: wx-xrc-strings.h:291 -msgid "Game Code" -msgstr "Game Code" - -#: wx-xrc-strings.h:314 -msgid "Game Overrides" -msgstr "Game Overrides" - -#: wx-xrc-strings.h:124 -msgid "Game code:" -msgstr "Game code:" - -#: wx-xrc-strings.h:123 wx-xrc-strings.h:132 -msgid "Game title:" -msgstr "Game title:" - -#: ../src/wx/cmdevents.cpp:77 -msgid "" -"GameBoy Advance Files (*.agb;*.gba;*.bin;*.elf;*.mb)|*.agb;*.gba;*.bin;*.elf;" -"*.mb*.agb.gz;*.gba.gz;*.bin.gz;*.elf.gz;*.mb.gz*.agb.z;*.gba.z;*.bin.z;*.elf." -"z;*.mb.z|GameBoy Files (*.dmg;*.gb;*.gbc;*.cgb;*.sgb)|*.dmg;*.gb;*.gbc;*.cgb;" -"*.sgb*.dmg.gz;*.gb.gz;*.gbc.gz;*.cgb.gz;*.sgb.gz*.dmg.z;*.gb.z;*.gbc.z;*.cgb." -"z;*.sgb.z|Archives (*.zip;*.7z;*.rar)|*.zip;*.7z;*.rar|" -msgstr "" -"GameBoy Advance Files (*.agb;*.gba;*.bin;*.elf;*.mb)|*.agb;*.gba;*.bin;*.elf;" -"*.mb*.agb.gz;*.gba.gz;*.bin.gz;*.elf.gz;*.mb.gz*.agb.z;*.gba.z;*.bin.z;*.elf." -"z;*.mb.z|GameBoy Files (*.dmg;*.gb;*.gbc;*.cgb;*.sgb)|*.dmg;*.gb;*.gbc;*.cgb;" -"*.sgb*.dmg.gz;*.gb.gz;*.gbc.gz;*.cgb.gz;*.sgb.gz*.dmg.z;*.gb.z;*.gbc.z;*.cgb." -"z;*.sgb.z|Archives (*.zip;*.7z;*.rar)|*.zip;*.7z;*.rar|" - -#: wx-xrc-strings.h:224 -msgid "GameBoy settings" -msgstr "GameBoy settings" - -#: ../src/wx/cmdevents.cpp:505 ../src/wx/guiinit.cpp:642 -msgid "GameGenie" -msgstr "GameGenie" - -#: ../src/wx/guiinit.cpp:641 wx-xrc-strings.h:434 -msgid "GameShark" -msgstr "GameShark" - -#: ../src/wx/guiinit.cpp:645 -msgid "GameShark Advance" -msgstr "GameShark Advance" - -#: ../src/wx/cmdevents.cpp:508 -msgid "GameShark V3.0" -msgstr "GameShark V3.0" - -#: ../src/wx/cmdevents.cpp:755 -msgid "Gameboy Snapshot (*.gbs)|*.gbs" -msgstr "Gameboy Snapshot (*.gbs)|*.gbs" - -#: wx-xrc-strings.h:8 -msgid "Gameshark &code file..." -msgstr "Gameshark &code file..." - -#: ../src/wx/cmdevents.cpp:658 -msgid "Gameshark Code File (*.gcf)|*.gcf" -msgstr "Gameshark Code File (*.gcf)|*.gcf" - -#: ../src/wx/cmdevents.cpp:657 -msgid "Gameshark Code File (*.spc;*.xpc)|*.spc;*.xpc" -msgstr "Gameshark Code File (*.spc;*.xpc)|*.spc;*.xpc" - -#: ../src/wx/cmdevents.cpp:819 -msgid "Gameshark Snapshot (*.sps)|*.sps" -msgstr "Gameshark Snapshot (*.sps)|*.sps" - -#: wx-xrc-strings.h:205 -msgid "General" -msgstr "General" - -#: ../src/wx/guiinit.cpp:644 -msgid "Generic Code" -msgstr "Generic Code" - -#: wx-xrc-strings.h:257 -msgid "Green Forest" -msgstr "Green Forest" - -#: wx-xrc-strings.h:527 -msgid "H" -msgstr "H" - -#: wx-xrc-strings.h:515 -msgid "HL:" -msgstr "HL:" - -#: wx-xrc-strings.h:356 -msgid "HQ 3x" -msgstr "HQ 3x" - -#: wx-xrc-strings.h:358 -msgid "HQ 4x" -msgstr "HQ 4x" - -#: wx-xrc-strings.h:352 -msgid "HQ2x" -msgstr "HQ2x" - -#: ../src/wx/widgets/joyedit.cpp:100 -#, c-format -msgid "Hat%dE" -msgstr "Hat%dE" - -#: ../src/wx/widgets/joyedit.cpp:91 -#, c-format -msgid "Hat%dN" -msgstr "Hat%dN" - -#: ../src/wx/widgets/joyedit.cpp:106 -#, c-format -msgid "Hat%dNE" -msgstr "Hat%dNE" - -#: ../src/wx/widgets/joyedit.cpp:103 -#, c-format -msgid "Hat%dNW" -msgstr "Hat%dNW" - -#: ../src/wx/widgets/joyedit.cpp:94 -#, c-format -msgid "Hat%dS" -msgstr "Hat%dS" - -#: ../src/wx/widgets/joyedit.cpp:112 -#, c-format -msgid "Hat%dSE" -msgstr "Hat%dSE" - -#: ../src/wx/widgets/joyedit.cpp:109 -#, c-format -msgid "Hat%dSW" -msgstr "Hat%dSW" - -#: ../src/wx/widgets/joyedit.cpp:97 -#, c-format -msgid "Hat%dW" -msgstr "Hat%dW" - -#: ../src/wx/widgets/joyedit.cpp:146 -msgid "" -"Hat([0-9]+)((N|North|U|Up)|(S|South|D|Down)|(E|East|R|Right)|(W|West|L|Left)|" -"(NE|NorthEast|UR|UpRight)|(SE|SouthEast|DR|DownRight)|(SW|SouthWest|DL|" -"DownLeft)|(NW|NorthWest|UL|UpLeft))" -msgstr "" -"Hat([0-9]+)((N|North|U|Up)|(S|South|D|Down)|(E|East|R|Right)|(W|West|L|Left)|" -"(NE|NorthEast|UR|UpRight)|(SE|SouthEast|DR|DownRight)|(SW|SouthWest|DL|" -"DownLeft)|(NW|NorthWest|UL|UpLeft))" - -#: ../src/wx/guiinit.cpp:1454 -msgid "Host name invalid" -msgstr "Host name invalid" - -#: wx-xrc-strings.h:258 -msgid "Hot Desert" -msgstr "Hot Desert" - -#: wx-xrc-strings.h:495 -msgid "I" -msgstr "I" - -#: wx-xrc-strings.h:549 -msgid "I/O Viewer" -msgstr "I/O Viewer" - -#: wx-xrc-strings.h:521 -msgid "IFF:" -msgstr "IFF:" - -#: wx-xrc-strings.h:212 -msgid "If not empty or 0, enable rewind (seconds)" -msgstr "If not empty or 0, enable rewind (seconds)" - -#: wx-xrc-strings.h:537 -msgid "Illegal &read" -msgstr "Illegal &read" - -#: wx-xrc-strings.h:536 -msgid "Illegal &write" -msgstr "Illegal &write" - -#: ../src/wx/sys.cpp:591 -msgid "Image files (*.bmp;*.jpg;*.png)|*.bmp;*.jpg;*.png|" -msgstr "Image files (*.bmp;*.jpg;*.png)|*.bmp;*.jpg;*.png|" - -#: ../src/wx/cmdevents.cpp:640 -msgid "" -"Importing a battery file will erase any saved games (permanently after the " -"next write). Do you want to continue?" -msgstr "" -"Importing a battery file will erase any saved games (permanently after the " -"next write). Do you want to continue?" - -#: ../src/wx/cmdevents.cpp:665 -msgid "" -"Importing a code file will replace any loaded cheats. Do you want to " -"continue?" -msgstr "" -"Importing a code file will replace any loaded cheats. Do you want to " -"continue?" - -#: ../src/wx/cmdevents.cpp:762 -msgid "" -"Importing a snapshot file will erase any saved games (permanently after the " -"next write). Do you want to continue?" -msgstr "" -"Importing a snapshot file will erase any saved games (permanently after the " -"next write). Do you want to continue?" - -#: wx-xrc-strings.h:669 -msgid "Index:" -msgstr "Index:" - -#: wx-xrc-strings.h:361 -msgid "Interframe blending :" -msgstr "Interframe blending :" - -#: wx-xrc-strings.h:364 -msgid "Interframe motion blur" -msgstr "Interframe motion blur" - -#: ../src/wx/opts.cpp:657 -#, c-format -msgid "Invalid flag option %s - %s ignored" -msgstr "Invalid flag option %s - %s ignored" - -#: ../src/wx/opts.cpp:503 ../src/wx/opts.cpp:520 ../src/wx/opts.cpp:745 -#: ../src/wx/opts.cpp:765 -#, c-format -msgid "Invalid key binding %s for %s" -msgstr "Invalid key binding %s for %s" - -#: ../src/wx/guiinit.cpp:2277 -#, c-format -msgid "Invalid menu item %s; removing" -msgstr "Invalid menu item %s; removing" - -#: ../src/wx/opts.cpp:318 ../src/wx/opts.cpp:358 ../src/wx/opts.cpp:382 -#: ../src/wx/opts.cpp:391 -#, c-format -msgid "Invalid option %s present; removing if possible" -msgstr "Invalid option %s present; removing if possible" - -#: ../src/wx/opts.cpp:346 ../src/wx/opts.cpp:369 -#, c-format -msgid "Invalid option group %s present; removing if possible" -msgstr "Invalid option group %s present; removing if possible" - -#: ../src/wx/opts.cpp:454 ../src/wx/opts.cpp:691 -#, c-format -msgid "Invalid value %d for option %s; valid values are %d - %d" -msgstr "Invalid value %d for option %s; valid values are %d - %d" - -#: ../src/wx/opts.cpp:432 ../src/wx/opts.cpp:676 -#, c-format -msgid "Invalid value %s for option %s; valid values are %s%s%s" -msgstr "Invalid value %s for option %s; valid values are %s%s%s" - -#: ../src/wx/widgets/joyedit.cpp:78 -#, c-format -msgid "Joy%d-" -msgstr "Joy%d-" - -#: ../src/wx/guiinit.cpp:3205 -msgid "JoyBus host invalid; disabling" -msgstr "JoyBus host invalid; disabling" - -#: wx-xrc-strings.h:443 -msgid "Joybus host" -msgstr "Joybus host" - -#: wx-xrc-strings.h:415 -msgid "Joypad Configuration" -msgstr "Joypad Configuration" - -#: wx-xrc-strings.h:422 -msgid "L" -msgstr "L" - -#: wx-xrc-strings.h:180 -msgid "L&ess or equal" -msgstr "L&ess or equal" - -#: ../src/wx/cmdevents.cpp:1165 -msgid "LAN link is already active. Disable link mode to disconnect." -msgstr "LAN link is already active. Disable link mode to disconnect." - -#: wx-xrc-strings.h:353 -msgid "LQ2x" -msgstr "LQ2x" - -#: wx-xrc-strings.h:488 -msgid "LR:" -msgstr "LR:" - -#: wx-xrc-strings.h:523 -msgid "LY:" -msgstr "LY:" - -#: wx-xrc-strings.h:421 -msgid "Left" -msgstr "Left" - -#: wx-xrc-strings.h:396 -msgid "Left/Right" -msgstr "Left/Right" - -#: wx-xrc-strings.h:143 -msgid "License code:" -msgstr "License code:" - -#: wx-xrc-strings.h:441 -msgid "Link Options" -msgstr "Link Options" - -#: wx-xrc-strings.h:447 -msgid "Link timeout (in milliseconds)" -msgstr "Link timeout (in milliseconds)" - -#: wx-xrc-strings.h:66 -msgid "List &cheats ..." -msgstr "List &cheats ..." - -#: ../src/wx/wxvbam.cpp:255 -msgid "List all settable options and exit" -msgstr "List all settable options and exit" - -#: ../src/wx/cmdevents.cpp:645 ../src/wx/panel.cpp:292 -#, c-format -msgid "Loaded battery %s" -msgstr "Loaded battery %s" - -#: ../src/wx/guiinit.cpp:277 ../src/wx/panel.cpp:318 -msgid "Loaded cheats" -msgstr "Loaded cheats" - -#: ../src/wx/cmdevents.cpp:740 -#, c-format -msgid "Loaded code file %s" -msgstr "Loaded code file %s" - -#: ../src/wx/cmdevents.cpp:784 -#, c-format -msgid "Loaded snapshot file %s" -msgstr "Loaded snapshot file %s" - -#: ../src/wx/panel.cpp:484 -#, c-format -msgid "Loaded state %s" -msgstr "Loaded state %s" - -#: wx-xrc-strings.h:548 -msgid "Logging" -msgstr "Logging" - -#: wx-xrc-strings.h:392 -msgid "Lots" -msgstr "Lots" - -#: wx-xrc-strings.h:91 -msgid "M&emory viewer..." -msgstr "M&emory viewer..." - -#: ../src/wx/guiinit.cpp:2048 -msgid "Main display panel not found" -msgstr "Main display panel not found" - -#: ../src/wx/guiinit.cpp:2062 -msgid "Main icon not found" -msgstr "Main icon not found" - -#: wx-xrc-strings.h:127 -msgid "Main unit code:" -msgstr "Main unit code:" - -#: wx-xrc-strings.h:125 wx-xrc-strings.h:133 -msgid "Maker code:" -msgstr "Maker code:" - -#: wx-xrc-strings.h:126 wx-xrc-strings.h:134 -msgid "Maker name:" -msgstr "Maker name:" - -#: wx-xrc-strings.h:601 -msgid "Map Base" -msgstr "Map Base" - -#: wx-xrc-strings.h:583 -msgid "Map Base:" -msgstr "Map Base:" - -#: wx-xrc-strings.h:571 wx-xrc-strings.h:611 -msgid "Map view" -msgstr "Map view" - -#: wx-xrc-strings.h:370 wx-xrc-strings.h:401 -msgid "Maximum" -msgstr "Maximum" - -#: wx-xrc-strings.h:324 -msgid "Maximum magnification factor :" -msgstr "Maximum magnification factor :" - -#: ../src/wx/viewers.cpp:615 ../src/wx/viewers.cpp:662 -msgid "Memory dumps (*.dmp;*.bin)|*.dmp;*.bin|" -msgstr "Memory dumps (*.dmp;*.bin)|*.dmp;*.bin|" - -#: wx-xrc-strings.h:621 -msgid "Memory viewer" -msgstr "Memory viewer" - -#: ../src/wx/guiinit.cpp:2171 -#, c-format -msgid "Menu accelerator %s for %s overrides default for %s ; keeping menu" -msgstr "Menu accelerator %s for %s overrides default for %s ; keeping menu" - -#: ../src/wx/guiinit.cpp:3098 -msgid "Menu commands" -msgstr "Menu commands" - -#: ../src/wx/widgets/keyedit.cpp:140 -msgid "Meta+" -msgstr "Meta+" - -#: ../src/wx/widgets/keyedit.cpp:95 ../src/wx/widgets/keyedit.cpp:139 -msgid "Meta-" -msgstr "Meta-" - -#: wx-xrc-strings.h:309 -msgid "Mirroring:" -msgstr "Mirroring:" - -#: wx-xrc-strings.h:501 wx-xrc-strings.h:582 wx-xrc-strings.h:628 -msgid "Mode:" -msgstr "Mode:" - -#: wx-xrc-strings.h:588 -msgid "Mosaic:" -msgstr "Mosaic:" - -#: wx-xrc-strings.h:36 -msgid "Most &recent" -msgstr "Most &recent" - -#: wx-xrc-strings.h:430 -msgid "Motion Down" -msgstr "Motion Down" - -#: wx-xrc-strings.h:432 -msgid "Motion Left" -msgstr "Motion Left" - -#: wx-xrc-strings.h:433 -msgid "Motion Right" -msgstr "Motion Right" - -#: wx-xrc-strings.h:428 -msgid "Motion Up" -msgstr "Motion Up" - -#: wx-xrc-strings.h:368 -msgid "Mute" -msgstr "Mute" - -#: wx-xrc-strings.h:494 wx-xrc-strings.h:526 -msgid "N" -msgstr "N" - -#: wx-xrc-strings.h:406 -msgid "Native Saves" -msgstr "Native Saves" - -#: wx-xrc-strings.h:165 -msgid "Network Link" -msgstr "Network Link" - -#: wx-xrc-strings.h:233 -msgid "Never" -msgstr "Never" - -#: ../src/wx/guiinit.cpp:2591 -msgid "New Value" -msgstr "New Value" - -#: ../src/wx/cmdevents.cpp:2178 -msgid "Nintendo GameBoy (+Color+Advance) emulator." -msgstr "Nintendo GameBoy (+Color+Advance) emulator." - -#: ../src/wx/sys.cpp:108 ../src/wx/sys.cpp:158 -msgid "No game in progress to record" -msgstr "No game in progress to record" - -#: ../src/wx/panel.cpp:853 -msgid "No memory for rewinding" -msgstr "No memory for rewinding" - -#: wx-xrc-strings.h:217 -msgid "No throttle" -msgstr "No throttle" - -#: ../src/wx/guiinit.cpp:1619 -#, c-format -msgid "No usable rpi plugins found in %s" -msgstr "No usable rpi plugins found in %s" - -#: ../src/wx/cmdevents.cpp:557 ../src/wx/guiinit.cpp:1582 wx-xrc-strings.h:273 -#: wx-xrc-strings.h:304 wx-xrc-strings.h:316 wx-xrc-strings.h:342 -#: wx-xrc-strings.h:362 wx-xrc-strings.h:391 wx-xrc-strings.h:400 -msgid "None" -msgstr "None" - -#: ../src/wx/panel.cpp:774 -msgid "Not a valid GBA cartridge" -msgstr "Not a valid GBA cartridge" - -#: wx-xrc-strings.h:149 -msgid "Notes:" -msgstr "Notes:" - -#: ../src/wx/guiinit.cpp:705 ../src/wx/guiinit.cpp:911 -msgid "Number cannot be empty" -msgstr "Number cannot be empty" - -#: wx-xrc-strings.h:385 -msgid "Number of sound buffers:" -msgstr "Number of sound buffers:" - -#: wx-xrc-strings.h:77 -msgid "O&BJ WIN" -msgstr "O&BJ WIN" - -#: wx-xrc-strings.h:625 wx-xrc-strings.h:652 -msgid "OAM Viewer" -msgstr "OAM Viewer" - -#: wx-xrc-strings.h:644 -msgid "OAP:" -msgstr "OAP:" - -#: wx-xrc-strings.h:162 -msgid "Off (accurate)" -msgstr "Off (accurate)" - -#: wx-xrc-strings.h:192 -msgid "Ol&d value" -msgstr "Ol&d value" - -#: ../src/wx/guiinit.cpp:2590 -msgid "Old Value" -msgstr "Old Value" - -#: wx-xrc-strings.h:163 -msgid "On (fast)" -msgstr "On (fast)" - -#: wx-xrc-strings.h:321 -msgid "On-Screen Display" -msgstr "On-Screen Display" - -#: ../src/wx/cmdevents.cpp:88 -msgid "Open ROM file" -msgstr "Open ROM file" - -#: wx-xrc-strings.h:166 -msgid "Open cheat list" -msgstr "Open cheat list" - -#: wx-xrc-strings.h:3 -msgid "Open rece&nt" -msgstr "Open rece&nt" - -#: wx-xrc-strings.h:378 -msgid "OpenAL" -msgstr "OpenAL" - -#: ../src/wx/openal.cpp:161 -msgid "" -"OpenAL library could not be found on your system. Please install the " -"runtime from http://openal.org" -msgstr "" -"OpenAL library could not be found on your system. Please install the " -"runtime from http://openal.org" - -#: wx-xrc-strings.h:333 -msgid "OpenGL" -msgstr "OpenGL" - -#: ../src/wx/wxvbam.cpp:334 -msgid "" -"Options set from the command line are saved if any configuration changes are " -"made in the user interface.\n" -"\n" -"For flag options, true and false are specified as 1 and 0, respectively.\n" -"\n" -msgstr "" -"Options set from the command line are saved if any configuration changes are " -"made in the user interface.\n" -"\n" -"For flag options, true and false are specified as 1 and 0, respectively.\n" -"\n" - -#: ../src/wx/guiinit.cpp:3119 -msgid "Other commands" -msgstr "Other commands" - -#: wx-xrc-strings.h:331 -msgid "Output module" -msgstr "Output module" - -#: wx-xrc-strings.h:589 -msgid "Overflow:" -msgstr "Overflow:" - -#: wx-xrc-strings.h:490 wx-xrc-strings.h:519 -msgid "PC:" -msgstr "PC:" - -#: ../src/wx/cmdevents.cpp:865 ../src/wx/viewsupt.cpp:1024 -msgid "PNG images|*.png|BMP images|*.bmp" -msgstr "PNG images|*.png|BMP images|*.bmp" - -#: wx-xrc-strings.h:630 wx-xrc-strings.h:645 -msgid "Pal:" -msgstr "Pal:" - -#: wx-xrc-strings.h:653 wx-xrc-strings.h:673 -msgid "Palette View" -msgstr "Palette View" - -#: wx-xrc-strings.h:593 wx-xrc-strings.h:607 wx-xrc-strings.h:684 -#: wx-xrc-strings.h:697 -msgid "Palette:" -msgstr "Palette:" - -#: wx-xrc-strings.h:206 -msgid "Pause when &inactive" -msgstr "Pause when &inactive" - -#: wx-xrc-strings.h:317 -msgid "Percentage" -msgstr "Percentage" - -#: wx-xrc-strings.h:259 -msgid "Pink Dreams" -msgstr "Pink Dreams" - -#: wx-xrc-strings.h:346 -msgid "Pixelate" -msgstr "Pixelate" - -#: ../src/wx/sys.cpp:280 -msgid "Playback ended" -msgstr "Playback ended" - -#: ../src/wx/guiinit.cpp:105 -#, c-format -msgid "Player %d connected\n" -msgstr "Player %d connected\n" - -#: wx-xrc-strings.h:411 -msgid "Player 1" -msgstr "Player 1" - -#: wx-xrc-strings.h:412 -msgid "Player 2" -msgstr "Player 2" - -#: wx-xrc-strings.h:413 -msgid "Player 3" -msgstr "Player 3" - -#: wx-xrc-strings.h:414 -msgid "Player 4" -msgstr "Player 4" - -#: wx-xrc-strings.h:153 -msgid "Players:" -msgstr "Players:" - -#: wx-xrc-strings.h:446 -msgid "" -"Please note that this is the first version of RFU emulation code and it's " -"probably got more bugs than the link code. Also, it is only supported with " -"2 players in local mode." -msgstr "" -"Please note that this is the first version of RFU emulation code and it's " -"probably got more bugs than the link code. Also, it is only supported with " -"2 players in local mode." - -#: ../src/wx/guiinit.cpp:1659 -msgid "Please select a plugin or a different filter" -msgstr "Please select a plugin or a different filter" - -#: ../src/wx/guiinit.cpp:1636 wx-xrc-strings.h:359 -msgid "Plugin" -msgstr "Plugin" - -#: wx-xrc-strings.h:360 -msgid "Plugin :" -msgstr "Plugin :" - -#: ../src/wx/guiinit.cpp:1660 -msgid "Plugin selection error" -msgstr "Plugin selection error" - -#: ../src/wx/cmdevents.cpp:1650 -msgid "Port to wait for connection:" -msgstr "Port to wait for connection:" - -#: wx-xrc-strings.h:627 wx-xrc-strings.h:641 -msgid "Pos:" -msgstr "Pos:" - -#: wx-xrc-strings.h:223 -msgid "Preferences" -msgstr "Preferences" - -#: wx-xrc-strings.h:115 -msgid "Print Si&ze" -msgstr "Print Si&ze" - -#: ../src/wx/wxvbam.cpp:244 -msgid "Print configuration path and exit" -msgstr "Print configuration path and exit" - -#: ../src/wx/sys.cpp:676 -msgid "Printed" -msgstr "Printed" - -#: wx-xrc-strings.h:632 wx-xrc-strings.h:643 -msgid "Prio:" -msgstr "Prio:" - -#: wx-xrc-strings.h:587 wx-xrc-strings.h:608 -msgid "Priority:" -msgstr "Priority:" - -#: ../src/wx/panel.cpp:56 ../src/wx/panel.cpp:110 ../src/wx/panel.cpp:173 -msgid "Problem loading file" -msgstr "Problem loading file" - -#: wx-xrc-strings.h:158 -msgid "Protocol:" -msgstr "Protocol:" - -#: wx-xrc-strings.h:424 -msgid "R" -msgstr "R" - -#: wx-xrc-strings.h:460 -msgid "R0:" -msgstr "R0:" - -#: wx-xrc-strings.h:480 -msgid "R10:" -msgstr "R10:" - -#: wx-xrc-strings.h:482 -msgid "R11:" -msgstr "R11:" - -#: wx-xrc-strings.h:484 -msgid "R12:" -msgstr "R12:" - -#: wx-xrc-strings.h:462 -msgid "R1:" -msgstr "R1:" - -#: wx-xrc-strings.h:464 -msgid "R2:" -msgstr "R2:" - -#: wx-xrc-strings.h:466 -msgid "R3:" -msgstr "R3:" - -#: wx-xrc-strings.h:468 -msgid "R4:" -msgstr "R4:" - -#: wx-xrc-strings.h:470 -msgid "R5:" -msgstr "R5:" - -#: wx-xrc-strings.h:472 -msgid "R6:" -msgstr "R6:" - -#: wx-xrc-strings.h:474 -msgid "R7:" -msgstr "R7:" - -#: wx-xrc-strings.h:476 -msgid "R8:" -msgstr "R8:" - -#: wx-xrc-strings.h:478 -msgid "R9:" -msgstr "R9:" - -#: ../src/wx/viewsupt.cpp:675 -msgid "R:" -msgstr "R:" - -#: wx-xrc-strings.h:141 -msgid "RAM size:" -msgstr "RAM size:" - -#: ../src/wx/cmdevents.cpp:1170 -msgid "RFU is currently only supported in local mode." -msgstr "RFU is currently only supported in local mode." - -#: ../src/wx/cmdevents.cpp:442 -msgid "ROM" -msgstr "ROM" - -#: wx-xrc-strings.h:122 wx-xrc-strings.h:131 wx-xrc-strings.h:145 -msgid "ROM Information" -msgstr "ROM Information" - -#: ../src/wx/wxvbam.cpp:257 -msgid "ROM file" -msgstr "ROM file" - -#: wx-xrc-strings.h:6 -msgid "ROM in&formation..." -msgstr "ROM in&formation..." - -#: wx-xrc-strings.h:140 -msgid "ROM size:" -msgstr "ROM size:" - -#: wx-xrc-strings.h:129 wx-xrc-strings.h:137 -msgid "ROM version:" -msgstr "ROM version:" - -#: ../src/wx/cmdevents.cpp:514 -msgid "ROM+BANDAI TAMA5" -msgstr "ROM+BANDAI TAMA5" - -#: ../src/wx/cmdevents.cpp:520 -msgid "ROM+HuC-1" -msgstr "ROM+HuC-1" - -#: ../src/wx/cmdevents.cpp:517 -msgid "ROM+HuC-3" -msgstr "ROM+HuC-3" - -#: ../src/wx/cmdevents.cpp:445 -msgid "ROM+MBC1" -msgstr "ROM+MBC1" - -#: ../src/wx/cmdevents.cpp:448 -msgid "ROM+MBC1+RAM" -msgstr "ROM+MBC1+RAM" - -#: ../src/wx/cmdevents.cpp:451 -msgid "ROM+MBC1+RAM+BATT" -msgstr "ROM+MBC1+RAM+BATT" - -#: ../src/wx/cmdevents.cpp:454 -msgid "ROM+MBC2" -msgstr "ROM+MBC2" - -#: ../src/wx/cmdevents.cpp:457 -msgid "ROM+MBC2+BATT" -msgstr "ROM+MBC2+BATT" - -#: ../src/wx/cmdevents.cpp:475 -msgid "ROM+MBC3" -msgstr "ROM+MBC3" - -#: ../src/wx/cmdevents.cpp:478 -msgid "ROM+MBC3+RAM" -msgstr "ROM+MBC3+RAM" - -#: ../src/wx/cmdevents.cpp:481 -msgid "ROM+MBC3+RAM+BATT" -msgstr "ROM+MBC3+RAM+BATT" - -#: ../src/wx/cmdevents.cpp:469 -msgid "ROM+MBC3+TIMER+BATT" -msgstr "ROM+MBC3+TIMER+BATT" - -#: ../src/wx/cmdevents.cpp:472 -msgid "ROM+MBC3+TIMER+RAM+BATT" -msgstr "ROM+MBC3+TIMER+RAM+BATT" - -#: ../src/wx/cmdevents.cpp:484 -msgid "ROM+MBC5" -msgstr "ROM+MBC5" - -#: ../src/wx/cmdevents.cpp:487 -msgid "ROM+MBC5+RAM" -msgstr "ROM+MBC5+RAM" - -#: ../src/wx/cmdevents.cpp:490 -msgid "ROM+MBC5+RAM+BATT" -msgstr "ROM+MBC5+RAM+BATT" - -#: ../src/wx/cmdevents.cpp:493 -msgid "ROM+MBC5+RUMBLE" -msgstr "ROM+MBC5+RUMBLE" - -#: ../src/wx/cmdevents.cpp:496 -msgid "ROM+MBC5+RUMBLE+RAM" -msgstr "ROM+MBC5+RUMBLE+RAM" - -#: ../src/wx/cmdevents.cpp:499 -msgid "ROM+MBC5+RUMBLE+RAM+BATT" -msgstr "ROM+MBC5+RUMBLE+RAM+BATT" - -#: ../src/wx/cmdevents.cpp:502 -msgid "ROM+MBC7+BATT" -msgstr "ROM+MBC7+BATT" - -#: ../src/wx/cmdevents.cpp:460 -msgid "ROM+MMM01" -msgstr "ROM+MMM01" - -#: ../src/wx/cmdevents.cpp:463 -msgid "ROM+MMM01+RAM" -msgstr "ROM+MMM01+RAM" - -#: ../src/wx/cmdevents.cpp:466 -msgid "ROM+MMM01+RAM+BATT" -msgstr "ROM+MMM01+RAM+BATT" - -#: ../src/wx/cmdevents.cpp:511 -msgid "ROM+POCKET CAMERA" -msgstr "ROM+POCKET CAMERA" - -#: wx-xrc-strings.h:505 wx-xrc-strings.h:531 -msgid "Re&fresh" -msgstr "Re&fresh" - -#: wx-xrc-strings.h:452 -msgid "Re&set All" -msgstr "Re&set All" - -#: wx-xrc-strings.h:65 -msgid "Re&wind" -msgstr "Re&wind" - -#: wx-xrc-strings.h:262 -msgid "Real 'GB on GBASP' Colors" -msgstr "Real 'GB on GBASP' Colors" - -#: wx-xrc-strings.h:261 -msgid "Real GB Colors" -msgstr "Real GB Colors" - -#: wx-xrc-strings.h:293 -msgid "Real Time Clock:" -msgstr "Real Time Clock:" - -#: wx-xrc-strings.h:409 -msgid "Recordings" -msgstr "Recordings" - -#: ../src/wx/guiinit.cpp:325 ../src/wx/guiinit.cpp:342 -msgid "Removing cheats" -msgstr "Removing cheats" - -#: wx-xrc-strings.h:112 -msgid "Report &Bugs" -msgstr "Report &Bugs" - -#: wx-xrc-strings.h:266 -msgid "Restore" -msgstr "Restore" - -#: ../src/wx/guiinit.cpp:324 ../src/wx/guiinit.cpp:341 -msgid "Restore old values?" -msgstr "Restore old values?" - -#: wx-xrc-strings.h:323 -msgid "Retain aspect ratio" -msgstr "Retain aspect ratio" - -#: wx-xrc-strings.h:423 -msgid "Right" -msgstr "Right" - -#: wx-xrc-strings.h:634 -msgid "Rot.:" -msgstr "Rot.:" - -#: wx-xrc-strings.h:184 -msgid "S&igned" -msgstr "S&igned" - -#: wx-xrc-strings.h:377 -msgid "SDL" -msgstr "SDL" - -#: ../src/wx/widgets/keyedit.cpp:78 ../src/wx/widgets/keyedit.cpp:166 -msgid "SHIFT" -msgstr "SHIFT" - -#: wx-xrc-strings.h:486 wx-xrc-strings.h:517 -msgid "SP:" -msgstr "SP:" - -#: wx-xrc-strings.h:270 wx-xrc-strings.h:301 -msgid "SRAM" -msgstr "SRAM" - -#: wx-xrc-strings.h:534 -msgid "SW&I" -msgstr "SW&I" - -#: wx-xrc-strings.h:371 -msgid "Sample rate :" -msgstr "Sample rate :" - -#: wx-xrc-strings.h:662 wx-xrc-strings.h:666 -msgid "Save &BG..." -msgstr "Save &BG..." - -#: wx-xrc-strings.h:663 wx-xrc-strings.h:668 -msgid "Save &Sprite..." -msgstr "Save &Sprite..." - -#: wx-xrc-strings.h:297 -msgid "Save Type:" -msgstr "Save Type:" - -#: ../src/wx/wxvbam.cpp:240 -msgid "Save built-in XRC file and exit" -msgstr "Save built-in XRC file and exit" - -#: ../src/wx/wxvbam.cpp:242 -msgid "Save built-in vba-over.ini and exit" -msgstr "Save built-in vba-over.ini and exit" - -#: wx-xrc-strings.h:167 -msgid "Save cheat list" -msgstr "Save cheat list" - -#: ../src/wx/sys.cpp:598 -msgid "Save printer image to" -msgstr "Save printer image to" - -#: wx-xrc-strings.h:267 -msgid "Save type :" -msgstr "Save type :" - -#: ../src/wx/guiinit.cpp:300 -msgid "Saved cheats" -msgstr "Saved cheats" - -#: ../src/wx/cmdevents.cpp:841 -#, c-format -msgid "Saved snapshot file %s" -msgstr "Saved snapshot file %s" - -#: ../src/wx/panel.cpp:508 -#, c-format -msgid "Saved state %s" -msgstr "Saved state %s" - -#: wx-xrc-strings.h:350 -msgid "Scanlines" -msgstr "Scanlines" - -#: wx-xrc-strings.h:14 -msgid "Screen capt&ure..." -msgstr "Screen capt&ure..." - -#: wx-xrc-strings.h:436 -msgid "Screenshot" -msgstr "Screenshot" - -#: wx-xrc-strings.h:208 -msgid "Screenshot Format:" -msgstr "Screenshot Format:" - -#: wx-xrc-strings.h:408 -msgid "Screenshots" -msgstr "Screenshots" - -#: wx-xrc-strings.h:199 -msgid "Search for cheats" -msgstr "Search for cheats" - -#: ../src/wx/guiinit.cpp:733 -#, c-format -msgid "Search produced %d results. Please refine better" -msgstr "Search produced %d results. Please refine better" - -#: ../src/wx/guiinit.cpp:743 -msgid "Search produced no results" -msgstr "Search produced no results" - -#: wx-xrc-strings.h:194 -msgid "Search value" -msgstr "Search value" - -#: wx-xrc-strings.h:146 -msgid "Selct codes to import" -msgstr "Selct codes to import" - -#: wx-xrc-strings.h:425 -msgid "Select" -msgstr "Select" - -#: ../src/wx/cmdevents.cpp:633 ../src/wx/cmdevents.cpp:795 -msgid "Select battery file" -msgstr "Select battery file" - -#: ../src/wx/guiinit.cpp:262 ../src/wx/guiinit.cpp:285 -msgid "Select cheat file" -msgstr "Select cheat file" - -#: ../src/wx/cmdevents.cpp:655 -msgid "Select code file" -msgstr "Select code file" - -#: ../src/wx/cmdevents.cpp:1080 -msgid "Select file" -msgstr "Select file" - -#: ../src/wx/viewers.cpp:617 -msgid "Select memory dump file" -msgstr "Select memory dump file" - -#: ../src/wx/cmdevents.cpp:864 ../src/wx/cmdevents.cpp:941 -#: ../src/wx/cmdevents.cpp:1013 ../src/wx/cmdevents.cpp:1049 -#: ../src/wx/viewers.cpp:495 ../src/wx/viewers.cpp:664 -#: ../src/wx/viewsupt.cpp:1023 -msgid "Select output file" -msgstr "Select output file" - -#: ../src/wx/gfxviewers.cpp:1041 -msgid "Select output file and type" -msgstr "Select output file and type" - -#: ../src/wx/cmdevents.cpp:752 ../src/wx/cmdevents.cpp:818 -msgid "Select snapshot file" -msgstr "Select snapshot file" - -#: ../src/wx/cmdevents.cpp:1246 ../src/wx/cmdevents.cpp:1328 -msgid "Select state file" -msgstr "Select state file" - -#: wx-xrc-strings.h:151 -msgid "Server" -msgstr "Server" - -#: ../src/wx/guiinit.cpp:94 -#, c-format -msgid "Server IP address is: %s\n" -msgstr "Server IP address is: %s\n" - -#: wx-xrc-strings.h:157 -msgid "Server:" -msgstr "Server:" - -#: ../src/wx/cmdevents.cpp:1648 -msgid "Set to 0 for pseudo tty" -msgstr "Set to 0 for pseudo tty" - -#: wx-xrc-strings.h:454 -msgid "Shortcut Key:" -msgstr "Shortcut Key:" - -#: wx-xrc-strings.h:187 -msgid "Signed/Unsigned" -msgstr "Signed/Unsigned" - -#: wx-xrc-strings.h:332 -msgid "Simple" -msgstr "Simple" - -#: wx-xrc-strings.h:354 -msgid "Simple 2X" -msgstr "Simple 2X" - -#: wx-xrc-strings.h:355 -msgid "Simple 3x" -msgstr "Simple 3x" - -#: wx-xrc-strings.h:357 -msgid "Simple 4x" -msgstr "Simple 4x" - -#: wx-xrc-strings.h:585 wx-xrc-strings.h:623 wx-xrc-strings.h:633 -msgid "Size:" -msgstr "Size:" - -#: wx-xrc-strings.h:288 -msgid "Skip BIOS intro" -msgstr "Skip BIOS intro" - -#: wx-xrc-strings.h:363 -msgid "Smart interframe blending" -msgstr "Smart interframe blending" - -#: wx-xrc-strings.h:544 -msgid "Soun&d output" -msgstr "Soun&d output" - -#: wx-xrc-strings.h:403 -msgid "Sound Settings" -msgstr "Sound Settings" - -#: ../src/wx/cmdevents.cpp:1558 -msgid "Sound disabled" -msgstr "Sound disabled" - -#: ../src/wx/cmdevents.cpp:1558 -msgid "Sound enabled" -msgstr "Sound enabled" - -#: wx-xrc-strings.h:399 -msgid "Sound filtering" -msgstr "Sound filtering" - -#: wx-xrc-strings.h:398 -msgid "Sound interpolation" -msgstr "Sound interpolation" - -#: wx-xrc-strings.h:437 -msgid "Special" -msgstr "Special" - -#: wx-xrc-strings.h:193 -msgid "Specific &value" -msgstr "Specific &value" - -#: wx-xrc-strings.h:244 wx-xrc-strings.h:285 -msgid "Speed" -msgstr "Speed" - -#: wx-xrc-strings.h:435 -msgid "Speed Up" -msgstr "Speed Up" - -#: wx-xrc-strings.h:161 -msgid "Speed hacks:" -msgstr "Speed hacks:" - -#: wx-xrc-strings.h:315 -msgid "Speed indicator :" -msgstr "Speed indicator :" - -#: wx-xrc-strings.h:656 wx-xrc-strings.h:667 -msgid "Sprite" -msgstr "Sprite" - -#: wx-xrc-strings.h:626 wx-xrc-strings.h:640 -msgid "Sprite:" -msgstr "Sprite:" - -#: wx-xrc-strings.h:264 -msgid "Sprites" -msgstr "Sprites" - -#: wx-xrc-strings.h:254 wx-xrc-strings.h:427 -msgid "Standard" -msgstr "Standard" - -#: wx-xrc-strings.h:426 -msgid "Start" -msgstr "Start" - -#: wx-xrc-strings.h:35 -msgid "Start &Network Link..." -msgstr "Start &Network Link..." - -#: wx-xrc-strings.h:19 -msgid "Start &game recording..." -msgstr "Start &game recording..." - -#: wx-xrc-strings.h:15 -msgid "Start &sound recording..." -msgstr "Start &sound recording..." - -#: wx-xrc-strings.h:17 -msgid "Start &video recording..." -msgstr "Start &video recording..." - -#: ../src/wx/wxvbam.cpp:246 -msgid "Start in full-screen mode" -msgstr "Start in full-screen mode" - -#: wx-xrc-strings.h:22 -msgid "Start playing &movie..." -msgstr "Start playing &movie..." - -#: ../src/wx/guiinit.cpp:57 -msgid "Start!" -msgstr "Start!" - -#: wx-xrc-strings.h:394 -msgid "Stereo" -msgstr "Stereo" - -#: wx-xrc-strings.h:20 -msgid "Stop g&ame recording" -msgstr "Stop g&ame recording" - -#: wx-xrc-strings.h:23 -msgid "Stop playing m&ovie" -msgstr "Stop playing m&ovie" - -#: wx-xrc-strings.h:16 -msgid "Stop s&ound recording" -msgstr "Stop s&ound recording" - -#: wx-xrc-strings.h:18 -msgid "Stop v&ideo recording" -msgstr "Stop v&ideo recording" - -#: wx-xrc-strings.h:580 wx-xrc-strings.h:602 wx-xrc-strings.h:636 -#: wx-xrc-strings.h:648 wx-xrc-strings.h:685 wx-xrc-strings.h:698 -msgid "Stretch to &fit" -msgstr "Stretch to &fit" - -#: wx-xrc-strings.h:344 -msgid "Super 2xSaI" -msgstr "Super 2xSaI" - -#: wx-xrc-strings.h:345 -msgid "Super Eagle" -msgstr "Super Eagle" - -#: wx-xrc-strings.h:229 -msgid "Super Game Boy" -msgstr "Super Game Boy" - -#: wx-xrc-strings.h:230 -msgid "Super Game Boy 2" -msgstr "Super Game Boy 2" - -#: wx-xrc-strings.h:390 -msgid "Surround" -msgstr "Surround" - -#: wx-xrc-strings.h:240 -msgid "System and Peripherals" -msgstr "System and Peripherals" - -#: wx-xrc-strings.h:281 -msgid "System and peripherals" -msgstr "System and peripherals" - -#: wx-xrc-strings.h:499 -msgid "T" -msgstr "T" - -#: wx-xrc-strings.h:159 -msgid "TCP" -msgstr "TCP" - -#: wx-xrc-strings.h:351 -msgid "TV Mode" -msgstr "TV Mode" - -#: ../src/wx/viewers.cpp:493 -msgid "Text files (*.txt;*.log)|*.txt;*.log|" -msgstr "Text files (*.txt;*.log)|*.txt;*.log|" - -#: ../src/wx/xaudio2.cpp:156 ../src/wx/xaudio2.cpp:422 -msgid "The XAudio2 interface failed to initialize!" -msgstr "The XAudio2 interface failed to initialize!" - -#: ../src/wx/wxvbam.cpp:353 -msgid "" -"The commands available for the Keyboard/* option are:\n" -"\n" -msgstr "" -"The commands available for the Keyboard/* option are:\n" -"\n" - -#: ../src/wx/cmdevents.cpp:2180 -msgid "" -"This program is free software: you can redistribute it and/or modify\n" -"it under the terms of the GNU General Public License as published by\n" -"the Free Software Foundation, either version 2 of the License, or\n" -"(at your option) any later version.\n" -"\n" -"This program is distributed in the hope that it will be useful,\n" -"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" -"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" -"GNU General Public License for more details.\n" -"\n" -"You should have received a copy of the GNU General Public License\n" -"along with this program. If not, see http://www.gnu.org/licenses ." -msgstr "" -"This program is free software: you can redistribute it and/or modify\n" -"it under the terms of the GNU General Public License as published by\n" -"the Free Software Foundation, either version 2 of the License, or\n" -"(at your option) any later version.\n" -"\n" -"This program is distributed in the hope that it will be useful,\n" -"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" -"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" -"GNU General Public License for more details.\n" -"\n" -"You should have received a copy of the GNU General Public License\n" -"along with this program. If not, see http://www.gnu.org/licenses ." - -#: ../src/wx/guiinit.cpp:1834 -msgid "This will clear all user-defined accelerators. Are you sure?" -msgstr "This will clear all user-defined accelerators. Are you sure?" - -#: wx-xrc-strings.h:674 wx-xrc-strings.h:704 -msgid "Tile Viewer" -msgstr "Tile Viewer" - -#: wx-xrc-strings.h:591 wx-xrc-strings.h:605 wx-xrc-strings.h:631 -#: wx-xrc-strings.h:642 wx-xrc-strings.h:687 wx-xrc-strings.h:700 -msgid "Tile:" -msgstr "Tile:" - -#: wx-xrc-strings.h:147 -msgid "Title:" -msgstr "Title:" - -#: wx-xrc-strings.h:63 -msgid "To &File ..." -msgstr "To &File ..." - -#: wx-xrc-strings.h:171 -msgid "Toggle all Cheats" -msgstr "Toggle all Cheats" - -#: wx-xrc-strings.h:320 -msgid "Transparent status and speed" -msgstr "Transparent status and speed" - -#: wx-xrc-strings.h:196 -msgid "U&pdate Old" -msgstr "U&pdate Old" - -#: wx-xrc-strings.h:160 -msgid "UDP" -msgstr "UDP" - -#: ../src/wx/panel.cpp:1921 ../src/wx/panel.cpp:1949 -#, c-format -msgid "Unable to begin recording to %s (%s)" -msgstr "Unable to begin recording to %s (%s)" - -#: ../src/wx/panel.cpp:172 -#, c-format -msgid "Unable to load Game Boy Advance ROM %s" -msgstr "Unable to load Game Boy Advance ROM %s" - -#: ../src/wx/panel.cpp:109 -#, c-format -msgid "Unable to load Game Boy ROM %s" -msgstr "Unable to load Game Boy ROM %s" - -#: ../src/wx/guiinit.cpp:2302 -#, c-format -msgid "Unable to load dialog %s (control %s) from resources" -msgstr "Unable to load dialog %s (control %s) from resources" - -#: ../src/wx/guiinit.cpp:2298 ../src/wx/viewsupt.h:38 -#, c-format -msgid "Unable to load dialog %s from resources" -msgstr "Unable to load dialog %s from resources" - -#: wx-xrc-strings.h:535 -msgid "Unaligned &memory" -msgstr "Unaligned &memory" - -#: wx-xrc-strings.h:135 -msgid "Unit code:" -msgstr "Unit code:" - -#: ../src/wx/cmdevents.cpp:436 ../src/wx/cmdevents.cpp:523 -#: ../src/wx/cmdevents.cpp:552 ../src/wx/cmdevents.cpp:606 -msgid "Unknown" -msgstr "Unknown" - -#: ../src/wx/cmdevents.cpp:689 -#, c-format -msgid "Unsupported code file %s" -msgstr "Unsupported code file %s" - -#: wx-xrc-strings.h:417 -msgid "Up" -msgstr "Up" - -#: wx-xrc-strings.h:247 -msgid "Use a &Color Game Boy boot ROM file" -msgstr "Use a &Color Game Boy boot ROM file" - -#: wx-xrc-strings.h:245 -msgid "Use a &Game Boy boot ROM file" -msgstr "Use a &Game Boy boot ROM file" - -#: wx-xrc-strings.h:286 -msgid "Use a bios file" -msgstr "Use a bios file" - -#: wx-xrc-strings.h:438 -msgid "Use as default" -msgstr "Use as default" - -#: wx-xrc-strings.h:265 -msgid "Use this palette" -msgstr "Use this palette" - -#: wx-xrc-strings.h:251 -msgid "User 1" -msgstr "User 1" - -#: wx-xrc-strings.h:252 -msgid "User 2" -msgstr "User 2" - -#: wx-xrc-strings.h:500 -msgid "V" -msgstr "V" - -#: ../src/wx/cmdevents.cpp:1050 ../src/wx/cmdevents.cpp:1081 -msgid "VBA Movie files|*.vmv" -msgstr "VBA Movie files|*.vmv" - -#: ../src/wx/guiinit.cpp:263 ../src/wx/guiinit.cpp:286 -msgid "VBA cheat lists (*.clt)|*.clt" -msgstr "VBA cheat lists (*.clt)|*.clt" - -#: wx-xrc-strings.h:113 -msgid "VBA-M Support &Forum" -msgstr "VBA-M Support &Forum" - -#: wx-xrc-strings.h:1 -msgid "VBAM" -msgstr "VBAM" - -#: wx-xrc-strings.h:693 -msgid "VRAM Bank" -msgstr "VRAM Bank" - -#: ../src/wx/panel.cpp:712 -#, c-format -msgid "Valid mode: %dx%d-%d@%d" -msgstr "Valid mode: %dx%d-%d@%d" - -#: wx-xrc-strings.h:552 wx-xrc-strings.h:658 wx-xrc-strings.h:670 -msgid "Value:" -msgstr "Value:" - -#: wx-xrc-strings.h:545 -msgid "Verbose" -msgstr "Verbose" - -#: wx-xrc-strings.h:328 -msgid "Video Mode :" -msgstr "Video Mode :" - -#: ../src/wx/cmdevents.cpp:1247 ../src/wx/cmdevents.cpp:1329 -msgid "VisualBoyAdvance saved game files|*.sgm" -msgstr "VisualBoyAdvance saved game files|*.sgm" - -#: wx-xrc-strings.h:367 -msgid "Volume :" -msgstr "Volume :" - -#: ../src/wx/cmdevents.cpp:1569 ../src/wx/cmdevents.cpp:1581 -#, c-format -msgid "Volume: %d%%" -msgstr "Volume: %d%%" - -#: wx-xrc-strings.h:76 -msgid "W&IN 1" -msgstr "W&IN 1" - -#: wx-xrc-strings.h:337 -msgid "Wait for VSync" -msgstr "Wait for VSync" - -#: ../src/wx/guiinit.cpp:158 -#, c-format -msgid "Waiting for %d players to join" -msgstr "Waiting for %d players to join" - -#: ../src/wx/cmdevents.cpp:1674 -msgid "Waiting for GDB..." -msgstr "Waiting for GDB..." - -#: ../src/wx/guiinit.cpp:131 -msgid "Waiting for clients..." -msgstr "Waiting for clients..." - -#: ../src/wx/cmdevents.cpp:1666 -#, c-format -msgid "Waiting for connection at %s" -msgstr "Waiting for connection at %s" - -#: ../src/wx/cmdevents.cpp:1672 -#, c-format -msgid "Waiting for connection on port %d" -msgstr "Waiting for connection on port %d" - -#: ../src/wx/guiinit.cpp:187 -msgid "Waiting for connection..." -msgstr "Waiting for connection..." - -#: wx-xrc-strings.h:260 -msgid "Weird Colors" -msgstr "Weird Colors" - -#: ../src/wx/guiinit.cpp:2068 -msgid "Welcome to wxVBAM!" -msgstr "Welcome to wxVBAM!" - -#: ../src/wx/gfxviewers.cpp:1042 -msgid "" -"Windows Palette (*.pal)|*.pal|PaintShop Palette (*.pal)|*.pal|Adobe Color " -"Table (*.act)|*.act" -msgstr "" -"Windows Palette (*.pal)|*.pal|PaintShop Palette (*.pal)|*.pal|Adobe Color " -"Table (*.act)|*.act" - -#: ../src/wx/cmdevents.cpp:804 ../src/wx/panel.cpp:536 -#, c-format -msgid "Wrote battery %s" -msgstr "Wrote battery %s" - -#: ../src/wx/wxvbam.cpp:294 -#, c-format -msgid "" -"Wrote built-in configuration to %s.\n" -"To override, remove all but changed root node(s). First found root node of " -"correct name in any .xrc or .xrs files in following search path overrides " -"built-in:" -msgstr "" -"Wrote built-in configuration to %s.\n" -"To override, remove all but changed root node(s). First found root node of " -"correct name in any .xrc or .xrs files in following search path overrides " -"built-in:" - -#: ../src/wx/wxvbam.cpp:321 -#, c-format -msgid "" -"Wrote built-in override file to %s\n" -"To override, delete all but changed section. First found section is used " -"from search path:" -msgstr "" -"Wrote built-in override file to %s\n" -"To override, delete all but changed section. First found section is used " -"from search path:" - -#: ../src/wx/sys.cpp:609 ../src/wx/sys.cpp:778 -#, c-format -msgid "Wrote printer output to %s" -msgstr "Wrote printer output to %s" - -#: ../src/wx/cmdevents.cpp:884 ../src/wx/sys.cpp:400 -#, c-format -msgid "Wrote snapshot %s" -msgstr "Wrote snapshot %s" - -#: wx-xrc-strings.h:379 -msgid "XAudio2" -msgstr "XAudio2" - -#: ../src/wx/xaudio2.cpp:192 -msgid "XAudio2: Creating mastering voice failed!" -msgstr "XAudio2: Creating mastering voice failed!" - -#: ../src/wx/xaudio2.cpp:201 -msgid "XAudio2: Creating source voice failed!" -msgstr "XAudio2: Creating source voice failed!" - -#: ../src/wx/xaudio2.cpp:391 -msgid "XAudio2: Enumerating devices failed!" -msgstr "XAudio2: Enumerating devices failed!" - -#: ../src/wx/guiinit.cpp:1453 -msgid "You must enter a valid host name" -msgstr "You must enter a valid host name" - -#: wx-xrc-strings.h:496 wx-xrc-strings.h:525 -msgid "Z" -msgstr "Z" - -#: wx-xrc-strings.h:330 -msgid "Zoom" -msgstr "Zoom" - -#: ../src/wx/widgets/joyedit.cpp:139 -msgid "^Joy([0-9]+)[-+]" -msgstr "^Joy([0-9]+)[-+]" - -#: wx-xrc-strings.h:550 -msgid "a" -msgstr "a" - -#: wx-xrc-strings.h:551 -msgid "b" -msgstr "b" - -#: ../src/wx/panel.cpp:1905 -msgid "can't guess output format from file name" -msgstr "can't guess output format from file name" - -#: ../src/wx/dsound.cpp:306 -#, c-format -msgid "dsbSecondary->Lock() failed: %08x" -msgstr "dsbSecondary->Lock() failed: %08x" - -#: ../src/wx/dsound.cpp:164 -#, c-format -msgid "dsbSecondary->SetCurrentPosition failed %08x" -msgstr "dsbSecondary->SetCurrentPosition failed %08x" - -#: ../src/wx/panel.cpp:1901 -msgid "error initializing codec" -msgstr "error initializing codec" - -#: ../src/wx/panel.cpp:1903 -msgid "error writing to output file" -msgstr "error writing to output file" - -#: ../src/wx/wxvbam.cpp:339 -msgid "flag" -msgstr "flag" - -#: ../src/wx/wxvbam.cpp:342 -msgid "int" -msgstr "int" - -#: ../src/wx/panel.cpp:1899 -msgid "memory allocation error" -msgstr "memory allocation error" - -#: ../src/wx/wxvbam.cpp:303 -msgid "print-cfg-path" -msgstr "print-cfg-path" - -#: ../src/wx/panel.cpp:1909 -msgid "programming error; aborting!" -msgstr "programming error; aborting!" - -#: ../src/wx/wxvbam.cpp:313 -msgid "save-over" -msgstr "save-over" - -#: ../src/wx/wxvbam.cpp:279 -msgid "save-xrc" -msgstr "save-xrc" - -#: wx-xrc-strings.h:213 -msgid "seconds (0-600); 0 = disable" -msgstr "seconds (0-600); 0 = disable" - -#: ../src/wx/guiinit.cpp:894 -msgid "signed decimal" -msgstr "signed decimal" - -#: ../src/wx/wxvbam.cpp:340 ../src/wx/wxvbam.cpp:343 -msgid "string" -msgstr "string" - -#: ../src/wx/guiinit.cpp:897 -msgid "unsigned decimal" -msgstr "unsigned decimal" - -#: ../src/wx/guiinit.cpp:900 -msgid "unsigned hexadecimal" -msgstr "unsigned hexadecimal" +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: VBA-M\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 20:50+0100\n" +"PO-Revision-Date: 2011-12-03 19:43+0000\n" +"Last-Translator: bgK \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: ../src/wx/wxvbam.cpp:326 +msgid "" +"\n" +"\tbuilt-in" +msgstr "" +"\n" +"\tbuilt-in" + +#: ../src/wx/cmdevents.cpp:905 ../src/wx/cmdevents.cpp:977 +msgid " files (" +msgstr " files (" + +#: ../src/wx/panel.cpp:335 +msgid " player " +msgstr " player " + +#: wx-xrc-strings.h:215 +#, c-format +msgid "% of normal:" +msgstr "% of normal:" + +#: ../src/wx/guiinit.cpp:1323 +#, c-format +msgid "%d frames = %.2f ms" +msgstr "%d frames = %.2f ms" + +#: ../src/wx/guiinit.cpp:1492 +#, c-format +msgid "%d x %d - %dbpp @ %dHz" +msgstr "%d x %d - %dbpp @ %dHz" + +#: ../src/wx/sys.cpp:303 +#, c-format +msgid "%d%%" +msgstr "%d%%" + +#: ../src/wx/sys.cpp:297 +#, c-format +msgid "%d%%(%d, %d fps)" +msgstr "%d%%(%d, %d fps)" + +#: ../src/wx/panel.cpp:55 +#, c-format +msgid "%s is not a valid ROM file" +msgstr "%s is not a valid ROM file" + +#: wx-xrc-strings.h:691 +msgid "&0" +msgstr "&0" + +#: wx-xrc-strings.h:38 wx-xrc-strings.h:53 wx-xrc-strings.h:692 +msgid "&1" +msgstr "&1" + +#: wx-xrc-strings.h:189 +msgid "&16 bits" +msgstr "&16 bits" + +#: wx-xrc-strings.h:613 +msgid "&16-bit" +msgstr "&16-bit" + +#: wx-xrc-strings.h:39 wx-xrc-strings.h:54 +msgid "&2" +msgstr "&2" + +#: wx-xrc-strings.h:676 +msgid "&256" +msgstr "&256" + +#: wx-xrc-strings.h:40 wx-xrc-strings.h:55 +msgid "&3" +msgstr "&3" + +#: wx-xrc-strings.h:190 +msgid "&32 bits" +msgstr "&32 bits" + +#: wx-xrc-strings.h:614 +msgid "&32-bit" +msgstr "&32-bit" + +#: wx-xrc-strings.h:41 wx-xrc-strings.h:56 +msgid "&4" +msgstr "&4" + +#: wx-xrc-strings.h:42 wx-xrc-strings.h:57 +msgid "&5" +msgstr "&5" + +#: wx-xrc-strings.h:43 wx-xrc-strings.h:58 +msgid "&6" +msgstr "&6" + +#: wx-xrc-strings.h:44 wx-xrc-strings.h:59 +msgid "&7" +msgstr "&7" + +#: wx-xrc-strings.h:45 wx-xrc-strings.h:60 +msgid "&8" +msgstr "&8" + +#: wx-xrc-strings.h:188 +msgid "&8 bits" +msgstr "&8 bits" + +#: wx-xrc-strings.h:612 +msgid "&8-bit" +msgstr "&8-bit" + +#: wx-xrc-strings.h:46 wx-xrc-strings.h:61 +msgid "&9" +msgstr "&9" + +#: wx-xrc-strings.h:31 +msgid "&A" +msgstr "&A" + +#: wx-xrc-strings.h:543 +msgid "&AGBPrint" +msgstr "&AGBPrint" + +#: wx-xrc-strings.h:198 +msgid "&Add cheat" +msgstr "&Add cheat" + +#: wx-xrc-strings.h:450 +msgid "&Assign" +msgstr "&Assign" + +#: wx-xrc-strings.h:37 +msgid "&Auto load most recent" +msgstr "&Auto load most recent" + +#: wx-xrc-strings.h:207 +msgid "&Auto-apply IPS/UPS/PPF patches" +msgstr "&Auto-apply IPS/UPS/PPF patches" + +#: wx-xrc-strings.h:30 +msgid "&Autofire" +msgstr "&Autofire" + +#: wx-xrc-strings.h:456 +msgid "&Automatic" +msgstr "&Automatic" + +#: wx-xrc-strings.h:32 +msgid "&B" +msgstr "&B" + +#: wx-xrc-strings.h:210 +msgid "&BMP" +msgstr "&BMP" + +#: wx-xrc-strings.h:7 wx-xrc-strings.h:11 +msgid "&Battery file..." +msgstr "&Battery file..." + +#: wx-xrc-strings.h:98 +msgid "&Break into GDB" +msgstr "&Break into GDB" + +#: wx-xrc-strings.h:197 wx-xrc-strings.h:547 +msgid "&Clear" +msgstr "&Clear" + +#: ../src/wx/sys.cpp:613 ../src/wx/sys.cpp:680 +msgid "&Close" +msgstr "&Close" + +#: wx-xrc-strings.h:95 +msgid "&Debug" +msgstr "&Debug" + +#: wx-xrc-strings.h:313 +msgid "&Defaults" +msgstr "&Defaults" + +#: wx-xrc-strings.h:173 wx-xrc-strings.h:200 +msgid "&Description" +msgstr "&Description" + +#: wx-xrc-strings.h:87 +msgid "&Disassemble..." +msgstr "&Disassemble..." + +#: ../src/wx/sys.cpp:556 wx-xrc-strings.h:121 +msgid "&Discard" +msgstr "&Discard" + +#: wx-xrc-strings.h:99 +msgid "&Disconnect" +msgstr "&Disconnect" + +#: wx-xrc-strings.h:104 +msgid "&Display ..." +msgstr "&Display ..." + +#: wx-xrc-strings.h:25 +msgid "&Emulation" +msgstr "&Emulation" + +#: wx-xrc-strings.h:69 +msgid "&Enable cheats" +msgstr "&Enable cheats" + +#: wx-xrc-strings.h:13 +msgid "&Export" +msgstr "&Export" + +#: wx-xrc-strings.h:2 +msgid "&File" +msgstr "&File" + +#: wx-xrc-strings.h:5 +msgid "&Freeze recent list" +msgstr "&Freeze recent list" + +#: wx-xrc-strings.h:29 +msgid "&Fullscreen" +msgstr "&Fullscreen" + +#: wx-xrc-strings.h:100 +msgid "&GDB" +msgstr "&GDB" + +#: wx-xrc-strings.h:9 wx-xrc-strings.h:12 +msgid "&Gameshark snapshot..." +msgstr "&Gameshark snapshot..." + +#: wx-xrc-strings.h:101 +msgid "&General ..." +msgstr "&General ..." + +#: wx-xrc-strings.h:459 wx-xrc-strings.h:508 wx-xrc-strings.h:615 +msgid "&Go" +msgstr "&Go" + +#: wx-xrc-strings.h:181 +msgid "&Greater than" +msgstr "&Greater than" + +#: wx-xrc-strings.h:111 +msgid "&Help" +msgstr "&Help" + +#: wx-xrc-strings.h:186 +msgid "&Hexadecimal" +msgstr "&Hexadecimal" + +#: wx-xrc-strings.h:89 +msgid "&IO Viewer..." +msgstr "&IO Viewer..." + +#: wx-xrc-strings.h:10 +msgid "&Import" +msgstr "&Import" + +#: wx-xrc-strings.h:107 +msgid "&Joypads ..." +msgstr "&Joypads ..." + +#: wx-xrc-strings.h:109 +msgid "&Key Shortcuts ..." +msgstr "&Key Shortcuts ..." + +#: wx-xrc-strings.h:33 +msgid "&L" +msgstr "&L" + +#: wx-xrc-strings.h:179 +msgid "&Less than" +msgstr "&Less than" + +#: wx-xrc-strings.h:108 +msgid "&Link ..." +msgstr "&Link ..." + +#: wx-xrc-strings.h:97 +msgid "&Load and wait..." +msgstr "&Load and wait..." + +#: wx-xrc-strings.h:51 +msgid "&Load state" +msgstr "&Load state" + +#: wx-xrc-strings.h:619 +msgid "&Load..." +msgstr "&Load..." + +#: wx-xrc-strings.h:88 +msgid "&Logging..." +msgstr "&Logging..." + +#: wx-xrc-strings.h:90 +msgid "&Map Viewer..." +msgstr "&Map Viewer..." + +#: wx-xrc-strings.h:506 wx-xrc-strings.h:532 +msgid "&Next" +msgstr "&Next" + +#: wx-xrc-strings.h:86 +msgid "&Next frame" +msgstr "&Next frame" + +#: wx-xrc-strings.h:178 +msgid "&Not equal" +msgstr "&Not equal" + +#: wx-xrc-strings.h:243 wx-xrc-strings.h:284 +msgid "&Number of frames to skip :" +msgstr "&Number of frames to skip :" + +#: wx-xrc-strings.h:92 +msgid "&OAM Viewer..." +msgstr "&OAM Viewer..." + +#: wx-xrc-strings.h:74 +msgid "&OBJ" +msgstr "&OBJ" + +#: wx-xrc-strings.h:52 +msgid "&Oldest slot" +msgstr "&Oldest slot" + +#: wx-xrc-strings.h:110 +msgid "&Options" +msgstr "&Options" + +#: wx-xrc-strings.h:209 +msgid "&PNG" +msgstr "&PNG" + +#: wx-xrc-strings.h:93 +msgid "&Palette Viewer..." +msgstr "&Palette Viewer..." + +#: wx-xrc-strings.h:26 +msgid "&Pause" +msgstr "&Pause" + +#: wx-xrc-strings.h:24 +msgid "&Play" +msgstr "&Play" + +#: wx-xrc-strings.h:34 +msgid "&R" +msgstr "&R" + +#: wx-xrc-strings.h:21 +msgid "&Record" +msgstr "&Record" + +#: wx-xrc-strings.h:570 wx-xrc-strings.h:594 wx-xrc-strings.h:609 +#: wx-xrc-strings.h:618 wx-xrc-strings.h:638 wx-xrc-strings.h:650 +#: wx-xrc-strings.h:661 wx-xrc-strings.h:672 wx-xrc-strings.h:689 +#: wx-xrc-strings.h:702 +msgid "&Refresh" +msgstr "&Refresh" + +#: wx-xrc-strings.h:451 +msgid "&Remove" +msgstr "&Remove" + +#: wx-xrc-strings.h:28 +msgid "&Reset" +msgstr "&Reset" + +#: wx-xrc-strings.h:4 +msgid "&Reset recent list" +msgstr "&Reset recent list" + +#: wx-xrc-strings.h:211 +msgid "&Rewind interval :" +msgstr "&Rewind interval :" + +#: wx-xrc-strings.h:546 wx-xrc-strings.h:595 wx-xrc-strings.h:610 +msgid "&Save" +msgstr "&Save" + +#: wx-xrc-strings.h:64 +msgid "&Save state" +msgstr "&Save state" + +#: wx-xrc-strings.h:620 wx-xrc-strings.h:639 wx-xrc-strings.h:651 +#: wx-xrc-strings.h:690 wx-xrc-strings.h:703 +msgid "&Save..." +msgstr "&Save..." + +#: wx-xrc-strings.h:195 +msgid "&Search" +msgstr "&Search" + +#: wx-xrc-strings.h:105 +msgid "&Sound ..." +msgstr "&Sound ..." + +#: wx-xrc-strings.h:85 +msgid "&Sound Channels" +msgstr "&Sound Channels" + +#: wx-xrc-strings.h:384 +msgid "&Sync game to audio" +msgstr "&Sync game to audio" + +#: wx-xrc-strings.h:458 +msgid "&THUMB" +msgstr "&THUMB" + +#: wx-xrc-strings.h:214 +msgid "&Throttle" +msgstr "&Throttle" + +#: wx-xrc-strings.h:94 +msgid "&Tile Viewer..." +msgstr "&Tile Viewer..." + +#: wx-xrc-strings.h:27 +msgid "&Turbo mode" +msgstr "&Turbo mode" + +#: wx-xrc-strings.h:174 +msgid "&Type" +msgstr "&Type" + +#: wx-xrc-strings.h:542 +msgid "&Undefined instruction" +msgstr "&Undefined instruction" + +#: wx-xrc-strings.h:185 +msgid "&Unsigned" +msgstr "&Unsigned" + +#: wx-xrc-strings.h:202 +msgid "&Value" +msgstr "&Value" + +#: wx-xrc-strings.h:78 +msgid "&View Layers" +msgstr "&View Layers" + +#: wx-xrc-strings.h:75 +msgid "&WIN 0" +msgstr "&WIN 0" + +#: wx-xrc-strings.h:96 +msgid "&Wait for connection..." +msgstr "&Wait for connection..." + +#: wx-xrc-strings.h:568 +msgid "0 " +msgstr "0 " + +#: wx-xrc-strings.h:326 +msgid "0 = no limit" +msgstr "0 = no limit" + +#: wx-xrc-strings.h:325 +msgid "0 = no maximum" +msgstr "0 = no maximum" + +#: wx-xrc-strings.h:216 +msgid "0 = no throttle" +msgstr "0 = no throttle" + +#: wx-xrc-strings.h:502 wx-xrc-strings.h:524 +msgid "00" +msgstr "00" + +#: wx-xrc-strings.h:510 wx-xrc-strings.h:512 wx-xrc-strings.h:514 +#: wx-xrc-strings.h:516 wx-xrc-strings.h:518 wx-xrc-strings.h:520 +#: wx-xrc-strings.h:522 +msgid "0000" +msgstr "0000" + +#: wx-xrc-strings.h:461 wx-xrc-strings.h:463 wx-xrc-strings.h:465 +#: wx-xrc-strings.h:467 wx-xrc-strings.h:469 wx-xrc-strings.h:471 +#: wx-xrc-strings.h:473 wx-xrc-strings.h:475 wx-xrc-strings.h:477 +#: wx-xrc-strings.h:479 wx-xrc-strings.h:481 wx-xrc-strings.h:483 +#: wx-xrc-strings.h:485 wx-xrc-strings.h:487 wx-xrc-strings.h:489 +#: wx-xrc-strings.h:491 wx-xrc-strings.h:493 +msgid "00000000" +msgstr "00000000" + +#: wx-xrc-strings.h:694 +msgid "0x&8000" +msgstr "0x&8000" + +#: wx-xrc-strings.h:695 +msgid "0x&8800" +msgstr "0x&8800" + +#: ../src/wx/viewers.cpp:798 +msgid "0x0000 - ROM" +msgstr "0x0000 - ROM" + +#: ../src/wx/viewers.cpp:703 +msgid "0x00000000 - BIOS" +msgstr "0x00000000 - BIOS" + +#: ../src/wx/viewers.cpp:704 +msgid "0x02000000 - WRAM" +msgstr "0x02000000 - WRAM" + +#: ../src/wx/viewers.cpp:705 +msgid "0x03000000 - IRAM" +msgstr "0x03000000 - IRAM" + +#: ../src/wx/viewers.cpp:706 +msgid "0x04000000 - I/O" +msgstr "0x04000000 - I/O" + +#: ../src/wx/viewers.cpp:707 +msgid "0x05000000 - PALETTE" +msgstr "0x05000000 - PALETTE" + +#: ../src/wx/viewers.cpp:708 +msgid "0x06000000 - VRAM" +msgstr "0x06000000 - VRAM" + +#: ../src/wx/viewers.cpp:709 +msgid "0x07000000 - OAM" +msgstr "0x07000000 - OAM" + +#: ../src/wx/viewers.cpp:710 +msgid "0x08000000 - ROM" +msgstr "0x08000000 - ROM" + +#: ../src/wx/viewers.cpp:799 +msgid "0x4000 - ROM" +msgstr "0x4000 - ROM" + +#: wx-xrc-strings.h:682 +msgid "0x60&10000" +msgstr "0x60&10000" + +#: wx-xrc-strings.h:678 +msgid "0x600&0000" +msgstr "0x600&0000" + +#: wx-xrc-strings.h:679 +msgid "0x600&4000" +msgstr "0x600&4000" + +#: wx-xrc-strings.h:680 +msgid "0x600&8000" +msgstr "0x600&8000" + +#: wx-xrc-strings.h:681 +msgid "0x600&C000" +msgstr "0x600&C000" + +#: wx-xrc-strings.h:596 +msgid "0x8000" +msgstr "0x8000" + +#: ../src/wx/viewers.cpp:800 +msgid "0x8000 - VRAM" +msgstr "0x8000 - VRAM" + +#: wx-xrc-strings.h:597 +msgid "0x8800" +msgstr "0x8800" + +#: wx-xrc-strings.h:599 +msgid "0x9800" +msgstr "0x9800" + +#: wx-xrc-strings.h:600 +msgid "0x9C00" +msgstr "0x9C00" + +#: ../src/wx/viewers.cpp:801 +msgid "0xA000 - SRAM" +msgstr "0xA000 - SRAM" + +#: ../src/wx/viewers.cpp:802 +msgid "0xC000 - RAM" +msgstr "0xC000 - RAM" + +#: ../src/wx/viewers.cpp:803 +msgid "0xD000 - WRAM" +msgstr "0xD000 - WRAM" + +#: ../src/wx/viewers.cpp:804 +msgid "0xFF00 - I/O" +msgstr "0xFF00 - I/O" + +#: ../src/wx/viewers.cpp:805 +msgid "0xFF80 - RAM" +msgstr "0xFF80 - RAM" + +#: wx-xrc-strings.h:567 +msgid "1 " +msgstr "1 " + +#: wx-xrc-strings.h:47 wx-xrc-strings.h:62 +msgid "1&0" +msgstr "1&0" + +#: wx-xrc-strings.h:675 +msgid "1&6" +msgstr "1&6" + +#: wx-xrc-strings.h:558 +msgid "10 " +msgstr "10 " + +#: wx-xrc-strings.h:220 wx-xrc-strings.h:369 +msgid "100%" +msgstr "100%" + +#: wx-xrc-strings.h:557 +msgid "11 " +msgstr "11 " + +#: wx-xrc-strings.h:375 +msgid "11 KHz" +msgstr "11 KHz" + +#: wx-xrc-strings.h:556 +msgid "12 " +msgstr "12 " + +#: wx-xrc-strings.h:276 wx-xrc-strings.h:308 +msgid "128K" +msgstr "128K" + +#: wx-xrc-strings.h:555 +msgid "13 " +msgstr "13 " + +#: wx-xrc-strings.h:554 +msgid "14 " +msgstr "14 " + +#: wx-xrc-strings.h:553 +msgid "15 " +msgstr "15 " + +#: wx-xrc-strings.h:221 +msgid "150%" +msgstr "150%" + +#: ../src/wx/guiinit.cpp:886 +msgid "16-bit " +msgstr "16-bit " + +#: wx-xrc-strings.h:116 +msgid "1x" +msgstr "1x" + +#: wx-xrc-strings.h:154 +msgid "2" +msgstr "2" + +#: wx-xrc-strings.h:566 +msgid "2 " +msgstr "2 " + +#: wx-xrc-strings.h:222 +msgid "200%" +msgstr "200%" + +#: wx-xrc-strings.h:374 +msgid "22 KHz" +msgstr "22 KHz" + +#: wx-xrc-strings.h:218 +msgid "25%" +msgstr "25%" + +#: wx-xrc-strings.h:117 +msgid "2x" +msgstr "2x" + +#: wx-xrc-strings.h:343 +msgid "2xSaI" +msgstr "2xSaI" + +#: wx-xrc-strings.h:155 +msgid "3" +msgstr "3" + +#: wx-xrc-strings.h:565 +msgid "3 " +msgstr "3 " + +#: ../src/wx/guiinit.cpp:889 +msgid "32-bit " +msgstr "32-bit " + +#: wx-xrc-strings.h:118 +msgid "3x" +msgstr "3x" + +#: wx-xrc-strings.h:156 +msgid "4" +msgstr "4" + +#: wx-xrc-strings.h:564 +msgid "4 " +msgstr "4 " + +#: wx-xrc-strings.h:373 +msgid "44.1 KHz" +msgstr "44.1 KHz" + +#: wx-xrc-strings.h:372 +msgid "48 KHz" +msgstr "48 KHz" + +#: wx-xrc-strings.h:119 +msgid "4x" +msgstr "4x" + +#: wx-xrc-strings.h:563 +msgid "5 " +msgstr "5 " + +#: wx-xrc-strings.h:219 +msgid "50%" +msgstr "50%" + +#: wx-xrc-strings.h:562 +msgid "6 " +msgstr "6 " + +#: wx-xrc-strings.h:275 wx-xrc-strings.h:307 +msgid "64K" +msgstr "64K" + +#: wx-xrc-strings.h:561 +msgid "7 " +msgstr "7 " + +#: wx-xrc-strings.h:560 +msgid "8 " +msgstr "8 " + +#: ../src/wx/guiinit.cpp:883 +msgid "8-bit " +msgstr "8-bit " + +#: wx-xrc-strings.h:559 +msgid "9 " +msgstr "9 " + +#: ../src/wx/wxvbam.cpp:259 +msgid "=" +msgstr "=" + +#: wx-xrc-strings.h:418 +msgid "A" +msgstr "A" + +#: wx-xrc-strings.h:457 +msgid "A&RM" +msgstr "A&RM" + +#: wx-xrc-strings.h:68 +msgid "A&utomatically save/load cheats" +msgstr "A&utomatically save/load cheats" + +#: wx-xrc-strings.h:509 +msgid "AF:" +msgstr "AF:" + +#: ../src/wx/widgets/keyedit.cpp:81 ../src/wx/widgets/keyedit.cpp:165 +msgid "ALT" +msgstr "ALT" + +#: wx-xrc-strings.h:455 +msgid "Accelerator Editor" +msgstr "Accelerator Editor" + +#: wx-xrc-strings.h:204 +msgid "Add cheat" +msgstr "Add cheat" + +#: wx-xrc-strings.h:168 +msgid "Add new cheat" +msgstr "Add new cheat" + +#: ../src/wx/guiinit.cpp:2589 wx-xrc-strings.h:201 +msgid "Address" +msgstr "Address" + +#: wx-xrc-strings.h:590 wx-xrc-strings.h:604 wx-xrc-strings.h:622 +#: wx-xrc-strings.h:657 wx-xrc-strings.h:688 wx-xrc-strings.h:701 +msgid "Address:" +msgstr "Address:" + +#: wx-xrc-strings.h:347 +msgid "Advance MAME Scale2x" +msgstr "Advance MAME Scale2x" + +#: wx-xrc-strings.h:365 wx-xrc-strings.h:386 +msgid "Advanced" +msgstr "Advanced" + +#: ../src/wx/guiinit.cpp:160 +msgid "All players joined." +msgstr "All players joined." + +#: wx-xrc-strings.h:234 +msgid "Always" +msgstr "Always" + +#: wx-xrc-strings.h:581 wx-xrc-strings.h:603 +msgid "Auto &update" +msgstr "Auto &update" + +#: wx-xrc-strings.h:429 +msgid "Autofire A" +msgstr "Autofire A" + +#: wx-xrc-strings.h:431 +msgid "Autofire B" +msgstr "Autofire B" + +#: wx-xrc-strings.h:226 wx-xrc-strings.h:235 wx-xrc-strings.h:268 +#: wx-xrc-strings.h:299 +msgid "Automatic" +msgstr "Automatic" + +#: wx-xrc-strings.h:503 wx-xrc-strings.h:529 wx-xrc-strings.h:569 +#: wx-xrc-strings.h:616 wx-xrc-strings.h:637 wx-xrc-strings.h:649 +#: wx-xrc-strings.h:659 wx-xrc-strings.h:671 wx-xrc-strings.h:686 +#: wx-xrc-strings.h:699 +msgid "Automatic &update" +msgstr "Automatic &update" + +#: wx-xrc-strings.h:237 +msgid "Automatically &gather entire printed page" +msgstr "Automatically &gather entire printed page" + +#: wx-xrc-strings.h:238 +msgid "Automatically &save printouts as snapshots" +msgstr "Automatically &save printouts as snapshots" + +#: ../src/wx/widgets/joyedit.cpp:82 +#, c-format +msgid "Axis%d+" +msgstr "Axis%d+" + +#: ../src/wx/widgets/joyedit.cpp:85 +#, c-format +msgid "Axis%d-" +msgstr "Axis%d-" + +#: ../src/wx/widgets/joyedit.cpp:141 +msgid "Axis([0-9]+)([+-])" +msgstr "Axis([0-9]+)([+-])" + +#: wx-xrc-strings.h:420 +msgid "B" +msgstr "B" + +#: ../src/wx/viewsupt.cpp:685 +msgid "B:" +msgstr "B:" + +#: wx-xrc-strings.h:511 +msgid "BC:" +msgstr "BC:" + +#: wx-xrc-strings.h:70 +msgid "BG &0" +msgstr "BG &0" + +#: wx-xrc-strings.h:71 +msgid "BG &1" +msgstr "BG &1" + +#: wx-xrc-strings.h:72 +msgid "BG &2" +msgstr "BG &2" + +#: wx-xrc-strings.h:73 +msgid "BG &3" +msgstr "BG &3" + +#: wx-xrc-strings.h:575 +msgid "BG0" +msgstr "BG0" + +#: wx-xrc-strings.h:576 +msgid "BG1" +msgstr "BG1" + +#: wx-xrc-strings.h:577 +msgid "BG2" +msgstr "BG2" + +#: wx-xrc-strings.h:578 +msgid "BG3" +msgstr "BG3" + +#: wx-xrc-strings.h:263 wx-xrc-strings.h:579 wx-xrc-strings.h:655 +#: wx-xrc-strings.h:665 +msgid "Background" +msgstr "Background" + +#: ../src/wx/wxvbam.cpp:383 +msgid "Bad configuration option or multiple ROM files given:\n" +msgstr "Bad configuration option or multiple ROM files given:\n" + +#: wx-xrc-strings.h:647 +msgid "Bank:" +msgstr "Bank:" + +#: wx-xrc-strings.h:376 +msgid "Basic" +msgstr "Basic" + +#: ../src/wx/cmdevents.cpp:634 ../src/wx/cmdevents.cpp:796 +msgid "Battery file (*.sav)|*.sav|Flash save (*.dat)|*.dat" +msgstr "Battery file (*.sav)|*.sav|Flash save (*.dat)|*.dat" + +#: wx-xrc-strings.h:348 +msgid "Bilinear" +msgstr "Bilinear" + +#: wx-xrc-strings.h:349 +msgid "Bilinear Plus" +msgstr "Bilinear Plus" + +#: wx-xrc-strings.h:336 +msgid "Bilinear scaling filter" +msgstr "Bilinear scaling filter" + +#: wx-xrc-strings.h:287 +msgid "Bios file :" +msgstr "Bios file :" + +#: wx-xrc-strings.h:255 +msgid "Blue Sea" +msgstr "Blue Sea" + +#: wx-xrc-strings.h:246 +msgid "Boot &ROM file :" +msgstr "Boot &ROM file :" + +#: wx-xrc-strings.h:249 wx-xrc-strings.h:289 +msgid "Boot ROM" +msgstr "Boot ROM" + +#: wx-xrc-strings.h:248 +msgid "Boot ROM &file :" +msgstr "Boot ROM &file :" + +#: ../src/wx/widgets/joyedit.cpp:88 +#, c-format +msgid "Button%d" +msgstr "Button%d" + +#: ../src/wx/widgets/joyedit.cpp:143 +msgid "Button([0-9]+)" +msgstr "Button([0-9]+)" + +#: wx-xrc-strings.h:498 wx-xrc-strings.h:528 +msgid "C" +msgstr "C" + +#: wx-xrc-strings.h:660 +msgid "C&hange backdrop color..." +msgstr "C&hange backdrop color..." + +#: wx-xrc-strings.h:175 +msgid "C&odes" +msgstr "C&odes" + +#: wx-xrc-strings.h:120 +msgid "C&ontinue" +msgstr "C&ontinue" + +#: ../src/wx/widgets/keyedit.cpp:168 +msgid "CONTROL" +msgstr "CONTROL" + +#: wx-xrc-strings.h:492 +msgid "CPSR:" +msgstr "CPSR:" + +#: wx-xrc-strings.h:130 wx-xrc-strings.h:138 +msgid "CRC:" +msgstr "CRC:" + +#: ../src/wx/widgets/keyedit.cpp:84 ../src/wx/widgets/keyedit.cpp:167 +msgid "CTRL" +msgstr "CTRL" + +#: wx-xrc-strings.h:335 +msgid "Cairo" +msgstr "Cairo" + +#: ../src/wx/dsound.cpp:123 +#, c-format +msgid "Cannot CreateSoundBuffer %08x" +msgstr "Cannot CreateSoundBuffer %08x" + +#: ../src/wx/dsound.cpp:188 +#, c-format +msgid "Cannot Play primary %08x" +msgstr "Cannot Play primary %08x" + +#: ../src/wx/dsound.cpp:109 +#, c-format +msgid "Cannot SetCooperativeLevel %08x" +msgstr "Cannot SetCooperativeLevel %08x" + +#: ../src/wx/dsound.cpp:93 ../src/wx/dsound.cpp:104 +#, c-format +msgid "Cannot create DirectSound %08x" +msgstr "Cannot create DirectSound %08x" + +#: ../src/wx/panel.cpp:1831 +msgid "Cannot create conversion buffer" +msgstr "Cannot create conversion buffer" + +#: ../src/wx/cmdevents.cpp:679 +#, c-format +msgid "Cannot open file %s" +msgstr "Cannot open file %s" + +#: ../src/wx/sys.cpp:118 +#, c-format +msgid "Cannot open output file %s" +msgstr "Cannot open output file %s" + +#: ../src/wx/sys.cpp:173 +#, c-format +msgid "Cannot open recording file %s" +msgstr "Cannot open recording file %s" + +#: ../src/wx/sys.cpp:162 +msgid "Cannot play game recording while recording" +msgstr "Cannot play game recording while recording" + +#: wx-xrc-strings.h:278 +msgid "Cartridge" +msgstr "Cartridge" + +#: wx-xrc-strings.h:136 +msgid "Cartridge type:" +msgstr "Cartridge type:" + +#: wx-xrc-strings.h:395 +msgid "Center" +msgstr "Center" + +#: wx-xrc-strings.h:79 +msgid "Channel &1" +msgstr "Channel &1" + +#: wx-xrc-strings.h:80 +msgid "Channel &2" +msgstr "Channel &2" + +#: wx-xrc-strings.h:81 +msgid "Channel &3" +msgstr "Channel &3" + +#: wx-xrc-strings.h:82 +msgid "Channel &4" +msgstr "Channel &4" + +#: wx-xrc-strings.h:598 wx-xrc-strings.h:683 wx-xrc-strings.h:696 +msgid "Char Base" +msgstr "Char Base" + +#: wx-xrc-strings.h:584 +msgid "Char Base:" +msgstr "Char Base:" + +#: wx-xrc-strings.h:172 +msgid "Cheat list" +msgstr "Cheat list" + +#: wx-xrc-strings.h:144 +msgid "Checksum:" +msgstr "Checksum:" + +#: ../src/wx/panel.cpp:719 +#, c-format +msgid "Chose mode %dx%d-%d@%d" +msgstr "Chose mode %dx%d-%d@%d" + +#: wx-xrc-strings.h:440 +msgid "Clear" +msgstr "Clear" + +#: wx-xrc-strings.h:416 +msgid "" +"Click a field and press a key or move joystick to add. Press backspace to " +"delete last added key. Resize window or click inside and move pointer to " +"see entire contents if too small." +msgstr "" +"Click a field and press a key or move joystick to add. Press backspace to " +"delete last added key. Resize window or click inside and move pointer to " +"see entire contents if too small." + +#: wx-xrc-strings.h:654 wx-xrc-strings.h:664 +msgid "Click on a color for more information" +msgstr "Click on a color for more information" + +#: wx-xrc-strings.h:152 +msgid "Client" +msgstr "Client" + +#: wx-xrc-strings.h:448 +msgid "Co&mmands:" +msgstr "Co&mmands:" + +#: ../src/wx/guiinit.cpp:2501 +msgid "Code" +msgstr "Code" + +#: ../src/wx/guiinit.cpp:646 +msgid "CodeBreaker Advance" +msgstr "CodeBreaker Advance" + +#: wx-xrc-strings.h:139 +msgid "Color:" +msgstr "Color:" + +#: wx-xrc-strings.h:677 +msgid "Colors" +msgstr "Colors" + +#: wx-xrc-strings.h:586 wx-xrc-strings.h:629 +msgid "Colors:" +msgstr "Colors:" + +#: wx-xrc-strings.h:292 +msgid "Comment" +msgstr "Comment" + +#: wx-xrc-strings.h:183 +msgid "Compare type" +msgstr "Compare type" + +#: ../src/wx/wxvbam.cpp:308 +msgid "Configuration is read from, in order:" +msgstr "Configuration is read from, in order:" + +#: ../src/wx/wxvbam.cpp:287 +msgid "Configuration/build error: can't find built-in xrc" +msgstr "Configuration/build error: can't find built-in xrc" + +#: ../src/wx/guiinit.cpp:1835 +msgid "Confirm" +msgstr "Confirm" + +#: ../src/wx/cmdevents.cpp:641 ../src/wx/cmdevents.cpp:666 +#: ../src/wx/cmdevents.cpp:763 +msgid "Confirm import" +msgstr "Confirm import" + +#: ../src/wx/guiinit.cpp:61 wx-xrc-strings.h:164 +msgid "Connect" +msgstr "Connect" + +#: ../src/wx/guiinit.cpp:156 +#, c-format +msgid "Connected as #%d\n" +msgstr "Connected as #%d\n" + +#: ../src/wx/guiinit.cpp:151 +#, c-format +msgid "Connecting to %s\n" +msgstr "Connecting to %s\n" + +#: ../src/wx/cmdevents.cpp:2179 +msgid "" +"Copyright (C) 1999-2003 Forgotten\n" +"Copyright (C) 2004-2006 VBA development team\n" +"Copyright (C) 2007-2011 VBA-M development team" +msgstr "" +"Copyright (C) 1999-2003 Forgotten\n" +"Copyright (C) 2004-2006 VBA development team\n" +"Copyright (C) 2007-2011 VBA-M development team" + +#: ../src/wx/wxvbam.cpp:208 +msgid "Could not create main window" +msgstr "Could not create main window" + +#: ../src/wx/panel.cpp:153 ../src/wx/panel.cpp:234 +#, c-format +msgid "Could not load BIOS %s" +msgstr "Could not load BIOS %s" + +#: ../src/wx/dsound.cpp:143 +#, c-format +msgid "CreateSoundBuffer(primary) failed %08x" +msgstr "CreateSoundBuffer(primary) failed %08x" + +#: ../src/wx/dsound.cpp:159 +#, c-format +msgid "CreateSoundBuffer(secondary) failed %08x" +msgstr "CreateSoundBuffer(secondary) failed %08x" + +#: wx-xrc-strings.h:449 +msgid "Current Keys:" +msgstr "Current Keys:" + +#: wx-xrc-strings.h:617 +msgid "Current address:" +msgstr "Current address:" + +#: wx-xrc-strings.h:453 +msgid "Currently assigned to:" +msgstr "Currently assigned to:" + +#: wx-xrc-strings.h:253 +msgid "Custom Colors" +msgstr "Custom Colors" + +#: wx-xrc-strings.h:106 +msgid "D&irectories ..." +msgstr "D&irectories ..." + +#: wx-xrc-strings.h:513 +msgid "DE:" +msgstr "DE:" + +#: wx-xrc-strings.h:538 +msgid "DMA &0" +msgstr "DMA &0" + +#: wx-xrc-strings.h:539 +msgid "DMA &1" +msgstr "DMA &1" + +#: wx-xrc-strings.h:540 +msgid "DMA &2" +msgstr "DMA &2" + +#: wx-xrc-strings.h:541 +msgid "DMA &3" +msgstr "DMA &3" + +#: wx-xrc-strings.h:256 +msgid "Dark Night" +msgstr "Dark Night" + +#: wx-xrc-strings.h:191 +msgid "Data size" +msgstr "Data size" + +#: wx-xrc-strings.h:387 +msgid "Declicking" +msgstr "Declicking" + +#: wx-xrc-strings.h:250 wx-xrc-strings.h:294 wx-xrc-strings.h:298 +#: wx-xrc-strings.h:306 wx-xrc-strings.h:310 +msgid "Default" +msgstr "Default" + +#: ../src/wx/guiinit.cpp:1334 +msgid "Default device" +msgstr "Default device" + +#: wx-xrc-strings.h:322 +msgid "Default magnification :" +msgstr "Default magnification :" + +#: wx-xrc-strings.h:439 +msgid "Defaults" +msgstr "Defaults" + +#: wx-xrc-strings.h:170 +msgid "Delete all cheats" +msgstr "Delete all cheats" + +#: wx-xrc-strings.h:169 +msgid "Delete selected cheat" +msgstr "Delete selected cheat" + +#: ../src/wx/wxvbam.cpp:249 +msgid "Delete shared link state first, if it exists" +msgstr "Delete shared link state first, if it exists" + +#: ../src/wx/guiinit.cpp:2510 +msgid "Description" +msgstr "Description" + +#: wx-xrc-strings.h:148 +msgid "Description:" +msgstr "Description:" + +#: ../src/wx/guiinit.cpp:1486 +msgid "Desktop mode" +msgstr "Desktop mode" + +#: wx-xrc-strings.h:142 +msgid "Dest. code:" +msgstr "Dest. code:" + +#: wx-xrc-strings.h:318 +msgid "Detailed" +msgstr "Detailed" + +#: wx-xrc-strings.h:277 +msgid "Detect Now" +msgstr "Detect Now" + +#: wx-xrc-strings.h:381 +msgid "Device" +msgstr "Device" + +#: wx-xrc-strings.h:128 +msgid "Device type:" +msgstr "Device type:" + +#: wx-xrc-strings.h:83 +msgid "Direct Sound &A" +msgstr "Direct Sound &A" + +#: wx-xrc-strings.h:84 +msgid "Direct Sound &B" +msgstr "Direct Sound &B" + +#: wx-xrc-strings.h:334 +msgid "Direct3D 9" +msgstr "Direct3D 9" + +#: wx-xrc-strings.h:380 +msgid "DirectSound" +msgstr "DirectSound" + +#: wx-xrc-strings.h:410 +msgid "Directories config" +msgstr "Directories config" + +#: wx-xrc-strings.h:319 +msgid "Disable status messages" +msgstr "Disable status messages" + +#: wx-xrc-strings.h:295 wx-xrc-strings.h:311 +msgid "Disabled" +msgstr "Disabled" + +#: wx-xrc-strings.h:507 wx-xrc-strings.h:533 +msgid "Disassemble" +msgstr "Disassemble" + +#: wx-xrc-strings.h:232 +msgid "Display &borders :" +msgstr "Display &borders :" + +#: wx-xrc-strings.h:366 +msgid "Display settings" +msgstr "Display settings" + +#: wx-xrc-strings.h:49 +msgid "Do not change &battery save" +msgstr "Do not change &battery save" + +#: wx-xrc-strings.h:50 +msgid "Do not change &cheat list" +msgstr "Do not change &cheat list" + +#: wx-xrc-strings.h:419 +msgid "Down" +msgstr "Down" + +#: ../src/wx/guiinit.cpp:2159 +#, c-format +msgid "Duplicate menu accelerator: %s for %s and %s; keeping first" +msgstr "Duplicate menu accelerator: %s for %s and %s; keeping first" + +#: wx-xrc-strings.h:177 +msgid "E&qual" +msgstr "E&qual" + +#: wx-xrc-strings.h:269 wx-xrc-strings.h:300 +msgid "EEPROM" +msgstr "EEPROM" + +#: wx-xrc-strings.h:272 +msgid "EEPROM + Sensor" +msgstr "EEPROM + Sensor" + +#: ../src/wx/cmdevents.cpp:813 +msgid "EEPROM saves cannot be exported" +msgstr "EEPROM saves cannot be exported" + +#: wx-xrc-strings.h:303 +msgid "EEPROM+Sensor" +msgstr "EEPROM+Sensor" + +#: wx-xrc-strings.h:393 +msgid "Echo" +msgstr "Echo" + +#: wx-xrc-strings.h:176 +msgid "Edit cheat" +msgstr "Edit cheat" + +#: wx-xrc-strings.h:236 +msgid "Emulate a Game Boy &Printer" +msgstr "Emulate a Game Boy &Printer" + +#: wx-xrc-strings.h:239 +msgid "Emulate gameboy washed colors" +msgstr "Emulate gameboy washed colors" + +#: wx-xrc-strings.h:225 +msgid "Emulated &system :" +msgstr "Emulated &system :" + +#: wx-xrc-strings.h:407 +msgid "Emulator Saves" +msgstr "Emulator Saves" + +#: wx-xrc-strings.h:242 wx-xrc-strings.h:283 +msgid "Enable &automatic frame skipping" +msgstr "Enable &automatic frame skipping" + +#: wx-xrc-strings.h:280 +msgid "Enable AGB Printer" +msgstr "Enable AGB Printer" + +#: wx-xrc-strings.h:339 +msgid "Enable MMX" +msgstr "Enable MMX" + +#: wx-xrc-strings.h:383 +msgid "Enable hardware acceleration" +msgstr "Enable hardware acceleration" + +#: wx-xrc-strings.h:442 +msgid "Enable joybus" +msgstr "Enable joybus" + +#: wx-xrc-strings.h:444 +msgid "Enable link" +msgstr "Enable link" + +#: wx-xrc-strings.h:340 +msgid "Enable multithreading" +msgstr "Enable multithreading" + +#: wx-xrc-strings.h:279 +msgid "Enable real-time clock" +msgstr "Enable real-time clock" + +#: wx-xrc-strings.h:382 +msgid "Enable stereo upmixing" +msgstr "Enable stereo upmixing" + +#: wx-xrc-strings.h:445 +msgid "Enable wireless" +msgstr "Enable wireless" + +#: wx-xrc-strings.h:296 wx-xrc-strings.h:312 +msgid "Enabled" +msgstr "Enabled" + +#: wx-xrc-strings.h:388 wx-xrc-strings.h:389 +msgid "Enhance sound" +msgstr "Enhance sound" + +#: wx-xrc-strings.h:624 +msgid "Enter address and size" +msgstr "Enter address and size" + +#: ../src/wx/guiinit.cpp:182 +#, c-format +msgid "" +"Error %d occurred.\n" +"Please try again." +msgstr "" +"Error %d occurred.\n" +"Please try again." + +#: ../src/wx/panel.cpp:1979 +#, c-format +msgid "Error in audio recording (%s); aborting" +msgstr "Error in audio recording (%s); aborting" + +#: ../src/wx/panel.cpp:1974 +#, c-format +msgid "Error in audio/video recording (%s); aborting" +msgstr "Error in audio/video recording (%s); aborting" + +#: ../src/wx/panel.cpp:1988 +#, c-format +msgid "Error in video recording (%s); aborting" +msgstr "Error in video recording (%s); aborting" + +#: ../src/wx/cmdevents.cpp:647 +#, c-format +msgid "Error loading battery %s" +msgstr "Error loading battery %s" + +#: ../src/wx/cmdevents.cpp:742 +#, c-format +msgid "Error loading code file %s" +msgstr "Error loading code file %s" + +#: ../src/wx/cmdevents.cpp:786 +#, c-format +msgid "Error loading snapshot file %s" +msgstr "Error loading snapshot file %s" + +#: ../src/wx/panel.cpp:484 +#, c-format +msgid "Error loading state %s" +msgstr "Error loading state %s" + +#: ../src/wx/guiinit.cpp:126 +msgid "" +"Error occurred.\n" +"Please try again." +msgstr "" +"Error occurred.\n" +"Please try again." + +#: ../src/wx/sys.cpp:933 +#, c-format +msgid "Error opening pseudo tty: %s" +msgstr "Error opening pseudo tty: %s" + +#: ../src/wx/sys.cpp:179 ../src/wx/sys.cpp:187 +msgid "Error reading game recording" +msgstr "Error reading game recording" + +#: ../src/wx/cmdevents.cpp:843 +#, c-format +msgid "Error saving snapshot file %s" +msgstr "Error saving snapshot file %s" + +#: ../src/wx/panel.cpp:508 +#, c-format +msgid "Error saving state %s" +msgstr "Error saving state %s" + +#: ../src/wx/sys.cpp:1019 +#, c-format +msgid "Error setting up server socket (%d)" +msgstr "Error setting up server socket (%d)" + +#: ../src/wx/cmdevents.cpp:806 ../src/wx/panel.cpp:538 +#, c-format +msgid "Error writing battery %s" +msgstr "Error writing battery %s" + +#: ../src/wx/sys.cpp:123 ../src/wx/sys.cpp:143 ../src/wx/sys.cpp:269 +msgid "Error writing game recording" +msgstr "Error writing game recording" + +#: ../src/wx/panel.cpp:860 +msgid "Error writing rewind state" +msgstr "Error writing rewind state" + +#: wx-xrc-strings.h:150 +msgid "Export GameShark Snapshot" +msgstr "Export GameShark Snapshot" + +#: ../src/wx/cmdevents.cpp:831 +msgid "Exported from VisualBoyAdvance-M" +msgstr "Exported from VisualBoyAdvance-M" + +#: wx-xrc-strings.h:497 +msgid "F" +msgstr "F" + +#: ../src/wx/panel.cpp:722 +#, c-format +msgid "Failed to change mode to %dx%d-%d@%d" +msgstr "Failed to change mode to %dx%d-%d@%d" + +#: wx-xrc-strings.h:338 +msgid "Filters" +msgstr "Filters" + +#: wx-xrc-strings.h:67 +msgid "Find c&heat ..." +msgstr "Find c&heat ..." + +#: wx-xrc-strings.h:635 wx-xrc-strings.h:646 +msgid "Flags:" +msgstr "Flags:" + +#: wx-xrc-strings.h:271 wx-xrc-strings.h:302 +msgid "Flash" +msgstr "Flash" + +#: wx-xrc-strings.h:305 +msgid "Flash Size:" +msgstr "Flash Size:" + +#: wx-xrc-strings.h:274 +msgid "Flash size :" +msgstr "Flash size :" + +#: wx-xrc-strings.h:592 wx-xrc-strings.h:606 +msgid "Flip:" +msgstr "Flip:" + +#: wx-xrc-strings.h:203 +msgid "Format" +msgstr "Format" + +#: wx-xrc-strings.h:574 +msgid "Frame" +msgstr "Frame" + +#: wx-xrc-strings.h:572 +msgid "Frame 0" +msgstr "Frame 0" + +#: wx-xrc-strings.h:573 +msgid "Frame 1" +msgstr "Frame 1" + +#: wx-xrc-strings.h:241 wx-xrc-strings.h:282 +msgid "Frame Skip" +msgstr "Frame Skip" + +#: wx-xrc-strings.h:48 +msgid "From &File ..." +msgstr "From &File ..." + +#: wx-xrc-strings.h:327 +msgid "Full screen" +msgstr "Full screen" + +#: wx-xrc-strings.h:329 +msgid "Full screen at startup" +msgstr "Full screen at startup" + +#: wx-xrc-strings.h:341 +msgid "Fullscreen filter :" +msgstr "Fullscreen filter :" + +#: ../src/wx/panel.cpp:708 +#, c-format +msgid "Fullscreen mode %dx%d-%d@%d not supported" +msgstr "Fullscreen mode %dx%d-%d@%d not supported" + +#: ../src/wx/panel.cpp:678 +#, c-format +msgid "Fullscreen mode %dx%d-%d@%d not supported; looking for another" +msgstr "Fullscreen mode %dx%d-%d@%d not supported; looking for another" + +#: wx-xrc-strings.h:504 wx-xrc-strings.h:530 +msgid "G&oto PC" +msgstr "G&oto PC" + +#: wx-xrc-strings.h:182 +msgid "G&reater or equal" +msgstr "G&reater or equal" + +#: ../src/wx/viewsupt.cpp:680 +msgid "G:" +msgstr "G:" + +#: wx-xrc-strings.h:114 +msgid "GB Printer" +msgstr "GB Printer" + +#: ../src/wx/cmdevents.cpp:1651 +msgid "GDB Connection" +msgstr "GDB Connection" + +#: ../src/wx/cmdevents.cpp:754 +msgid "" +"GS & PAC Snapshots (*.sps;*.xps)|*.sps;*.xps|GameShark SP Snapshots (*.gsv)|" +"*.gsv" +msgstr "" +"GS & PAC Snapshots (*.sps;*.xps)|*.sps;*.xps|GameShark SP Snapshots (*.gsv)|" +"*.gsv" + +#: wx-xrc-strings.h:102 +msgid "Game &Boy ..." +msgstr "Game &Boy ..." + +#: wx-xrc-strings.h:231 wx-xrc-strings.h:397 +msgid "Game Boy" +msgstr "Game Boy" + +#: wx-xrc-strings.h:103 +msgid "Game Boy &Advance ..." +msgstr "Game Boy &Advance ..." + +#: wx-xrc-strings.h:227 wx-xrc-strings.h:402 +msgid "Game Boy Advance" +msgstr "Game Boy Advance" + +#: wx-xrc-strings.h:404 +msgid "Game Boy Advance ROMs" +msgstr "Game Boy Advance ROMs" + +#: wx-xrc-strings.h:290 +msgid "Game Boy Advance settings" +msgstr "Game Boy Advance settings" + +#: wx-xrc-strings.h:228 +msgid "Game Boy Color" +msgstr "Game Boy Color" + +#: wx-xrc-strings.h:405 +msgid "Game Boy ROMs" +msgstr "Game Boy ROMs" + +#: wx-xrc-strings.h:291 +msgid "Game Code" +msgstr "Game Code" + +#: wx-xrc-strings.h:314 +msgid "Game Overrides" +msgstr "Game Overrides" + +#: wx-xrc-strings.h:124 +msgid "Game code:" +msgstr "Game code:" + +#: wx-xrc-strings.h:123 wx-xrc-strings.h:132 +msgid "Game title:" +msgstr "Game title:" + +#: ../src/wx/cmdevents.cpp:77 +msgid "" +"GameBoy Advance Files (*.agb;*.gba;*.bin;*.elf;*.mb)|*.agb;*.gba;*.bin;*.elf;" +"*.mb*.agb.gz;*.gba.gz;*.bin.gz;*.elf.gz;*.mb.gz*.agb.z;*.gba.z;*.bin.z;*.elf." +"z;*.mb.z|GameBoy Files (*.dmg;*.gb;*.gbc;*.cgb;*.sgb)|*.dmg;*.gb;*.gbc;*.cgb;" +"*.sgb*.dmg.gz;*.gb.gz;*.gbc.gz;*.cgb.gz;*.sgb.gz*.dmg.z;*.gb.z;*.gbc.z;*.cgb." +"z;*.sgb.z|Archives (*.zip;*.7z;*.rar)|*.zip;*.7z;*.rar|" +msgstr "" +"GameBoy Advance Files (*.agb;*.gba;*.bin;*.elf;*.mb)|*.agb;*.gba;*.bin;*.elf;" +"*.mb*.agb.gz;*.gba.gz;*.bin.gz;*.elf.gz;*.mb.gz*.agb.z;*.gba.z;*.bin.z;*.elf." +"z;*.mb.z|GameBoy Files (*.dmg;*.gb;*.gbc;*.cgb;*.sgb)|*.dmg;*.gb;*.gbc;*.cgb;" +"*.sgb*.dmg.gz;*.gb.gz;*.gbc.gz;*.cgb.gz;*.sgb.gz*.dmg.z;*.gb.z;*.gbc.z;*.cgb." +"z;*.sgb.z|Archives (*.zip;*.7z;*.rar)|*.zip;*.7z;*.rar|" + +#: wx-xrc-strings.h:224 +msgid "GameBoy settings" +msgstr "GameBoy settings" + +#: ../src/wx/cmdevents.cpp:505 ../src/wx/guiinit.cpp:642 +msgid "GameGenie" +msgstr "GameGenie" + +#: ../src/wx/guiinit.cpp:641 wx-xrc-strings.h:434 +msgid "GameShark" +msgstr "GameShark" + +#: ../src/wx/guiinit.cpp:645 +msgid "GameShark Advance" +msgstr "GameShark Advance" + +#: ../src/wx/cmdevents.cpp:508 +msgid "GameShark V3.0" +msgstr "GameShark V3.0" + +#: ../src/wx/cmdevents.cpp:755 +msgid "Gameboy Snapshot (*.gbs)|*.gbs" +msgstr "Gameboy Snapshot (*.gbs)|*.gbs" + +#: wx-xrc-strings.h:8 +msgid "Gameshark &code file..." +msgstr "Gameshark &code file..." + +#: ../src/wx/cmdevents.cpp:658 +msgid "Gameshark Code File (*.gcf)|*.gcf" +msgstr "Gameshark Code File (*.gcf)|*.gcf" + +#: ../src/wx/cmdevents.cpp:657 +msgid "Gameshark Code File (*.spc;*.xpc)|*.spc;*.xpc" +msgstr "Gameshark Code File (*.spc;*.xpc)|*.spc;*.xpc" + +#: ../src/wx/cmdevents.cpp:819 +msgid "Gameshark Snapshot (*.sps)|*.sps" +msgstr "Gameshark Snapshot (*.sps)|*.sps" + +#: wx-xrc-strings.h:205 +msgid "General" +msgstr "General" + +#: ../src/wx/guiinit.cpp:644 +msgid "Generic Code" +msgstr "Generic Code" + +#: wx-xrc-strings.h:257 +msgid "Green Forest" +msgstr "Green Forest" + +#: wx-xrc-strings.h:527 +msgid "H" +msgstr "H" + +#: wx-xrc-strings.h:515 +msgid "HL:" +msgstr "HL:" + +#: wx-xrc-strings.h:356 +msgid "HQ 3x" +msgstr "HQ 3x" + +#: wx-xrc-strings.h:358 +msgid "HQ 4x" +msgstr "HQ 4x" + +#: wx-xrc-strings.h:352 +msgid "HQ2x" +msgstr "HQ2x" + +#: ../src/wx/widgets/joyedit.cpp:100 +#, c-format +msgid "Hat%dE" +msgstr "Hat%dE" + +#: ../src/wx/widgets/joyedit.cpp:91 +#, c-format +msgid "Hat%dN" +msgstr "Hat%dN" + +#: ../src/wx/widgets/joyedit.cpp:106 +#, c-format +msgid "Hat%dNE" +msgstr "Hat%dNE" + +#: ../src/wx/widgets/joyedit.cpp:103 +#, c-format +msgid "Hat%dNW" +msgstr "Hat%dNW" + +#: ../src/wx/widgets/joyedit.cpp:94 +#, c-format +msgid "Hat%dS" +msgstr "Hat%dS" + +#: ../src/wx/widgets/joyedit.cpp:112 +#, c-format +msgid "Hat%dSE" +msgstr "Hat%dSE" + +#: ../src/wx/widgets/joyedit.cpp:109 +#, c-format +msgid "Hat%dSW" +msgstr "Hat%dSW" + +#: ../src/wx/widgets/joyedit.cpp:97 +#, c-format +msgid "Hat%dW" +msgstr "Hat%dW" + +#: ../src/wx/widgets/joyedit.cpp:146 +msgid "" +"Hat([0-9]+)((N|North|U|Up)|(S|South|D|Down)|(E|East|R|Right)|(W|West|L|Left)|" +"(NE|NorthEast|UR|UpRight)|(SE|SouthEast|DR|DownRight)|(SW|SouthWest|DL|" +"DownLeft)|(NW|NorthWest|UL|UpLeft))" +msgstr "" +"Hat([0-9]+)((N|North|U|Up)|(S|South|D|Down)|(E|East|R|Right)|(W|West|L|Left)|" +"(NE|NorthEast|UR|UpRight)|(SE|SouthEast|DR|DownRight)|(SW|SouthWest|DL|" +"DownLeft)|(NW|NorthWest|UL|UpLeft))" + +#: ../src/wx/guiinit.cpp:1454 +msgid "Host name invalid" +msgstr "Host name invalid" + +#: wx-xrc-strings.h:258 +msgid "Hot Desert" +msgstr "Hot Desert" + +#: wx-xrc-strings.h:495 +msgid "I" +msgstr "I" + +#: wx-xrc-strings.h:549 +msgid "I/O Viewer" +msgstr "I/O Viewer" + +#: wx-xrc-strings.h:521 +msgid "IFF:" +msgstr "IFF:" + +#: wx-xrc-strings.h:212 +msgid "If not empty or 0, enable rewind (seconds)" +msgstr "If not empty or 0, enable rewind (seconds)" + +#: wx-xrc-strings.h:537 +msgid "Illegal &read" +msgstr "Illegal &read" + +#: wx-xrc-strings.h:536 +msgid "Illegal &write" +msgstr "Illegal &write" + +#: ../src/wx/sys.cpp:591 +msgid "Image files (*.bmp;*.jpg;*.png)|*.bmp;*.jpg;*.png|" +msgstr "Image files (*.bmp;*.jpg;*.png)|*.bmp;*.jpg;*.png|" + +#: ../src/wx/cmdevents.cpp:640 +msgid "" +"Importing a battery file will erase any saved games (permanently after the " +"next write). Do you want to continue?" +msgstr "" +"Importing a battery file will erase any saved games (permanently after the " +"next write). Do you want to continue?" + +#: ../src/wx/cmdevents.cpp:665 +msgid "" +"Importing a code file will replace any loaded cheats. Do you want to " +"continue?" +msgstr "" +"Importing a code file will replace any loaded cheats. Do you want to " +"continue?" + +#: ../src/wx/cmdevents.cpp:762 +msgid "" +"Importing a snapshot file will erase any saved games (permanently after the " +"next write). Do you want to continue?" +msgstr "" +"Importing a snapshot file will erase any saved games (permanently after the " +"next write). Do you want to continue?" + +#: wx-xrc-strings.h:669 +msgid "Index:" +msgstr "Index:" + +#: wx-xrc-strings.h:361 +msgid "Interframe blending :" +msgstr "Interframe blending :" + +#: wx-xrc-strings.h:364 +msgid "Interframe motion blur" +msgstr "Interframe motion blur" + +#: ../src/wx/opts.cpp:657 +#, c-format +msgid "Invalid flag option %s - %s ignored" +msgstr "Invalid flag option %s - %s ignored" + +#: ../src/wx/opts.cpp:503 ../src/wx/opts.cpp:520 ../src/wx/opts.cpp:745 +#: ../src/wx/opts.cpp:765 +#, c-format +msgid "Invalid key binding %s for %s" +msgstr "Invalid key binding %s for %s" + +#: ../src/wx/guiinit.cpp:2277 +#, c-format +msgid "Invalid menu item %s; removing" +msgstr "Invalid menu item %s; removing" + +#: ../src/wx/opts.cpp:318 ../src/wx/opts.cpp:358 ../src/wx/opts.cpp:382 +#: ../src/wx/opts.cpp:391 +#, c-format +msgid "Invalid option %s present; removing if possible" +msgstr "Invalid option %s present; removing if possible" + +#: ../src/wx/opts.cpp:346 ../src/wx/opts.cpp:369 +#, c-format +msgid "Invalid option group %s present; removing if possible" +msgstr "Invalid option group %s present; removing if possible" + +#: ../src/wx/opts.cpp:454 ../src/wx/opts.cpp:691 +#, c-format +msgid "Invalid value %d for option %s; valid values are %d - %d" +msgstr "Invalid value %d for option %s; valid values are %d - %d" + +#: ../src/wx/opts.cpp:432 ../src/wx/opts.cpp:676 +#, c-format +msgid "Invalid value %s for option %s; valid values are %s%s%s" +msgstr "Invalid value %s for option %s; valid values are %s%s%s" + +#: ../src/wx/widgets/joyedit.cpp:78 +#, c-format +msgid "Joy%d-" +msgstr "Joy%d-" + +#: ../src/wx/guiinit.cpp:3205 +msgid "JoyBus host invalid; disabling" +msgstr "JoyBus host invalid; disabling" + +#: wx-xrc-strings.h:443 +msgid "Joybus host" +msgstr "Joybus host" + +#: wx-xrc-strings.h:415 +msgid "Joypad Configuration" +msgstr "Joypad Configuration" + +#: wx-xrc-strings.h:422 +msgid "L" +msgstr "L" + +#: wx-xrc-strings.h:180 +msgid "L&ess or equal" +msgstr "L&ess or equal" + +#: ../src/wx/cmdevents.cpp:1165 +msgid "LAN link is already active. Disable link mode to disconnect." +msgstr "LAN link is already active. Disable link mode to disconnect." + +#: wx-xrc-strings.h:353 +msgid "LQ2x" +msgstr "LQ2x" + +#: wx-xrc-strings.h:488 +msgid "LR:" +msgstr "LR:" + +#: wx-xrc-strings.h:523 +msgid "LY:" +msgstr "LY:" + +#: wx-xrc-strings.h:421 +msgid "Left" +msgstr "Left" + +#: wx-xrc-strings.h:396 +msgid "Left/Right" +msgstr "Left/Right" + +#: wx-xrc-strings.h:143 +msgid "License code:" +msgstr "License code:" + +#: wx-xrc-strings.h:441 +msgid "Link Options" +msgstr "Link Options" + +#: wx-xrc-strings.h:447 +msgid "Link timeout (in milliseconds)" +msgstr "Link timeout (in milliseconds)" + +#: wx-xrc-strings.h:66 +msgid "List &cheats ..." +msgstr "List &cheats ..." + +#: ../src/wx/wxvbam.cpp:255 +msgid "List all settable options and exit" +msgstr "List all settable options and exit" + +#: ../src/wx/cmdevents.cpp:645 ../src/wx/panel.cpp:292 +#, c-format +msgid "Loaded battery %s" +msgstr "Loaded battery %s" + +#: ../src/wx/guiinit.cpp:277 ../src/wx/panel.cpp:318 +msgid "Loaded cheats" +msgstr "Loaded cheats" + +#: ../src/wx/cmdevents.cpp:740 +#, c-format +msgid "Loaded code file %s" +msgstr "Loaded code file %s" + +#: ../src/wx/cmdevents.cpp:784 +#, c-format +msgid "Loaded snapshot file %s" +msgstr "Loaded snapshot file %s" + +#: ../src/wx/panel.cpp:484 +#, c-format +msgid "Loaded state %s" +msgstr "Loaded state %s" + +#: wx-xrc-strings.h:548 +msgid "Logging" +msgstr "Logging" + +#: wx-xrc-strings.h:392 +msgid "Lots" +msgstr "Lots" + +#: wx-xrc-strings.h:91 +msgid "M&emory viewer..." +msgstr "M&emory viewer..." + +#: ../src/wx/guiinit.cpp:2048 +msgid "Main display panel not found" +msgstr "Main display panel not found" + +#: ../src/wx/guiinit.cpp:2062 +msgid "Main icon not found" +msgstr "Main icon not found" + +#: wx-xrc-strings.h:127 +msgid "Main unit code:" +msgstr "Main unit code:" + +#: wx-xrc-strings.h:125 wx-xrc-strings.h:133 +msgid "Maker code:" +msgstr "Maker code:" + +#: wx-xrc-strings.h:126 wx-xrc-strings.h:134 +msgid "Maker name:" +msgstr "Maker name:" + +#: wx-xrc-strings.h:601 +msgid "Map Base" +msgstr "Map Base" + +#: wx-xrc-strings.h:583 +msgid "Map Base:" +msgstr "Map Base:" + +#: wx-xrc-strings.h:571 wx-xrc-strings.h:611 +msgid "Map view" +msgstr "Map view" + +#: wx-xrc-strings.h:370 wx-xrc-strings.h:401 +msgid "Maximum" +msgstr "Maximum" + +#: wx-xrc-strings.h:324 +msgid "Maximum magnification factor :" +msgstr "Maximum magnification factor :" + +#: ../src/wx/viewers.cpp:615 ../src/wx/viewers.cpp:662 +msgid "Memory dumps (*.dmp;*.bin)|*.dmp;*.bin|" +msgstr "Memory dumps (*.dmp;*.bin)|*.dmp;*.bin|" + +#: wx-xrc-strings.h:621 +msgid "Memory viewer" +msgstr "Memory viewer" + +#: ../src/wx/guiinit.cpp:2171 +#, c-format +msgid "Menu accelerator %s for %s overrides default for %s ; keeping menu" +msgstr "Menu accelerator %s for %s overrides default for %s ; keeping menu" + +#: ../src/wx/guiinit.cpp:3098 +msgid "Menu commands" +msgstr "Menu commands" + +#: ../src/wx/widgets/keyedit.cpp:140 +msgid "Meta+" +msgstr "Meta+" + +#: ../src/wx/widgets/keyedit.cpp:95 ../src/wx/widgets/keyedit.cpp:139 +msgid "Meta-" +msgstr "Meta-" + +#: wx-xrc-strings.h:309 +msgid "Mirroring:" +msgstr "Mirroring:" + +#: wx-xrc-strings.h:501 wx-xrc-strings.h:582 wx-xrc-strings.h:628 +msgid "Mode:" +msgstr "Mode:" + +#: wx-xrc-strings.h:588 +msgid "Mosaic:" +msgstr "Mosaic:" + +#: wx-xrc-strings.h:36 +msgid "Most &recent" +msgstr "Most &recent" + +#: wx-xrc-strings.h:430 +msgid "Motion Down" +msgstr "Motion Down" + +#: wx-xrc-strings.h:432 +msgid "Motion Left" +msgstr "Motion Left" + +#: wx-xrc-strings.h:433 +msgid "Motion Right" +msgstr "Motion Right" + +#: wx-xrc-strings.h:428 +msgid "Motion Up" +msgstr "Motion Up" + +#: wx-xrc-strings.h:368 +msgid "Mute" +msgstr "Mute" + +#: wx-xrc-strings.h:494 wx-xrc-strings.h:526 +msgid "N" +msgstr "N" + +#: wx-xrc-strings.h:406 +msgid "Native Saves" +msgstr "Native Saves" + +#: wx-xrc-strings.h:165 +msgid "Network Link" +msgstr "Network Link" + +#: wx-xrc-strings.h:233 +msgid "Never" +msgstr "Never" + +#: ../src/wx/guiinit.cpp:2591 +msgid "New Value" +msgstr "New Value" + +#: ../src/wx/cmdevents.cpp:2178 +msgid "Nintendo GameBoy (+Color+Advance) emulator." +msgstr "Nintendo GameBoy (+Color+Advance) emulator." + +#: ../src/wx/sys.cpp:108 ../src/wx/sys.cpp:158 +msgid "No game in progress to record" +msgstr "No game in progress to record" + +#: ../src/wx/panel.cpp:853 +msgid "No memory for rewinding" +msgstr "No memory for rewinding" + +#: wx-xrc-strings.h:217 +msgid "No throttle" +msgstr "No throttle" + +#: ../src/wx/guiinit.cpp:1619 +#, c-format +msgid "No usable rpi plugins found in %s" +msgstr "No usable rpi plugins found in %s" + +#: ../src/wx/cmdevents.cpp:557 ../src/wx/guiinit.cpp:1582 wx-xrc-strings.h:273 +#: wx-xrc-strings.h:304 wx-xrc-strings.h:316 wx-xrc-strings.h:342 +#: wx-xrc-strings.h:362 wx-xrc-strings.h:391 wx-xrc-strings.h:400 +msgid "None" +msgstr "None" + +#: ../src/wx/panel.cpp:774 +msgid "Not a valid GBA cartridge" +msgstr "Not a valid GBA cartridge" + +#: wx-xrc-strings.h:149 +msgid "Notes:" +msgstr "Notes:" + +#: ../src/wx/guiinit.cpp:705 ../src/wx/guiinit.cpp:911 +msgid "Number cannot be empty" +msgstr "Number cannot be empty" + +#: wx-xrc-strings.h:385 +msgid "Number of sound buffers:" +msgstr "Number of sound buffers:" + +#: wx-xrc-strings.h:77 +msgid "O&BJ WIN" +msgstr "O&BJ WIN" + +#: wx-xrc-strings.h:625 wx-xrc-strings.h:652 +msgid "OAM Viewer" +msgstr "OAM Viewer" + +#: wx-xrc-strings.h:644 +msgid "OAP:" +msgstr "OAP:" + +#: wx-xrc-strings.h:162 +msgid "Off (accurate)" +msgstr "Off (accurate)" + +#: wx-xrc-strings.h:192 +msgid "Ol&d value" +msgstr "Ol&d value" + +#: ../src/wx/guiinit.cpp:2590 +msgid "Old Value" +msgstr "Old Value" + +#: wx-xrc-strings.h:163 +msgid "On (fast)" +msgstr "On (fast)" + +#: wx-xrc-strings.h:321 +msgid "On-Screen Display" +msgstr "On-Screen Display" + +#: ../src/wx/cmdevents.cpp:88 +msgid "Open ROM file" +msgstr "Open ROM file" + +#: wx-xrc-strings.h:166 +msgid "Open cheat list" +msgstr "Open cheat list" + +#: wx-xrc-strings.h:3 +msgid "Open rece&nt" +msgstr "Open rece&nt" + +#: wx-xrc-strings.h:378 +msgid "OpenAL" +msgstr "OpenAL" + +#: ../src/wx/openal.cpp:161 +msgid "" +"OpenAL library could not be found on your system. Please install the " +"runtime from http://openal.org" +msgstr "" +"OpenAL library could not be found on your system. Please install the " +"runtime from http://openal.org" + +#: wx-xrc-strings.h:333 +msgid "OpenGL" +msgstr "OpenGL" + +#: ../src/wx/wxvbam.cpp:334 +msgid "" +"Options set from the command line are saved if any configuration changes are " +"made in the user interface.\n" +"\n" +"For flag options, true and false are specified as 1 and 0, respectively.\n" +"\n" +msgstr "" +"Options set from the command line are saved if any configuration changes are " +"made in the user interface.\n" +"\n" +"For flag options, true and false are specified as 1 and 0, respectively.\n" +"\n" + +#: ../src/wx/guiinit.cpp:3119 +msgid "Other commands" +msgstr "Other commands" + +#: wx-xrc-strings.h:331 +msgid "Output module" +msgstr "Output module" + +#: wx-xrc-strings.h:589 +msgid "Overflow:" +msgstr "Overflow:" + +#: wx-xrc-strings.h:490 wx-xrc-strings.h:519 +msgid "PC:" +msgstr "PC:" + +#: ../src/wx/cmdevents.cpp:865 ../src/wx/viewsupt.cpp:1024 +msgid "PNG images|*.png|BMP images|*.bmp" +msgstr "PNG images|*.png|BMP images|*.bmp" + +#: wx-xrc-strings.h:630 wx-xrc-strings.h:645 +msgid "Pal:" +msgstr "Pal:" + +#: wx-xrc-strings.h:653 wx-xrc-strings.h:673 +msgid "Palette View" +msgstr "Palette View" + +#: wx-xrc-strings.h:593 wx-xrc-strings.h:607 wx-xrc-strings.h:684 +#: wx-xrc-strings.h:697 +msgid "Palette:" +msgstr "Palette:" + +#: wx-xrc-strings.h:206 +msgid "Pause when &inactive" +msgstr "Pause when &inactive" + +#: wx-xrc-strings.h:317 +msgid "Percentage" +msgstr "Percentage" + +#: wx-xrc-strings.h:259 +msgid "Pink Dreams" +msgstr "Pink Dreams" + +#: wx-xrc-strings.h:346 +msgid "Pixelate" +msgstr "Pixelate" + +#: ../src/wx/sys.cpp:280 +msgid "Playback ended" +msgstr "Playback ended" + +#: ../src/wx/guiinit.cpp:105 +#, c-format +msgid "Player %d connected\n" +msgstr "Player %d connected\n" + +#: wx-xrc-strings.h:411 +msgid "Player 1" +msgstr "Player 1" + +#: wx-xrc-strings.h:412 +msgid "Player 2" +msgstr "Player 2" + +#: wx-xrc-strings.h:413 +msgid "Player 3" +msgstr "Player 3" + +#: wx-xrc-strings.h:414 +msgid "Player 4" +msgstr "Player 4" + +#: wx-xrc-strings.h:153 +msgid "Players:" +msgstr "Players:" + +#: wx-xrc-strings.h:446 +msgid "" +"Please note that this is the first version of RFU emulation code and it's " +"probably got more bugs than the link code. Also, it is only supported with " +"2 players in local mode." +msgstr "" +"Please note that this is the first version of RFU emulation code and it's " +"probably got more bugs than the link code. Also, it is only supported with " +"2 players in local mode." + +#: ../src/wx/guiinit.cpp:1659 +msgid "Please select a plugin or a different filter" +msgstr "Please select a plugin or a different filter" + +#: ../src/wx/guiinit.cpp:1636 wx-xrc-strings.h:359 +msgid "Plugin" +msgstr "Plugin" + +#: wx-xrc-strings.h:360 +msgid "Plugin :" +msgstr "Plugin :" + +#: ../src/wx/guiinit.cpp:1660 +msgid "Plugin selection error" +msgstr "Plugin selection error" + +#: ../src/wx/cmdevents.cpp:1650 +msgid "Port to wait for connection:" +msgstr "Port to wait for connection:" + +#: wx-xrc-strings.h:627 wx-xrc-strings.h:641 +msgid "Pos:" +msgstr "Pos:" + +#: wx-xrc-strings.h:223 +msgid "Preferences" +msgstr "Preferences" + +#: wx-xrc-strings.h:115 +msgid "Print Si&ze" +msgstr "Print Si&ze" + +#: ../src/wx/wxvbam.cpp:244 +msgid "Print configuration path and exit" +msgstr "Print configuration path and exit" + +#: ../src/wx/sys.cpp:676 +msgid "Printed" +msgstr "Printed" + +#: wx-xrc-strings.h:632 wx-xrc-strings.h:643 +msgid "Prio:" +msgstr "Prio:" + +#: wx-xrc-strings.h:587 wx-xrc-strings.h:608 +msgid "Priority:" +msgstr "Priority:" + +#: ../src/wx/panel.cpp:56 ../src/wx/panel.cpp:110 ../src/wx/panel.cpp:173 +msgid "Problem loading file" +msgstr "Problem loading file" + +#: wx-xrc-strings.h:158 +msgid "Protocol:" +msgstr "Protocol:" + +#: wx-xrc-strings.h:424 +msgid "R" +msgstr "R" + +#: wx-xrc-strings.h:460 +msgid "R0:" +msgstr "R0:" + +#: wx-xrc-strings.h:480 +msgid "R10:" +msgstr "R10:" + +#: wx-xrc-strings.h:482 +msgid "R11:" +msgstr "R11:" + +#: wx-xrc-strings.h:484 +msgid "R12:" +msgstr "R12:" + +#: wx-xrc-strings.h:462 +msgid "R1:" +msgstr "R1:" + +#: wx-xrc-strings.h:464 +msgid "R2:" +msgstr "R2:" + +#: wx-xrc-strings.h:466 +msgid "R3:" +msgstr "R3:" + +#: wx-xrc-strings.h:468 +msgid "R4:" +msgstr "R4:" + +#: wx-xrc-strings.h:470 +msgid "R5:" +msgstr "R5:" + +#: wx-xrc-strings.h:472 +msgid "R6:" +msgstr "R6:" + +#: wx-xrc-strings.h:474 +msgid "R7:" +msgstr "R7:" + +#: wx-xrc-strings.h:476 +msgid "R8:" +msgstr "R8:" + +#: wx-xrc-strings.h:478 +msgid "R9:" +msgstr "R9:" + +#: ../src/wx/viewsupt.cpp:675 +msgid "R:" +msgstr "R:" + +#: wx-xrc-strings.h:141 +msgid "RAM size:" +msgstr "RAM size:" + +#: ../src/wx/cmdevents.cpp:1170 +msgid "RFU is currently only supported in local mode." +msgstr "RFU is currently only supported in local mode." + +#: ../src/wx/cmdevents.cpp:442 +msgid "ROM" +msgstr "ROM" + +#: wx-xrc-strings.h:122 wx-xrc-strings.h:131 wx-xrc-strings.h:145 +msgid "ROM Information" +msgstr "ROM Information" + +#: ../src/wx/wxvbam.cpp:257 +msgid "ROM file" +msgstr "ROM file" + +#: wx-xrc-strings.h:6 +msgid "ROM in&formation..." +msgstr "ROM in&formation..." + +#: wx-xrc-strings.h:140 +msgid "ROM size:" +msgstr "ROM size:" + +#: wx-xrc-strings.h:129 wx-xrc-strings.h:137 +msgid "ROM version:" +msgstr "ROM version:" + +#: ../src/wx/cmdevents.cpp:514 +msgid "ROM+BANDAI TAMA5" +msgstr "ROM+BANDAI TAMA5" + +#: ../src/wx/cmdevents.cpp:520 +msgid "ROM+HuC-1" +msgstr "ROM+HuC-1" + +#: ../src/wx/cmdevents.cpp:517 +msgid "ROM+HuC-3" +msgstr "ROM+HuC-3" + +#: ../src/wx/cmdevents.cpp:445 +msgid "ROM+MBC1" +msgstr "ROM+MBC1" + +#: ../src/wx/cmdevents.cpp:448 +msgid "ROM+MBC1+RAM" +msgstr "ROM+MBC1+RAM" + +#: ../src/wx/cmdevents.cpp:451 +msgid "ROM+MBC1+RAM+BATT" +msgstr "ROM+MBC1+RAM+BATT" + +#: ../src/wx/cmdevents.cpp:454 +msgid "ROM+MBC2" +msgstr "ROM+MBC2" + +#: ../src/wx/cmdevents.cpp:457 +msgid "ROM+MBC2+BATT" +msgstr "ROM+MBC2+BATT" + +#: ../src/wx/cmdevents.cpp:475 +msgid "ROM+MBC3" +msgstr "ROM+MBC3" + +#: ../src/wx/cmdevents.cpp:478 +msgid "ROM+MBC3+RAM" +msgstr "ROM+MBC3+RAM" + +#: ../src/wx/cmdevents.cpp:481 +msgid "ROM+MBC3+RAM+BATT" +msgstr "ROM+MBC3+RAM+BATT" + +#: ../src/wx/cmdevents.cpp:469 +msgid "ROM+MBC3+TIMER+BATT" +msgstr "ROM+MBC3+TIMER+BATT" + +#: ../src/wx/cmdevents.cpp:472 +msgid "ROM+MBC3+TIMER+RAM+BATT" +msgstr "ROM+MBC3+TIMER+RAM+BATT" + +#: ../src/wx/cmdevents.cpp:484 +msgid "ROM+MBC5" +msgstr "ROM+MBC5" + +#: ../src/wx/cmdevents.cpp:487 +msgid "ROM+MBC5+RAM" +msgstr "ROM+MBC5+RAM" + +#: ../src/wx/cmdevents.cpp:490 +msgid "ROM+MBC5+RAM+BATT" +msgstr "ROM+MBC5+RAM+BATT" + +#: ../src/wx/cmdevents.cpp:493 +msgid "ROM+MBC5+RUMBLE" +msgstr "ROM+MBC5+RUMBLE" + +#: ../src/wx/cmdevents.cpp:496 +msgid "ROM+MBC5+RUMBLE+RAM" +msgstr "ROM+MBC5+RUMBLE+RAM" + +#: ../src/wx/cmdevents.cpp:499 +msgid "ROM+MBC5+RUMBLE+RAM+BATT" +msgstr "ROM+MBC5+RUMBLE+RAM+BATT" + +#: ../src/wx/cmdevents.cpp:502 +msgid "ROM+MBC7+BATT" +msgstr "ROM+MBC7+BATT" + +#: ../src/wx/cmdevents.cpp:460 +msgid "ROM+MMM01" +msgstr "ROM+MMM01" + +#: ../src/wx/cmdevents.cpp:463 +msgid "ROM+MMM01+RAM" +msgstr "ROM+MMM01+RAM" + +#: ../src/wx/cmdevents.cpp:466 +msgid "ROM+MMM01+RAM+BATT" +msgstr "ROM+MMM01+RAM+BATT" + +#: ../src/wx/cmdevents.cpp:511 +msgid "ROM+POCKET CAMERA" +msgstr "ROM+POCKET CAMERA" + +#: wx-xrc-strings.h:505 wx-xrc-strings.h:531 +msgid "Re&fresh" +msgstr "Re&fresh" + +#: wx-xrc-strings.h:452 +msgid "Re&set All" +msgstr "Re&set All" + +#: wx-xrc-strings.h:65 +msgid "Re&wind" +msgstr "Re&wind" + +#: wx-xrc-strings.h:262 +msgid "Real 'GB on GBASP' Colors" +msgstr "Real 'GB on GBASP' Colors" + +#: wx-xrc-strings.h:261 +msgid "Real GB Colors" +msgstr "Real GB Colors" + +#: wx-xrc-strings.h:293 +msgid "Real Time Clock:" +msgstr "Real Time Clock:" + +#: wx-xrc-strings.h:409 +msgid "Recordings" +msgstr "Recordings" + +#: ../src/wx/guiinit.cpp:325 ../src/wx/guiinit.cpp:342 +msgid "Removing cheats" +msgstr "Removing cheats" + +#: wx-xrc-strings.h:112 +msgid "Report &Bugs" +msgstr "Report &Bugs" + +#: wx-xrc-strings.h:266 +msgid "Restore" +msgstr "Restore" + +#: ../src/wx/guiinit.cpp:324 ../src/wx/guiinit.cpp:341 +msgid "Restore old values?" +msgstr "Restore old values?" + +#: wx-xrc-strings.h:323 +msgid "Retain aspect ratio" +msgstr "Retain aspect ratio" + +#: wx-xrc-strings.h:423 +msgid "Right" +msgstr "Right" + +#: wx-xrc-strings.h:634 +msgid "Rot.:" +msgstr "Rot.:" + +#: wx-xrc-strings.h:184 +msgid "S&igned" +msgstr "S&igned" + +#: wx-xrc-strings.h:377 +msgid "SDL" +msgstr "SDL" + +#: ../src/wx/widgets/keyedit.cpp:78 ../src/wx/widgets/keyedit.cpp:166 +msgid "SHIFT" +msgstr "SHIFT" + +#: wx-xrc-strings.h:486 wx-xrc-strings.h:517 +msgid "SP:" +msgstr "SP:" + +#: wx-xrc-strings.h:270 wx-xrc-strings.h:301 +msgid "SRAM" +msgstr "SRAM" + +#: wx-xrc-strings.h:534 +msgid "SW&I" +msgstr "SW&I" + +#: wx-xrc-strings.h:371 +msgid "Sample rate :" +msgstr "Sample rate :" + +#: wx-xrc-strings.h:662 wx-xrc-strings.h:666 +msgid "Save &BG..." +msgstr "Save &BG..." + +#: wx-xrc-strings.h:663 wx-xrc-strings.h:668 +msgid "Save &Sprite..." +msgstr "Save &Sprite..." + +#: wx-xrc-strings.h:297 +msgid "Save Type:" +msgstr "Save Type:" + +#: ../src/wx/wxvbam.cpp:240 +msgid "Save built-in XRC file and exit" +msgstr "Save built-in XRC file and exit" + +#: ../src/wx/wxvbam.cpp:242 +msgid "Save built-in vba-over.ini and exit" +msgstr "Save built-in vba-over.ini and exit" + +#: wx-xrc-strings.h:167 +msgid "Save cheat list" +msgstr "Save cheat list" + +#: ../src/wx/sys.cpp:598 +msgid "Save printer image to" +msgstr "Save printer image to" + +#: wx-xrc-strings.h:267 +msgid "Save type :" +msgstr "Save type :" + +#: ../src/wx/guiinit.cpp:300 +msgid "Saved cheats" +msgstr "Saved cheats" + +#: ../src/wx/cmdevents.cpp:841 +#, c-format +msgid "Saved snapshot file %s" +msgstr "Saved snapshot file %s" + +#: ../src/wx/panel.cpp:508 +#, c-format +msgid "Saved state %s" +msgstr "Saved state %s" + +#: wx-xrc-strings.h:350 +msgid "Scanlines" +msgstr "Scanlines" + +#: wx-xrc-strings.h:14 +msgid "Screen capt&ure..." +msgstr "Screen capt&ure..." + +#: wx-xrc-strings.h:436 +msgid "Screenshot" +msgstr "Screenshot" + +#: wx-xrc-strings.h:208 +msgid "Screenshot Format:" +msgstr "Screenshot Format:" + +#: wx-xrc-strings.h:408 +msgid "Screenshots" +msgstr "Screenshots" + +#: wx-xrc-strings.h:199 +msgid "Search for cheats" +msgstr "Search for cheats" + +#: ../src/wx/guiinit.cpp:733 +#, c-format +msgid "Search produced %d results. Please refine better" +msgstr "Search produced %d results. Please refine better" + +#: ../src/wx/guiinit.cpp:743 +msgid "Search produced no results" +msgstr "Search produced no results" + +#: wx-xrc-strings.h:194 +msgid "Search value" +msgstr "Search value" + +#: wx-xrc-strings.h:146 +msgid "Selct codes to import" +msgstr "Selct codes to import" + +#: wx-xrc-strings.h:425 +msgid "Select" +msgstr "Select" + +#: ../src/wx/cmdevents.cpp:633 ../src/wx/cmdevents.cpp:795 +msgid "Select battery file" +msgstr "Select battery file" + +#: ../src/wx/guiinit.cpp:262 ../src/wx/guiinit.cpp:285 +msgid "Select cheat file" +msgstr "Select cheat file" + +#: ../src/wx/cmdevents.cpp:655 +msgid "Select code file" +msgstr "Select code file" + +#: ../src/wx/cmdevents.cpp:1080 +msgid "Select file" +msgstr "Select file" + +#: ../src/wx/viewers.cpp:617 +msgid "Select memory dump file" +msgstr "Select memory dump file" + +#: ../src/wx/cmdevents.cpp:864 ../src/wx/cmdevents.cpp:941 +#: ../src/wx/cmdevents.cpp:1013 ../src/wx/cmdevents.cpp:1049 +#: ../src/wx/viewers.cpp:495 ../src/wx/viewers.cpp:664 +#: ../src/wx/viewsupt.cpp:1023 +msgid "Select output file" +msgstr "Select output file" + +#: ../src/wx/gfxviewers.cpp:1041 +msgid "Select output file and type" +msgstr "Select output file and type" + +#: ../src/wx/cmdevents.cpp:752 ../src/wx/cmdevents.cpp:818 +msgid "Select snapshot file" +msgstr "Select snapshot file" + +#: ../src/wx/cmdevents.cpp:1246 ../src/wx/cmdevents.cpp:1328 +msgid "Select state file" +msgstr "Select state file" + +#: wx-xrc-strings.h:151 +msgid "Server" +msgstr "Server" + +#: ../src/wx/guiinit.cpp:94 +#, c-format +msgid "Server IP address is: %s\n" +msgstr "Server IP address is: %s\n" + +#: wx-xrc-strings.h:157 +msgid "Server:" +msgstr "Server:" + +#: ../src/wx/cmdevents.cpp:1648 +msgid "Set to 0 for pseudo tty" +msgstr "Set to 0 for pseudo tty" + +#: wx-xrc-strings.h:454 +msgid "Shortcut Key:" +msgstr "Shortcut Key:" + +#: wx-xrc-strings.h:187 +msgid "Signed/Unsigned" +msgstr "Signed/Unsigned" + +#: wx-xrc-strings.h:332 +msgid "Simple" +msgstr "Simple" + +#: wx-xrc-strings.h:354 +msgid "Simple 2X" +msgstr "Simple 2X" + +#: wx-xrc-strings.h:355 +msgid "Simple 3x" +msgstr "Simple 3x" + +#: wx-xrc-strings.h:357 +msgid "Simple 4x" +msgstr "Simple 4x" + +#: wx-xrc-strings.h:585 wx-xrc-strings.h:623 wx-xrc-strings.h:633 +msgid "Size:" +msgstr "Size:" + +#: wx-xrc-strings.h:288 +msgid "Skip BIOS intro" +msgstr "Skip BIOS intro" + +#: wx-xrc-strings.h:363 +msgid "Smart interframe blending" +msgstr "Smart interframe blending" + +#: wx-xrc-strings.h:544 +msgid "Soun&d output" +msgstr "Soun&d output" + +#: wx-xrc-strings.h:403 +msgid "Sound Settings" +msgstr "Sound Settings" + +#: ../src/wx/cmdevents.cpp:1558 +msgid "Sound disabled" +msgstr "Sound disabled" + +#: ../src/wx/cmdevents.cpp:1558 +msgid "Sound enabled" +msgstr "Sound enabled" + +#: wx-xrc-strings.h:399 +msgid "Sound filtering" +msgstr "Sound filtering" + +#: wx-xrc-strings.h:398 +msgid "Sound interpolation" +msgstr "Sound interpolation" + +#: wx-xrc-strings.h:437 +msgid "Special" +msgstr "Special" + +#: wx-xrc-strings.h:193 +msgid "Specific &value" +msgstr "Specific &value" + +#: wx-xrc-strings.h:244 wx-xrc-strings.h:285 +msgid "Speed" +msgstr "Speed" + +#: wx-xrc-strings.h:435 +msgid "Speed Up" +msgstr "Speed Up" + +#: wx-xrc-strings.h:161 +msgid "Speed hacks:" +msgstr "Speed hacks:" + +#: wx-xrc-strings.h:315 +msgid "Speed indicator :" +msgstr "Speed indicator :" + +#: wx-xrc-strings.h:656 wx-xrc-strings.h:667 +msgid "Sprite" +msgstr "Sprite" + +#: wx-xrc-strings.h:626 wx-xrc-strings.h:640 +msgid "Sprite:" +msgstr "Sprite:" + +#: wx-xrc-strings.h:264 +msgid "Sprites" +msgstr "Sprites" + +#: wx-xrc-strings.h:254 wx-xrc-strings.h:427 +msgid "Standard" +msgstr "Standard" + +#: wx-xrc-strings.h:426 +msgid "Start" +msgstr "Start" + +#: wx-xrc-strings.h:35 +msgid "Start &Network Link..." +msgstr "Start &Network Link..." + +#: wx-xrc-strings.h:19 +msgid "Start &game recording..." +msgstr "Start &game recording..." + +#: wx-xrc-strings.h:15 +msgid "Start &sound recording..." +msgstr "Start &sound recording..." + +#: wx-xrc-strings.h:17 +msgid "Start &video recording..." +msgstr "Start &video recording..." + +#: ../src/wx/wxvbam.cpp:246 +msgid "Start in full-screen mode" +msgstr "Start in full-screen mode" + +#: wx-xrc-strings.h:22 +msgid "Start playing &movie..." +msgstr "Start playing &movie..." + +#: ../src/wx/guiinit.cpp:57 +msgid "Start!" +msgstr "Start!" + +#: wx-xrc-strings.h:394 +msgid "Stereo" +msgstr "Stereo" + +#: wx-xrc-strings.h:20 +msgid "Stop g&ame recording" +msgstr "Stop g&ame recording" + +#: wx-xrc-strings.h:23 +msgid "Stop playing m&ovie" +msgstr "Stop playing m&ovie" + +#: wx-xrc-strings.h:16 +msgid "Stop s&ound recording" +msgstr "Stop s&ound recording" + +#: wx-xrc-strings.h:18 +msgid "Stop v&ideo recording" +msgstr "Stop v&ideo recording" + +#: wx-xrc-strings.h:580 wx-xrc-strings.h:602 wx-xrc-strings.h:636 +#: wx-xrc-strings.h:648 wx-xrc-strings.h:685 wx-xrc-strings.h:698 +msgid "Stretch to &fit" +msgstr "Stretch to &fit" + +#: wx-xrc-strings.h:344 +msgid "Super 2xSaI" +msgstr "Super 2xSaI" + +#: wx-xrc-strings.h:345 +msgid "Super Eagle" +msgstr "Super Eagle" + +#: wx-xrc-strings.h:229 +msgid "Super Game Boy" +msgstr "Super Game Boy" + +#: wx-xrc-strings.h:230 +msgid "Super Game Boy 2" +msgstr "Super Game Boy 2" + +#: wx-xrc-strings.h:390 +msgid "Surround" +msgstr "Surround" + +#: wx-xrc-strings.h:240 +msgid "System and Peripherals" +msgstr "System and Peripherals" + +#: wx-xrc-strings.h:281 +msgid "System and peripherals" +msgstr "System and peripherals" + +#: wx-xrc-strings.h:499 +msgid "T" +msgstr "T" + +#: wx-xrc-strings.h:159 +msgid "TCP" +msgstr "TCP" + +#: wx-xrc-strings.h:351 +msgid "TV Mode" +msgstr "TV Mode" + +#: ../src/wx/viewers.cpp:493 +msgid "Text files (*.txt;*.log)|*.txt;*.log|" +msgstr "Text files (*.txt;*.log)|*.txt;*.log|" + +#: ../src/wx/xaudio2.cpp:156 ../src/wx/xaudio2.cpp:422 +msgid "The XAudio2 interface failed to initialize!" +msgstr "The XAudio2 interface failed to initialize!" + +#: ../src/wx/wxvbam.cpp:353 +msgid "" +"The commands available for the Keyboard/* option are:\n" +"\n" +msgstr "" +"The commands available for the Keyboard/* option are:\n" +"\n" + +#: ../src/wx/cmdevents.cpp:2180 +msgid "" +"This program is free software: you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation, either version 2 of the License, or\n" +"(at your option) any later version.\n" +"\n" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +"GNU General Public License for more details.\n" +"\n" +"You should have received a copy of the GNU General Public License\n" +"along with this program. If not, see http://www.gnu.org/licenses ." +msgstr "" +"This program is free software: you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation, either version 2 of the License, or\n" +"(at your option) any later version.\n" +"\n" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +"GNU General Public License for more details.\n" +"\n" +"You should have received a copy of the GNU General Public License\n" +"along with this program. If not, see http://www.gnu.org/licenses ." + +#: ../src/wx/guiinit.cpp:1834 +msgid "This will clear all user-defined accelerators. Are you sure?" +msgstr "This will clear all user-defined accelerators. Are you sure?" + +#: wx-xrc-strings.h:674 wx-xrc-strings.h:704 +msgid "Tile Viewer" +msgstr "Tile Viewer" + +#: wx-xrc-strings.h:591 wx-xrc-strings.h:605 wx-xrc-strings.h:631 +#: wx-xrc-strings.h:642 wx-xrc-strings.h:687 wx-xrc-strings.h:700 +msgid "Tile:" +msgstr "Tile:" + +#: wx-xrc-strings.h:147 +msgid "Title:" +msgstr "Title:" + +#: wx-xrc-strings.h:63 +msgid "To &File ..." +msgstr "To &File ..." + +#: wx-xrc-strings.h:171 +msgid "Toggle all Cheats" +msgstr "Toggle all Cheats" + +#: wx-xrc-strings.h:320 +msgid "Transparent status and speed" +msgstr "Transparent status and speed" + +#: wx-xrc-strings.h:196 +msgid "U&pdate Old" +msgstr "U&pdate Old" + +#: wx-xrc-strings.h:160 +msgid "UDP" +msgstr "UDP" + +#: ../src/wx/panel.cpp:1921 ../src/wx/panel.cpp:1949 +#, c-format +msgid "Unable to begin recording to %s (%s)" +msgstr "Unable to begin recording to %s (%s)" + +#: ../src/wx/panel.cpp:172 +#, c-format +msgid "Unable to load Game Boy Advance ROM %s" +msgstr "Unable to load Game Boy Advance ROM %s" + +#: ../src/wx/panel.cpp:109 +#, c-format +msgid "Unable to load Game Boy ROM %s" +msgstr "Unable to load Game Boy ROM %s" + +#: ../src/wx/guiinit.cpp:2302 +#, c-format +msgid "Unable to load dialog %s (control %s) from resources" +msgstr "Unable to load dialog %s (control %s) from resources" + +#: ../src/wx/guiinit.cpp:2298 ../src/wx/viewsupt.h:38 +#, c-format +msgid "Unable to load dialog %s from resources" +msgstr "Unable to load dialog %s from resources" + +#: wx-xrc-strings.h:535 +msgid "Unaligned &memory" +msgstr "Unaligned &memory" + +#: wx-xrc-strings.h:135 +msgid "Unit code:" +msgstr "Unit code:" + +#: ../src/wx/cmdevents.cpp:436 ../src/wx/cmdevents.cpp:523 +#: ../src/wx/cmdevents.cpp:552 ../src/wx/cmdevents.cpp:606 +msgid "Unknown" +msgstr "Unknown" + +#: ../src/wx/cmdevents.cpp:689 +#, c-format +msgid "Unsupported code file %s" +msgstr "Unsupported code file %s" + +#: wx-xrc-strings.h:417 +msgid "Up" +msgstr "Up" + +#: wx-xrc-strings.h:247 +msgid "Use a &Color Game Boy boot ROM file" +msgstr "Use a &Color Game Boy boot ROM file" + +#: wx-xrc-strings.h:245 +msgid "Use a &Game Boy boot ROM file" +msgstr "Use a &Game Boy boot ROM file" + +#: wx-xrc-strings.h:286 +msgid "Use a bios file" +msgstr "Use a bios file" + +#: wx-xrc-strings.h:438 +msgid "Use as default" +msgstr "Use as default" + +#: wx-xrc-strings.h:265 +msgid "Use this palette" +msgstr "Use this palette" + +#: wx-xrc-strings.h:251 +msgid "User 1" +msgstr "User 1" + +#: wx-xrc-strings.h:252 +msgid "User 2" +msgstr "User 2" + +#: wx-xrc-strings.h:500 +msgid "V" +msgstr "V" + +#: ../src/wx/cmdevents.cpp:1050 ../src/wx/cmdevents.cpp:1081 +msgid "VBA Movie files|*.vmv" +msgstr "VBA Movie files|*.vmv" + +#: ../src/wx/guiinit.cpp:263 ../src/wx/guiinit.cpp:286 +msgid "VBA cheat lists (*.clt)|*.clt" +msgstr "VBA cheat lists (*.clt)|*.clt" + +#: wx-xrc-strings.h:113 +msgid "VBA-M Support &Forum" +msgstr "VBA-M Support &Forum" + +#: wx-xrc-strings.h:1 +msgid "VBAM" +msgstr "VBAM" + +#: wx-xrc-strings.h:693 +msgid "VRAM Bank" +msgstr "VRAM Bank" + +#: ../src/wx/panel.cpp:712 +#, c-format +msgid "Valid mode: %dx%d-%d@%d" +msgstr "Valid mode: %dx%d-%d@%d" + +#: wx-xrc-strings.h:552 wx-xrc-strings.h:658 wx-xrc-strings.h:670 +msgid "Value:" +msgstr "Value:" + +#: wx-xrc-strings.h:545 +msgid "Verbose" +msgstr "Verbose" + +#: wx-xrc-strings.h:328 +msgid "Video Mode :" +msgstr "Video Mode :" + +#: ../src/wx/cmdevents.cpp:1247 ../src/wx/cmdevents.cpp:1329 +msgid "VisualBoyAdvance saved game files|*.sgm" +msgstr "VisualBoyAdvance saved game files|*.sgm" + +#: wx-xrc-strings.h:367 +msgid "Volume :" +msgstr "Volume :" + +#: ../src/wx/cmdevents.cpp:1569 ../src/wx/cmdevents.cpp:1581 +#, c-format +msgid "Volume: %d%%" +msgstr "Volume: %d%%" + +#: wx-xrc-strings.h:76 +msgid "W&IN 1" +msgstr "W&IN 1" + +#: wx-xrc-strings.h:337 +msgid "Wait for VSync" +msgstr "Wait for VSync" + +#: ../src/wx/guiinit.cpp:158 +#, c-format +msgid "Waiting for %d players to join" +msgstr "Waiting for %d players to join" + +#: ../src/wx/cmdevents.cpp:1674 +msgid "Waiting for GDB..." +msgstr "Waiting for GDB..." + +#: ../src/wx/guiinit.cpp:131 +msgid "Waiting for clients..." +msgstr "Waiting for clients..." + +#: ../src/wx/cmdevents.cpp:1666 +#, c-format +msgid "Waiting for connection at %s" +msgstr "Waiting for connection at %s" + +#: ../src/wx/cmdevents.cpp:1672 +#, c-format +msgid "Waiting for connection on port %d" +msgstr "Waiting for connection on port %d" + +#: ../src/wx/guiinit.cpp:187 +msgid "Waiting for connection..." +msgstr "Waiting for connection..." + +#: wx-xrc-strings.h:260 +msgid "Weird Colors" +msgstr "Weird Colors" + +#: ../src/wx/guiinit.cpp:2068 +msgid "Welcome to wxVBAM!" +msgstr "Welcome to wxVBAM!" + +#: ../src/wx/gfxviewers.cpp:1042 +msgid "" +"Windows Palette (*.pal)|*.pal|PaintShop Palette (*.pal)|*.pal|Adobe Color " +"Table (*.act)|*.act" +msgstr "" +"Windows Palette (*.pal)|*.pal|PaintShop Palette (*.pal)|*.pal|Adobe Color " +"Table (*.act)|*.act" + +#: ../src/wx/cmdevents.cpp:804 ../src/wx/panel.cpp:536 +#, c-format +msgid "Wrote battery %s" +msgstr "Wrote battery %s" + +#: ../src/wx/wxvbam.cpp:294 +#, c-format +msgid "" +"Wrote built-in configuration to %s.\n" +"To override, remove all but changed root node(s). First found root node of " +"correct name in any .xrc or .xrs files in following search path overrides " +"built-in:" +msgstr "" +"Wrote built-in configuration to %s.\n" +"To override, remove all but changed root node(s). First found root node of " +"correct name in any .xrc or .xrs files in following search path overrides " +"built-in:" + +#: ../src/wx/wxvbam.cpp:321 +#, c-format +msgid "" +"Wrote built-in override file to %s\n" +"To override, delete all but changed section. First found section is used " +"from search path:" +msgstr "" +"Wrote built-in override file to %s\n" +"To override, delete all but changed section. First found section is used " +"from search path:" + +#: ../src/wx/sys.cpp:609 ../src/wx/sys.cpp:778 +#, c-format +msgid "Wrote printer output to %s" +msgstr "Wrote printer output to %s" + +#: ../src/wx/cmdevents.cpp:884 ../src/wx/sys.cpp:400 +#, c-format +msgid "Wrote snapshot %s" +msgstr "Wrote snapshot %s" + +#: wx-xrc-strings.h:379 +msgid "XAudio2" +msgstr "XAudio2" + +#: ../src/wx/xaudio2.cpp:192 +msgid "XAudio2: Creating mastering voice failed!" +msgstr "XAudio2: Creating mastering voice failed!" + +#: ../src/wx/xaudio2.cpp:201 +msgid "XAudio2: Creating source voice failed!" +msgstr "XAudio2: Creating source voice failed!" + +#: ../src/wx/xaudio2.cpp:391 +msgid "XAudio2: Enumerating devices failed!" +msgstr "XAudio2: Enumerating devices failed!" + +#: ../src/wx/guiinit.cpp:1453 +msgid "You must enter a valid host name" +msgstr "You must enter a valid host name" + +#: wx-xrc-strings.h:496 wx-xrc-strings.h:525 +msgid "Z" +msgstr "Z" + +#: wx-xrc-strings.h:330 +msgid "Zoom" +msgstr "Zoom" + +#: ../src/wx/widgets/joyedit.cpp:139 +msgid "^Joy([0-9]+)[-+]" +msgstr "^Joy([0-9]+)[-+]" + +#: wx-xrc-strings.h:550 +msgid "a" +msgstr "a" + +#: wx-xrc-strings.h:551 +msgid "b" +msgstr "b" + +#: ../src/wx/panel.cpp:1905 +msgid "can't guess output format from file name" +msgstr "can't guess output format from file name" + +#: ../src/wx/dsound.cpp:306 +#, c-format +msgid "dsbSecondary->Lock() failed: %08x" +msgstr "dsbSecondary->Lock() failed: %08x" + +#: ../src/wx/dsound.cpp:164 +#, c-format +msgid "dsbSecondary->SetCurrentPosition failed %08x" +msgstr "dsbSecondary->SetCurrentPosition failed %08x" + +#: ../src/wx/panel.cpp:1901 +msgid "error initializing codec" +msgstr "error initializing codec" + +#: ../src/wx/panel.cpp:1903 +msgid "error writing to output file" +msgstr "error writing to output file" + +#: ../src/wx/wxvbam.cpp:339 +msgid "flag" +msgstr "flag" + +#: ../src/wx/wxvbam.cpp:342 +msgid "int" +msgstr "int" + +#: ../src/wx/panel.cpp:1899 +msgid "memory allocation error" +msgstr "memory allocation error" + +#: ../src/wx/wxvbam.cpp:303 +msgid "print-cfg-path" +msgstr "print-cfg-path" + +#: ../src/wx/panel.cpp:1909 +msgid "programming error; aborting!" +msgstr "programming error; aborting!" + +#: ../src/wx/wxvbam.cpp:313 +msgid "save-over" +msgstr "save-over" + +#: ../src/wx/wxvbam.cpp:279 +msgid "save-xrc" +msgstr "save-xrc" + +#: wx-xrc-strings.h:213 +msgid "seconds (0-600); 0 = disable" +msgstr "seconds (0-600); 0 = disable" + +#: ../src/wx/guiinit.cpp:894 +msgid "signed decimal" +msgstr "signed decimal" + +#: ../src/wx/wxvbam.cpp:340 ../src/wx/wxvbam.cpp:343 +msgid "string" +msgstr "string" + +#: ../src/wx/guiinit.cpp:897 +msgid "unsigned decimal" +msgstr "unsigned decimal" + +#: ../src/wx/guiinit.cpp:900 +msgid "unsigned hexadecimal" +msgstr "unsigned hexadecimal" diff --git a/po/wxvbam/wxvbam.pot b/po/wxvbam/wxvbam.pot index 27c09f1a..62822380 100644 --- a/po/wxvbam/wxvbam.pot +++ b/po/wxvbam/wxvbam.pot @@ -1,3440 +1,3440 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-12-03 21:22+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../src/wx/cmdevents.cpp:77 -msgid "" -"GameBoy Advance Files (*.agb;*.gba;*.bin;*.elf;*.mb)|*.agb;*.gba;*.bin;*.elf;" -"*.mb*.agb.gz;*.gba.gz;*.bin.gz;*.elf.gz;*.mb.gz*.agb.z;*.gba.z;*.bin.z;*.elf." -"z;*.mb.z|GameBoy Files (*.dmg;*.gb;*.gbc;*.cgb;*.sgb)|*.dmg;*.gb;*.gbc;*.cgb;" -"*.sgb*.dmg.gz;*.gb.gz;*.gbc.gz;*.cgb.gz;*.sgb.gz*.dmg.z;*.gb.z;*.gbc.z;*.cgb." -"z;*.sgb.z|Archives (*.zip;*.7z;*.rar)|*.zip;*.7z;*.rar|" -msgstr "" - -#: ../src/wx/cmdevents.cpp:88 -msgid "Open ROM file" -msgstr "" - -#: ../src/wx/cmdevents.cpp:436 ../src/wx/cmdevents.cpp:523 -#: ../src/wx/cmdevents.cpp:552 ../src/wx/cmdevents.cpp:606 -msgid "Unknown" -msgstr "" - -#: ../src/wx/cmdevents.cpp:442 -msgid "ROM" -msgstr "" - -#: ../src/wx/cmdevents.cpp:445 -msgid "ROM+MBC1" -msgstr "" - -#: ../src/wx/cmdevents.cpp:448 -msgid "ROM+MBC1+RAM" -msgstr "" - -#: ../src/wx/cmdevents.cpp:451 -msgid "ROM+MBC1+RAM+BATT" -msgstr "" - -#: ../src/wx/cmdevents.cpp:454 -msgid "ROM+MBC2" -msgstr "" - -#: ../src/wx/cmdevents.cpp:457 -msgid "ROM+MBC2+BATT" -msgstr "" - -#: ../src/wx/cmdevents.cpp:460 -msgid "ROM+MMM01" -msgstr "" - -#: ../src/wx/cmdevents.cpp:463 -msgid "ROM+MMM01+RAM" -msgstr "" - -#: ../src/wx/cmdevents.cpp:466 -msgid "ROM+MMM01+RAM+BATT" -msgstr "" - -#: ../src/wx/cmdevents.cpp:469 -msgid "ROM+MBC3+TIMER+BATT" -msgstr "" - -#: ../src/wx/cmdevents.cpp:472 -msgid "ROM+MBC3+TIMER+RAM+BATT" -msgstr "" - -#: ../src/wx/cmdevents.cpp:475 -msgid "ROM+MBC3" -msgstr "" - -#: ../src/wx/cmdevents.cpp:478 -msgid "ROM+MBC3+RAM" -msgstr "" - -#: ../src/wx/cmdevents.cpp:481 -msgid "ROM+MBC3+RAM+BATT" -msgstr "" - -#: ../src/wx/cmdevents.cpp:484 -msgid "ROM+MBC5" -msgstr "" - -#: ../src/wx/cmdevents.cpp:487 -msgid "ROM+MBC5+RAM" -msgstr "" - -#: ../src/wx/cmdevents.cpp:490 -msgid "ROM+MBC5+RAM+BATT" -msgstr "" - -#: ../src/wx/cmdevents.cpp:493 -msgid "ROM+MBC5+RUMBLE" -msgstr "" - -#: ../src/wx/cmdevents.cpp:496 -msgid "ROM+MBC5+RUMBLE+RAM" -msgstr "" - -#: ../src/wx/cmdevents.cpp:499 -msgid "ROM+MBC5+RUMBLE+RAM+BATT" -msgstr "" - -#: ../src/wx/cmdevents.cpp:502 -msgid "ROM+MBC7+BATT" -msgstr "" - -#: ../src/wx/cmdevents.cpp:505 ../src/wx/guiinit.cpp:642 -msgid "GameGenie" -msgstr "" - -#: ../src/wx/cmdevents.cpp:508 -msgid "GameShark V3.0" -msgstr "" - -#: ../src/wx/cmdevents.cpp:511 -msgid "ROM+POCKET CAMERA" -msgstr "" - -#: ../src/wx/cmdevents.cpp:514 -msgid "ROM+BANDAI TAMA5" -msgstr "" - -#: ../src/wx/cmdevents.cpp:517 -msgid "ROM+HuC-3" -msgstr "" - -#: ../src/wx/cmdevents.cpp:520 -msgid "ROM+HuC-1" -msgstr "" - -#: ../src/wx/cmdevents.cpp:557 ../src/wx/guiinit.cpp:1582 wx-xrc-strings.h:273 -#: wx-xrc-strings.h:304 wx-xrc-strings.h:316 wx-xrc-strings.h:342 -#: wx-xrc-strings.h:362 wx-xrc-strings.h:391 wx-xrc-strings.h:400 -msgid "None" -msgstr "" - -#: ../src/wx/cmdevents.cpp:633 ../src/wx/cmdevents.cpp:795 -msgid "Select battery file" -msgstr "" - -#: ../src/wx/cmdevents.cpp:634 ../src/wx/cmdevents.cpp:796 -msgid "Battery file (*.sav)|*.sav|Flash save (*.dat)|*.dat" -msgstr "" - -#: ../src/wx/cmdevents.cpp:640 -msgid "" -"Importing a battery file will erase any saved games (permanently after the " -"next write). Do you want to continue?" -msgstr "" - -#: ../src/wx/cmdevents.cpp:641 ../src/wx/cmdevents.cpp:666 -#: ../src/wx/cmdevents.cpp:763 -msgid "Confirm import" -msgstr "" - -#: ../src/wx/cmdevents.cpp:645 ../src/wx/panel.cpp:292 -#, c-format -msgid "Loaded battery %s" -msgstr "" - -#: ../src/wx/cmdevents.cpp:647 -#, c-format -msgid "Error loading battery %s" -msgstr "" - -#: ../src/wx/cmdevents.cpp:655 -msgid "Select code file" -msgstr "" - -#: ../src/wx/cmdevents.cpp:657 -msgid "Gameshark Code File (*.spc;*.xpc)|*.spc;*.xpc" -msgstr "" - -#: ../src/wx/cmdevents.cpp:658 -msgid "Gameshark Code File (*.gcf)|*.gcf" -msgstr "" - -#: ../src/wx/cmdevents.cpp:665 -msgid "" -"Importing a code file will replace any loaded cheats. Do you want to " -"continue?" -msgstr "" - -#: ../src/wx/cmdevents.cpp:679 -#, c-format -msgid "Cannot open file %s" -msgstr "" - -#: ../src/wx/cmdevents.cpp:689 -#, c-format -msgid "Unsupported code file %s" -msgstr "" - -#: ../src/wx/cmdevents.cpp:740 -#, c-format -msgid "Loaded code file %s" -msgstr "" - -#: ../src/wx/cmdevents.cpp:742 -#, c-format -msgid "Error loading code file %s" -msgstr "" - -#: ../src/wx/cmdevents.cpp:752 ../src/wx/cmdevents.cpp:818 -msgid "Select snapshot file" -msgstr "" - -#: ../src/wx/cmdevents.cpp:754 -msgid "" -"GS & PAC Snapshots (*.sps;*.xps)|*.sps;*.xps|GameShark SP Snapshots (*.gsv)|" -"*.gsv" -msgstr "" - -#: ../src/wx/cmdevents.cpp:755 -msgid "Gameboy Snapshot (*.gbs)|*.gbs" -msgstr "" - -#: ../src/wx/cmdevents.cpp:762 -msgid "" -"Importing a snapshot file will erase any saved games (permanently after the " -"next write). Do you want to continue?" -msgstr "" - -#: ../src/wx/cmdevents.cpp:784 -#, c-format -msgid "Loaded snapshot file %s" -msgstr "" - -#: ../src/wx/cmdevents.cpp:786 -#, c-format -msgid "Error loading snapshot file %s" -msgstr "" - -#: ../src/wx/cmdevents.cpp:804 ../src/wx/panel.cpp:536 -#, c-format -msgid "Wrote battery %s" -msgstr "" - -#: ../src/wx/cmdevents.cpp:806 ../src/wx/panel.cpp:538 -#, c-format -msgid "Error writing battery %s" -msgstr "" - -#: ../src/wx/cmdevents.cpp:813 -msgid "EEPROM saves cannot be exported" -msgstr "" - -#: ../src/wx/cmdevents.cpp:819 -msgid "Gameshark Snapshot (*.sps)|*.sps" -msgstr "" - -#: ../src/wx/cmdevents.cpp:831 -msgid "Exported from VisualBoyAdvance-M" -msgstr "" - -#: ../src/wx/cmdevents.cpp:841 -#, c-format -msgid "Saved snapshot file %s" -msgstr "" - -#: ../src/wx/cmdevents.cpp:843 -#, c-format -msgid "Error saving snapshot file %s" -msgstr "" - -#: ../src/wx/cmdevents.cpp:864 ../src/wx/cmdevents.cpp:941 -#: ../src/wx/cmdevents.cpp:1013 ../src/wx/cmdevents.cpp:1049 -#: ../src/wx/viewers.cpp:495 ../src/wx/viewers.cpp:664 -#: ../src/wx/viewsupt.cpp:1023 -msgid "Select output file" -msgstr "" - -#: ../src/wx/cmdevents.cpp:865 ../src/wx/viewsupt.cpp:1024 -msgid "PNG images|*.png|BMP images|*.bmp" -msgstr "" - -#: ../src/wx/cmdevents.cpp:884 ../src/wx/sys.cpp:400 -#, c-format -msgid "Wrote snapshot %s" -msgstr "" - -#: ../src/wx/cmdevents.cpp:905 ../src/wx/cmdevents.cpp:977 -msgid " files (" -msgstr "" - -#: ../src/wx/cmdevents.cpp:1050 ../src/wx/cmdevents.cpp:1081 -msgid "VBA Movie files|*.vmv" -msgstr "" - -#: ../src/wx/cmdevents.cpp:1080 -msgid "Select file" -msgstr "" - -#: ../src/wx/cmdevents.cpp:1165 -msgid "LAN link is already active. Disable link mode to disconnect." -msgstr "" - -#: ../src/wx/cmdevents.cpp:1170 -msgid "RFU is currently only supported in local mode." -msgstr "" - -#: ../src/wx/cmdevents.cpp:1246 ../src/wx/cmdevents.cpp:1328 -msgid "Select state file" -msgstr "" - -#: ../src/wx/cmdevents.cpp:1247 ../src/wx/cmdevents.cpp:1329 -msgid "VisualBoyAdvance saved game files|*.sgm" -msgstr "" - -#: ../src/wx/cmdevents.cpp:1558 -msgid "Sound enabled" -msgstr "" - -#: ../src/wx/cmdevents.cpp:1558 -msgid "Sound disabled" -msgstr "" - -#: ../src/wx/cmdevents.cpp:1569 ../src/wx/cmdevents.cpp:1581 -#, c-format -msgid "Volume: %d%%" -msgstr "" - -#: ../src/wx/cmdevents.cpp:1648 -msgid "Set to 0 for pseudo tty" -msgstr "" - -#: ../src/wx/cmdevents.cpp:1650 -msgid "Port to wait for connection:" -msgstr "" - -#: ../src/wx/cmdevents.cpp:1651 -msgid "GDB Connection" -msgstr "" - -#: ../src/wx/cmdevents.cpp:1666 -#, c-format -msgid "Waiting for connection at %s" -msgstr "" - -#: ../src/wx/cmdevents.cpp:1672 -#, c-format -msgid "Waiting for connection on port %d" -msgstr "" - -#: ../src/wx/cmdevents.cpp:1674 -msgid "Waiting for GDB..." -msgstr "" - -#: ../src/wx/cmdevents.cpp:2178 -msgid "Nintendo GameBoy (+Color+Advance) emulator." -msgstr "" - -#: ../src/wx/cmdevents.cpp:2179 -msgid "" -"Copyright (C) 1999-2003 Forgotten\n" -"Copyright (C) 2004-2006 VBA development team\n" -"Copyright (C) 2007-2011 VBA-M development team" -msgstr "" - -#: ../src/wx/cmdevents.cpp:2180 -msgid "" -"This program is free software: you can redistribute it and/or modify\n" -"it under the terms of the GNU General Public License as published by\n" -"the Free Software Foundation, either version 2 of the License, or\n" -"(at your option) any later version.\n" -"\n" -"This program is distributed in the hope that it will be useful,\n" -"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" -"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" -"GNU General Public License for more details.\n" -"\n" -"You should have received a copy of the GNU General Public License\n" -"along with this program. If not, see http://www.gnu.org/licenses ." -msgstr "" - -#: ../src/wx/dsound.cpp:93 ../src/wx/dsound.cpp:104 -#, c-format -msgid "Cannot create DirectSound %08x" -msgstr "" - -#: ../src/wx/dsound.cpp:109 -#, c-format -msgid "Cannot SetCooperativeLevel %08x" -msgstr "" - -#: ../src/wx/dsound.cpp:123 -#, c-format -msgid "Cannot CreateSoundBuffer %08x" -msgstr "" - -#: ../src/wx/dsound.cpp:143 -#, c-format -msgid "CreateSoundBuffer(primary) failed %08x" -msgstr "" - -#: ../src/wx/dsound.cpp:159 -#, c-format -msgid "CreateSoundBuffer(secondary) failed %08x" -msgstr "" - -#: ../src/wx/dsound.cpp:164 -#, c-format -msgid "dsbSecondary->SetCurrentPosition failed %08x" -msgstr "" - -#: ../src/wx/dsound.cpp:188 -#, c-format -msgid "Cannot Play primary %08x" -msgstr "" - -#: ../src/wx/dsound.cpp:306 -#, c-format -msgid "dsbSecondary->Lock() failed: %08x" -msgstr "" - -#: ../src/wx/gfxviewers.cpp:1041 -msgid "Select output file and type" -msgstr "" - -#: ../src/wx/gfxviewers.cpp:1042 -msgid "" -"Windows Palette (*.pal)|*.pal|PaintShop Palette (*.pal)|*.pal|Adobe Color " -"Table (*.act)|*.act" -msgstr "" - -#: ../src/wx/guiinit.cpp:57 -msgid "Start!" -msgstr "" - -#: ../src/wx/guiinit.cpp:61 wx-xrc-strings.h:164 -msgid "Connect" -msgstr "" - -#: ../src/wx/guiinit.cpp:94 -#, c-format -msgid "Server IP address is: %s\n" -msgstr "" - -#: ../src/wx/guiinit.cpp:105 -#, c-format -msgid "Player %d connected\n" -msgstr "" - -#: ../src/wx/guiinit.cpp:126 -msgid "" -"Error occurred.\n" -"Please try again." -msgstr "" - -#: ../src/wx/guiinit.cpp:131 -msgid "Waiting for clients..." -msgstr "" - -#: ../src/wx/guiinit.cpp:151 -#, c-format -msgid "Connecting to %s\n" -msgstr "" - -#: ../src/wx/guiinit.cpp:156 -#, c-format -msgid "Connected as #%d\n" -msgstr "" - -#: ../src/wx/guiinit.cpp:158 -#, c-format -msgid "Waiting for %d players to join" -msgstr "" - -#: ../src/wx/guiinit.cpp:160 -msgid "All players joined." -msgstr "" - -#: ../src/wx/guiinit.cpp:182 -#, c-format -msgid "" -"Error %d occurred.\n" -"Please try again." -msgstr "" - -#: ../src/wx/guiinit.cpp:187 -msgid "Waiting for connection..." -msgstr "" - -#: ../src/wx/guiinit.cpp:262 ../src/wx/guiinit.cpp:285 -msgid "Select cheat file" -msgstr "" - -#: ../src/wx/guiinit.cpp:263 ../src/wx/guiinit.cpp:286 -msgid "VBA cheat lists (*.clt)|*.clt" -msgstr "" - -#: ../src/wx/guiinit.cpp:277 ../src/wx/panel.cpp:318 -msgid "Loaded cheats" -msgstr "" - -#: ../src/wx/guiinit.cpp:300 -msgid "Saved cheats" -msgstr "" - -#: ../src/wx/guiinit.cpp:324 ../src/wx/guiinit.cpp:341 -msgid "Restore old values?" -msgstr "" - -#: ../src/wx/guiinit.cpp:325 ../src/wx/guiinit.cpp:342 -msgid "Removing cheats" -msgstr "" - -#: ../src/wx/guiinit.cpp:641 wx-xrc-strings.h:434 -msgid "GameShark" -msgstr "" - -#: ../src/wx/guiinit.cpp:644 -msgid "Generic Code" -msgstr "" - -#: ../src/wx/guiinit.cpp:645 -msgid "GameShark Advance" -msgstr "" - -#: ../src/wx/guiinit.cpp:646 -msgid "CodeBreaker Advance" -msgstr "" - -#: ../src/wx/guiinit.cpp:705 ../src/wx/guiinit.cpp:911 -msgid "Number cannot be empty" -msgstr "" - -#: ../src/wx/guiinit.cpp:733 -#, c-format -msgid "Search produced %d results. Please refine better" -msgstr "" - -#: ../src/wx/guiinit.cpp:743 -msgid "Search produced no results" -msgstr "" - -#: ../src/wx/guiinit.cpp:883 -msgid "8-bit " -msgstr "" - -#: ../src/wx/guiinit.cpp:886 -msgid "16-bit " -msgstr "" - -#: ../src/wx/guiinit.cpp:889 -msgid "32-bit " -msgstr "" - -#: ../src/wx/guiinit.cpp:894 -msgid "signed decimal" -msgstr "" - -#: ../src/wx/guiinit.cpp:897 -msgid "unsigned decimal" -msgstr "" - -#: ../src/wx/guiinit.cpp:900 -msgid "unsigned hexadecimal" -msgstr "" - -#: ../src/wx/guiinit.cpp:1323 -#, c-format -msgid "%d frames = %.2f ms" -msgstr "" - -#: ../src/wx/guiinit.cpp:1334 -msgid "Default device" -msgstr "" - -#: ../src/wx/guiinit.cpp:1453 -msgid "You must enter a valid host name" -msgstr "" - -#: ../src/wx/guiinit.cpp:1454 -msgid "Host name invalid" -msgstr "" - -#: ../src/wx/guiinit.cpp:1486 -msgid "Desktop mode" -msgstr "" - -#: ../src/wx/guiinit.cpp:1492 -#, c-format -msgid "%d x %d - %dbpp @ %dHz" -msgstr "" - -#: ../src/wx/guiinit.cpp:1619 -#, c-format -msgid "No usable rpi plugins found in %s" -msgstr "" - -#: ../src/wx/guiinit.cpp:1636 wx-xrc-strings.h:359 -msgid "Plugin" -msgstr "" - -#: ../src/wx/guiinit.cpp:1659 -msgid "Please select a plugin or a different filter" -msgstr "" - -#: ../src/wx/guiinit.cpp:1660 -msgid "Plugin selection error" -msgstr "" - -#: ../src/wx/guiinit.cpp:1834 -msgid "This will clear all user-defined accelerators. Are you sure?" -msgstr "" - -#: ../src/wx/guiinit.cpp:1835 -msgid "Confirm" -msgstr "" - -#: ../src/wx/guiinit.cpp:2048 -msgid "Main display panel not found" -msgstr "" - -#: ../src/wx/guiinit.cpp:2062 -msgid "Main icon not found" -msgstr "" - -#: ../src/wx/guiinit.cpp:2068 -msgid "Welcome to wxVBAM!" -msgstr "" - -#: ../src/wx/guiinit.cpp:2159 -#, c-format -msgid "Duplicate menu accelerator: %s for %s and %s; keeping first" -msgstr "" - -#: ../src/wx/guiinit.cpp:2171 -#, c-format -msgid "Menu accelerator %s for %s overrides default for %s ; keeping menu" -msgstr "" - -#: ../src/wx/guiinit.cpp:2277 -#, c-format -msgid "Invalid menu item %s; removing" -msgstr "" - -#: ../src/wx/guiinit.cpp:2298 ../src/wx/viewsupt.h:38 -#, c-format -msgid "Unable to load dialog %s from resources" -msgstr "" - -#: ../src/wx/guiinit.cpp:2302 -#, c-format -msgid "Unable to load dialog %s (control %s) from resources" -msgstr "" - -#: ../src/wx/guiinit.cpp:2501 -msgid "Code" -msgstr "" - -#: ../src/wx/guiinit.cpp:2510 -msgid "Description" -msgstr "" - -#: ../src/wx/guiinit.cpp:2589 wx-xrc-strings.h:201 -msgid "Address" -msgstr "" - -#: ../src/wx/guiinit.cpp:2590 -msgid "Old Value" -msgstr "" - -#: ../src/wx/guiinit.cpp:2591 -msgid "New Value" -msgstr "" - -#: ../src/wx/guiinit.cpp:3098 -msgid "Menu commands" -msgstr "" - -#: ../src/wx/guiinit.cpp:3119 -msgid "Other commands" -msgstr "" - -#: ../src/wx/guiinit.cpp:3205 -msgid "JoyBus host invalid; disabling" -msgstr "" - -#: ../src/wx/openal.cpp:161 -msgid "" -"OpenAL library could not be found on your system. Please install the " -"runtime from http://openal.org" -msgstr "" - -#: ../src/wx/opts.cpp:318 ../src/wx/opts.cpp:358 ../src/wx/opts.cpp:382 -#: ../src/wx/opts.cpp:391 -#, c-format -msgid "Invalid option %s present; removing if possible" -msgstr "" - -#: ../src/wx/opts.cpp:346 ../src/wx/opts.cpp:369 -#, c-format -msgid "Invalid option group %s present; removing if possible" -msgstr "" - -#: ../src/wx/opts.cpp:432 ../src/wx/opts.cpp:676 -#, c-format -msgid "Invalid value %s for option %s; valid values are %s%s%s" -msgstr "" - -#: ../src/wx/opts.cpp:454 ../src/wx/opts.cpp:691 -#, c-format -msgid "Invalid value %d for option %s; valid values are %d - %d" -msgstr "" - -#: ../src/wx/opts.cpp:503 ../src/wx/opts.cpp:520 ../src/wx/opts.cpp:745 -#: ../src/wx/opts.cpp:765 -#, c-format -msgid "Invalid key binding %s for %s" -msgstr "" - -#: ../src/wx/opts.cpp:657 -#, c-format -msgid "Invalid flag option %s - %s ignored" -msgstr "" - -#: ../src/wx/panel.cpp:55 -#, c-format -msgid "%s is not a valid ROM file" -msgstr "" - -#: ../src/wx/panel.cpp:56 ../src/wx/panel.cpp:110 ../src/wx/panel.cpp:173 -msgid "Problem loading file" -msgstr "" - -#: ../src/wx/panel.cpp:109 -#, c-format -msgid "Unable to load Game Boy ROM %s" -msgstr "" - -#: ../src/wx/panel.cpp:153 ../src/wx/panel.cpp:234 -#, c-format -msgid "Could not load BIOS %s" -msgstr "" - -#: ../src/wx/panel.cpp:172 -#, c-format -msgid "Unable to load Game Boy Advance ROM %s" -msgstr "" - -#: ../src/wx/panel.cpp:335 -msgid " player " -msgstr "" - -#: ../src/wx/panel.cpp:484 -#, c-format -msgid "Loaded state %s" -msgstr "" - -#: ../src/wx/panel.cpp:484 -#, c-format -msgid "Error loading state %s" -msgstr "" - -#: ../src/wx/panel.cpp:508 -#, c-format -msgid "Saved state %s" -msgstr "" - -#: ../src/wx/panel.cpp:508 -#, c-format -msgid "Error saving state %s" -msgstr "" - -#: ../src/wx/panel.cpp:678 -#, c-format -msgid "Fullscreen mode %dx%d-%d@%d not supported; looking for another" -msgstr "" - -#: ../src/wx/panel.cpp:708 -#, c-format -msgid "Fullscreen mode %dx%d-%d@%d not supported" -msgstr "" - -#: ../src/wx/panel.cpp:712 -#, c-format -msgid "Valid mode: %dx%d-%d@%d" -msgstr "" - -#: ../src/wx/panel.cpp:719 -#, c-format -msgid "Chose mode %dx%d-%d@%d" -msgstr "" - -#: ../src/wx/panel.cpp:722 -#, c-format -msgid "Failed to change mode to %dx%d-%d@%d" -msgstr "" - -#: ../src/wx/panel.cpp:774 -msgid "Not a valid GBA cartridge" -msgstr "" - -#: ../src/wx/panel.cpp:853 -msgid "No memory for rewinding" -msgstr "" - -#: ../src/wx/panel.cpp:860 -msgid "Error writing rewind state" -msgstr "" - -#: ../src/wx/panel.cpp:1831 -msgid "Cannot create conversion buffer" -msgstr "" - -#: ../src/wx/panel.cpp:1899 -msgid "memory allocation error" -msgstr "" - -#: ../src/wx/panel.cpp:1901 -msgid "error initializing codec" -msgstr "" - -#: ../src/wx/panel.cpp:1903 -msgid "error writing to output file" -msgstr "" - -#: ../src/wx/panel.cpp:1905 -msgid "can't guess output format from file name" -msgstr "" - -#: ../src/wx/panel.cpp:1909 -msgid "programming error; aborting!" -msgstr "" - -#: ../src/wx/panel.cpp:1921 ../src/wx/panel.cpp:1949 -#, c-format -msgid "Unable to begin recording to %s (%s)" -msgstr "" - -#: ../src/wx/panel.cpp:1974 -#, c-format -msgid "Error in audio/video recording (%s); aborting" -msgstr "" - -#: ../src/wx/panel.cpp:1979 -#, c-format -msgid "Error in audio recording (%s); aborting" -msgstr "" - -#: ../src/wx/panel.cpp:1988 -#, c-format -msgid "Error in video recording (%s); aborting" -msgstr "" - -#: ../src/wx/sys.cpp:108 ../src/wx/sys.cpp:158 -msgid "No game in progress to record" -msgstr "" - -#: ../src/wx/sys.cpp:118 -#, c-format -msgid "Cannot open output file %s" -msgstr "" - -#: ../src/wx/sys.cpp:123 ../src/wx/sys.cpp:143 ../src/wx/sys.cpp:269 -msgid "Error writing game recording" -msgstr "" - -#: ../src/wx/sys.cpp:162 -msgid "Cannot play game recording while recording" -msgstr "" - -#: ../src/wx/sys.cpp:173 -#, c-format -msgid "Cannot open recording file %s" -msgstr "" - -#: ../src/wx/sys.cpp:179 ../src/wx/sys.cpp:187 -msgid "Error reading game recording" -msgstr "" - -#: ../src/wx/sys.cpp:280 -msgid "Playback ended" -msgstr "" - -#: ../src/wx/sys.cpp:297 -#, c-format -msgid "%d%%(%d, %d fps)" -msgstr "" - -#: ../src/wx/sys.cpp:303 -#, c-format -msgid "%d%%" -msgstr "" - -#: ../src/wx/sys.cpp:556 wx-xrc-strings.h:121 -msgid "&Discard" -msgstr "" - -#: ../src/wx/sys.cpp:591 -msgid "Image files (*.bmp;*.jpg;*.png)|*.bmp;*.jpg;*.png|" -msgstr "" - -#: ../src/wx/sys.cpp:598 -msgid "Save printer image to" -msgstr "" - -#: ../src/wx/sys.cpp:609 ../src/wx/sys.cpp:778 -#, c-format -msgid "Wrote printer output to %s" -msgstr "" - -#: ../src/wx/sys.cpp:613 ../src/wx/sys.cpp:680 -msgid "&Close" -msgstr "" - -#: ../src/wx/sys.cpp:676 -msgid "Printed" -msgstr "" - -#: ../src/wx/sys.cpp:933 -#, c-format -msgid "Error opening pseudo tty: %s" -msgstr "" - -#: ../src/wx/sys.cpp:1019 -#, c-format -msgid "Error setting up server socket (%d)" -msgstr "" - -#: ../src/wx/viewers.cpp:493 -msgid "Text files (*.txt;*.log)|*.txt;*.log|" -msgstr "" - -#: ../src/wx/viewers.cpp:615 ../src/wx/viewers.cpp:662 -msgid "Memory dumps (*.dmp;*.bin)|*.dmp;*.bin|" -msgstr "" - -#: ../src/wx/viewers.cpp:617 -msgid "Select memory dump file" -msgstr "" - -#: ../src/wx/viewers.cpp:703 -msgid "0x00000000 - BIOS" -msgstr "" - -#: ../src/wx/viewers.cpp:704 -msgid "0x02000000 - WRAM" -msgstr "" - -#: ../src/wx/viewers.cpp:705 -msgid "0x03000000 - IRAM" -msgstr "" - -#: ../src/wx/viewers.cpp:706 -msgid "0x04000000 - I/O" -msgstr "" - -#: ../src/wx/viewers.cpp:707 -msgid "0x05000000 - PALETTE" -msgstr "" - -#: ../src/wx/viewers.cpp:708 -msgid "0x06000000 - VRAM" -msgstr "" - -#: ../src/wx/viewers.cpp:709 -msgid "0x07000000 - OAM" -msgstr "" - -#: ../src/wx/viewers.cpp:710 -msgid "0x08000000 - ROM" -msgstr "" - -#: ../src/wx/viewers.cpp:798 -msgid "0x0000 - ROM" -msgstr "" - -#: ../src/wx/viewers.cpp:799 -msgid "0x4000 - ROM" -msgstr "" - -#: ../src/wx/viewers.cpp:800 -msgid "0x8000 - VRAM" -msgstr "" - -#: ../src/wx/viewers.cpp:801 -msgid "0xA000 - SRAM" -msgstr "" - -#: ../src/wx/viewers.cpp:802 -msgid "0xC000 - RAM" -msgstr "" - -#: ../src/wx/viewers.cpp:803 -msgid "0xD000 - WRAM" -msgstr "" - -#: ../src/wx/viewers.cpp:804 -msgid "0xFF00 - I/O" -msgstr "" - -#: ../src/wx/viewers.cpp:805 -msgid "0xFF80 - RAM" -msgstr "" - -#: ../src/wx/viewsupt.cpp:675 -msgid "R:" -msgstr "" - -#: ../src/wx/viewsupt.cpp:680 -msgid "G:" -msgstr "" - -#: ../src/wx/viewsupt.cpp:685 -msgid "B:" -msgstr "" - -#: ../src/wx/wxvbam.cpp:208 -msgid "Could not create main window" -msgstr "" - -#: ../src/wx/wxvbam.cpp:240 -msgid "Save built-in XRC file and exit" -msgstr "" - -#: ../src/wx/wxvbam.cpp:242 -msgid "Save built-in vba-over.ini and exit" -msgstr "" - -#: ../src/wx/wxvbam.cpp:244 -msgid "Print configuration path and exit" -msgstr "" - -#: ../src/wx/wxvbam.cpp:246 -msgid "Start in full-screen mode" -msgstr "" - -#: ../src/wx/wxvbam.cpp:249 -msgid "Delete shared link state first, if it exists" -msgstr "" - -#: ../src/wx/wxvbam.cpp:255 -msgid "List all settable options and exit" -msgstr "" - -#: ../src/wx/wxvbam.cpp:257 -msgid "ROM file" -msgstr "" - -#: ../src/wx/wxvbam.cpp:259 -msgid "=" -msgstr "" - -#: ../src/wx/wxvbam.cpp:279 -msgid "save-xrc" -msgstr "" - -#: ../src/wx/wxvbam.cpp:287 -msgid "Configuration/build error: can't find built-in xrc" -msgstr "" - -#: ../src/wx/wxvbam.cpp:294 -#, c-format -msgid "" -"Wrote built-in configuration to %s.\n" -"To override, remove all but changed root node(s). First found root node of " -"correct name in any .xrc or .xrs files in following search path overrides " -"built-in:" -msgstr "" - -#: ../src/wx/wxvbam.cpp:303 -msgid "print-cfg-path" -msgstr "" - -#: ../src/wx/wxvbam.cpp:308 -msgid "Configuration is read from, in order:" -msgstr "" - -#: ../src/wx/wxvbam.cpp:313 -msgid "save-over" -msgstr "" - -#: ../src/wx/wxvbam.cpp:321 -#, c-format -msgid "" -"Wrote built-in override file to %s\n" -"To override, delete all but changed section. First found section is used " -"from search path:" -msgstr "" - -#: ../src/wx/wxvbam.cpp:326 -msgid "" -"\n" -"\tbuilt-in" -msgstr "" - -#: ../src/wx/wxvbam.cpp:334 -msgid "" -"Options set from the command line are saved if any configuration changes are " -"made in the user interface.\n" -"\n" -"For flag options, true and false are specified as 1 and 0, respectively.\n" -"\n" -msgstr "" - -#: ../src/wx/wxvbam.cpp:339 -msgid "flag" -msgstr "" - -#: ../src/wx/wxvbam.cpp:340 ../src/wx/wxvbam.cpp:343 -msgid "string" -msgstr "" - -#: ../src/wx/wxvbam.cpp:342 -msgid "int" -msgstr "" - -#: ../src/wx/wxvbam.cpp:353 -msgid "" -"The commands available for the Keyboard/* option are:\n" -"\n" -msgstr "" - -#: ../src/wx/wxvbam.cpp:383 -msgid "Bad configuration option or multiple ROM files given:\n" -msgstr "" - -#: ../src/wx/xaudio2.cpp:156 ../src/wx/xaudio2.cpp:422 -msgid "The XAudio2 interface failed to initialize!" -msgstr "" - -#: ../src/wx/xaudio2.cpp:192 -msgid "XAudio2: Creating mastering voice failed!" -msgstr "" - -#: ../src/wx/xaudio2.cpp:201 -msgid "XAudio2: Creating source voice failed!" -msgstr "" - -#: ../src/wx/xaudio2.cpp:391 -msgid "XAudio2: Enumerating devices failed!" -msgstr "" - -#: ../src/wx/widgets/joyedit.cpp:78 -#, c-format -msgid "Joy%d-" -msgstr "" - -#: ../src/wx/widgets/joyedit.cpp:82 -#, c-format -msgid "Axis%d+" -msgstr "" - -#: ../src/wx/widgets/joyedit.cpp:85 -#, c-format -msgid "Axis%d-" -msgstr "" - -#: ../src/wx/widgets/joyedit.cpp:88 -#, c-format -msgid "Button%d" -msgstr "" - -#: ../src/wx/widgets/joyedit.cpp:91 -#, c-format -msgid "Hat%dN" -msgstr "" - -#: ../src/wx/widgets/joyedit.cpp:94 -#, c-format -msgid "Hat%dS" -msgstr "" - -#: ../src/wx/widgets/joyedit.cpp:97 -#, c-format -msgid "Hat%dW" -msgstr "" - -#: ../src/wx/widgets/joyedit.cpp:100 -#, c-format -msgid "Hat%dE" -msgstr "" - -#: ../src/wx/widgets/joyedit.cpp:103 -#, c-format -msgid "Hat%dNW" -msgstr "" - -#: ../src/wx/widgets/joyedit.cpp:106 -#, c-format -msgid "Hat%dNE" -msgstr "" - -#: ../src/wx/widgets/joyedit.cpp:109 -#, c-format -msgid "Hat%dSW" -msgstr "" - -#: ../src/wx/widgets/joyedit.cpp:112 -#, c-format -msgid "Hat%dSE" -msgstr "" - -#: ../src/wx/widgets/joyedit.cpp:139 -msgid "^Joy([0-9]+)[-+]" -msgstr "" - -#: ../src/wx/widgets/joyedit.cpp:141 -msgid "Axis([0-9]+)([+-])" -msgstr "" - -#: ../src/wx/widgets/joyedit.cpp:143 -msgid "Button([0-9]+)" -msgstr "" - -#: ../src/wx/widgets/joyedit.cpp:146 -msgid "" -"Hat([0-9]+)((N|North|U|Up)|(S|South|D|Down)|(E|East|R|Right)|(W|West|L|Left)|" -"(NE|NorthEast|UR|UpRight)|(SE|SouthEast|DR|DownRight)|(SW|SouthWest|DL|" -"DownLeft)|(NW|NorthWest|UL|UpLeft))" -msgstr "" - -#: ../src/wx/widgets/keyedit.cpp:78 ../src/wx/widgets/keyedit.cpp:166 -msgid "SHIFT" -msgstr "" - -#: ../src/wx/widgets/keyedit.cpp:81 ../src/wx/widgets/keyedit.cpp:165 -msgid "ALT" -msgstr "" - -#: ../src/wx/widgets/keyedit.cpp:84 ../src/wx/widgets/keyedit.cpp:167 -msgid "CTRL" -msgstr "" - -#: ../src/wx/widgets/keyedit.cpp:95 ../src/wx/widgets/keyedit.cpp:139 -msgid "Meta-" -msgstr "" - -#: ../src/wx/widgets/keyedit.cpp:140 -msgid "Meta+" -msgstr "" - -#: ../src/wx/widgets/keyedit.cpp:168 -msgid "CONTROL" -msgstr "" - -#: wx-xrc-strings.h:1 -msgid "VBAM" -msgstr "" - -#: wx-xrc-strings.h:2 -msgid "&File" -msgstr "" - -#: wx-xrc-strings.h:3 -msgid "Open rece&nt" -msgstr "" - -#: wx-xrc-strings.h:4 -msgid "&Reset recent list" -msgstr "" - -#: wx-xrc-strings.h:5 -msgid "&Freeze recent list" -msgstr "" - -#: wx-xrc-strings.h:6 -msgid "ROM in&formation..." -msgstr "" - -#: wx-xrc-strings.h:7 wx-xrc-strings.h:11 -msgid "&Battery file..." -msgstr "" - -#: wx-xrc-strings.h:8 -msgid "Gameshark &code file..." -msgstr "" - -#: wx-xrc-strings.h:9 wx-xrc-strings.h:12 -msgid "&Gameshark snapshot..." -msgstr "" - -#: wx-xrc-strings.h:10 -msgid "&Import" -msgstr "" - -#: wx-xrc-strings.h:13 -msgid "&Export" -msgstr "" - -#: wx-xrc-strings.h:14 -msgid "Screen capt&ure..." -msgstr "" - -#: wx-xrc-strings.h:15 -msgid "Start &sound recording..." -msgstr "" - -#: wx-xrc-strings.h:16 -msgid "Stop s&ound recording" -msgstr "" - -#: wx-xrc-strings.h:17 -msgid "Start &video recording..." -msgstr "" - -#: wx-xrc-strings.h:18 -msgid "Stop v&ideo recording" -msgstr "" - -#: wx-xrc-strings.h:19 -msgid "Start &game recording..." -msgstr "" - -#: wx-xrc-strings.h:20 -msgid "Stop g&ame recording" -msgstr "" - -#: wx-xrc-strings.h:21 -msgid "&Record" -msgstr "" - -#: wx-xrc-strings.h:22 -msgid "Start playing &movie..." -msgstr "" - -#: wx-xrc-strings.h:23 -msgid "Stop playing m&ovie" -msgstr "" - -#: wx-xrc-strings.h:24 -msgid "&Play" -msgstr "" - -#: wx-xrc-strings.h:25 -msgid "&Emulation" -msgstr "" - -#: wx-xrc-strings.h:26 -msgid "&Pause" -msgstr "" - -#: wx-xrc-strings.h:27 -msgid "&Turbo mode" -msgstr "" - -#: wx-xrc-strings.h:28 -msgid "&Reset" -msgstr "" - -#: wx-xrc-strings.h:29 -msgid "&Fullscreen" -msgstr "" - -#: wx-xrc-strings.h:30 -msgid "&Autofire" -msgstr "" - -#: wx-xrc-strings.h:31 -msgid "&A" -msgstr "" - -#: wx-xrc-strings.h:32 -msgid "&B" -msgstr "" - -#: wx-xrc-strings.h:33 -msgid "&L" -msgstr "" - -#: wx-xrc-strings.h:34 -msgid "&R" -msgstr "" - -#: wx-xrc-strings.h:35 -msgid "Start &Network Link..." -msgstr "" - -#: wx-xrc-strings.h:36 -msgid "Most &recent" -msgstr "" - -#: wx-xrc-strings.h:37 -msgid "&Auto load most recent" -msgstr "" - -#: wx-xrc-strings.h:38 wx-xrc-strings.h:53 wx-xrc-strings.h:692 -msgid "&1" -msgstr "" - -#: wx-xrc-strings.h:39 wx-xrc-strings.h:54 -msgid "&2" -msgstr "" - -#: wx-xrc-strings.h:40 wx-xrc-strings.h:55 -msgid "&3" -msgstr "" - -#: wx-xrc-strings.h:41 wx-xrc-strings.h:56 -msgid "&4" -msgstr "" - -#: wx-xrc-strings.h:42 wx-xrc-strings.h:57 -msgid "&5" -msgstr "" - -#: wx-xrc-strings.h:43 wx-xrc-strings.h:58 -msgid "&6" -msgstr "" - -#: wx-xrc-strings.h:44 wx-xrc-strings.h:59 -msgid "&7" -msgstr "" - -#: wx-xrc-strings.h:45 wx-xrc-strings.h:60 -msgid "&8" -msgstr "" - -#: wx-xrc-strings.h:46 wx-xrc-strings.h:61 -msgid "&9" -msgstr "" - -#: wx-xrc-strings.h:47 wx-xrc-strings.h:62 -msgid "1&0" -msgstr "" - -#: wx-xrc-strings.h:48 -msgid "From &File ..." -msgstr "" - -#: wx-xrc-strings.h:49 -msgid "Do not change &battery save" -msgstr "" - -#: wx-xrc-strings.h:50 -msgid "Do not change &cheat list" -msgstr "" - -#: wx-xrc-strings.h:51 -msgid "&Load state" -msgstr "" - -#: wx-xrc-strings.h:52 -msgid "&Oldest slot" -msgstr "" - -#: wx-xrc-strings.h:63 -msgid "To &File ..." -msgstr "" - -#: wx-xrc-strings.h:64 -msgid "&Save state" -msgstr "" - -#: wx-xrc-strings.h:65 -msgid "Re&wind" -msgstr "" - -#: wx-xrc-strings.h:66 -msgid "List &cheats ..." -msgstr "" - -#: wx-xrc-strings.h:67 -msgid "Find c&heat ..." -msgstr "" - -#: wx-xrc-strings.h:68 -msgid "A&utomatically save/load cheats" -msgstr "" - -#: wx-xrc-strings.h:69 -msgid "&Enable cheats" -msgstr "" - -#: wx-xrc-strings.h:70 -msgid "BG &0" -msgstr "" - -#: wx-xrc-strings.h:71 -msgid "BG &1" -msgstr "" - -#: wx-xrc-strings.h:72 -msgid "BG &2" -msgstr "" - -#: wx-xrc-strings.h:73 -msgid "BG &3" -msgstr "" - -#: wx-xrc-strings.h:74 -msgid "&OBJ" -msgstr "" - -#: wx-xrc-strings.h:75 -msgid "&WIN 0" -msgstr "" - -#: wx-xrc-strings.h:76 -msgid "W&IN 1" -msgstr "" - -#: wx-xrc-strings.h:77 -msgid "O&BJ WIN" -msgstr "" - -#: wx-xrc-strings.h:78 -msgid "&View Layers" -msgstr "" - -#: wx-xrc-strings.h:79 -msgid "Channel &1" -msgstr "" - -#: wx-xrc-strings.h:80 -msgid "Channel &2" -msgstr "" - -#: wx-xrc-strings.h:81 -msgid "Channel &3" -msgstr "" - -#: wx-xrc-strings.h:82 -msgid "Channel &4" -msgstr "" - -#: wx-xrc-strings.h:83 -msgid "Direct Sound &A" -msgstr "" - -#: wx-xrc-strings.h:84 -msgid "Direct Sound &B" -msgstr "" - -#: wx-xrc-strings.h:85 -msgid "&Sound Channels" -msgstr "" - -#: wx-xrc-strings.h:86 -msgid "&Next frame" -msgstr "" - -#: wx-xrc-strings.h:87 -msgid "&Disassemble..." -msgstr "" - -#: wx-xrc-strings.h:88 -msgid "&Logging..." -msgstr "" - -#: wx-xrc-strings.h:89 -msgid "&IO Viewer..." -msgstr "" - -#: wx-xrc-strings.h:90 -msgid "&Map Viewer..." -msgstr "" - -#: wx-xrc-strings.h:91 -msgid "M&emory viewer..." -msgstr "" - -#: wx-xrc-strings.h:92 -msgid "&OAM Viewer..." -msgstr "" - -#: wx-xrc-strings.h:93 -msgid "&Palette Viewer..." -msgstr "" - -#: wx-xrc-strings.h:94 -msgid "&Tile Viewer..." -msgstr "" - -#: wx-xrc-strings.h:95 -msgid "&Debug" -msgstr "" - -#: wx-xrc-strings.h:96 -msgid "&Wait for connection..." -msgstr "" - -#: wx-xrc-strings.h:97 -msgid "&Load and wait..." -msgstr "" - -#: wx-xrc-strings.h:98 -msgid "&Break into GDB" -msgstr "" - -#: wx-xrc-strings.h:99 -msgid "&Disconnect" -msgstr "" - -#: wx-xrc-strings.h:100 -msgid "&GDB" -msgstr "" - -#: wx-xrc-strings.h:101 -msgid "&General ..." -msgstr "" - -#: wx-xrc-strings.h:102 -msgid "Game &Boy ..." -msgstr "" - -#: wx-xrc-strings.h:103 -msgid "Game Boy &Advance ..." -msgstr "" - -#: wx-xrc-strings.h:104 -msgid "&Display ..." -msgstr "" - -#: wx-xrc-strings.h:105 -msgid "&Sound ..." -msgstr "" - -#: wx-xrc-strings.h:106 -msgid "D&irectories ..." -msgstr "" - -#: wx-xrc-strings.h:107 -msgid "&Joypads ..." -msgstr "" - -#: wx-xrc-strings.h:108 -msgid "&Link ..." -msgstr "" - -#: wx-xrc-strings.h:109 -msgid "&Key Shortcuts ..." -msgstr "" - -#: wx-xrc-strings.h:110 -msgid "&Options" -msgstr "" - -#: wx-xrc-strings.h:111 -msgid "&Help" -msgstr "" - -#: wx-xrc-strings.h:112 -msgid "Report &Bugs" -msgstr "" - -#: wx-xrc-strings.h:113 -msgid "VBA-M Support &Forum" -msgstr "" - -#: wx-xrc-strings.h:114 -msgid "GB Printer" -msgstr "" - -#: wx-xrc-strings.h:115 -msgid "Print Si&ze" -msgstr "" - -#: wx-xrc-strings.h:116 -msgid "1x" -msgstr "" - -#: wx-xrc-strings.h:117 -msgid "2x" -msgstr "" - -#: wx-xrc-strings.h:118 -msgid "3x" -msgstr "" - -#: wx-xrc-strings.h:119 -msgid "4x" -msgstr "" - -#: wx-xrc-strings.h:120 -msgid "C&ontinue" -msgstr "" - -#: wx-xrc-strings.h:122 wx-xrc-strings.h:131 wx-xrc-strings.h:145 -msgid "ROM Information" -msgstr "" - -#: wx-xrc-strings.h:123 wx-xrc-strings.h:132 -msgid "Game title:" -msgstr "" - -#: wx-xrc-strings.h:124 -msgid "Game code:" -msgstr "" - -#: wx-xrc-strings.h:125 wx-xrc-strings.h:133 -msgid "Maker code:" -msgstr "" - -#: wx-xrc-strings.h:126 wx-xrc-strings.h:134 -msgid "Maker name:" -msgstr "" - -#: wx-xrc-strings.h:127 -msgid "Main unit code:" -msgstr "" - -#: wx-xrc-strings.h:128 -msgid "Device type:" -msgstr "" - -#: wx-xrc-strings.h:129 wx-xrc-strings.h:137 -msgid "ROM version:" -msgstr "" - -#: wx-xrc-strings.h:130 wx-xrc-strings.h:138 -msgid "CRC:" -msgstr "" - -#: wx-xrc-strings.h:135 -msgid "Unit code:" -msgstr "" - -#: wx-xrc-strings.h:136 -msgid "Cartridge type:" -msgstr "" - -#: wx-xrc-strings.h:139 -msgid "Color:" -msgstr "" - -#: wx-xrc-strings.h:140 -msgid "ROM size:" -msgstr "" - -#: wx-xrc-strings.h:141 -msgid "RAM size:" -msgstr "" - -#: wx-xrc-strings.h:142 -msgid "Dest. code:" -msgstr "" - -#: wx-xrc-strings.h:143 -msgid "License code:" -msgstr "" - -#: wx-xrc-strings.h:144 -msgid "Checksum:" -msgstr "" - -#: wx-xrc-strings.h:146 -msgid "Selct codes to import" -msgstr "" - -#: wx-xrc-strings.h:147 -msgid "Title:" -msgstr "" - -#: wx-xrc-strings.h:148 -msgid "Description:" -msgstr "" - -#: wx-xrc-strings.h:149 -msgid "Notes:" -msgstr "" - -#: wx-xrc-strings.h:150 -msgid "Export GameShark Snapshot" -msgstr "" - -#: wx-xrc-strings.h:151 -msgid "Server" -msgstr "" - -#: wx-xrc-strings.h:152 -msgid "Client" -msgstr "" - -#: wx-xrc-strings.h:153 -msgid "Players:" -msgstr "" - -#: wx-xrc-strings.h:154 -msgid "2" -msgstr "" - -#: wx-xrc-strings.h:155 -msgid "3" -msgstr "" - -#: wx-xrc-strings.h:156 -msgid "4" -msgstr "" - -#: wx-xrc-strings.h:157 -msgid "Server:" -msgstr "" - -#: wx-xrc-strings.h:158 -msgid "Protocol:" -msgstr "" - -#: wx-xrc-strings.h:159 -msgid "TCP" -msgstr "" - -#: wx-xrc-strings.h:160 -msgid "UDP" -msgstr "" - -#: wx-xrc-strings.h:161 -msgid "Speed hacks:" -msgstr "" - -#: wx-xrc-strings.h:162 -msgid "Off (accurate)" -msgstr "" - -#: wx-xrc-strings.h:163 -msgid "On (fast)" -msgstr "" - -#: wx-xrc-strings.h:165 -msgid "Network Link" -msgstr "" - -#: wx-xrc-strings.h:166 -msgid "Open cheat list" -msgstr "" - -#: wx-xrc-strings.h:167 -msgid "Save cheat list" -msgstr "" - -#: wx-xrc-strings.h:168 -msgid "Add new cheat" -msgstr "" - -#: wx-xrc-strings.h:169 -msgid "Delete selected cheat" -msgstr "" - -#: wx-xrc-strings.h:170 -msgid "Delete all cheats" -msgstr "" - -#: wx-xrc-strings.h:171 -msgid "Toggle all Cheats" -msgstr "" - -#: wx-xrc-strings.h:172 -msgid "Cheat list" -msgstr "" - -#: wx-xrc-strings.h:173 wx-xrc-strings.h:200 -msgid "&Description" -msgstr "" - -#: wx-xrc-strings.h:174 -msgid "&Type" -msgstr "" - -#: wx-xrc-strings.h:175 -msgid "C&odes" -msgstr "" - -#: wx-xrc-strings.h:176 -msgid "Edit cheat" -msgstr "" - -#: wx-xrc-strings.h:177 -msgid "E&qual" -msgstr "" - -#: wx-xrc-strings.h:178 -msgid "&Not equal" -msgstr "" - -#: wx-xrc-strings.h:179 -msgid "&Less than" -msgstr "" - -#: wx-xrc-strings.h:180 -msgid "L&ess or equal" -msgstr "" - -#: wx-xrc-strings.h:181 -msgid "&Greater than" -msgstr "" - -#: wx-xrc-strings.h:182 -msgid "G&reater or equal" -msgstr "" - -#: wx-xrc-strings.h:183 -msgid "Compare type" -msgstr "" - -#: wx-xrc-strings.h:184 -msgid "S&igned" -msgstr "" - -#: wx-xrc-strings.h:185 -msgid "&Unsigned" -msgstr "" - -#: wx-xrc-strings.h:186 -msgid "&Hexadecimal" -msgstr "" - -#: wx-xrc-strings.h:187 -msgid "Signed/Unsigned" -msgstr "" - -#: wx-xrc-strings.h:188 -msgid "&8 bits" -msgstr "" - -#: wx-xrc-strings.h:189 -msgid "&16 bits" -msgstr "" - -#: wx-xrc-strings.h:190 -msgid "&32 bits" -msgstr "" - -#: wx-xrc-strings.h:191 -msgid "Data size" -msgstr "" - -#: wx-xrc-strings.h:192 -msgid "Ol&d value" -msgstr "" - -#: wx-xrc-strings.h:193 -msgid "Specific &value" -msgstr "" - -#: wx-xrc-strings.h:194 -msgid "Search value" -msgstr "" - -#: wx-xrc-strings.h:195 -msgid "&Search" -msgstr "" - -#: wx-xrc-strings.h:196 -msgid "U&pdate Old" -msgstr "" - -#: wx-xrc-strings.h:197 wx-xrc-strings.h:547 -msgid "&Clear" -msgstr "" - -#: wx-xrc-strings.h:198 -msgid "&Add cheat" -msgstr "" - -#: wx-xrc-strings.h:199 -msgid "Search for cheats" -msgstr "" - -#: wx-xrc-strings.h:202 -msgid "&Value" -msgstr "" - -#: wx-xrc-strings.h:203 -msgid "Format" -msgstr "" - -#: wx-xrc-strings.h:204 -msgid "Add cheat" -msgstr "" - -#: wx-xrc-strings.h:205 -msgid "General" -msgstr "" - -#: wx-xrc-strings.h:206 -msgid "Pause when &inactive" -msgstr "" - -#: wx-xrc-strings.h:207 -msgid "&Auto-apply IPS/UPS/PPF patches" -msgstr "" - -#: wx-xrc-strings.h:208 -msgid "Screenshot Format:" -msgstr "" - -#: wx-xrc-strings.h:209 -msgid "&PNG" -msgstr "" - -#: wx-xrc-strings.h:210 -msgid "&BMP" -msgstr "" - -#: wx-xrc-strings.h:211 -msgid "&Rewind interval :" -msgstr "" - -#: wx-xrc-strings.h:212 -msgid "If not empty or 0, enable rewind (seconds)" -msgstr "" - -#: wx-xrc-strings.h:213 -msgid "seconds (0-600); 0 = disable" -msgstr "" - -#: wx-xrc-strings.h:214 -msgid "&Throttle" -msgstr "" - -#: wx-xrc-strings.h:215 -#, c-format -msgid "% of normal:" -msgstr "" - -#: wx-xrc-strings.h:216 -msgid "0 = no throttle" -msgstr "" - -#: wx-xrc-strings.h:217 -msgid "No throttle" -msgstr "" - -#: wx-xrc-strings.h:218 -msgid "25%" -msgstr "" - -#: wx-xrc-strings.h:219 -msgid "50%" -msgstr "" - -#: wx-xrc-strings.h:220 wx-xrc-strings.h:369 -msgid "100%" -msgstr "" - -#: wx-xrc-strings.h:221 -msgid "150%" -msgstr "" - -#: wx-xrc-strings.h:222 -msgid "200%" -msgstr "" - -#: wx-xrc-strings.h:223 -msgid "Preferences" -msgstr "" - -#: wx-xrc-strings.h:224 -msgid "GameBoy settings" -msgstr "" - -#: wx-xrc-strings.h:225 -msgid "Emulated &system :" -msgstr "" - -#: wx-xrc-strings.h:226 wx-xrc-strings.h:235 wx-xrc-strings.h:268 -#: wx-xrc-strings.h:299 -msgid "Automatic" -msgstr "" - -#: wx-xrc-strings.h:227 wx-xrc-strings.h:402 -msgid "Game Boy Advance" -msgstr "" - -#: wx-xrc-strings.h:228 -msgid "Game Boy Color" -msgstr "" - -#: wx-xrc-strings.h:229 -msgid "Super Game Boy" -msgstr "" - -#: wx-xrc-strings.h:230 -msgid "Super Game Boy 2" -msgstr "" - -#: wx-xrc-strings.h:231 wx-xrc-strings.h:397 -msgid "Game Boy" -msgstr "" - -#: wx-xrc-strings.h:232 -msgid "Display &borders :" -msgstr "" - -#: wx-xrc-strings.h:233 -msgid "Never" -msgstr "" - -#: wx-xrc-strings.h:234 -msgid "Always" -msgstr "" - -#: wx-xrc-strings.h:236 -msgid "Emulate a Game Boy &Printer" -msgstr "" - -#: wx-xrc-strings.h:237 -msgid "Automatically &gather entire printed page" -msgstr "" - -#: wx-xrc-strings.h:238 -msgid "Automatically &save printouts as snapshots" -msgstr "" - -#: wx-xrc-strings.h:239 -msgid "Emulate gameboy washed colors" -msgstr "" - -#: wx-xrc-strings.h:240 -msgid "System and Peripherals" -msgstr "" - -#: wx-xrc-strings.h:241 wx-xrc-strings.h:282 -msgid "Frame Skip" -msgstr "" - -#: wx-xrc-strings.h:242 wx-xrc-strings.h:283 -msgid "Enable &automatic frame skipping" -msgstr "" - -#: wx-xrc-strings.h:243 wx-xrc-strings.h:284 -msgid "&Number of frames to skip :" -msgstr "" - -#: wx-xrc-strings.h:244 wx-xrc-strings.h:285 -msgid "Speed" -msgstr "" - -#: wx-xrc-strings.h:245 -msgid "Use a &Game Boy boot ROM file" -msgstr "" - -#: wx-xrc-strings.h:246 -msgid "Boot &ROM file :" -msgstr "" - -#: wx-xrc-strings.h:247 -msgid "Use a &Color Game Boy boot ROM file" -msgstr "" - -#: wx-xrc-strings.h:248 -msgid "Boot ROM &file :" -msgstr "" - -#: wx-xrc-strings.h:249 wx-xrc-strings.h:289 -msgid "Boot ROM" -msgstr "" - -#: wx-xrc-strings.h:250 wx-xrc-strings.h:294 wx-xrc-strings.h:298 -#: wx-xrc-strings.h:306 wx-xrc-strings.h:310 -msgid "Default" -msgstr "" - -#: wx-xrc-strings.h:251 -msgid "User 1" -msgstr "" - -#: wx-xrc-strings.h:252 -msgid "User 2" -msgstr "" - -#: wx-xrc-strings.h:253 -msgid "Custom Colors" -msgstr "" - -#: wx-xrc-strings.h:254 wx-xrc-strings.h:427 -msgid "Standard" -msgstr "" - -#: wx-xrc-strings.h:255 -msgid "Blue Sea" -msgstr "" - -#: wx-xrc-strings.h:256 -msgid "Dark Night" -msgstr "" - -#: wx-xrc-strings.h:257 -msgid "Green Forest" -msgstr "" - -#: wx-xrc-strings.h:258 -msgid "Hot Desert" -msgstr "" - -#: wx-xrc-strings.h:259 -msgid "Pink Dreams" -msgstr "" - -#: wx-xrc-strings.h:260 -msgid "Weird Colors" -msgstr "" - -#: wx-xrc-strings.h:261 -msgid "Real GB Colors" -msgstr "" - -#: wx-xrc-strings.h:262 -msgid "Real 'GB on GBASP' Colors" -msgstr "" - -#: wx-xrc-strings.h:263 wx-xrc-strings.h:579 wx-xrc-strings.h:655 -#: wx-xrc-strings.h:665 -msgid "Background" -msgstr "" - -#: wx-xrc-strings.h:264 -msgid "Sprites" -msgstr "" - -#: wx-xrc-strings.h:265 -msgid "Use this palette" -msgstr "" - -#: wx-xrc-strings.h:266 -msgid "Restore" -msgstr "" - -#: wx-xrc-strings.h:267 -msgid "Save type :" -msgstr "" - -#: wx-xrc-strings.h:269 wx-xrc-strings.h:300 -msgid "EEPROM" -msgstr "" - -#: wx-xrc-strings.h:270 wx-xrc-strings.h:301 -msgid "SRAM" -msgstr "" - -#: wx-xrc-strings.h:271 wx-xrc-strings.h:302 -msgid "Flash" -msgstr "" - -#: wx-xrc-strings.h:272 -msgid "EEPROM + Sensor" -msgstr "" - -#: wx-xrc-strings.h:274 -msgid "Flash size :" -msgstr "" - -#: wx-xrc-strings.h:275 wx-xrc-strings.h:307 -msgid "64K" -msgstr "" - -#: wx-xrc-strings.h:276 wx-xrc-strings.h:308 -msgid "128K" -msgstr "" - -#: wx-xrc-strings.h:277 -msgid "Detect Now" -msgstr "" - -#: wx-xrc-strings.h:278 -msgid "Cartridge" -msgstr "" - -#: wx-xrc-strings.h:279 -msgid "Enable real-time clock" -msgstr "" - -#: wx-xrc-strings.h:280 -msgid "Enable AGB Printer" -msgstr "" - -#: wx-xrc-strings.h:281 -msgid "System and peripherals" -msgstr "" - -#: wx-xrc-strings.h:286 -msgid "Use a bios file" -msgstr "" - -#: wx-xrc-strings.h:287 -msgid "Bios file :" -msgstr "" - -#: wx-xrc-strings.h:288 -msgid "Skip BIOS intro" -msgstr "" - -#: wx-xrc-strings.h:290 -msgid "Game Boy Advance settings" -msgstr "" - -#: wx-xrc-strings.h:291 -msgid "Game Code" -msgstr "" - -#: wx-xrc-strings.h:292 -msgid "Comment" -msgstr "" - -#: wx-xrc-strings.h:293 -msgid "Real Time Clock:" -msgstr "" - -#: wx-xrc-strings.h:295 wx-xrc-strings.h:311 -msgid "Disabled" -msgstr "" - -#: wx-xrc-strings.h:296 wx-xrc-strings.h:312 -msgid "Enabled" -msgstr "" - -#: wx-xrc-strings.h:297 -msgid "Save Type:" -msgstr "" - -#: wx-xrc-strings.h:303 -msgid "EEPROM+Sensor" -msgstr "" - -#: wx-xrc-strings.h:305 -msgid "Flash Size:" -msgstr "" - -#: wx-xrc-strings.h:309 -msgid "Mirroring:" -msgstr "" - -#: wx-xrc-strings.h:313 -msgid "&Defaults" -msgstr "" - -#: wx-xrc-strings.h:314 -msgid "Game Overrides" -msgstr "" - -#: wx-xrc-strings.h:315 -msgid "Speed indicator :" -msgstr "" - -#: wx-xrc-strings.h:317 -msgid "Percentage" -msgstr "" - -#: wx-xrc-strings.h:318 -msgid "Detailed" -msgstr "" - -#: wx-xrc-strings.h:319 -msgid "Disable status messages" -msgstr "" - -#: wx-xrc-strings.h:320 -msgid "Transparent status and speed" -msgstr "" - -#: wx-xrc-strings.h:321 -msgid "On-Screen Display" -msgstr "" - -#: wx-xrc-strings.h:322 -msgid "Default magnification :" -msgstr "" - -#: wx-xrc-strings.h:323 -msgid "Retain aspect ratio" -msgstr "" - -#: wx-xrc-strings.h:324 -msgid "Maximum magnification factor :" -msgstr "" - -#: wx-xrc-strings.h:325 -msgid "0 = no maximum" -msgstr "" - -#: wx-xrc-strings.h:326 -msgid "0 = no limit" -msgstr "" - -#: wx-xrc-strings.h:327 -msgid "Full screen" -msgstr "" - -#: wx-xrc-strings.h:328 -msgid "Video Mode :" -msgstr "" - -#: wx-xrc-strings.h:329 -msgid "Full screen at startup" -msgstr "" - -#: wx-xrc-strings.h:330 -msgid "Zoom" -msgstr "" - -#: wx-xrc-strings.h:331 -msgid "Output module" -msgstr "" - -#: wx-xrc-strings.h:332 -msgid "Simple" -msgstr "" - -#: wx-xrc-strings.h:333 -msgid "OpenGL" -msgstr "" - -#: wx-xrc-strings.h:334 -msgid "Direct3D 9" -msgstr "" - -#: wx-xrc-strings.h:335 -msgid "Cairo" -msgstr "" - -#: wx-xrc-strings.h:336 -msgid "Bilinear scaling filter" -msgstr "" - -#: wx-xrc-strings.h:337 -msgid "Wait for VSync" -msgstr "" - -#: wx-xrc-strings.h:338 -msgid "Filters" -msgstr "" - -#: wx-xrc-strings.h:339 -msgid "Enable MMX" -msgstr "" - -#: wx-xrc-strings.h:340 -msgid "Enable multithreading" -msgstr "" - -#: wx-xrc-strings.h:341 -msgid "Fullscreen filter :" -msgstr "" - -#: wx-xrc-strings.h:343 -msgid "2xSaI" -msgstr "" - -#: wx-xrc-strings.h:344 -msgid "Super 2xSaI" -msgstr "" - -#: wx-xrc-strings.h:345 -msgid "Super Eagle" -msgstr "" - -#: wx-xrc-strings.h:346 -msgid "Pixelate" -msgstr "" - -#: wx-xrc-strings.h:347 -msgid "Advance MAME Scale2x" -msgstr "" - -#: wx-xrc-strings.h:348 -msgid "Bilinear" -msgstr "" - -#: wx-xrc-strings.h:349 -msgid "Bilinear Plus" -msgstr "" - -#: wx-xrc-strings.h:350 -msgid "Scanlines" -msgstr "" - -#: wx-xrc-strings.h:351 -msgid "TV Mode" -msgstr "" - -#: wx-xrc-strings.h:352 -msgid "HQ2x" -msgstr "" - -#: wx-xrc-strings.h:353 -msgid "LQ2x" -msgstr "" - -#: wx-xrc-strings.h:354 -msgid "Simple 2X" -msgstr "" - -#: wx-xrc-strings.h:355 -msgid "Simple 3x" -msgstr "" - -#: wx-xrc-strings.h:356 -msgid "HQ 3x" -msgstr "" - -#: wx-xrc-strings.h:357 -msgid "Simple 4x" -msgstr "" - -#: wx-xrc-strings.h:358 -msgid "HQ 4x" -msgstr "" - -#: wx-xrc-strings.h:360 -msgid "Plugin :" -msgstr "" - -#: wx-xrc-strings.h:361 -msgid "Interframe blending :" -msgstr "" - -#: wx-xrc-strings.h:363 -msgid "Smart interframe blending" -msgstr "" - -#: wx-xrc-strings.h:364 -msgid "Interframe motion blur" -msgstr "" - -#: wx-xrc-strings.h:365 wx-xrc-strings.h:386 -msgid "Advanced" -msgstr "" - -#: wx-xrc-strings.h:366 -msgid "Display settings" -msgstr "" - -#: wx-xrc-strings.h:367 -msgid "Volume :" -msgstr "" - -#: wx-xrc-strings.h:368 -msgid "Mute" -msgstr "" - -#: wx-xrc-strings.h:370 wx-xrc-strings.h:401 -msgid "Maximum" -msgstr "" - -#: wx-xrc-strings.h:371 -msgid "Sample rate :" -msgstr "" - -#: wx-xrc-strings.h:372 -msgid "48 KHz" -msgstr "" - -#: wx-xrc-strings.h:373 -msgid "44.1 KHz" -msgstr "" - -#: wx-xrc-strings.h:374 -msgid "22 KHz" -msgstr "" - -#: wx-xrc-strings.h:375 -msgid "11 KHz" -msgstr "" - -#: wx-xrc-strings.h:376 -msgid "Basic" -msgstr "" - -#: wx-xrc-strings.h:377 -msgid "SDL" -msgstr "" - -#: wx-xrc-strings.h:378 -msgid "OpenAL" -msgstr "" - -#: wx-xrc-strings.h:379 -msgid "XAudio2" -msgstr "" - -#: wx-xrc-strings.h:380 -msgid "DirectSound" -msgstr "" - -#: wx-xrc-strings.h:381 -msgid "Device" -msgstr "" - -#: wx-xrc-strings.h:382 -msgid "Enable stereo upmixing" -msgstr "" - -#: wx-xrc-strings.h:383 -msgid "Enable hardware acceleration" -msgstr "" - -#: wx-xrc-strings.h:384 -msgid "&Sync game to audio" -msgstr "" - -#: wx-xrc-strings.h:385 -msgid "Number of sound buffers:" -msgstr "" - -#: wx-xrc-strings.h:387 -msgid "Declicking" -msgstr "" - -#: wx-xrc-strings.h:388 wx-xrc-strings.h:389 -msgid "Enhance sound" -msgstr "" - -#: wx-xrc-strings.h:390 -msgid "Surround" -msgstr "" - -#: wx-xrc-strings.h:392 -msgid "Lots" -msgstr "" - -#: wx-xrc-strings.h:393 -msgid "Echo" -msgstr "" - -#: wx-xrc-strings.h:394 -msgid "Stereo" -msgstr "" - -#: wx-xrc-strings.h:395 -msgid "Center" -msgstr "" - -#: wx-xrc-strings.h:396 -msgid "Left/Right" -msgstr "" - -#: wx-xrc-strings.h:398 -msgid "Sound interpolation" -msgstr "" - -#: wx-xrc-strings.h:399 -msgid "Sound filtering" -msgstr "" - -#: wx-xrc-strings.h:403 -msgid "Sound Settings" -msgstr "" - -#: wx-xrc-strings.h:404 -msgid "Game Boy Advance ROMs" -msgstr "" - -#: wx-xrc-strings.h:405 -msgid "Game Boy ROMs" -msgstr "" - -#: wx-xrc-strings.h:406 -msgid "Native Saves" -msgstr "" - -#: wx-xrc-strings.h:407 -msgid "Emulator Saves" -msgstr "" - -#: wx-xrc-strings.h:408 -msgid "Screenshots" -msgstr "" - -#: wx-xrc-strings.h:409 -msgid "Recordings" -msgstr "" - -#: wx-xrc-strings.h:410 -msgid "Directories config" -msgstr "" - -#: wx-xrc-strings.h:411 -msgid "Player 1" -msgstr "" - -#: wx-xrc-strings.h:412 -msgid "Player 2" -msgstr "" - -#: wx-xrc-strings.h:413 -msgid "Player 3" -msgstr "" - -#: wx-xrc-strings.h:414 -msgid "Player 4" -msgstr "" - -#: wx-xrc-strings.h:415 -msgid "Joypad Configuration" -msgstr "" - -#: wx-xrc-strings.h:416 -msgid "" -"Click a field and press a key or move joystick to add. Press backspace to " -"delete last added key. Resize window or click inside and move pointer to " -"see entire contents if too small." -msgstr "" - -#: wx-xrc-strings.h:417 -msgid "Up" -msgstr "" - -#: wx-xrc-strings.h:418 -msgid "A" -msgstr "" - -#: wx-xrc-strings.h:419 -msgid "Down" -msgstr "" - -#: wx-xrc-strings.h:420 -msgid "B" -msgstr "" - -#: wx-xrc-strings.h:421 -msgid "Left" -msgstr "" - -#: wx-xrc-strings.h:422 -msgid "L" -msgstr "" - -#: wx-xrc-strings.h:423 -msgid "Right" -msgstr "" - -#: wx-xrc-strings.h:424 -msgid "R" -msgstr "" - -#: wx-xrc-strings.h:425 -msgid "Select" -msgstr "" - -#: wx-xrc-strings.h:426 -msgid "Start" -msgstr "" - -#: wx-xrc-strings.h:428 -msgid "Motion Up" -msgstr "" - -#: wx-xrc-strings.h:429 -msgid "Autofire A" -msgstr "" - -#: wx-xrc-strings.h:430 -msgid "Motion Down" -msgstr "" - -#: wx-xrc-strings.h:431 -msgid "Autofire B" -msgstr "" - -#: wx-xrc-strings.h:432 -msgid "Motion Left" -msgstr "" - -#: wx-xrc-strings.h:433 -msgid "Motion Right" -msgstr "" - -#: wx-xrc-strings.h:435 -msgid "Speed Up" -msgstr "" - -#: wx-xrc-strings.h:436 -msgid "Screenshot" -msgstr "" - -#: wx-xrc-strings.h:437 -msgid "Special" -msgstr "" - -#: wx-xrc-strings.h:438 -msgid "Use as default" -msgstr "" - -#: wx-xrc-strings.h:439 -msgid "Defaults" -msgstr "" - -#: wx-xrc-strings.h:440 -msgid "Clear" -msgstr "" - -#: wx-xrc-strings.h:441 -msgid "Link Options" -msgstr "" - -#: wx-xrc-strings.h:442 -msgid "Enable joybus" -msgstr "" - -#: wx-xrc-strings.h:443 -msgid "Joybus host" -msgstr "" - -#: wx-xrc-strings.h:444 -msgid "Enable link" -msgstr "" - -#: wx-xrc-strings.h:445 -msgid "Enable wireless" -msgstr "" - -#: wx-xrc-strings.h:446 -msgid "" -"Please note that this is the first version of RFU emulation code and it's " -"probably got more bugs than the link code. Also, it is only supported with " -"2 players in local mode." -msgstr "" - -#: wx-xrc-strings.h:447 -msgid "Link timeout (in milliseconds)" -msgstr "" - -#: wx-xrc-strings.h:448 -msgid "Co&mmands:" -msgstr "" - -#: wx-xrc-strings.h:449 -msgid "Current Keys:" -msgstr "" - -#: wx-xrc-strings.h:450 -msgid "&Assign" -msgstr "" - -#: wx-xrc-strings.h:451 -msgid "&Remove" -msgstr "" - -#: wx-xrc-strings.h:452 -msgid "Re&set All" -msgstr "" - -#: wx-xrc-strings.h:453 -msgid "Currently assigned to:" -msgstr "" - -#: wx-xrc-strings.h:454 -msgid "Shortcut Key:" -msgstr "" - -#: wx-xrc-strings.h:455 -msgid "Accelerator Editor" -msgstr "" - -#: wx-xrc-strings.h:456 -msgid "&Automatic" -msgstr "" - -#: wx-xrc-strings.h:457 -msgid "A&RM" -msgstr "" - -#: wx-xrc-strings.h:458 -msgid "&THUMB" -msgstr "" - -#: wx-xrc-strings.h:459 wx-xrc-strings.h:508 wx-xrc-strings.h:615 -msgid "&Go" -msgstr "" - -#: wx-xrc-strings.h:460 -msgid "R0:" -msgstr "" - -#: wx-xrc-strings.h:461 wx-xrc-strings.h:463 wx-xrc-strings.h:465 -#: wx-xrc-strings.h:467 wx-xrc-strings.h:469 wx-xrc-strings.h:471 -#: wx-xrc-strings.h:473 wx-xrc-strings.h:475 wx-xrc-strings.h:477 -#: wx-xrc-strings.h:479 wx-xrc-strings.h:481 wx-xrc-strings.h:483 -#: wx-xrc-strings.h:485 wx-xrc-strings.h:487 wx-xrc-strings.h:489 -#: wx-xrc-strings.h:491 wx-xrc-strings.h:493 -msgid "00000000" -msgstr "" - -#: wx-xrc-strings.h:462 -msgid "R1:" -msgstr "" - -#: wx-xrc-strings.h:464 -msgid "R2:" -msgstr "" - -#: wx-xrc-strings.h:466 -msgid "R3:" -msgstr "" - -#: wx-xrc-strings.h:468 -msgid "R4:" -msgstr "" - -#: wx-xrc-strings.h:470 -msgid "R5:" -msgstr "" - -#: wx-xrc-strings.h:472 -msgid "R6:" -msgstr "" - -#: wx-xrc-strings.h:474 -msgid "R7:" -msgstr "" - -#: wx-xrc-strings.h:476 -msgid "R8:" -msgstr "" - -#: wx-xrc-strings.h:478 -msgid "R9:" -msgstr "" - -#: wx-xrc-strings.h:480 -msgid "R10:" -msgstr "" - -#: wx-xrc-strings.h:482 -msgid "R11:" -msgstr "" - -#: wx-xrc-strings.h:484 -msgid "R12:" -msgstr "" - -#: wx-xrc-strings.h:486 wx-xrc-strings.h:517 -msgid "SP:" -msgstr "" - -#: wx-xrc-strings.h:488 -msgid "LR:" -msgstr "" - -#: wx-xrc-strings.h:490 wx-xrc-strings.h:519 -msgid "PC:" -msgstr "" - -#: wx-xrc-strings.h:492 -msgid "CPSR:" -msgstr "" - -#: wx-xrc-strings.h:494 wx-xrc-strings.h:526 -msgid "N" -msgstr "" - -#: wx-xrc-strings.h:495 -msgid "I" -msgstr "" - -#: wx-xrc-strings.h:496 wx-xrc-strings.h:525 -msgid "Z" -msgstr "" - -#: wx-xrc-strings.h:497 -msgid "F" -msgstr "" - -#: wx-xrc-strings.h:498 wx-xrc-strings.h:528 -msgid "C" -msgstr "" - -#: wx-xrc-strings.h:499 -msgid "T" -msgstr "" - -#: wx-xrc-strings.h:500 -msgid "V" -msgstr "" - -#: wx-xrc-strings.h:501 wx-xrc-strings.h:582 wx-xrc-strings.h:628 -msgid "Mode:" -msgstr "" - -#: wx-xrc-strings.h:502 wx-xrc-strings.h:524 -msgid "00" -msgstr "" - -#: wx-xrc-strings.h:503 wx-xrc-strings.h:529 wx-xrc-strings.h:569 -#: wx-xrc-strings.h:616 wx-xrc-strings.h:637 wx-xrc-strings.h:649 -#: wx-xrc-strings.h:659 wx-xrc-strings.h:671 wx-xrc-strings.h:686 -#: wx-xrc-strings.h:699 -msgid "Automatic &update" -msgstr "" - -#: wx-xrc-strings.h:504 wx-xrc-strings.h:530 -msgid "G&oto PC" -msgstr "" - -#: wx-xrc-strings.h:505 wx-xrc-strings.h:531 -msgid "Re&fresh" -msgstr "" - -#: wx-xrc-strings.h:506 wx-xrc-strings.h:532 -msgid "&Next" -msgstr "" - -#: wx-xrc-strings.h:507 wx-xrc-strings.h:533 -msgid "Disassemble" -msgstr "" - -#: wx-xrc-strings.h:509 -msgid "AF:" -msgstr "" - -#: wx-xrc-strings.h:510 wx-xrc-strings.h:512 wx-xrc-strings.h:514 -#: wx-xrc-strings.h:516 wx-xrc-strings.h:518 wx-xrc-strings.h:520 -#: wx-xrc-strings.h:522 -msgid "0000" -msgstr "" - -#: wx-xrc-strings.h:511 -msgid "BC:" -msgstr "" - -#: wx-xrc-strings.h:513 -msgid "DE:" -msgstr "" - -#: wx-xrc-strings.h:515 -msgid "HL:" -msgstr "" - -#: wx-xrc-strings.h:521 -msgid "IFF:" -msgstr "" - -#: wx-xrc-strings.h:523 -msgid "LY:" -msgstr "" - -#: wx-xrc-strings.h:527 -msgid "H" -msgstr "" - -#: wx-xrc-strings.h:534 -msgid "SW&I" -msgstr "" - -#: wx-xrc-strings.h:535 -msgid "Unaligned &memory" -msgstr "" - -#: wx-xrc-strings.h:536 -msgid "Illegal &write" -msgstr "" - -#: wx-xrc-strings.h:537 -msgid "Illegal &read" -msgstr "" - -#: wx-xrc-strings.h:538 -msgid "DMA &0" -msgstr "" - -#: wx-xrc-strings.h:539 -msgid "DMA &1" -msgstr "" - -#: wx-xrc-strings.h:540 -msgid "DMA &2" -msgstr "" - -#: wx-xrc-strings.h:541 -msgid "DMA &3" -msgstr "" - -#: wx-xrc-strings.h:542 -msgid "&Undefined instruction" -msgstr "" - -#: wx-xrc-strings.h:543 -msgid "&AGBPrint" -msgstr "" - -#: wx-xrc-strings.h:544 -msgid "Soun&d output" -msgstr "" - -#: wx-xrc-strings.h:545 -msgid "Verbose" -msgstr "" - -#: wx-xrc-strings.h:546 wx-xrc-strings.h:595 wx-xrc-strings.h:610 -msgid "&Save" -msgstr "" - -#: wx-xrc-strings.h:548 -msgid "Logging" -msgstr "" - -#: wx-xrc-strings.h:549 -msgid "I/O Viewer" -msgstr "" - -#: wx-xrc-strings.h:550 -msgid "a" -msgstr "" - -#: wx-xrc-strings.h:551 -msgid "b" -msgstr "" - -#: wx-xrc-strings.h:552 wx-xrc-strings.h:658 wx-xrc-strings.h:670 -msgid "Value:" -msgstr "" - -#: wx-xrc-strings.h:553 -msgid "15 " -msgstr "" - -#: wx-xrc-strings.h:554 -msgid "14 " -msgstr "" - -#: wx-xrc-strings.h:555 -msgid "13 " -msgstr "" - -#: wx-xrc-strings.h:556 -msgid "12 " -msgstr "" - -#: wx-xrc-strings.h:557 -msgid "11 " -msgstr "" - -#: wx-xrc-strings.h:558 -msgid "10 " -msgstr "" - -#: wx-xrc-strings.h:559 -msgid "9 " -msgstr "" - -#: wx-xrc-strings.h:560 -msgid "8 " -msgstr "" - -#: wx-xrc-strings.h:561 -msgid "7 " -msgstr "" - -#: wx-xrc-strings.h:562 -msgid "6 " -msgstr "" - -#: wx-xrc-strings.h:563 -msgid "5 " -msgstr "" - -#: wx-xrc-strings.h:564 -msgid "4 " -msgstr "" - -#: wx-xrc-strings.h:565 -msgid "3 " -msgstr "" - -#: wx-xrc-strings.h:566 -msgid "2 " -msgstr "" - -#: wx-xrc-strings.h:567 -msgid "1 " -msgstr "" - -#: wx-xrc-strings.h:568 -msgid "0 " -msgstr "" - -#: wx-xrc-strings.h:570 wx-xrc-strings.h:594 wx-xrc-strings.h:609 -#: wx-xrc-strings.h:618 wx-xrc-strings.h:638 wx-xrc-strings.h:650 -#: wx-xrc-strings.h:661 wx-xrc-strings.h:672 wx-xrc-strings.h:689 -#: wx-xrc-strings.h:702 -msgid "&Refresh" -msgstr "" - -#: wx-xrc-strings.h:571 wx-xrc-strings.h:611 -msgid "Map view" -msgstr "" - -#: wx-xrc-strings.h:572 -msgid "Frame 0" -msgstr "" - -#: wx-xrc-strings.h:573 -msgid "Frame 1" -msgstr "" - -#: wx-xrc-strings.h:574 -msgid "Frame" -msgstr "" - -#: wx-xrc-strings.h:575 -msgid "BG0" -msgstr "" - -#: wx-xrc-strings.h:576 -msgid "BG1" -msgstr "" - -#: wx-xrc-strings.h:577 -msgid "BG2" -msgstr "" - -#: wx-xrc-strings.h:578 -msgid "BG3" -msgstr "" - -#: wx-xrc-strings.h:580 wx-xrc-strings.h:602 wx-xrc-strings.h:636 -#: wx-xrc-strings.h:648 wx-xrc-strings.h:685 wx-xrc-strings.h:698 -msgid "Stretch to &fit" -msgstr "" - -#: wx-xrc-strings.h:581 wx-xrc-strings.h:603 -msgid "Auto &update" -msgstr "" - -#: wx-xrc-strings.h:583 -msgid "Map Base:" -msgstr "" - -#: wx-xrc-strings.h:584 -msgid "Char Base:" -msgstr "" - -#: wx-xrc-strings.h:585 wx-xrc-strings.h:623 wx-xrc-strings.h:633 -msgid "Size:" -msgstr "" - -#: wx-xrc-strings.h:586 wx-xrc-strings.h:629 -msgid "Colors:" -msgstr "" - -#: wx-xrc-strings.h:587 wx-xrc-strings.h:608 -msgid "Priority:" -msgstr "" - -#: wx-xrc-strings.h:588 -msgid "Mosaic:" -msgstr "" - -#: wx-xrc-strings.h:589 -msgid "Overflow:" -msgstr "" - -#: wx-xrc-strings.h:590 wx-xrc-strings.h:604 wx-xrc-strings.h:622 -#: wx-xrc-strings.h:657 wx-xrc-strings.h:688 wx-xrc-strings.h:701 -msgid "Address:" -msgstr "" - -#: wx-xrc-strings.h:591 wx-xrc-strings.h:605 wx-xrc-strings.h:631 -#: wx-xrc-strings.h:642 wx-xrc-strings.h:687 wx-xrc-strings.h:700 -msgid "Tile:" -msgstr "" - -#: wx-xrc-strings.h:592 wx-xrc-strings.h:606 -msgid "Flip:" -msgstr "" - -#: wx-xrc-strings.h:593 wx-xrc-strings.h:607 wx-xrc-strings.h:684 -#: wx-xrc-strings.h:697 -msgid "Palette:" -msgstr "" - -#: wx-xrc-strings.h:596 -msgid "0x8000" -msgstr "" - -#: wx-xrc-strings.h:597 -msgid "0x8800" -msgstr "" - -#: wx-xrc-strings.h:598 wx-xrc-strings.h:683 wx-xrc-strings.h:696 -msgid "Char Base" -msgstr "" - -#: wx-xrc-strings.h:599 -msgid "0x9800" -msgstr "" - -#: wx-xrc-strings.h:600 -msgid "0x9C00" -msgstr "" - -#: wx-xrc-strings.h:601 -msgid "Map Base" -msgstr "" - -#: wx-xrc-strings.h:612 -msgid "&8-bit" -msgstr "" - -#: wx-xrc-strings.h:613 -msgid "&16-bit" -msgstr "" - -#: wx-xrc-strings.h:614 -msgid "&32-bit" -msgstr "" - -#: wx-xrc-strings.h:617 -msgid "Current address:" -msgstr "" - -#: wx-xrc-strings.h:619 -msgid "&Load..." -msgstr "" - -#: wx-xrc-strings.h:620 wx-xrc-strings.h:639 wx-xrc-strings.h:651 -#: wx-xrc-strings.h:690 wx-xrc-strings.h:703 -msgid "&Save..." -msgstr "" - -#: wx-xrc-strings.h:621 -msgid "Memory viewer" -msgstr "" - -#: wx-xrc-strings.h:624 -msgid "Enter address and size" -msgstr "" - -#: wx-xrc-strings.h:625 wx-xrc-strings.h:652 -msgid "OAM Viewer" -msgstr "" - -#: wx-xrc-strings.h:626 wx-xrc-strings.h:640 -msgid "Sprite:" -msgstr "" - -#: wx-xrc-strings.h:627 wx-xrc-strings.h:641 -msgid "Pos:" -msgstr "" - -#: wx-xrc-strings.h:630 wx-xrc-strings.h:645 -msgid "Pal:" -msgstr "" - -#: wx-xrc-strings.h:632 wx-xrc-strings.h:643 -msgid "Prio:" -msgstr "" - -#: wx-xrc-strings.h:634 -msgid "Rot.:" -msgstr "" - -#: wx-xrc-strings.h:635 wx-xrc-strings.h:646 -msgid "Flags:" -msgstr "" - -#: wx-xrc-strings.h:644 -msgid "OAP:" -msgstr "" - -#: wx-xrc-strings.h:647 -msgid "Bank:" -msgstr "" - -#: wx-xrc-strings.h:653 wx-xrc-strings.h:673 -msgid "Palette View" -msgstr "" - -#: wx-xrc-strings.h:654 wx-xrc-strings.h:664 -msgid "Click on a color for more information" -msgstr "" - -#: wx-xrc-strings.h:656 wx-xrc-strings.h:667 -msgid "Sprite" -msgstr "" - -#: wx-xrc-strings.h:660 -msgid "C&hange backdrop color..." -msgstr "" - -#: wx-xrc-strings.h:662 wx-xrc-strings.h:666 -msgid "Save &BG..." -msgstr "" - -#: wx-xrc-strings.h:663 wx-xrc-strings.h:668 -msgid "Save &Sprite..." -msgstr "" - -#: wx-xrc-strings.h:669 -msgid "Index:" -msgstr "" - -#: wx-xrc-strings.h:674 wx-xrc-strings.h:704 -msgid "Tile Viewer" -msgstr "" - -#: wx-xrc-strings.h:675 -msgid "1&6" -msgstr "" - -#: wx-xrc-strings.h:676 -msgid "&256" -msgstr "" - -#: wx-xrc-strings.h:677 -msgid "Colors" -msgstr "" - -#: wx-xrc-strings.h:678 -msgid "0x600&0000" -msgstr "" - -#: wx-xrc-strings.h:679 -msgid "0x600&4000" -msgstr "" - -#: wx-xrc-strings.h:680 -msgid "0x600&8000" -msgstr "" - -#: wx-xrc-strings.h:681 -msgid "0x600&C000" -msgstr "" - -#: wx-xrc-strings.h:682 -msgid "0x60&10000" -msgstr "" - -#: wx-xrc-strings.h:691 -msgid "&0" -msgstr "" - -#: wx-xrc-strings.h:693 -msgid "VRAM Bank" -msgstr "" - -#: wx-xrc-strings.h:694 -msgid "0x&8000" -msgstr "" - -#: wx-xrc-strings.h:695 -msgid "0x&8800" -msgstr "" +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-12-03 21:22+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../src/wx/cmdevents.cpp:77 +msgid "" +"GameBoy Advance Files (*.agb;*.gba;*.bin;*.elf;*.mb)|*.agb;*.gba;*.bin;*.elf;" +"*.mb*.agb.gz;*.gba.gz;*.bin.gz;*.elf.gz;*.mb.gz*.agb.z;*.gba.z;*.bin.z;*.elf." +"z;*.mb.z|GameBoy Files (*.dmg;*.gb;*.gbc;*.cgb;*.sgb)|*.dmg;*.gb;*.gbc;*.cgb;" +"*.sgb*.dmg.gz;*.gb.gz;*.gbc.gz;*.cgb.gz;*.sgb.gz*.dmg.z;*.gb.z;*.gbc.z;*.cgb." +"z;*.sgb.z|Archives (*.zip;*.7z;*.rar)|*.zip;*.7z;*.rar|" +msgstr "" + +#: ../src/wx/cmdevents.cpp:88 +msgid "Open ROM file" +msgstr "" + +#: ../src/wx/cmdevents.cpp:436 ../src/wx/cmdevents.cpp:523 +#: ../src/wx/cmdevents.cpp:552 ../src/wx/cmdevents.cpp:606 +msgid "Unknown" +msgstr "" + +#: ../src/wx/cmdevents.cpp:442 +msgid "ROM" +msgstr "" + +#: ../src/wx/cmdevents.cpp:445 +msgid "ROM+MBC1" +msgstr "" + +#: ../src/wx/cmdevents.cpp:448 +msgid "ROM+MBC1+RAM" +msgstr "" + +#: ../src/wx/cmdevents.cpp:451 +msgid "ROM+MBC1+RAM+BATT" +msgstr "" + +#: ../src/wx/cmdevents.cpp:454 +msgid "ROM+MBC2" +msgstr "" + +#: ../src/wx/cmdevents.cpp:457 +msgid "ROM+MBC2+BATT" +msgstr "" + +#: ../src/wx/cmdevents.cpp:460 +msgid "ROM+MMM01" +msgstr "" + +#: ../src/wx/cmdevents.cpp:463 +msgid "ROM+MMM01+RAM" +msgstr "" + +#: ../src/wx/cmdevents.cpp:466 +msgid "ROM+MMM01+RAM+BATT" +msgstr "" + +#: ../src/wx/cmdevents.cpp:469 +msgid "ROM+MBC3+TIMER+BATT" +msgstr "" + +#: ../src/wx/cmdevents.cpp:472 +msgid "ROM+MBC3+TIMER+RAM+BATT" +msgstr "" + +#: ../src/wx/cmdevents.cpp:475 +msgid "ROM+MBC3" +msgstr "" + +#: ../src/wx/cmdevents.cpp:478 +msgid "ROM+MBC3+RAM" +msgstr "" + +#: ../src/wx/cmdevents.cpp:481 +msgid "ROM+MBC3+RAM+BATT" +msgstr "" + +#: ../src/wx/cmdevents.cpp:484 +msgid "ROM+MBC5" +msgstr "" + +#: ../src/wx/cmdevents.cpp:487 +msgid "ROM+MBC5+RAM" +msgstr "" + +#: ../src/wx/cmdevents.cpp:490 +msgid "ROM+MBC5+RAM+BATT" +msgstr "" + +#: ../src/wx/cmdevents.cpp:493 +msgid "ROM+MBC5+RUMBLE" +msgstr "" + +#: ../src/wx/cmdevents.cpp:496 +msgid "ROM+MBC5+RUMBLE+RAM" +msgstr "" + +#: ../src/wx/cmdevents.cpp:499 +msgid "ROM+MBC5+RUMBLE+RAM+BATT" +msgstr "" + +#: ../src/wx/cmdevents.cpp:502 +msgid "ROM+MBC7+BATT" +msgstr "" + +#: ../src/wx/cmdevents.cpp:505 ../src/wx/guiinit.cpp:642 +msgid "GameGenie" +msgstr "" + +#: ../src/wx/cmdevents.cpp:508 +msgid "GameShark V3.0" +msgstr "" + +#: ../src/wx/cmdevents.cpp:511 +msgid "ROM+POCKET CAMERA" +msgstr "" + +#: ../src/wx/cmdevents.cpp:514 +msgid "ROM+BANDAI TAMA5" +msgstr "" + +#: ../src/wx/cmdevents.cpp:517 +msgid "ROM+HuC-3" +msgstr "" + +#: ../src/wx/cmdevents.cpp:520 +msgid "ROM+HuC-1" +msgstr "" + +#: ../src/wx/cmdevents.cpp:557 ../src/wx/guiinit.cpp:1582 wx-xrc-strings.h:273 +#: wx-xrc-strings.h:304 wx-xrc-strings.h:316 wx-xrc-strings.h:342 +#: wx-xrc-strings.h:362 wx-xrc-strings.h:391 wx-xrc-strings.h:400 +msgid "None" +msgstr "" + +#: ../src/wx/cmdevents.cpp:633 ../src/wx/cmdevents.cpp:795 +msgid "Select battery file" +msgstr "" + +#: ../src/wx/cmdevents.cpp:634 ../src/wx/cmdevents.cpp:796 +msgid "Battery file (*.sav)|*.sav|Flash save (*.dat)|*.dat" +msgstr "" + +#: ../src/wx/cmdevents.cpp:640 +msgid "" +"Importing a battery file will erase any saved games (permanently after the " +"next write). Do you want to continue?" +msgstr "" + +#: ../src/wx/cmdevents.cpp:641 ../src/wx/cmdevents.cpp:666 +#: ../src/wx/cmdevents.cpp:763 +msgid "Confirm import" +msgstr "" + +#: ../src/wx/cmdevents.cpp:645 ../src/wx/panel.cpp:292 +#, c-format +msgid "Loaded battery %s" +msgstr "" + +#: ../src/wx/cmdevents.cpp:647 +#, c-format +msgid "Error loading battery %s" +msgstr "" + +#: ../src/wx/cmdevents.cpp:655 +msgid "Select code file" +msgstr "" + +#: ../src/wx/cmdevents.cpp:657 +msgid "Gameshark Code File (*.spc;*.xpc)|*.spc;*.xpc" +msgstr "" + +#: ../src/wx/cmdevents.cpp:658 +msgid "Gameshark Code File (*.gcf)|*.gcf" +msgstr "" + +#: ../src/wx/cmdevents.cpp:665 +msgid "" +"Importing a code file will replace any loaded cheats. Do you want to " +"continue?" +msgstr "" + +#: ../src/wx/cmdevents.cpp:679 +#, c-format +msgid "Cannot open file %s" +msgstr "" + +#: ../src/wx/cmdevents.cpp:689 +#, c-format +msgid "Unsupported code file %s" +msgstr "" + +#: ../src/wx/cmdevents.cpp:740 +#, c-format +msgid "Loaded code file %s" +msgstr "" + +#: ../src/wx/cmdevents.cpp:742 +#, c-format +msgid "Error loading code file %s" +msgstr "" + +#: ../src/wx/cmdevents.cpp:752 ../src/wx/cmdevents.cpp:818 +msgid "Select snapshot file" +msgstr "" + +#: ../src/wx/cmdevents.cpp:754 +msgid "" +"GS & PAC Snapshots (*.sps;*.xps)|*.sps;*.xps|GameShark SP Snapshots (*.gsv)|" +"*.gsv" +msgstr "" + +#: ../src/wx/cmdevents.cpp:755 +msgid "Gameboy Snapshot (*.gbs)|*.gbs" +msgstr "" + +#: ../src/wx/cmdevents.cpp:762 +msgid "" +"Importing a snapshot file will erase any saved games (permanently after the " +"next write). Do you want to continue?" +msgstr "" + +#: ../src/wx/cmdevents.cpp:784 +#, c-format +msgid "Loaded snapshot file %s" +msgstr "" + +#: ../src/wx/cmdevents.cpp:786 +#, c-format +msgid "Error loading snapshot file %s" +msgstr "" + +#: ../src/wx/cmdevents.cpp:804 ../src/wx/panel.cpp:536 +#, c-format +msgid "Wrote battery %s" +msgstr "" + +#: ../src/wx/cmdevents.cpp:806 ../src/wx/panel.cpp:538 +#, c-format +msgid "Error writing battery %s" +msgstr "" + +#: ../src/wx/cmdevents.cpp:813 +msgid "EEPROM saves cannot be exported" +msgstr "" + +#: ../src/wx/cmdevents.cpp:819 +msgid "Gameshark Snapshot (*.sps)|*.sps" +msgstr "" + +#: ../src/wx/cmdevents.cpp:831 +msgid "Exported from VisualBoyAdvance-M" +msgstr "" + +#: ../src/wx/cmdevents.cpp:841 +#, c-format +msgid "Saved snapshot file %s" +msgstr "" + +#: ../src/wx/cmdevents.cpp:843 +#, c-format +msgid "Error saving snapshot file %s" +msgstr "" + +#: ../src/wx/cmdevents.cpp:864 ../src/wx/cmdevents.cpp:941 +#: ../src/wx/cmdevents.cpp:1013 ../src/wx/cmdevents.cpp:1049 +#: ../src/wx/viewers.cpp:495 ../src/wx/viewers.cpp:664 +#: ../src/wx/viewsupt.cpp:1023 +msgid "Select output file" +msgstr "" + +#: ../src/wx/cmdevents.cpp:865 ../src/wx/viewsupt.cpp:1024 +msgid "PNG images|*.png|BMP images|*.bmp" +msgstr "" + +#: ../src/wx/cmdevents.cpp:884 ../src/wx/sys.cpp:400 +#, c-format +msgid "Wrote snapshot %s" +msgstr "" + +#: ../src/wx/cmdevents.cpp:905 ../src/wx/cmdevents.cpp:977 +msgid " files (" +msgstr "" + +#: ../src/wx/cmdevents.cpp:1050 ../src/wx/cmdevents.cpp:1081 +msgid "VBA Movie files|*.vmv" +msgstr "" + +#: ../src/wx/cmdevents.cpp:1080 +msgid "Select file" +msgstr "" + +#: ../src/wx/cmdevents.cpp:1165 +msgid "LAN link is already active. Disable link mode to disconnect." +msgstr "" + +#: ../src/wx/cmdevents.cpp:1170 +msgid "RFU is currently only supported in local mode." +msgstr "" + +#: ../src/wx/cmdevents.cpp:1246 ../src/wx/cmdevents.cpp:1328 +msgid "Select state file" +msgstr "" + +#: ../src/wx/cmdevents.cpp:1247 ../src/wx/cmdevents.cpp:1329 +msgid "VisualBoyAdvance saved game files|*.sgm" +msgstr "" + +#: ../src/wx/cmdevents.cpp:1558 +msgid "Sound enabled" +msgstr "" + +#: ../src/wx/cmdevents.cpp:1558 +msgid "Sound disabled" +msgstr "" + +#: ../src/wx/cmdevents.cpp:1569 ../src/wx/cmdevents.cpp:1581 +#, c-format +msgid "Volume: %d%%" +msgstr "" + +#: ../src/wx/cmdevents.cpp:1648 +msgid "Set to 0 for pseudo tty" +msgstr "" + +#: ../src/wx/cmdevents.cpp:1650 +msgid "Port to wait for connection:" +msgstr "" + +#: ../src/wx/cmdevents.cpp:1651 +msgid "GDB Connection" +msgstr "" + +#: ../src/wx/cmdevents.cpp:1666 +#, c-format +msgid "Waiting for connection at %s" +msgstr "" + +#: ../src/wx/cmdevents.cpp:1672 +#, c-format +msgid "Waiting for connection on port %d" +msgstr "" + +#: ../src/wx/cmdevents.cpp:1674 +msgid "Waiting for GDB..." +msgstr "" + +#: ../src/wx/cmdevents.cpp:2178 +msgid "Nintendo GameBoy (+Color+Advance) emulator." +msgstr "" + +#: ../src/wx/cmdevents.cpp:2179 +msgid "" +"Copyright (C) 1999-2003 Forgotten\n" +"Copyright (C) 2004-2006 VBA development team\n" +"Copyright (C) 2007-2011 VBA-M development team" +msgstr "" + +#: ../src/wx/cmdevents.cpp:2180 +msgid "" +"This program is free software: you can redistribute it and/or modify\n" +"it under the terms of the GNU General Public License as published by\n" +"the Free Software Foundation, either version 2 of the License, or\n" +"(at your option) any later version.\n" +"\n" +"This program is distributed in the hope that it will be useful,\n" +"but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +"GNU General Public License for more details.\n" +"\n" +"You should have received a copy of the GNU General Public License\n" +"along with this program. If not, see http://www.gnu.org/licenses ." +msgstr "" + +#: ../src/wx/dsound.cpp:93 ../src/wx/dsound.cpp:104 +#, c-format +msgid "Cannot create DirectSound %08x" +msgstr "" + +#: ../src/wx/dsound.cpp:109 +#, c-format +msgid "Cannot SetCooperativeLevel %08x" +msgstr "" + +#: ../src/wx/dsound.cpp:123 +#, c-format +msgid "Cannot CreateSoundBuffer %08x" +msgstr "" + +#: ../src/wx/dsound.cpp:143 +#, c-format +msgid "CreateSoundBuffer(primary) failed %08x" +msgstr "" + +#: ../src/wx/dsound.cpp:159 +#, c-format +msgid "CreateSoundBuffer(secondary) failed %08x" +msgstr "" + +#: ../src/wx/dsound.cpp:164 +#, c-format +msgid "dsbSecondary->SetCurrentPosition failed %08x" +msgstr "" + +#: ../src/wx/dsound.cpp:188 +#, c-format +msgid "Cannot Play primary %08x" +msgstr "" + +#: ../src/wx/dsound.cpp:306 +#, c-format +msgid "dsbSecondary->Lock() failed: %08x" +msgstr "" + +#: ../src/wx/gfxviewers.cpp:1041 +msgid "Select output file and type" +msgstr "" + +#: ../src/wx/gfxviewers.cpp:1042 +msgid "" +"Windows Palette (*.pal)|*.pal|PaintShop Palette (*.pal)|*.pal|Adobe Color " +"Table (*.act)|*.act" +msgstr "" + +#: ../src/wx/guiinit.cpp:57 +msgid "Start!" +msgstr "" + +#: ../src/wx/guiinit.cpp:61 wx-xrc-strings.h:164 +msgid "Connect" +msgstr "" + +#: ../src/wx/guiinit.cpp:94 +#, c-format +msgid "Server IP address is: %s\n" +msgstr "" + +#: ../src/wx/guiinit.cpp:105 +#, c-format +msgid "Player %d connected\n" +msgstr "" + +#: ../src/wx/guiinit.cpp:126 +msgid "" +"Error occurred.\n" +"Please try again." +msgstr "" + +#: ../src/wx/guiinit.cpp:131 +msgid "Waiting for clients..." +msgstr "" + +#: ../src/wx/guiinit.cpp:151 +#, c-format +msgid "Connecting to %s\n" +msgstr "" + +#: ../src/wx/guiinit.cpp:156 +#, c-format +msgid "Connected as #%d\n" +msgstr "" + +#: ../src/wx/guiinit.cpp:158 +#, c-format +msgid "Waiting for %d players to join" +msgstr "" + +#: ../src/wx/guiinit.cpp:160 +msgid "All players joined." +msgstr "" + +#: ../src/wx/guiinit.cpp:182 +#, c-format +msgid "" +"Error %d occurred.\n" +"Please try again." +msgstr "" + +#: ../src/wx/guiinit.cpp:187 +msgid "Waiting for connection..." +msgstr "" + +#: ../src/wx/guiinit.cpp:262 ../src/wx/guiinit.cpp:285 +msgid "Select cheat file" +msgstr "" + +#: ../src/wx/guiinit.cpp:263 ../src/wx/guiinit.cpp:286 +msgid "VBA cheat lists (*.clt)|*.clt" +msgstr "" + +#: ../src/wx/guiinit.cpp:277 ../src/wx/panel.cpp:318 +msgid "Loaded cheats" +msgstr "" + +#: ../src/wx/guiinit.cpp:300 +msgid "Saved cheats" +msgstr "" + +#: ../src/wx/guiinit.cpp:324 ../src/wx/guiinit.cpp:341 +msgid "Restore old values?" +msgstr "" + +#: ../src/wx/guiinit.cpp:325 ../src/wx/guiinit.cpp:342 +msgid "Removing cheats" +msgstr "" + +#: ../src/wx/guiinit.cpp:641 wx-xrc-strings.h:434 +msgid "GameShark" +msgstr "" + +#: ../src/wx/guiinit.cpp:644 +msgid "Generic Code" +msgstr "" + +#: ../src/wx/guiinit.cpp:645 +msgid "GameShark Advance" +msgstr "" + +#: ../src/wx/guiinit.cpp:646 +msgid "CodeBreaker Advance" +msgstr "" + +#: ../src/wx/guiinit.cpp:705 ../src/wx/guiinit.cpp:911 +msgid "Number cannot be empty" +msgstr "" + +#: ../src/wx/guiinit.cpp:733 +#, c-format +msgid "Search produced %d results. Please refine better" +msgstr "" + +#: ../src/wx/guiinit.cpp:743 +msgid "Search produced no results" +msgstr "" + +#: ../src/wx/guiinit.cpp:883 +msgid "8-bit " +msgstr "" + +#: ../src/wx/guiinit.cpp:886 +msgid "16-bit " +msgstr "" + +#: ../src/wx/guiinit.cpp:889 +msgid "32-bit " +msgstr "" + +#: ../src/wx/guiinit.cpp:894 +msgid "signed decimal" +msgstr "" + +#: ../src/wx/guiinit.cpp:897 +msgid "unsigned decimal" +msgstr "" + +#: ../src/wx/guiinit.cpp:900 +msgid "unsigned hexadecimal" +msgstr "" + +#: ../src/wx/guiinit.cpp:1323 +#, c-format +msgid "%d frames = %.2f ms" +msgstr "" + +#: ../src/wx/guiinit.cpp:1334 +msgid "Default device" +msgstr "" + +#: ../src/wx/guiinit.cpp:1453 +msgid "You must enter a valid host name" +msgstr "" + +#: ../src/wx/guiinit.cpp:1454 +msgid "Host name invalid" +msgstr "" + +#: ../src/wx/guiinit.cpp:1486 +msgid "Desktop mode" +msgstr "" + +#: ../src/wx/guiinit.cpp:1492 +#, c-format +msgid "%d x %d - %dbpp @ %dHz" +msgstr "" + +#: ../src/wx/guiinit.cpp:1619 +#, c-format +msgid "No usable rpi plugins found in %s" +msgstr "" + +#: ../src/wx/guiinit.cpp:1636 wx-xrc-strings.h:359 +msgid "Plugin" +msgstr "" + +#: ../src/wx/guiinit.cpp:1659 +msgid "Please select a plugin or a different filter" +msgstr "" + +#: ../src/wx/guiinit.cpp:1660 +msgid "Plugin selection error" +msgstr "" + +#: ../src/wx/guiinit.cpp:1834 +msgid "This will clear all user-defined accelerators. Are you sure?" +msgstr "" + +#: ../src/wx/guiinit.cpp:1835 +msgid "Confirm" +msgstr "" + +#: ../src/wx/guiinit.cpp:2048 +msgid "Main display panel not found" +msgstr "" + +#: ../src/wx/guiinit.cpp:2062 +msgid "Main icon not found" +msgstr "" + +#: ../src/wx/guiinit.cpp:2068 +msgid "Welcome to wxVBAM!" +msgstr "" + +#: ../src/wx/guiinit.cpp:2159 +#, c-format +msgid "Duplicate menu accelerator: %s for %s and %s; keeping first" +msgstr "" + +#: ../src/wx/guiinit.cpp:2171 +#, c-format +msgid "Menu accelerator %s for %s overrides default for %s ; keeping menu" +msgstr "" + +#: ../src/wx/guiinit.cpp:2277 +#, c-format +msgid "Invalid menu item %s; removing" +msgstr "" + +#: ../src/wx/guiinit.cpp:2298 ../src/wx/viewsupt.h:38 +#, c-format +msgid "Unable to load dialog %s from resources" +msgstr "" + +#: ../src/wx/guiinit.cpp:2302 +#, c-format +msgid "Unable to load dialog %s (control %s) from resources" +msgstr "" + +#: ../src/wx/guiinit.cpp:2501 +msgid "Code" +msgstr "" + +#: ../src/wx/guiinit.cpp:2510 +msgid "Description" +msgstr "" + +#: ../src/wx/guiinit.cpp:2589 wx-xrc-strings.h:201 +msgid "Address" +msgstr "" + +#: ../src/wx/guiinit.cpp:2590 +msgid "Old Value" +msgstr "" + +#: ../src/wx/guiinit.cpp:2591 +msgid "New Value" +msgstr "" + +#: ../src/wx/guiinit.cpp:3098 +msgid "Menu commands" +msgstr "" + +#: ../src/wx/guiinit.cpp:3119 +msgid "Other commands" +msgstr "" + +#: ../src/wx/guiinit.cpp:3205 +msgid "JoyBus host invalid; disabling" +msgstr "" + +#: ../src/wx/openal.cpp:161 +msgid "" +"OpenAL library could not be found on your system. Please install the " +"runtime from http://openal.org" +msgstr "" + +#: ../src/wx/opts.cpp:318 ../src/wx/opts.cpp:358 ../src/wx/opts.cpp:382 +#: ../src/wx/opts.cpp:391 +#, c-format +msgid "Invalid option %s present; removing if possible" +msgstr "" + +#: ../src/wx/opts.cpp:346 ../src/wx/opts.cpp:369 +#, c-format +msgid "Invalid option group %s present; removing if possible" +msgstr "" + +#: ../src/wx/opts.cpp:432 ../src/wx/opts.cpp:676 +#, c-format +msgid "Invalid value %s for option %s; valid values are %s%s%s" +msgstr "" + +#: ../src/wx/opts.cpp:454 ../src/wx/opts.cpp:691 +#, c-format +msgid "Invalid value %d for option %s; valid values are %d - %d" +msgstr "" + +#: ../src/wx/opts.cpp:503 ../src/wx/opts.cpp:520 ../src/wx/opts.cpp:745 +#: ../src/wx/opts.cpp:765 +#, c-format +msgid "Invalid key binding %s for %s" +msgstr "" + +#: ../src/wx/opts.cpp:657 +#, c-format +msgid "Invalid flag option %s - %s ignored" +msgstr "" + +#: ../src/wx/panel.cpp:55 +#, c-format +msgid "%s is not a valid ROM file" +msgstr "" + +#: ../src/wx/panel.cpp:56 ../src/wx/panel.cpp:110 ../src/wx/panel.cpp:173 +msgid "Problem loading file" +msgstr "" + +#: ../src/wx/panel.cpp:109 +#, c-format +msgid "Unable to load Game Boy ROM %s" +msgstr "" + +#: ../src/wx/panel.cpp:153 ../src/wx/panel.cpp:234 +#, c-format +msgid "Could not load BIOS %s" +msgstr "" + +#: ../src/wx/panel.cpp:172 +#, c-format +msgid "Unable to load Game Boy Advance ROM %s" +msgstr "" + +#: ../src/wx/panel.cpp:335 +msgid " player " +msgstr "" + +#: ../src/wx/panel.cpp:484 +#, c-format +msgid "Loaded state %s" +msgstr "" + +#: ../src/wx/panel.cpp:484 +#, c-format +msgid "Error loading state %s" +msgstr "" + +#: ../src/wx/panel.cpp:508 +#, c-format +msgid "Saved state %s" +msgstr "" + +#: ../src/wx/panel.cpp:508 +#, c-format +msgid "Error saving state %s" +msgstr "" + +#: ../src/wx/panel.cpp:678 +#, c-format +msgid "Fullscreen mode %dx%d-%d@%d not supported; looking for another" +msgstr "" + +#: ../src/wx/panel.cpp:708 +#, c-format +msgid "Fullscreen mode %dx%d-%d@%d not supported" +msgstr "" + +#: ../src/wx/panel.cpp:712 +#, c-format +msgid "Valid mode: %dx%d-%d@%d" +msgstr "" + +#: ../src/wx/panel.cpp:719 +#, c-format +msgid "Chose mode %dx%d-%d@%d" +msgstr "" + +#: ../src/wx/panel.cpp:722 +#, c-format +msgid "Failed to change mode to %dx%d-%d@%d" +msgstr "" + +#: ../src/wx/panel.cpp:774 +msgid "Not a valid GBA cartridge" +msgstr "" + +#: ../src/wx/panel.cpp:853 +msgid "No memory for rewinding" +msgstr "" + +#: ../src/wx/panel.cpp:860 +msgid "Error writing rewind state" +msgstr "" + +#: ../src/wx/panel.cpp:1831 +msgid "Cannot create conversion buffer" +msgstr "" + +#: ../src/wx/panel.cpp:1899 +msgid "memory allocation error" +msgstr "" + +#: ../src/wx/panel.cpp:1901 +msgid "error initializing codec" +msgstr "" + +#: ../src/wx/panel.cpp:1903 +msgid "error writing to output file" +msgstr "" + +#: ../src/wx/panel.cpp:1905 +msgid "can't guess output format from file name" +msgstr "" + +#: ../src/wx/panel.cpp:1909 +msgid "programming error; aborting!" +msgstr "" + +#: ../src/wx/panel.cpp:1921 ../src/wx/panel.cpp:1949 +#, c-format +msgid "Unable to begin recording to %s (%s)" +msgstr "" + +#: ../src/wx/panel.cpp:1974 +#, c-format +msgid "Error in audio/video recording (%s); aborting" +msgstr "" + +#: ../src/wx/panel.cpp:1979 +#, c-format +msgid "Error in audio recording (%s); aborting" +msgstr "" + +#: ../src/wx/panel.cpp:1988 +#, c-format +msgid "Error in video recording (%s); aborting" +msgstr "" + +#: ../src/wx/sys.cpp:108 ../src/wx/sys.cpp:158 +msgid "No game in progress to record" +msgstr "" + +#: ../src/wx/sys.cpp:118 +#, c-format +msgid "Cannot open output file %s" +msgstr "" + +#: ../src/wx/sys.cpp:123 ../src/wx/sys.cpp:143 ../src/wx/sys.cpp:269 +msgid "Error writing game recording" +msgstr "" + +#: ../src/wx/sys.cpp:162 +msgid "Cannot play game recording while recording" +msgstr "" + +#: ../src/wx/sys.cpp:173 +#, c-format +msgid "Cannot open recording file %s" +msgstr "" + +#: ../src/wx/sys.cpp:179 ../src/wx/sys.cpp:187 +msgid "Error reading game recording" +msgstr "" + +#: ../src/wx/sys.cpp:280 +msgid "Playback ended" +msgstr "" + +#: ../src/wx/sys.cpp:297 +#, c-format +msgid "%d%%(%d, %d fps)" +msgstr "" + +#: ../src/wx/sys.cpp:303 +#, c-format +msgid "%d%%" +msgstr "" + +#: ../src/wx/sys.cpp:556 wx-xrc-strings.h:121 +msgid "&Discard" +msgstr "" + +#: ../src/wx/sys.cpp:591 +msgid "Image files (*.bmp;*.jpg;*.png)|*.bmp;*.jpg;*.png|" +msgstr "" + +#: ../src/wx/sys.cpp:598 +msgid "Save printer image to" +msgstr "" + +#: ../src/wx/sys.cpp:609 ../src/wx/sys.cpp:778 +#, c-format +msgid "Wrote printer output to %s" +msgstr "" + +#: ../src/wx/sys.cpp:613 ../src/wx/sys.cpp:680 +msgid "&Close" +msgstr "" + +#: ../src/wx/sys.cpp:676 +msgid "Printed" +msgstr "" + +#: ../src/wx/sys.cpp:933 +#, c-format +msgid "Error opening pseudo tty: %s" +msgstr "" + +#: ../src/wx/sys.cpp:1019 +#, c-format +msgid "Error setting up server socket (%d)" +msgstr "" + +#: ../src/wx/viewers.cpp:493 +msgid "Text files (*.txt;*.log)|*.txt;*.log|" +msgstr "" + +#: ../src/wx/viewers.cpp:615 ../src/wx/viewers.cpp:662 +msgid "Memory dumps (*.dmp;*.bin)|*.dmp;*.bin|" +msgstr "" + +#: ../src/wx/viewers.cpp:617 +msgid "Select memory dump file" +msgstr "" + +#: ../src/wx/viewers.cpp:703 +msgid "0x00000000 - BIOS" +msgstr "" + +#: ../src/wx/viewers.cpp:704 +msgid "0x02000000 - WRAM" +msgstr "" + +#: ../src/wx/viewers.cpp:705 +msgid "0x03000000 - IRAM" +msgstr "" + +#: ../src/wx/viewers.cpp:706 +msgid "0x04000000 - I/O" +msgstr "" + +#: ../src/wx/viewers.cpp:707 +msgid "0x05000000 - PALETTE" +msgstr "" + +#: ../src/wx/viewers.cpp:708 +msgid "0x06000000 - VRAM" +msgstr "" + +#: ../src/wx/viewers.cpp:709 +msgid "0x07000000 - OAM" +msgstr "" + +#: ../src/wx/viewers.cpp:710 +msgid "0x08000000 - ROM" +msgstr "" + +#: ../src/wx/viewers.cpp:798 +msgid "0x0000 - ROM" +msgstr "" + +#: ../src/wx/viewers.cpp:799 +msgid "0x4000 - ROM" +msgstr "" + +#: ../src/wx/viewers.cpp:800 +msgid "0x8000 - VRAM" +msgstr "" + +#: ../src/wx/viewers.cpp:801 +msgid "0xA000 - SRAM" +msgstr "" + +#: ../src/wx/viewers.cpp:802 +msgid "0xC000 - RAM" +msgstr "" + +#: ../src/wx/viewers.cpp:803 +msgid "0xD000 - WRAM" +msgstr "" + +#: ../src/wx/viewers.cpp:804 +msgid "0xFF00 - I/O" +msgstr "" + +#: ../src/wx/viewers.cpp:805 +msgid "0xFF80 - RAM" +msgstr "" + +#: ../src/wx/viewsupt.cpp:675 +msgid "R:" +msgstr "" + +#: ../src/wx/viewsupt.cpp:680 +msgid "G:" +msgstr "" + +#: ../src/wx/viewsupt.cpp:685 +msgid "B:" +msgstr "" + +#: ../src/wx/wxvbam.cpp:208 +msgid "Could not create main window" +msgstr "" + +#: ../src/wx/wxvbam.cpp:240 +msgid "Save built-in XRC file and exit" +msgstr "" + +#: ../src/wx/wxvbam.cpp:242 +msgid "Save built-in vba-over.ini and exit" +msgstr "" + +#: ../src/wx/wxvbam.cpp:244 +msgid "Print configuration path and exit" +msgstr "" + +#: ../src/wx/wxvbam.cpp:246 +msgid "Start in full-screen mode" +msgstr "" + +#: ../src/wx/wxvbam.cpp:249 +msgid "Delete shared link state first, if it exists" +msgstr "" + +#: ../src/wx/wxvbam.cpp:255 +msgid "List all settable options and exit" +msgstr "" + +#: ../src/wx/wxvbam.cpp:257 +msgid "ROM file" +msgstr "" + +#: ../src/wx/wxvbam.cpp:259 +msgid "=" +msgstr "" + +#: ../src/wx/wxvbam.cpp:279 +msgid "save-xrc" +msgstr "" + +#: ../src/wx/wxvbam.cpp:287 +msgid "Configuration/build error: can't find built-in xrc" +msgstr "" + +#: ../src/wx/wxvbam.cpp:294 +#, c-format +msgid "" +"Wrote built-in configuration to %s.\n" +"To override, remove all but changed root node(s). First found root node of " +"correct name in any .xrc or .xrs files in following search path overrides " +"built-in:" +msgstr "" + +#: ../src/wx/wxvbam.cpp:303 +msgid "print-cfg-path" +msgstr "" + +#: ../src/wx/wxvbam.cpp:308 +msgid "Configuration is read from, in order:" +msgstr "" + +#: ../src/wx/wxvbam.cpp:313 +msgid "save-over" +msgstr "" + +#: ../src/wx/wxvbam.cpp:321 +#, c-format +msgid "" +"Wrote built-in override file to %s\n" +"To override, delete all but changed section. First found section is used " +"from search path:" +msgstr "" + +#: ../src/wx/wxvbam.cpp:326 +msgid "" +"\n" +"\tbuilt-in" +msgstr "" + +#: ../src/wx/wxvbam.cpp:334 +msgid "" +"Options set from the command line are saved if any configuration changes are " +"made in the user interface.\n" +"\n" +"For flag options, true and false are specified as 1 and 0, respectively.\n" +"\n" +msgstr "" + +#: ../src/wx/wxvbam.cpp:339 +msgid "flag" +msgstr "" + +#: ../src/wx/wxvbam.cpp:340 ../src/wx/wxvbam.cpp:343 +msgid "string" +msgstr "" + +#: ../src/wx/wxvbam.cpp:342 +msgid "int" +msgstr "" + +#: ../src/wx/wxvbam.cpp:353 +msgid "" +"The commands available for the Keyboard/* option are:\n" +"\n" +msgstr "" + +#: ../src/wx/wxvbam.cpp:383 +msgid "Bad configuration option or multiple ROM files given:\n" +msgstr "" + +#: ../src/wx/xaudio2.cpp:156 ../src/wx/xaudio2.cpp:422 +msgid "The XAudio2 interface failed to initialize!" +msgstr "" + +#: ../src/wx/xaudio2.cpp:192 +msgid "XAudio2: Creating mastering voice failed!" +msgstr "" + +#: ../src/wx/xaudio2.cpp:201 +msgid "XAudio2: Creating source voice failed!" +msgstr "" + +#: ../src/wx/xaudio2.cpp:391 +msgid "XAudio2: Enumerating devices failed!" +msgstr "" + +#: ../src/wx/widgets/joyedit.cpp:78 +#, c-format +msgid "Joy%d-" +msgstr "" + +#: ../src/wx/widgets/joyedit.cpp:82 +#, c-format +msgid "Axis%d+" +msgstr "" + +#: ../src/wx/widgets/joyedit.cpp:85 +#, c-format +msgid "Axis%d-" +msgstr "" + +#: ../src/wx/widgets/joyedit.cpp:88 +#, c-format +msgid "Button%d" +msgstr "" + +#: ../src/wx/widgets/joyedit.cpp:91 +#, c-format +msgid "Hat%dN" +msgstr "" + +#: ../src/wx/widgets/joyedit.cpp:94 +#, c-format +msgid "Hat%dS" +msgstr "" + +#: ../src/wx/widgets/joyedit.cpp:97 +#, c-format +msgid "Hat%dW" +msgstr "" + +#: ../src/wx/widgets/joyedit.cpp:100 +#, c-format +msgid "Hat%dE" +msgstr "" + +#: ../src/wx/widgets/joyedit.cpp:103 +#, c-format +msgid "Hat%dNW" +msgstr "" + +#: ../src/wx/widgets/joyedit.cpp:106 +#, c-format +msgid "Hat%dNE" +msgstr "" + +#: ../src/wx/widgets/joyedit.cpp:109 +#, c-format +msgid "Hat%dSW" +msgstr "" + +#: ../src/wx/widgets/joyedit.cpp:112 +#, c-format +msgid "Hat%dSE" +msgstr "" + +#: ../src/wx/widgets/joyedit.cpp:139 +msgid "^Joy([0-9]+)[-+]" +msgstr "" + +#: ../src/wx/widgets/joyedit.cpp:141 +msgid "Axis([0-9]+)([+-])" +msgstr "" + +#: ../src/wx/widgets/joyedit.cpp:143 +msgid "Button([0-9]+)" +msgstr "" + +#: ../src/wx/widgets/joyedit.cpp:146 +msgid "" +"Hat([0-9]+)((N|North|U|Up)|(S|South|D|Down)|(E|East|R|Right)|(W|West|L|Left)|" +"(NE|NorthEast|UR|UpRight)|(SE|SouthEast|DR|DownRight)|(SW|SouthWest|DL|" +"DownLeft)|(NW|NorthWest|UL|UpLeft))" +msgstr "" + +#: ../src/wx/widgets/keyedit.cpp:78 ../src/wx/widgets/keyedit.cpp:166 +msgid "SHIFT" +msgstr "" + +#: ../src/wx/widgets/keyedit.cpp:81 ../src/wx/widgets/keyedit.cpp:165 +msgid "ALT" +msgstr "" + +#: ../src/wx/widgets/keyedit.cpp:84 ../src/wx/widgets/keyedit.cpp:167 +msgid "CTRL" +msgstr "" + +#: ../src/wx/widgets/keyedit.cpp:95 ../src/wx/widgets/keyedit.cpp:139 +msgid "Meta-" +msgstr "" + +#: ../src/wx/widgets/keyedit.cpp:140 +msgid "Meta+" +msgstr "" + +#: ../src/wx/widgets/keyedit.cpp:168 +msgid "CONTROL" +msgstr "" + +#: wx-xrc-strings.h:1 +msgid "VBAM" +msgstr "" + +#: wx-xrc-strings.h:2 +msgid "&File" +msgstr "" + +#: wx-xrc-strings.h:3 +msgid "Open rece&nt" +msgstr "" + +#: wx-xrc-strings.h:4 +msgid "&Reset recent list" +msgstr "" + +#: wx-xrc-strings.h:5 +msgid "&Freeze recent list" +msgstr "" + +#: wx-xrc-strings.h:6 +msgid "ROM in&formation..." +msgstr "" + +#: wx-xrc-strings.h:7 wx-xrc-strings.h:11 +msgid "&Battery file..." +msgstr "" + +#: wx-xrc-strings.h:8 +msgid "Gameshark &code file..." +msgstr "" + +#: wx-xrc-strings.h:9 wx-xrc-strings.h:12 +msgid "&Gameshark snapshot..." +msgstr "" + +#: wx-xrc-strings.h:10 +msgid "&Import" +msgstr "" + +#: wx-xrc-strings.h:13 +msgid "&Export" +msgstr "" + +#: wx-xrc-strings.h:14 +msgid "Screen capt&ure..." +msgstr "" + +#: wx-xrc-strings.h:15 +msgid "Start &sound recording..." +msgstr "" + +#: wx-xrc-strings.h:16 +msgid "Stop s&ound recording" +msgstr "" + +#: wx-xrc-strings.h:17 +msgid "Start &video recording..." +msgstr "" + +#: wx-xrc-strings.h:18 +msgid "Stop v&ideo recording" +msgstr "" + +#: wx-xrc-strings.h:19 +msgid "Start &game recording..." +msgstr "" + +#: wx-xrc-strings.h:20 +msgid "Stop g&ame recording" +msgstr "" + +#: wx-xrc-strings.h:21 +msgid "&Record" +msgstr "" + +#: wx-xrc-strings.h:22 +msgid "Start playing &movie..." +msgstr "" + +#: wx-xrc-strings.h:23 +msgid "Stop playing m&ovie" +msgstr "" + +#: wx-xrc-strings.h:24 +msgid "&Play" +msgstr "" + +#: wx-xrc-strings.h:25 +msgid "&Emulation" +msgstr "" + +#: wx-xrc-strings.h:26 +msgid "&Pause" +msgstr "" + +#: wx-xrc-strings.h:27 +msgid "&Turbo mode" +msgstr "" + +#: wx-xrc-strings.h:28 +msgid "&Reset" +msgstr "" + +#: wx-xrc-strings.h:29 +msgid "&Fullscreen" +msgstr "" + +#: wx-xrc-strings.h:30 +msgid "&Autofire" +msgstr "" + +#: wx-xrc-strings.h:31 +msgid "&A" +msgstr "" + +#: wx-xrc-strings.h:32 +msgid "&B" +msgstr "" + +#: wx-xrc-strings.h:33 +msgid "&L" +msgstr "" + +#: wx-xrc-strings.h:34 +msgid "&R" +msgstr "" + +#: wx-xrc-strings.h:35 +msgid "Start &Network Link..." +msgstr "" + +#: wx-xrc-strings.h:36 +msgid "Most &recent" +msgstr "" + +#: wx-xrc-strings.h:37 +msgid "&Auto load most recent" +msgstr "" + +#: wx-xrc-strings.h:38 wx-xrc-strings.h:53 wx-xrc-strings.h:692 +msgid "&1" +msgstr "" + +#: wx-xrc-strings.h:39 wx-xrc-strings.h:54 +msgid "&2" +msgstr "" + +#: wx-xrc-strings.h:40 wx-xrc-strings.h:55 +msgid "&3" +msgstr "" + +#: wx-xrc-strings.h:41 wx-xrc-strings.h:56 +msgid "&4" +msgstr "" + +#: wx-xrc-strings.h:42 wx-xrc-strings.h:57 +msgid "&5" +msgstr "" + +#: wx-xrc-strings.h:43 wx-xrc-strings.h:58 +msgid "&6" +msgstr "" + +#: wx-xrc-strings.h:44 wx-xrc-strings.h:59 +msgid "&7" +msgstr "" + +#: wx-xrc-strings.h:45 wx-xrc-strings.h:60 +msgid "&8" +msgstr "" + +#: wx-xrc-strings.h:46 wx-xrc-strings.h:61 +msgid "&9" +msgstr "" + +#: wx-xrc-strings.h:47 wx-xrc-strings.h:62 +msgid "1&0" +msgstr "" + +#: wx-xrc-strings.h:48 +msgid "From &File ..." +msgstr "" + +#: wx-xrc-strings.h:49 +msgid "Do not change &battery save" +msgstr "" + +#: wx-xrc-strings.h:50 +msgid "Do not change &cheat list" +msgstr "" + +#: wx-xrc-strings.h:51 +msgid "&Load state" +msgstr "" + +#: wx-xrc-strings.h:52 +msgid "&Oldest slot" +msgstr "" + +#: wx-xrc-strings.h:63 +msgid "To &File ..." +msgstr "" + +#: wx-xrc-strings.h:64 +msgid "&Save state" +msgstr "" + +#: wx-xrc-strings.h:65 +msgid "Re&wind" +msgstr "" + +#: wx-xrc-strings.h:66 +msgid "List &cheats ..." +msgstr "" + +#: wx-xrc-strings.h:67 +msgid "Find c&heat ..." +msgstr "" + +#: wx-xrc-strings.h:68 +msgid "A&utomatically save/load cheats" +msgstr "" + +#: wx-xrc-strings.h:69 +msgid "&Enable cheats" +msgstr "" + +#: wx-xrc-strings.h:70 +msgid "BG &0" +msgstr "" + +#: wx-xrc-strings.h:71 +msgid "BG &1" +msgstr "" + +#: wx-xrc-strings.h:72 +msgid "BG &2" +msgstr "" + +#: wx-xrc-strings.h:73 +msgid "BG &3" +msgstr "" + +#: wx-xrc-strings.h:74 +msgid "&OBJ" +msgstr "" + +#: wx-xrc-strings.h:75 +msgid "&WIN 0" +msgstr "" + +#: wx-xrc-strings.h:76 +msgid "W&IN 1" +msgstr "" + +#: wx-xrc-strings.h:77 +msgid "O&BJ WIN" +msgstr "" + +#: wx-xrc-strings.h:78 +msgid "&View Layers" +msgstr "" + +#: wx-xrc-strings.h:79 +msgid "Channel &1" +msgstr "" + +#: wx-xrc-strings.h:80 +msgid "Channel &2" +msgstr "" + +#: wx-xrc-strings.h:81 +msgid "Channel &3" +msgstr "" + +#: wx-xrc-strings.h:82 +msgid "Channel &4" +msgstr "" + +#: wx-xrc-strings.h:83 +msgid "Direct Sound &A" +msgstr "" + +#: wx-xrc-strings.h:84 +msgid "Direct Sound &B" +msgstr "" + +#: wx-xrc-strings.h:85 +msgid "&Sound Channels" +msgstr "" + +#: wx-xrc-strings.h:86 +msgid "&Next frame" +msgstr "" + +#: wx-xrc-strings.h:87 +msgid "&Disassemble..." +msgstr "" + +#: wx-xrc-strings.h:88 +msgid "&Logging..." +msgstr "" + +#: wx-xrc-strings.h:89 +msgid "&IO Viewer..." +msgstr "" + +#: wx-xrc-strings.h:90 +msgid "&Map Viewer..." +msgstr "" + +#: wx-xrc-strings.h:91 +msgid "M&emory viewer..." +msgstr "" + +#: wx-xrc-strings.h:92 +msgid "&OAM Viewer..." +msgstr "" + +#: wx-xrc-strings.h:93 +msgid "&Palette Viewer..." +msgstr "" + +#: wx-xrc-strings.h:94 +msgid "&Tile Viewer..." +msgstr "" + +#: wx-xrc-strings.h:95 +msgid "&Debug" +msgstr "" + +#: wx-xrc-strings.h:96 +msgid "&Wait for connection..." +msgstr "" + +#: wx-xrc-strings.h:97 +msgid "&Load and wait..." +msgstr "" + +#: wx-xrc-strings.h:98 +msgid "&Break into GDB" +msgstr "" + +#: wx-xrc-strings.h:99 +msgid "&Disconnect" +msgstr "" + +#: wx-xrc-strings.h:100 +msgid "&GDB" +msgstr "" + +#: wx-xrc-strings.h:101 +msgid "&General ..." +msgstr "" + +#: wx-xrc-strings.h:102 +msgid "Game &Boy ..." +msgstr "" + +#: wx-xrc-strings.h:103 +msgid "Game Boy &Advance ..." +msgstr "" + +#: wx-xrc-strings.h:104 +msgid "&Display ..." +msgstr "" + +#: wx-xrc-strings.h:105 +msgid "&Sound ..." +msgstr "" + +#: wx-xrc-strings.h:106 +msgid "D&irectories ..." +msgstr "" + +#: wx-xrc-strings.h:107 +msgid "&Joypads ..." +msgstr "" + +#: wx-xrc-strings.h:108 +msgid "&Link ..." +msgstr "" + +#: wx-xrc-strings.h:109 +msgid "&Key Shortcuts ..." +msgstr "" + +#: wx-xrc-strings.h:110 +msgid "&Options" +msgstr "" + +#: wx-xrc-strings.h:111 +msgid "&Help" +msgstr "" + +#: wx-xrc-strings.h:112 +msgid "Report &Bugs" +msgstr "" + +#: wx-xrc-strings.h:113 +msgid "VBA-M Support &Forum" +msgstr "" + +#: wx-xrc-strings.h:114 +msgid "GB Printer" +msgstr "" + +#: wx-xrc-strings.h:115 +msgid "Print Si&ze" +msgstr "" + +#: wx-xrc-strings.h:116 +msgid "1x" +msgstr "" + +#: wx-xrc-strings.h:117 +msgid "2x" +msgstr "" + +#: wx-xrc-strings.h:118 +msgid "3x" +msgstr "" + +#: wx-xrc-strings.h:119 +msgid "4x" +msgstr "" + +#: wx-xrc-strings.h:120 +msgid "C&ontinue" +msgstr "" + +#: wx-xrc-strings.h:122 wx-xrc-strings.h:131 wx-xrc-strings.h:145 +msgid "ROM Information" +msgstr "" + +#: wx-xrc-strings.h:123 wx-xrc-strings.h:132 +msgid "Game title:" +msgstr "" + +#: wx-xrc-strings.h:124 +msgid "Game code:" +msgstr "" + +#: wx-xrc-strings.h:125 wx-xrc-strings.h:133 +msgid "Maker code:" +msgstr "" + +#: wx-xrc-strings.h:126 wx-xrc-strings.h:134 +msgid "Maker name:" +msgstr "" + +#: wx-xrc-strings.h:127 +msgid "Main unit code:" +msgstr "" + +#: wx-xrc-strings.h:128 +msgid "Device type:" +msgstr "" + +#: wx-xrc-strings.h:129 wx-xrc-strings.h:137 +msgid "ROM version:" +msgstr "" + +#: wx-xrc-strings.h:130 wx-xrc-strings.h:138 +msgid "CRC:" +msgstr "" + +#: wx-xrc-strings.h:135 +msgid "Unit code:" +msgstr "" + +#: wx-xrc-strings.h:136 +msgid "Cartridge type:" +msgstr "" + +#: wx-xrc-strings.h:139 +msgid "Color:" +msgstr "" + +#: wx-xrc-strings.h:140 +msgid "ROM size:" +msgstr "" + +#: wx-xrc-strings.h:141 +msgid "RAM size:" +msgstr "" + +#: wx-xrc-strings.h:142 +msgid "Dest. code:" +msgstr "" + +#: wx-xrc-strings.h:143 +msgid "License code:" +msgstr "" + +#: wx-xrc-strings.h:144 +msgid "Checksum:" +msgstr "" + +#: wx-xrc-strings.h:146 +msgid "Selct codes to import" +msgstr "" + +#: wx-xrc-strings.h:147 +msgid "Title:" +msgstr "" + +#: wx-xrc-strings.h:148 +msgid "Description:" +msgstr "" + +#: wx-xrc-strings.h:149 +msgid "Notes:" +msgstr "" + +#: wx-xrc-strings.h:150 +msgid "Export GameShark Snapshot" +msgstr "" + +#: wx-xrc-strings.h:151 +msgid "Server" +msgstr "" + +#: wx-xrc-strings.h:152 +msgid "Client" +msgstr "" + +#: wx-xrc-strings.h:153 +msgid "Players:" +msgstr "" + +#: wx-xrc-strings.h:154 +msgid "2" +msgstr "" + +#: wx-xrc-strings.h:155 +msgid "3" +msgstr "" + +#: wx-xrc-strings.h:156 +msgid "4" +msgstr "" + +#: wx-xrc-strings.h:157 +msgid "Server:" +msgstr "" + +#: wx-xrc-strings.h:158 +msgid "Protocol:" +msgstr "" + +#: wx-xrc-strings.h:159 +msgid "TCP" +msgstr "" + +#: wx-xrc-strings.h:160 +msgid "UDP" +msgstr "" + +#: wx-xrc-strings.h:161 +msgid "Speed hacks:" +msgstr "" + +#: wx-xrc-strings.h:162 +msgid "Off (accurate)" +msgstr "" + +#: wx-xrc-strings.h:163 +msgid "On (fast)" +msgstr "" + +#: wx-xrc-strings.h:165 +msgid "Network Link" +msgstr "" + +#: wx-xrc-strings.h:166 +msgid "Open cheat list" +msgstr "" + +#: wx-xrc-strings.h:167 +msgid "Save cheat list" +msgstr "" + +#: wx-xrc-strings.h:168 +msgid "Add new cheat" +msgstr "" + +#: wx-xrc-strings.h:169 +msgid "Delete selected cheat" +msgstr "" + +#: wx-xrc-strings.h:170 +msgid "Delete all cheats" +msgstr "" + +#: wx-xrc-strings.h:171 +msgid "Toggle all Cheats" +msgstr "" + +#: wx-xrc-strings.h:172 +msgid "Cheat list" +msgstr "" + +#: wx-xrc-strings.h:173 wx-xrc-strings.h:200 +msgid "&Description" +msgstr "" + +#: wx-xrc-strings.h:174 +msgid "&Type" +msgstr "" + +#: wx-xrc-strings.h:175 +msgid "C&odes" +msgstr "" + +#: wx-xrc-strings.h:176 +msgid "Edit cheat" +msgstr "" + +#: wx-xrc-strings.h:177 +msgid "E&qual" +msgstr "" + +#: wx-xrc-strings.h:178 +msgid "&Not equal" +msgstr "" + +#: wx-xrc-strings.h:179 +msgid "&Less than" +msgstr "" + +#: wx-xrc-strings.h:180 +msgid "L&ess or equal" +msgstr "" + +#: wx-xrc-strings.h:181 +msgid "&Greater than" +msgstr "" + +#: wx-xrc-strings.h:182 +msgid "G&reater or equal" +msgstr "" + +#: wx-xrc-strings.h:183 +msgid "Compare type" +msgstr "" + +#: wx-xrc-strings.h:184 +msgid "S&igned" +msgstr "" + +#: wx-xrc-strings.h:185 +msgid "&Unsigned" +msgstr "" + +#: wx-xrc-strings.h:186 +msgid "&Hexadecimal" +msgstr "" + +#: wx-xrc-strings.h:187 +msgid "Signed/Unsigned" +msgstr "" + +#: wx-xrc-strings.h:188 +msgid "&8 bits" +msgstr "" + +#: wx-xrc-strings.h:189 +msgid "&16 bits" +msgstr "" + +#: wx-xrc-strings.h:190 +msgid "&32 bits" +msgstr "" + +#: wx-xrc-strings.h:191 +msgid "Data size" +msgstr "" + +#: wx-xrc-strings.h:192 +msgid "Ol&d value" +msgstr "" + +#: wx-xrc-strings.h:193 +msgid "Specific &value" +msgstr "" + +#: wx-xrc-strings.h:194 +msgid "Search value" +msgstr "" + +#: wx-xrc-strings.h:195 +msgid "&Search" +msgstr "" + +#: wx-xrc-strings.h:196 +msgid "U&pdate Old" +msgstr "" + +#: wx-xrc-strings.h:197 wx-xrc-strings.h:547 +msgid "&Clear" +msgstr "" + +#: wx-xrc-strings.h:198 +msgid "&Add cheat" +msgstr "" + +#: wx-xrc-strings.h:199 +msgid "Search for cheats" +msgstr "" + +#: wx-xrc-strings.h:202 +msgid "&Value" +msgstr "" + +#: wx-xrc-strings.h:203 +msgid "Format" +msgstr "" + +#: wx-xrc-strings.h:204 +msgid "Add cheat" +msgstr "" + +#: wx-xrc-strings.h:205 +msgid "General" +msgstr "" + +#: wx-xrc-strings.h:206 +msgid "Pause when &inactive" +msgstr "" + +#: wx-xrc-strings.h:207 +msgid "&Auto-apply IPS/UPS/PPF patches" +msgstr "" + +#: wx-xrc-strings.h:208 +msgid "Screenshot Format:" +msgstr "" + +#: wx-xrc-strings.h:209 +msgid "&PNG" +msgstr "" + +#: wx-xrc-strings.h:210 +msgid "&BMP" +msgstr "" + +#: wx-xrc-strings.h:211 +msgid "&Rewind interval :" +msgstr "" + +#: wx-xrc-strings.h:212 +msgid "If not empty or 0, enable rewind (seconds)" +msgstr "" + +#: wx-xrc-strings.h:213 +msgid "seconds (0-600); 0 = disable" +msgstr "" + +#: wx-xrc-strings.h:214 +msgid "&Throttle" +msgstr "" + +#: wx-xrc-strings.h:215 +#, c-format +msgid "% of normal:" +msgstr "" + +#: wx-xrc-strings.h:216 +msgid "0 = no throttle" +msgstr "" + +#: wx-xrc-strings.h:217 +msgid "No throttle" +msgstr "" + +#: wx-xrc-strings.h:218 +msgid "25%" +msgstr "" + +#: wx-xrc-strings.h:219 +msgid "50%" +msgstr "" + +#: wx-xrc-strings.h:220 wx-xrc-strings.h:369 +msgid "100%" +msgstr "" + +#: wx-xrc-strings.h:221 +msgid "150%" +msgstr "" + +#: wx-xrc-strings.h:222 +msgid "200%" +msgstr "" + +#: wx-xrc-strings.h:223 +msgid "Preferences" +msgstr "" + +#: wx-xrc-strings.h:224 +msgid "GameBoy settings" +msgstr "" + +#: wx-xrc-strings.h:225 +msgid "Emulated &system :" +msgstr "" + +#: wx-xrc-strings.h:226 wx-xrc-strings.h:235 wx-xrc-strings.h:268 +#: wx-xrc-strings.h:299 +msgid "Automatic" +msgstr "" + +#: wx-xrc-strings.h:227 wx-xrc-strings.h:402 +msgid "Game Boy Advance" +msgstr "" + +#: wx-xrc-strings.h:228 +msgid "Game Boy Color" +msgstr "" + +#: wx-xrc-strings.h:229 +msgid "Super Game Boy" +msgstr "" + +#: wx-xrc-strings.h:230 +msgid "Super Game Boy 2" +msgstr "" + +#: wx-xrc-strings.h:231 wx-xrc-strings.h:397 +msgid "Game Boy" +msgstr "" + +#: wx-xrc-strings.h:232 +msgid "Display &borders :" +msgstr "" + +#: wx-xrc-strings.h:233 +msgid "Never" +msgstr "" + +#: wx-xrc-strings.h:234 +msgid "Always" +msgstr "" + +#: wx-xrc-strings.h:236 +msgid "Emulate a Game Boy &Printer" +msgstr "" + +#: wx-xrc-strings.h:237 +msgid "Automatically &gather entire printed page" +msgstr "" + +#: wx-xrc-strings.h:238 +msgid "Automatically &save printouts as snapshots" +msgstr "" + +#: wx-xrc-strings.h:239 +msgid "Emulate gameboy washed colors" +msgstr "" + +#: wx-xrc-strings.h:240 +msgid "System and Peripherals" +msgstr "" + +#: wx-xrc-strings.h:241 wx-xrc-strings.h:282 +msgid "Frame Skip" +msgstr "" + +#: wx-xrc-strings.h:242 wx-xrc-strings.h:283 +msgid "Enable &automatic frame skipping" +msgstr "" + +#: wx-xrc-strings.h:243 wx-xrc-strings.h:284 +msgid "&Number of frames to skip :" +msgstr "" + +#: wx-xrc-strings.h:244 wx-xrc-strings.h:285 +msgid "Speed" +msgstr "" + +#: wx-xrc-strings.h:245 +msgid "Use a &Game Boy boot ROM file" +msgstr "" + +#: wx-xrc-strings.h:246 +msgid "Boot &ROM file :" +msgstr "" + +#: wx-xrc-strings.h:247 +msgid "Use a &Color Game Boy boot ROM file" +msgstr "" + +#: wx-xrc-strings.h:248 +msgid "Boot ROM &file :" +msgstr "" + +#: wx-xrc-strings.h:249 wx-xrc-strings.h:289 +msgid "Boot ROM" +msgstr "" + +#: wx-xrc-strings.h:250 wx-xrc-strings.h:294 wx-xrc-strings.h:298 +#: wx-xrc-strings.h:306 wx-xrc-strings.h:310 +msgid "Default" +msgstr "" + +#: wx-xrc-strings.h:251 +msgid "User 1" +msgstr "" + +#: wx-xrc-strings.h:252 +msgid "User 2" +msgstr "" + +#: wx-xrc-strings.h:253 +msgid "Custom Colors" +msgstr "" + +#: wx-xrc-strings.h:254 wx-xrc-strings.h:427 +msgid "Standard" +msgstr "" + +#: wx-xrc-strings.h:255 +msgid "Blue Sea" +msgstr "" + +#: wx-xrc-strings.h:256 +msgid "Dark Night" +msgstr "" + +#: wx-xrc-strings.h:257 +msgid "Green Forest" +msgstr "" + +#: wx-xrc-strings.h:258 +msgid "Hot Desert" +msgstr "" + +#: wx-xrc-strings.h:259 +msgid "Pink Dreams" +msgstr "" + +#: wx-xrc-strings.h:260 +msgid "Weird Colors" +msgstr "" + +#: wx-xrc-strings.h:261 +msgid "Real GB Colors" +msgstr "" + +#: wx-xrc-strings.h:262 +msgid "Real 'GB on GBASP' Colors" +msgstr "" + +#: wx-xrc-strings.h:263 wx-xrc-strings.h:579 wx-xrc-strings.h:655 +#: wx-xrc-strings.h:665 +msgid "Background" +msgstr "" + +#: wx-xrc-strings.h:264 +msgid "Sprites" +msgstr "" + +#: wx-xrc-strings.h:265 +msgid "Use this palette" +msgstr "" + +#: wx-xrc-strings.h:266 +msgid "Restore" +msgstr "" + +#: wx-xrc-strings.h:267 +msgid "Save type :" +msgstr "" + +#: wx-xrc-strings.h:269 wx-xrc-strings.h:300 +msgid "EEPROM" +msgstr "" + +#: wx-xrc-strings.h:270 wx-xrc-strings.h:301 +msgid "SRAM" +msgstr "" + +#: wx-xrc-strings.h:271 wx-xrc-strings.h:302 +msgid "Flash" +msgstr "" + +#: wx-xrc-strings.h:272 +msgid "EEPROM + Sensor" +msgstr "" + +#: wx-xrc-strings.h:274 +msgid "Flash size :" +msgstr "" + +#: wx-xrc-strings.h:275 wx-xrc-strings.h:307 +msgid "64K" +msgstr "" + +#: wx-xrc-strings.h:276 wx-xrc-strings.h:308 +msgid "128K" +msgstr "" + +#: wx-xrc-strings.h:277 +msgid "Detect Now" +msgstr "" + +#: wx-xrc-strings.h:278 +msgid "Cartridge" +msgstr "" + +#: wx-xrc-strings.h:279 +msgid "Enable real-time clock" +msgstr "" + +#: wx-xrc-strings.h:280 +msgid "Enable AGB Printer" +msgstr "" + +#: wx-xrc-strings.h:281 +msgid "System and peripherals" +msgstr "" + +#: wx-xrc-strings.h:286 +msgid "Use a bios file" +msgstr "" + +#: wx-xrc-strings.h:287 +msgid "Bios file :" +msgstr "" + +#: wx-xrc-strings.h:288 +msgid "Skip BIOS intro" +msgstr "" + +#: wx-xrc-strings.h:290 +msgid "Game Boy Advance settings" +msgstr "" + +#: wx-xrc-strings.h:291 +msgid "Game Code" +msgstr "" + +#: wx-xrc-strings.h:292 +msgid "Comment" +msgstr "" + +#: wx-xrc-strings.h:293 +msgid "Real Time Clock:" +msgstr "" + +#: wx-xrc-strings.h:295 wx-xrc-strings.h:311 +msgid "Disabled" +msgstr "" + +#: wx-xrc-strings.h:296 wx-xrc-strings.h:312 +msgid "Enabled" +msgstr "" + +#: wx-xrc-strings.h:297 +msgid "Save Type:" +msgstr "" + +#: wx-xrc-strings.h:303 +msgid "EEPROM+Sensor" +msgstr "" + +#: wx-xrc-strings.h:305 +msgid "Flash Size:" +msgstr "" + +#: wx-xrc-strings.h:309 +msgid "Mirroring:" +msgstr "" + +#: wx-xrc-strings.h:313 +msgid "&Defaults" +msgstr "" + +#: wx-xrc-strings.h:314 +msgid "Game Overrides" +msgstr "" + +#: wx-xrc-strings.h:315 +msgid "Speed indicator :" +msgstr "" + +#: wx-xrc-strings.h:317 +msgid "Percentage" +msgstr "" + +#: wx-xrc-strings.h:318 +msgid "Detailed" +msgstr "" + +#: wx-xrc-strings.h:319 +msgid "Disable status messages" +msgstr "" + +#: wx-xrc-strings.h:320 +msgid "Transparent status and speed" +msgstr "" + +#: wx-xrc-strings.h:321 +msgid "On-Screen Display" +msgstr "" + +#: wx-xrc-strings.h:322 +msgid "Default magnification :" +msgstr "" + +#: wx-xrc-strings.h:323 +msgid "Retain aspect ratio" +msgstr "" + +#: wx-xrc-strings.h:324 +msgid "Maximum magnification factor :" +msgstr "" + +#: wx-xrc-strings.h:325 +msgid "0 = no maximum" +msgstr "" + +#: wx-xrc-strings.h:326 +msgid "0 = no limit" +msgstr "" + +#: wx-xrc-strings.h:327 +msgid "Full screen" +msgstr "" + +#: wx-xrc-strings.h:328 +msgid "Video Mode :" +msgstr "" + +#: wx-xrc-strings.h:329 +msgid "Full screen at startup" +msgstr "" + +#: wx-xrc-strings.h:330 +msgid "Zoom" +msgstr "" + +#: wx-xrc-strings.h:331 +msgid "Output module" +msgstr "" + +#: wx-xrc-strings.h:332 +msgid "Simple" +msgstr "" + +#: wx-xrc-strings.h:333 +msgid "OpenGL" +msgstr "" + +#: wx-xrc-strings.h:334 +msgid "Direct3D 9" +msgstr "" + +#: wx-xrc-strings.h:335 +msgid "Cairo" +msgstr "" + +#: wx-xrc-strings.h:336 +msgid "Bilinear scaling filter" +msgstr "" + +#: wx-xrc-strings.h:337 +msgid "Wait for VSync" +msgstr "" + +#: wx-xrc-strings.h:338 +msgid "Filters" +msgstr "" + +#: wx-xrc-strings.h:339 +msgid "Enable MMX" +msgstr "" + +#: wx-xrc-strings.h:340 +msgid "Enable multithreading" +msgstr "" + +#: wx-xrc-strings.h:341 +msgid "Fullscreen filter :" +msgstr "" + +#: wx-xrc-strings.h:343 +msgid "2xSaI" +msgstr "" + +#: wx-xrc-strings.h:344 +msgid "Super 2xSaI" +msgstr "" + +#: wx-xrc-strings.h:345 +msgid "Super Eagle" +msgstr "" + +#: wx-xrc-strings.h:346 +msgid "Pixelate" +msgstr "" + +#: wx-xrc-strings.h:347 +msgid "Advance MAME Scale2x" +msgstr "" + +#: wx-xrc-strings.h:348 +msgid "Bilinear" +msgstr "" + +#: wx-xrc-strings.h:349 +msgid "Bilinear Plus" +msgstr "" + +#: wx-xrc-strings.h:350 +msgid "Scanlines" +msgstr "" + +#: wx-xrc-strings.h:351 +msgid "TV Mode" +msgstr "" + +#: wx-xrc-strings.h:352 +msgid "HQ2x" +msgstr "" + +#: wx-xrc-strings.h:353 +msgid "LQ2x" +msgstr "" + +#: wx-xrc-strings.h:354 +msgid "Simple 2X" +msgstr "" + +#: wx-xrc-strings.h:355 +msgid "Simple 3x" +msgstr "" + +#: wx-xrc-strings.h:356 +msgid "HQ 3x" +msgstr "" + +#: wx-xrc-strings.h:357 +msgid "Simple 4x" +msgstr "" + +#: wx-xrc-strings.h:358 +msgid "HQ 4x" +msgstr "" + +#: wx-xrc-strings.h:360 +msgid "Plugin :" +msgstr "" + +#: wx-xrc-strings.h:361 +msgid "Interframe blending :" +msgstr "" + +#: wx-xrc-strings.h:363 +msgid "Smart interframe blending" +msgstr "" + +#: wx-xrc-strings.h:364 +msgid "Interframe motion blur" +msgstr "" + +#: wx-xrc-strings.h:365 wx-xrc-strings.h:386 +msgid "Advanced" +msgstr "" + +#: wx-xrc-strings.h:366 +msgid "Display settings" +msgstr "" + +#: wx-xrc-strings.h:367 +msgid "Volume :" +msgstr "" + +#: wx-xrc-strings.h:368 +msgid "Mute" +msgstr "" + +#: wx-xrc-strings.h:370 wx-xrc-strings.h:401 +msgid "Maximum" +msgstr "" + +#: wx-xrc-strings.h:371 +msgid "Sample rate :" +msgstr "" + +#: wx-xrc-strings.h:372 +msgid "48 KHz" +msgstr "" + +#: wx-xrc-strings.h:373 +msgid "44.1 KHz" +msgstr "" + +#: wx-xrc-strings.h:374 +msgid "22 KHz" +msgstr "" + +#: wx-xrc-strings.h:375 +msgid "11 KHz" +msgstr "" + +#: wx-xrc-strings.h:376 +msgid "Basic" +msgstr "" + +#: wx-xrc-strings.h:377 +msgid "SDL" +msgstr "" + +#: wx-xrc-strings.h:378 +msgid "OpenAL" +msgstr "" + +#: wx-xrc-strings.h:379 +msgid "XAudio2" +msgstr "" + +#: wx-xrc-strings.h:380 +msgid "DirectSound" +msgstr "" + +#: wx-xrc-strings.h:381 +msgid "Device" +msgstr "" + +#: wx-xrc-strings.h:382 +msgid "Enable stereo upmixing" +msgstr "" + +#: wx-xrc-strings.h:383 +msgid "Enable hardware acceleration" +msgstr "" + +#: wx-xrc-strings.h:384 +msgid "&Sync game to audio" +msgstr "" + +#: wx-xrc-strings.h:385 +msgid "Number of sound buffers:" +msgstr "" + +#: wx-xrc-strings.h:387 +msgid "Declicking" +msgstr "" + +#: wx-xrc-strings.h:388 wx-xrc-strings.h:389 +msgid "Enhance sound" +msgstr "" + +#: wx-xrc-strings.h:390 +msgid "Surround" +msgstr "" + +#: wx-xrc-strings.h:392 +msgid "Lots" +msgstr "" + +#: wx-xrc-strings.h:393 +msgid "Echo" +msgstr "" + +#: wx-xrc-strings.h:394 +msgid "Stereo" +msgstr "" + +#: wx-xrc-strings.h:395 +msgid "Center" +msgstr "" + +#: wx-xrc-strings.h:396 +msgid "Left/Right" +msgstr "" + +#: wx-xrc-strings.h:398 +msgid "Sound interpolation" +msgstr "" + +#: wx-xrc-strings.h:399 +msgid "Sound filtering" +msgstr "" + +#: wx-xrc-strings.h:403 +msgid "Sound Settings" +msgstr "" + +#: wx-xrc-strings.h:404 +msgid "Game Boy Advance ROMs" +msgstr "" + +#: wx-xrc-strings.h:405 +msgid "Game Boy ROMs" +msgstr "" + +#: wx-xrc-strings.h:406 +msgid "Native Saves" +msgstr "" + +#: wx-xrc-strings.h:407 +msgid "Emulator Saves" +msgstr "" + +#: wx-xrc-strings.h:408 +msgid "Screenshots" +msgstr "" + +#: wx-xrc-strings.h:409 +msgid "Recordings" +msgstr "" + +#: wx-xrc-strings.h:410 +msgid "Directories config" +msgstr "" + +#: wx-xrc-strings.h:411 +msgid "Player 1" +msgstr "" + +#: wx-xrc-strings.h:412 +msgid "Player 2" +msgstr "" + +#: wx-xrc-strings.h:413 +msgid "Player 3" +msgstr "" + +#: wx-xrc-strings.h:414 +msgid "Player 4" +msgstr "" + +#: wx-xrc-strings.h:415 +msgid "Joypad Configuration" +msgstr "" + +#: wx-xrc-strings.h:416 +msgid "" +"Click a field and press a key or move joystick to add. Press backspace to " +"delete last added key. Resize window or click inside and move pointer to " +"see entire contents if too small." +msgstr "" + +#: wx-xrc-strings.h:417 +msgid "Up" +msgstr "" + +#: wx-xrc-strings.h:418 +msgid "A" +msgstr "" + +#: wx-xrc-strings.h:419 +msgid "Down" +msgstr "" + +#: wx-xrc-strings.h:420 +msgid "B" +msgstr "" + +#: wx-xrc-strings.h:421 +msgid "Left" +msgstr "" + +#: wx-xrc-strings.h:422 +msgid "L" +msgstr "" + +#: wx-xrc-strings.h:423 +msgid "Right" +msgstr "" + +#: wx-xrc-strings.h:424 +msgid "R" +msgstr "" + +#: wx-xrc-strings.h:425 +msgid "Select" +msgstr "" + +#: wx-xrc-strings.h:426 +msgid "Start" +msgstr "" + +#: wx-xrc-strings.h:428 +msgid "Motion Up" +msgstr "" + +#: wx-xrc-strings.h:429 +msgid "Autofire A" +msgstr "" + +#: wx-xrc-strings.h:430 +msgid "Motion Down" +msgstr "" + +#: wx-xrc-strings.h:431 +msgid "Autofire B" +msgstr "" + +#: wx-xrc-strings.h:432 +msgid "Motion Left" +msgstr "" + +#: wx-xrc-strings.h:433 +msgid "Motion Right" +msgstr "" + +#: wx-xrc-strings.h:435 +msgid "Speed Up" +msgstr "" + +#: wx-xrc-strings.h:436 +msgid "Screenshot" +msgstr "" + +#: wx-xrc-strings.h:437 +msgid "Special" +msgstr "" + +#: wx-xrc-strings.h:438 +msgid "Use as default" +msgstr "" + +#: wx-xrc-strings.h:439 +msgid "Defaults" +msgstr "" + +#: wx-xrc-strings.h:440 +msgid "Clear" +msgstr "" + +#: wx-xrc-strings.h:441 +msgid "Link Options" +msgstr "" + +#: wx-xrc-strings.h:442 +msgid "Enable joybus" +msgstr "" + +#: wx-xrc-strings.h:443 +msgid "Joybus host" +msgstr "" + +#: wx-xrc-strings.h:444 +msgid "Enable link" +msgstr "" + +#: wx-xrc-strings.h:445 +msgid "Enable wireless" +msgstr "" + +#: wx-xrc-strings.h:446 +msgid "" +"Please note that this is the first version of RFU emulation code and it's " +"probably got more bugs than the link code. Also, it is only supported with " +"2 players in local mode." +msgstr "" + +#: wx-xrc-strings.h:447 +msgid "Link timeout (in milliseconds)" +msgstr "" + +#: wx-xrc-strings.h:448 +msgid "Co&mmands:" +msgstr "" + +#: wx-xrc-strings.h:449 +msgid "Current Keys:" +msgstr "" + +#: wx-xrc-strings.h:450 +msgid "&Assign" +msgstr "" + +#: wx-xrc-strings.h:451 +msgid "&Remove" +msgstr "" + +#: wx-xrc-strings.h:452 +msgid "Re&set All" +msgstr "" + +#: wx-xrc-strings.h:453 +msgid "Currently assigned to:" +msgstr "" + +#: wx-xrc-strings.h:454 +msgid "Shortcut Key:" +msgstr "" + +#: wx-xrc-strings.h:455 +msgid "Accelerator Editor" +msgstr "" + +#: wx-xrc-strings.h:456 +msgid "&Automatic" +msgstr "" + +#: wx-xrc-strings.h:457 +msgid "A&RM" +msgstr "" + +#: wx-xrc-strings.h:458 +msgid "&THUMB" +msgstr "" + +#: wx-xrc-strings.h:459 wx-xrc-strings.h:508 wx-xrc-strings.h:615 +msgid "&Go" +msgstr "" + +#: wx-xrc-strings.h:460 +msgid "R0:" +msgstr "" + +#: wx-xrc-strings.h:461 wx-xrc-strings.h:463 wx-xrc-strings.h:465 +#: wx-xrc-strings.h:467 wx-xrc-strings.h:469 wx-xrc-strings.h:471 +#: wx-xrc-strings.h:473 wx-xrc-strings.h:475 wx-xrc-strings.h:477 +#: wx-xrc-strings.h:479 wx-xrc-strings.h:481 wx-xrc-strings.h:483 +#: wx-xrc-strings.h:485 wx-xrc-strings.h:487 wx-xrc-strings.h:489 +#: wx-xrc-strings.h:491 wx-xrc-strings.h:493 +msgid "00000000" +msgstr "" + +#: wx-xrc-strings.h:462 +msgid "R1:" +msgstr "" + +#: wx-xrc-strings.h:464 +msgid "R2:" +msgstr "" + +#: wx-xrc-strings.h:466 +msgid "R3:" +msgstr "" + +#: wx-xrc-strings.h:468 +msgid "R4:" +msgstr "" + +#: wx-xrc-strings.h:470 +msgid "R5:" +msgstr "" + +#: wx-xrc-strings.h:472 +msgid "R6:" +msgstr "" + +#: wx-xrc-strings.h:474 +msgid "R7:" +msgstr "" + +#: wx-xrc-strings.h:476 +msgid "R8:" +msgstr "" + +#: wx-xrc-strings.h:478 +msgid "R9:" +msgstr "" + +#: wx-xrc-strings.h:480 +msgid "R10:" +msgstr "" + +#: wx-xrc-strings.h:482 +msgid "R11:" +msgstr "" + +#: wx-xrc-strings.h:484 +msgid "R12:" +msgstr "" + +#: wx-xrc-strings.h:486 wx-xrc-strings.h:517 +msgid "SP:" +msgstr "" + +#: wx-xrc-strings.h:488 +msgid "LR:" +msgstr "" + +#: wx-xrc-strings.h:490 wx-xrc-strings.h:519 +msgid "PC:" +msgstr "" + +#: wx-xrc-strings.h:492 +msgid "CPSR:" +msgstr "" + +#: wx-xrc-strings.h:494 wx-xrc-strings.h:526 +msgid "N" +msgstr "" + +#: wx-xrc-strings.h:495 +msgid "I" +msgstr "" + +#: wx-xrc-strings.h:496 wx-xrc-strings.h:525 +msgid "Z" +msgstr "" + +#: wx-xrc-strings.h:497 +msgid "F" +msgstr "" + +#: wx-xrc-strings.h:498 wx-xrc-strings.h:528 +msgid "C" +msgstr "" + +#: wx-xrc-strings.h:499 +msgid "T" +msgstr "" + +#: wx-xrc-strings.h:500 +msgid "V" +msgstr "" + +#: wx-xrc-strings.h:501 wx-xrc-strings.h:582 wx-xrc-strings.h:628 +msgid "Mode:" +msgstr "" + +#: wx-xrc-strings.h:502 wx-xrc-strings.h:524 +msgid "00" +msgstr "" + +#: wx-xrc-strings.h:503 wx-xrc-strings.h:529 wx-xrc-strings.h:569 +#: wx-xrc-strings.h:616 wx-xrc-strings.h:637 wx-xrc-strings.h:649 +#: wx-xrc-strings.h:659 wx-xrc-strings.h:671 wx-xrc-strings.h:686 +#: wx-xrc-strings.h:699 +msgid "Automatic &update" +msgstr "" + +#: wx-xrc-strings.h:504 wx-xrc-strings.h:530 +msgid "G&oto PC" +msgstr "" + +#: wx-xrc-strings.h:505 wx-xrc-strings.h:531 +msgid "Re&fresh" +msgstr "" + +#: wx-xrc-strings.h:506 wx-xrc-strings.h:532 +msgid "&Next" +msgstr "" + +#: wx-xrc-strings.h:507 wx-xrc-strings.h:533 +msgid "Disassemble" +msgstr "" + +#: wx-xrc-strings.h:509 +msgid "AF:" +msgstr "" + +#: wx-xrc-strings.h:510 wx-xrc-strings.h:512 wx-xrc-strings.h:514 +#: wx-xrc-strings.h:516 wx-xrc-strings.h:518 wx-xrc-strings.h:520 +#: wx-xrc-strings.h:522 +msgid "0000" +msgstr "" + +#: wx-xrc-strings.h:511 +msgid "BC:" +msgstr "" + +#: wx-xrc-strings.h:513 +msgid "DE:" +msgstr "" + +#: wx-xrc-strings.h:515 +msgid "HL:" +msgstr "" + +#: wx-xrc-strings.h:521 +msgid "IFF:" +msgstr "" + +#: wx-xrc-strings.h:523 +msgid "LY:" +msgstr "" + +#: wx-xrc-strings.h:527 +msgid "H" +msgstr "" + +#: wx-xrc-strings.h:534 +msgid "SW&I" +msgstr "" + +#: wx-xrc-strings.h:535 +msgid "Unaligned &memory" +msgstr "" + +#: wx-xrc-strings.h:536 +msgid "Illegal &write" +msgstr "" + +#: wx-xrc-strings.h:537 +msgid "Illegal &read" +msgstr "" + +#: wx-xrc-strings.h:538 +msgid "DMA &0" +msgstr "" + +#: wx-xrc-strings.h:539 +msgid "DMA &1" +msgstr "" + +#: wx-xrc-strings.h:540 +msgid "DMA &2" +msgstr "" + +#: wx-xrc-strings.h:541 +msgid "DMA &3" +msgstr "" + +#: wx-xrc-strings.h:542 +msgid "&Undefined instruction" +msgstr "" + +#: wx-xrc-strings.h:543 +msgid "&AGBPrint" +msgstr "" + +#: wx-xrc-strings.h:544 +msgid "Soun&d output" +msgstr "" + +#: wx-xrc-strings.h:545 +msgid "Verbose" +msgstr "" + +#: wx-xrc-strings.h:546 wx-xrc-strings.h:595 wx-xrc-strings.h:610 +msgid "&Save" +msgstr "" + +#: wx-xrc-strings.h:548 +msgid "Logging" +msgstr "" + +#: wx-xrc-strings.h:549 +msgid "I/O Viewer" +msgstr "" + +#: wx-xrc-strings.h:550 +msgid "a" +msgstr "" + +#: wx-xrc-strings.h:551 +msgid "b" +msgstr "" + +#: wx-xrc-strings.h:552 wx-xrc-strings.h:658 wx-xrc-strings.h:670 +msgid "Value:" +msgstr "" + +#: wx-xrc-strings.h:553 +msgid "15 " +msgstr "" + +#: wx-xrc-strings.h:554 +msgid "14 " +msgstr "" + +#: wx-xrc-strings.h:555 +msgid "13 " +msgstr "" + +#: wx-xrc-strings.h:556 +msgid "12 " +msgstr "" + +#: wx-xrc-strings.h:557 +msgid "11 " +msgstr "" + +#: wx-xrc-strings.h:558 +msgid "10 " +msgstr "" + +#: wx-xrc-strings.h:559 +msgid "9 " +msgstr "" + +#: wx-xrc-strings.h:560 +msgid "8 " +msgstr "" + +#: wx-xrc-strings.h:561 +msgid "7 " +msgstr "" + +#: wx-xrc-strings.h:562 +msgid "6 " +msgstr "" + +#: wx-xrc-strings.h:563 +msgid "5 " +msgstr "" + +#: wx-xrc-strings.h:564 +msgid "4 " +msgstr "" + +#: wx-xrc-strings.h:565 +msgid "3 " +msgstr "" + +#: wx-xrc-strings.h:566 +msgid "2 " +msgstr "" + +#: wx-xrc-strings.h:567 +msgid "1 " +msgstr "" + +#: wx-xrc-strings.h:568 +msgid "0 " +msgstr "" + +#: wx-xrc-strings.h:570 wx-xrc-strings.h:594 wx-xrc-strings.h:609 +#: wx-xrc-strings.h:618 wx-xrc-strings.h:638 wx-xrc-strings.h:650 +#: wx-xrc-strings.h:661 wx-xrc-strings.h:672 wx-xrc-strings.h:689 +#: wx-xrc-strings.h:702 +msgid "&Refresh" +msgstr "" + +#: wx-xrc-strings.h:571 wx-xrc-strings.h:611 +msgid "Map view" +msgstr "" + +#: wx-xrc-strings.h:572 +msgid "Frame 0" +msgstr "" + +#: wx-xrc-strings.h:573 +msgid "Frame 1" +msgstr "" + +#: wx-xrc-strings.h:574 +msgid "Frame" +msgstr "" + +#: wx-xrc-strings.h:575 +msgid "BG0" +msgstr "" + +#: wx-xrc-strings.h:576 +msgid "BG1" +msgstr "" + +#: wx-xrc-strings.h:577 +msgid "BG2" +msgstr "" + +#: wx-xrc-strings.h:578 +msgid "BG3" +msgstr "" + +#: wx-xrc-strings.h:580 wx-xrc-strings.h:602 wx-xrc-strings.h:636 +#: wx-xrc-strings.h:648 wx-xrc-strings.h:685 wx-xrc-strings.h:698 +msgid "Stretch to &fit" +msgstr "" + +#: wx-xrc-strings.h:581 wx-xrc-strings.h:603 +msgid "Auto &update" +msgstr "" + +#: wx-xrc-strings.h:583 +msgid "Map Base:" +msgstr "" + +#: wx-xrc-strings.h:584 +msgid "Char Base:" +msgstr "" + +#: wx-xrc-strings.h:585 wx-xrc-strings.h:623 wx-xrc-strings.h:633 +msgid "Size:" +msgstr "" + +#: wx-xrc-strings.h:586 wx-xrc-strings.h:629 +msgid "Colors:" +msgstr "" + +#: wx-xrc-strings.h:587 wx-xrc-strings.h:608 +msgid "Priority:" +msgstr "" + +#: wx-xrc-strings.h:588 +msgid "Mosaic:" +msgstr "" + +#: wx-xrc-strings.h:589 +msgid "Overflow:" +msgstr "" + +#: wx-xrc-strings.h:590 wx-xrc-strings.h:604 wx-xrc-strings.h:622 +#: wx-xrc-strings.h:657 wx-xrc-strings.h:688 wx-xrc-strings.h:701 +msgid "Address:" +msgstr "" + +#: wx-xrc-strings.h:591 wx-xrc-strings.h:605 wx-xrc-strings.h:631 +#: wx-xrc-strings.h:642 wx-xrc-strings.h:687 wx-xrc-strings.h:700 +msgid "Tile:" +msgstr "" + +#: wx-xrc-strings.h:592 wx-xrc-strings.h:606 +msgid "Flip:" +msgstr "" + +#: wx-xrc-strings.h:593 wx-xrc-strings.h:607 wx-xrc-strings.h:684 +#: wx-xrc-strings.h:697 +msgid "Palette:" +msgstr "" + +#: wx-xrc-strings.h:596 +msgid "0x8000" +msgstr "" + +#: wx-xrc-strings.h:597 +msgid "0x8800" +msgstr "" + +#: wx-xrc-strings.h:598 wx-xrc-strings.h:683 wx-xrc-strings.h:696 +msgid "Char Base" +msgstr "" + +#: wx-xrc-strings.h:599 +msgid "0x9800" +msgstr "" + +#: wx-xrc-strings.h:600 +msgid "0x9C00" +msgstr "" + +#: wx-xrc-strings.h:601 +msgid "Map Base" +msgstr "" + +#: wx-xrc-strings.h:612 +msgid "&8-bit" +msgstr "" + +#: wx-xrc-strings.h:613 +msgid "&16-bit" +msgstr "" + +#: wx-xrc-strings.h:614 +msgid "&32-bit" +msgstr "" + +#: wx-xrc-strings.h:617 +msgid "Current address:" +msgstr "" + +#: wx-xrc-strings.h:619 +msgid "&Load..." +msgstr "" + +#: wx-xrc-strings.h:620 wx-xrc-strings.h:639 wx-xrc-strings.h:651 +#: wx-xrc-strings.h:690 wx-xrc-strings.h:703 +msgid "&Save..." +msgstr "" + +#: wx-xrc-strings.h:621 +msgid "Memory viewer" +msgstr "" + +#: wx-xrc-strings.h:624 +msgid "Enter address and size" +msgstr "" + +#: wx-xrc-strings.h:625 wx-xrc-strings.h:652 +msgid "OAM Viewer" +msgstr "" + +#: wx-xrc-strings.h:626 wx-xrc-strings.h:640 +msgid "Sprite:" +msgstr "" + +#: wx-xrc-strings.h:627 wx-xrc-strings.h:641 +msgid "Pos:" +msgstr "" + +#: wx-xrc-strings.h:630 wx-xrc-strings.h:645 +msgid "Pal:" +msgstr "" + +#: wx-xrc-strings.h:632 wx-xrc-strings.h:643 +msgid "Prio:" +msgstr "" + +#: wx-xrc-strings.h:634 +msgid "Rot.:" +msgstr "" + +#: wx-xrc-strings.h:635 wx-xrc-strings.h:646 +msgid "Flags:" +msgstr "" + +#: wx-xrc-strings.h:644 +msgid "OAP:" +msgstr "" + +#: wx-xrc-strings.h:647 +msgid "Bank:" +msgstr "" + +#: wx-xrc-strings.h:653 wx-xrc-strings.h:673 +msgid "Palette View" +msgstr "" + +#: wx-xrc-strings.h:654 wx-xrc-strings.h:664 +msgid "Click on a color for more information" +msgstr "" + +#: wx-xrc-strings.h:656 wx-xrc-strings.h:667 +msgid "Sprite" +msgstr "" + +#: wx-xrc-strings.h:660 +msgid "C&hange backdrop color..." +msgstr "" + +#: wx-xrc-strings.h:662 wx-xrc-strings.h:666 +msgid "Save &BG..." +msgstr "" + +#: wx-xrc-strings.h:663 wx-xrc-strings.h:668 +msgid "Save &Sprite..." +msgstr "" + +#: wx-xrc-strings.h:669 +msgid "Index:" +msgstr "" + +#: wx-xrc-strings.h:674 wx-xrc-strings.h:704 +msgid "Tile Viewer" +msgstr "" + +#: wx-xrc-strings.h:675 +msgid "1&6" +msgstr "" + +#: wx-xrc-strings.h:676 +msgid "&256" +msgstr "" + +#: wx-xrc-strings.h:677 +msgid "Colors" +msgstr "" + +#: wx-xrc-strings.h:678 +msgid "0x600&0000" +msgstr "" + +#: wx-xrc-strings.h:679 +msgid "0x600&4000" +msgstr "" + +#: wx-xrc-strings.h:680 +msgid "0x600&8000" +msgstr "" + +#: wx-xrc-strings.h:681 +msgid "0x600&C000" +msgstr "" + +#: wx-xrc-strings.h:682 +msgid "0x60&10000" +msgstr "" + +#: wx-xrc-strings.h:691 +msgid "&0" +msgstr "" + +#: wx-xrc-strings.h:693 +msgid "VRAM Bank" +msgstr "" + +#: wx-xrc-strings.h:694 +msgid "0x&8000" +msgstr "" + +#: wx-xrc-strings.h:695 +msgid "0x&8800" +msgstr "" diff --git a/project/vs2010_mfc/VBA2010.sln b/project/vs2010_mfc/VBA2010.sln index 819bc40f..e5211571 100644 --- a/project/vs2010_mfc/VBA2010.sln +++ b/project/vs2010_mfc/VBA2010.sln @@ -30,10 +30,10 @@ Global {823DDC98-42D5-4A38-88CF-9DC06C788AE4}.Debug|Win32.Build.0 = Debug|Win32 {823DDC98-42D5-4A38-88CF-9DC06C788AE4}.Release|Win32.ActiveCfg = Release|Win32 {823DDC98-42D5-4A38-88CF-9DC06C788AE4}.Release|Win32.Build.0 = Release|Win32 - {0008960E-E0DD-41A6-8265-00B31DDB4C21}.Debug|Win32.ActiveCfg = LIB Debug|Win32 - {0008960E-E0DD-41A6-8265-00B31DDB4C21}.Debug|Win32.Build.0 = LIB Debug|Win32 - {0008960E-E0DD-41A6-8265-00B31DDB4C21}.Release|Win32.ActiveCfg = LIB Release|Win32 - {0008960E-E0DD-41A6-8265-00B31DDB4C21}.Release|Win32.Build.0 = LIB Release|Win32 + {0008960E-E0DD-41A6-8265-00B31DDB4C21}.Debug|Win32.ActiveCfg = Debug|Win32 + {0008960E-E0DD-41A6-8265-00B31DDB4C21}.Debug|Win32.Build.0 = Debug|Win32 + {0008960E-E0DD-41A6-8265-00B31DDB4C21}.Release|Win32.ActiveCfg = Release|Win32 + {0008960E-E0DD-41A6-8265-00B31DDB4C21}.Release|Win32.Build.0 = Release|Win32 {7AEC599C-7C82-4F00-AA60-411E0A359CB0}.Debug|Win32.ActiveCfg = Debug|Win32 {7AEC599C-7C82-4F00-AA60-411E0A359CB0}.Debug|Win32.Build.0 = Debug|Win32 {7AEC599C-7C82-4F00-AA60-411E0A359CB0}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/project/vs2010_mfc/VBA2010.suo b/project/vs2010_mfc/VBA2010.suo index d15287be..11229afa 100644 Binary files a/project/vs2010_mfc/VBA2010.suo and b/project/vs2010_mfc/VBA2010.suo differ diff --git a/project/vs2010_mfc/VBA2010.vcxproj b/project/vs2010_mfc/VBA2010.vcxproj index fd6895fc..63c7b4bc 100644 --- a/project/vs2010_mfc/VBA2010.vcxproj +++ b/project/vs2010_mfc/VBA2010.vcxproj @@ -1,4 +1,4 @@ - + @@ -9,10 +9,6 @@ Release Win32 - - Template - Win32 - VisualBoyAdvance-M @@ -22,16 +18,9 @@ - Application - Static - NotSet true - - Application - Static - NotSet - + @@ -47,15 +36,6 @@ <_ProjectFileVersion>10.0.30319.1 - $(ProjectDir)$(Platform)\$(Configuration)\ - $(ProjectDir)$(Platform)\$(Configuration)_temp\ - true - false - true - false - $(ProjectDir)$(Platform)\$(Configuration)\ - $(ProjectDir)$(Platform)\$(Configuration)_temp\ - true AllRules.ruleset @@ -63,20 +43,17 @@ AllRules.ruleset - AllRules.ruleset - - C:\Program Files (x86)\OpenAL 1.1 SDK\libs\Win32;C:\Program Files (x86)\Microsoft DirectX SDK (June 2010)\Lib\x86;$(LibraryPath) - C:\Program Files (x86)\OpenAL 1.1 SDK\libs\Win32;C:\Program Files (x86)\Microsoft DirectX SDK (June 2010)\Lib\x86;$(LibraryPath) C:\Program Files (x86)\OpenAL 1.1 SDK\include;C:\Program Files (x86)\Microsoft DirectX SDK (June 2010)\Include;$(IncludePath) - C:\Program Files (x86)\OpenAL 1.1 SDK\include;C:\Program Files (x86)\Microsoft DirectX SDK (June 2010)\Include;$(IncludePath) %programfiles%\OpenAL 1.1 SDK\include;$(DXSDK_DIR)\Include;$(IncludePath) %programfiles%\OpenAL 1.1 SDK\libs\Win32;$(DXSDK_DIR)\lib\x86;$(LibraryPath) + $(ProjectDir)$(Platform)\$(Configuration)\ + $(ProjectDir)$(Platform)\$(Configuration)_temp\ + $(ProjectDir)$(Platform)\$(Configuration)\ + $(ProjectDir)$(Platform)\$(Configuration)_temp\ - - $(IntDir)$(ProjectName)_BuildLog.htm - + SubWCRev.exe ..\.. svnrev_template.h ..\..\src\svnrev.h @@ -93,43 +70,35 @@ EnableFastChecks false MultiThreadedDebug - Default false - false NotSet - false - $(IntDir)$(ProjectName).pdb Level3 EditAndContinue + true - - _DEBUG;%(PreprocessorDefinitions) - 0x0409 - %(AdditionalIncludeDirectories) - + - nafxcwd.lib;libcmtd.lib;zlibd.lib;libpngd.lib;%(AdditionalDependencies) - $(OutDir)VisualBoyAdvance-M.exe - ..\..\..\dependencies\libpng\project\vs2010\Win32\LIB Debug;..\..\..\dependencies\zlib\project\vs2010\Win32\Debug;%(AdditionalLibraryDirectories) - %(AdditionalManifestDependencies) - nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) - true Windows false false 5.0 + true + nafxcwd.lib;libcmtd.lib;%(AdditionalDependencies) + nafxcwd.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) + false - - $(IntDir)$(ProjectName)_BuildLog.htm + + + SubWCRev.exe ..\.. svnrev_template.h ..\..\src\svnrev.h @@ -143,7 +112,6 @@ /MP %(AdditionalOptions) AnySuitable Speed - true ..\..\fex;..\..\..\dependencies\libpng;..\..\..\dependencies\msvc;..\..\..\dependencies\SFML\include;..\..\..\dependencies\zlib;%(AdditionalIncludeDirectories) WIN32;_WINDOWS;NDEBUG;GBA_LOGGING;OEMRESOURCE;MMX;ASM;FINAL_VERSION;BKPT_SUPPORT;_CRT_SECURE_NO_DEPRECATE;HAS_FILE_EXTRACTOR;%(PreprocessorDefinitions) MultiThreaded @@ -151,36 +119,37 @@ Fast - true true true true true - true Level3 + true + + - - NDEBUG;%(PreprocessorDefinitions) - %(AdditionalIncludeDirectories) - + - nafxcw.lib;libcmt.lib;zlib.lib;libpng.lib;%(AdditionalDependencies) + nafxcw.lib;libcmt.lib;%(AdditionalDependencies) - ..\..\..\dependencies\libpng\project\vs2010\Win32\LIB Release;..\..\..\dependencies\zlib\project\vs2010\Win32\Release;%(AdditionalLibraryDirectories) - %(AdditionalManifestDependencies) - nafxcw.lib;libcmt.lib;libcmtd.lib;%(IgnoreSpecificDefaultLibraries) - false + nafxcw.lib;libcmt.lib;%(IgnoreSpecificDefaultLibraries) Windows 5.0 true true true + + false 1 + + + $(IntDir)$(ProjectName)_BuildLog.htm + @@ -693,13 +662,13 @@ {823ddc98-42d5-4a38-88cf-9dc06c788ae4} false + + {3e03c179-8251-46e4-81f4-466f114bac63} + {7aec599c-7c82-4f00-aa60-411e0a359cb0} false - - {3e03c179-8251-46e4-81f4-466f114bac63} - diff --git a/src/Util.cpp b/src/Util.cpp index e83def95..bb346a09 100644 --- a/src/Util.cpp +++ b/src/Util.cpp @@ -436,17 +436,12 @@ static bool utilIsImage(const char *file) } #ifdef WIN32 -#include +#include #endif IMAGE_TYPE utilFindType(const char *file) { char buffer [2048]; - utilFindType(file, buffer); -} - -IMAGE_TYPE utilFindType(const char *file, char (&buffer)[2048]) -{ #ifdef WIN32 DWORD dwNum = MultiByteToWideChar (CP_ACP, 0, file, -1, NULL, 0); wchar_t *pwText; diff --git a/src/Util.h b/src/Util.h index 7393e7a2..cee770be 100644 --- a/src/Util.h +++ b/src/Util.h @@ -23,7 +23,6 @@ bool utilIsGBImage(const char *); bool utilIsGzipFile(const char *); void utilStripDoubleExtension(const char *, char *); IMAGE_TYPE utilFindType(const char *); -IMAGE_TYPE utilFindType(const char *, char (&)[2048]); u8 *utilLoad(const char *, bool (*)(const char*), u8 *, int &); void utilPutDword(u8 *, u32); diff --git a/src/common/memgzio.c b/src/common/memgzio.c index e82f0db3..529cc832 100644 --- a/src/common/memgzio.c +++ b/src/common/memgzio.c @@ -700,18 +700,20 @@ long ZEXPORT memtell(file) z_off_t ZEXPORT memgzseek(gzFile file, z_off_t off, int whence) { - if(whence != SEEK_CUR) { - fputs("FIXME: memgzio does not support seeking\n", stderr); - exit(1); - } - // this is inefficient, but the best I can do without actually reading - // the above code - char buf[80]; - while(off > 0) { - int r = memgzread(file, buf, off > 80 ? 80 : off); - if(r <= 0) - return -1; - off -= r; - } - return memtell(file); + char buf[80]; + + if(whence != SEEK_CUR) { + fputs("FIXME: memgzio does not support seeking\n", stderr); + exit(1); + } + + // this is inefficient, but the best I can do without actually reading + // the above code + while(off > 0) { + int r = memgzread(file, buf, off > 80 ? 80 : off); + if(r <= 0) + return -1; + off -= r; + } + return memtell(file); } diff --git a/src/gb/gbGlobals.cpp b/src/gb/gbGlobals.cpp index de944c5d..4977853f 100644 --- a/src/gb/gbGlobals.cpp +++ b/src/gb/gbGlobals.cpp @@ -27,11 +27,11 @@ bool genericflashcardEnable = false; int gbCgbMode = 0; u16 gbColorFilter[32768]; -bool gbColorOption = false; +int gbColorOption = 0; int gbPaletteOption = 0; int gbEmulatorType = 0; -bool gbBorderOn = true; -bool gbBorderAutomatic = false; +int gbBorderOn = 0; +int gbBorderAutomatic = 0; int gbBorderLineSkip = 160; int gbBorderRowSkip = 0; int gbBorderColumnSkip = 0; diff --git a/src/gb/gbGlobals.h b/src/gb/gbGlobals.h index 415c7455..d6c19b6c 100644 --- a/src/gb/gbGlobals.h +++ b/src/gb/gbGlobals.h @@ -25,11 +25,11 @@ extern u8 *gbMemoryMap[16]; extern int gbFrameSkip; extern u16 gbColorFilter[32768]; -extern bool gbColorOption; +extern int gbColorOption; extern int gbPaletteOption; extern int gbEmulatorType; -extern bool gbBorderOn; -extern bool gbBorderAutomatic; +extern int gbBorderOn; +extern int gbBorderAutomatic; extern int gbCgbMode; extern int gbSgbMode; extern int gbWindowLine; diff --git a/src/gba/GBA-arm.cpp b/src/gba/GBA-arm.cpp index c5c14c65..cc711bc9 100644 --- a/src/gba/GBA-arm.cpp +++ b/src/gba/GBA-arm.cpp @@ -298,7 +298,7 @@ static void count(u32 opcode, int cond_res) #define EMIT0(op) #op"; " #define EMIT1(op,arg) #op" "arg"; " #define EMIT2(op,src,dest) #op" "src", "dest"; " - #define CONST(val) "$"#val + #define KONST(val) "$"#val #define ASMVAR(cvar) ASMVAR2 (__USER_LABEL_PREFIX__, cvar) #define ASMVAR2(prefix,cvar) STRING (prefix) cvar #define STRING(x) #x @@ -331,7 +331,7 @@ static void count(u32 opcode, int cond_res) #define EMIT0(op) __asm op #define EMIT1(op,arg) __asm op arg #define EMIT2(op,src,dest) __asm op dest, src - #define CONST(val) val + #define KONST(val) val #define VAR(var) var #define VARL(var) dword ptr var #define REGREF1(index) reg[index] @@ -350,15 +350,15 @@ static void count(u32 opcode, int cond_res) // Helper macros for loading value / shift count #define VALUE_LOAD_IMM \ - EMIT2(and, CONST(0x0F), eax) \ + EMIT2(and, KONST(0x0F), eax) \ EMIT2(mov, REGREF2(eax,4), eax) \ - EMIT2(shr, CONST(7), ecx) \ - EMIT2(and, CONST(0x1F), ecx) + EMIT2(shr, KONST(7), ecx) \ + EMIT2(and, KONST(0x1F), ecx) #define VALUE_LOAD_REG \ - EMIT2(and, CONST(0x0F), eax) \ + EMIT2(and, KONST(0x0F), eax) \ EMIT2(mov, REGREF2(eax,4), eax) \ EMIT2(movzx, ch, ecx) \ - EMIT2(and, CONST(0x0F), ecx) \ + EMIT2(and, KONST(0x0F), ecx) \ EMIT2(mov, REGREF2(ecx,4), ecx) // Helper macros for setting flags @@ -382,13 +382,13 @@ static void count(u32 opcode, int cond_res) ALU_HEADER \ LOAD_C_FLAG \ EMIT2(mov, ecx, edx) \ - EMIT2(shr, CONST(14), edx) \ + EMIT2(shr, KONST(14), edx) \ EMIT2(mov, ecx, eax) \ EMIT2(mov, ecx, esi) \ - EMIT2(shr, CONST(10), esi) \ - EMIT2(and, CONST(0x3C), edx) \ + EMIT2(shr, KONST(10), esi) \ + EMIT2(and, KONST(0x3C), edx) \ EMIT2(mov, REGREF1(edx), edx) \ - EMIT2(and, CONST(0x3C), esi) + EMIT2(and, KONST(0x3C), esi) #define LOAD_C_FLAG_YES EMIT2(mov, VAR(C_FLAG), bl) #define LOAD_C_FLAG_NO /*nothing*/ @@ -416,14 +416,14 @@ static void count(u32 opcode, int cond_res) VALUE_LOAD_REG \ EMIT2(test, cl, cl) \ EMIT1(jz, LABELREF(0,f)) \ - EMIT2(cmp, CONST(0x20), cl) \ + EMIT2(cmp, KONST(0x20), cl) \ EMIT1(je, LABELREF(1,f)) \ EMIT1(ja, LABELREF(2,f)) \ EMIT2(shl, cl, eax) \ EMIT1(setc, bl) \ EMIT1(jmp, LABELREF(0,f)) \ LABEL(1) \ - EMIT2(test, CONST(1), al) \ + EMIT2(test, KONST(1), al) \ EMIT1(setnz, bl) \ EMIT2(xor, eax, eax) \ EMIT1(jmp, LABELREF(0,f)) \ @@ -433,7 +433,7 @@ static void count(u32 opcode, int cond_res) LABEL(0) #define VALUE_LSL_REG_NC \ VALUE_LOAD_REG \ - EMIT2(cmp, CONST(0x20), cl) \ + EMIT2(cmp, KONST(0x20), cl) \ EMIT1(jae, LABELREF(1,f)) \ EMIT2(shl, cl, eax) \ EMIT1(jmp, LABELREF(0,f)) \ @@ -467,7 +467,7 @@ static void count(u32 opcode, int cond_res) VALUE_LOAD_REG \ EMIT2(test, cl, cl) \ EMIT1(jz, LABELREF(0,f)) \ - EMIT2(cmp, CONST(0x20), cl) \ + EMIT2(cmp, KONST(0x20), cl) \ EMIT1(je, LABELREF(1,f)) \ EMIT1(ja, LABELREF(2,f)) \ EMIT2(shr, cl, eax) \ @@ -484,7 +484,7 @@ static void count(u32 opcode, int cond_res) LABEL(0) #define VALUE_LSR_REG_NC \ VALUE_LOAD_REG \ - EMIT2(cmp, CONST(0x20), cl) \ + EMIT2(cmp, KONST(0x20), cl) \ EMIT1(jae, LABELREF(1,f)) \ EMIT2(shr, cl, eax) \ EMIT1(jmp, LABELREF(0,f)) \ @@ -500,7 +500,7 @@ static void count(u32 opcode, int cond_res) EMIT1(setc, bl) \ EMIT1(jmp, LABELREF(0,f)) \ LABEL(1) \ - EMIT2(sar, CONST(31), eax) \ + EMIT2(sar, KONST(31), eax) \ EMIT1(sets, bl) \ LABEL(0) #define VALUE_ASR_IMM_NC \ @@ -509,7 +509,7 @@ static void count(u32 opcode, int cond_res) EMIT2(sar, cl, eax) \ EMIT1(jmp, LABELREF(0,f)) \ LABEL(1) \ - EMIT2(sar, CONST(31), eax) \ + EMIT2(sar, KONST(31), eax) \ LABEL(0) // OP Rd,Rb,Rm ASR Rs @@ -517,23 +517,23 @@ static void count(u32 opcode, int cond_res) VALUE_LOAD_REG \ EMIT2(test, cl, cl) \ EMIT1(jz, LABELREF(0,f)) \ - EMIT2(cmp, CONST(0x20), cl) \ + EMIT2(cmp, KONST(0x20), cl) \ EMIT1(jae, LABELREF(1,f)) \ EMIT2(sar, cl, eax) \ EMIT1(setc, bl) \ EMIT1(jmp, LABELREF(0,f)) \ LABEL(1) \ - EMIT2(sar, CONST(31), eax) \ + EMIT2(sar, KONST(31), eax) \ EMIT1(sets, bl) \ LABEL(0) #define VALUE_ASR_REG_NC \ VALUE_LOAD_REG \ - EMIT2(cmp, CONST(0x20), cl) \ + EMIT2(cmp, KONST(0x20), cl) \ EMIT1(jae, LABELREF(1,f)) \ EMIT2(sar, cl, eax) \ EMIT1(jmp, LABELREF(0,f)) \ LABEL(1) \ - EMIT2(sar, CONST(31), eax) \ + EMIT2(sar, KONST(31), eax) \ LABEL(0) // OP Rd,Rb,Rm ROR # @@ -543,8 +543,8 @@ static void count(u32 opcode, int cond_res) EMIT2(ror, cl, eax) \ EMIT1(jmp, LABELREF(0,f)) \ LABEL(1) \ - EMIT2(bt, CONST(0), ebx) \ - EMIT2(rcr, CONST(1), eax) \ + EMIT2(bt, KONST(0), ebx) \ + EMIT2(rcr, KONST(1), eax) \ LABEL(0) \ EMIT1(setc, bl) #define VALUE_ROR_IMM_NC \ @@ -553,14 +553,14 @@ static void count(u32 opcode, int cond_res) EMIT2(ror, cl, eax) \ EMIT1(jmp, LABELREF(0,f)) \ LABEL(1) \ - EMIT2(bt, CONST(0), VARL(C_FLAG)) \ - EMIT2(rcr, CONST(1), eax) \ + EMIT2(bt, KONST(0), VARL(C_FLAG)) \ + EMIT2(rcr, KONST(1), eax) \ LABEL(0) // OP Rd,Rb,Rm ROR Rs #define VALUE_ROR_REG_C \ VALUE_LOAD_REG \ - EMIT2(bt, CONST(0), ebx) \ + EMIT2(bt, KONST(0), ebx) \ EMIT2(ror, cl, eax) \ EMIT1(setc, bl) #define VALUE_ROR_REG_NC \ @@ -572,7 +572,7 @@ static void count(u32 opcode, int cond_res) EMIT2(movzx, ch, ecx) \ EMIT2(add, ecx, ecx) \ EMIT2(movzx, al, eax) \ - EMIT2(bt, CONST(0), ebx) \ + EMIT2(bt, KONST(0), ebx) \ EMIT2(ror, cl, eax) \ EMIT1(setc, bl) #define VALUE_IMM_NC \ @@ -585,7 +585,7 @@ static void count(u32 opcode, int cond_res) // Set condition codes iff the destination register is not R15 (PC) #define CHECK_PC(OP, SETCOND) \ - EMIT2(cmp, CONST(0x3C), esi) \ + EMIT2(cmp, KONST(0x3C), esi) \ EMIT1(je, LABELREF(8,f)) \ OP SETCOND \ EMIT1(jmp, LABELREF(9,f)) \ @@ -614,18 +614,18 @@ static void count(u32 opcode, int cond_res) EMIT2(mov, edx, REGREF1(esi)) #define OP_ADDS CHECK_PC(OP_ADD, SETCOND_ADD) #define OP_ADC \ - EMIT2(bt, CONST(0), VARL(C_FLAG)) \ + EMIT2(bt, KONST(0), VARL(C_FLAG)) \ EMIT2(adc, eax, edx) \ EMIT2(mov, edx, REGREF1(esi)) #define OP_ADCS CHECK_PC(OP_ADC, SETCOND_ADD) #define OP_SBC \ - EMIT2(bt, CONST(0), VARL(C_FLAG)) \ + EMIT2(bt, KONST(0), VARL(C_FLAG)) \ EMIT0(cmc) \ EMIT2(sbb, eax, edx) \ EMIT2(mov, edx, REGREF1(esi)) #define OP_SBCS CHECK_PC(OP_SBC, SETCOND_SUB) #define OP_RSC \ - EMIT2(bt, CONST(0), VARL(C_FLAG)) \ + EMIT2(bt, KONST(0), VARL(C_FLAG)) \ EMIT0(cmc) \ EMIT2(sbb, edx, eax) \ EMIT2(mov, eax, REGREF1(esi)) @@ -678,7 +678,7 @@ static void count(u32 opcode, int cond_res) : "0" (offset), "c" (shift)); #define RRX_OFFSET \ - asm(EMIT2(btl,CONST(0),VAR(C_FLAG)) \ + asm(EMIT2(btl,KONST(0),VAR(C_FLAG)) \ "rcr $1, %0" \ : "=r" (offset) \ : "0" (offset)); diff --git a/src/gba/GBA-thumb.cpp b/src/gba/GBA-thumb.cpp index d18c7a29..c28fc9fd 100644 --- a/src/gba/GBA-thumb.cpp +++ b/src/gba/GBA-thumb.cpp @@ -301,7 +301,7 @@ static INSN_REGPARM void thumbBreakpoint(u32 opcode) #else #define EMIT1(op,arg) #op" "arg"; " #define EMIT2(op,src,dest) #op" "src", "dest"; " - #define CONST(val) "$"#val + #define KONST(val) "$"#val #define ASMVAR(cvar) ASMVAR2 (__USER_LABEL_PREFIX__, cvar) #define ASMVAR2(prefix,cvar) STRING (prefix) cvar #define STRING(x) #x @@ -328,7 +328,7 @@ static INSN_REGPARM void thumbBreakpoint(u32 opcode) : \ : "r" (value), "r" (reg[dest].I):"1"); #define ADC_RD_RS \ - asm (EMIT2(bt,CONST(0),VAR(C_FLAG)) \ + asm (EMIT2(bt,KONST(0),VAR(C_FLAG)) \ "adc %1, %%ebx;"\ EMIT1(setsb, VAR(N_FLAG)) \ EMIT1(setzb, VAR(Z_FLAG)) \ @@ -346,7 +346,7 @@ static INSN_REGPARM void thumbBreakpoint(u32 opcode) : "=m" (reg[(d)].I)); #define MOV_RN_O8(d) \ asm ("andl $0xFF, %%eax;"\ - EMIT2(movb,CONST(0),VAR(N_FLAG)) \ + EMIT2(movb,KONST(0),VAR(N_FLAG)) \ "movl %%eax, %0;"\ EMIT1(setzb, VAR(Z_FLAG)) \ : "=m" (reg[(d)].I)); @@ -360,7 +360,7 @@ static INSN_REGPARM void thumbBreakpoint(u32 opcode) : \ : "m" (reg[(d)].I)); #define SBC_RD_RS \ - asm volatile (EMIT2(bt,CONST(0),VAR(C_FLAG)) \ + asm volatile (EMIT2(bt,KONST(0),VAR(C_FLAG)) \ "cmc;"\ "sbb %1, %%ebx;"\ EMIT1(setsb, VAR(N_FLAG)) \ @@ -465,9 +465,9 @@ static INSN_REGPARM void thumbBreakpoint(u32 opcode) EMIT1(setcb, VAR(C_FLAG)) \ EMIT1(setob, VAR(V_FLAG)) #define ADD_RD_RS_O3_0(N) \ - EMIT2(movb,CONST(0),VAR(C_FLAG)) \ + EMIT2(movb,KONST(0),VAR(C_FLAG)) \ "add $0,%%ecx;" \ - EMIT2(movb,CONST(0),VAR(V_FLAG)) + EMIT2(movb,KONST(0),VAR(V_FLAG)) #define SUB_RD_RS_RN(N) \ EMIT2(sub,VAR(reg)"+"#N"*4",ecx) \ EMIT1(setncb, VAR(C_FLAG)) \ @@ -477,9 +477,9 @@ static INSN_REGPARM void thumbBreakpoint(u32 opcode) EMIT1(setncb, VAR(C_FLAG)) \ EMIT1(setob, VAR(V_FLAG)) #define SUB_RD_RS_O3_0(N) \ - EMIT2(movb,CONST(1),VAR(C_FLAG)) \ + EMIT2(movb,KONST(1),VAR(C_FLAG)) \ "sub $0,%%ecx;" \ - EMIT2(movb,CONST(0),VAR(V_FLAG)) + EMIT2(movb,KONST(0),VAR(V_FLAG)) #endif #else // !__GNUC__ #define ADD_RD_RS_RN(N) \ diff --git a/src/gba/GBALink.cpp b/src/gba/GBALink.cpp index 613b3454..1c05ff0b 100644 --- a/src/gba/GBALink.cpp +++ b/src/gba/GBALink.cpp @@ -1,7 +1,27 @@ // This file was written by denopqrihg // with major changes by tjm +#include +#include +#include + +int vbaid = 0; +const char *MakeInstanceFilename(const char *Input) +{ + if (vbaid == 0) + return Input; + + static char *result=NULL; + if (result!=NULL) + free(result); + + result = (char *)malloc(strlen(Input)+3); + char *p = strrchr((char *)Input, '.'); + sprintf(result, "%.*s-%d.%s", (int)(p-Input), Input, vbaid+1, p+1); + return result; +} #ifndef NO_LINK + // Joybus bool gba_joybus_enabled = false; @@ -11,8 +31,6 @@ bool gba_link_enabled = false; #define LOCAL_LINK_NAME "VBA link memory" #define IP_LINK_PORT 5738 -#include -#include #include "../common/Port.h" #include "GBA.h" #include "GBALink.h" @@ -144,7 +162,7 @@ sf::IPAddress joybusHostAddr = sf::IPAddress::LocalHost; u8 tspeed = 3; u8 transfer = 0; LINKDATA *linkmem = NULL; -int linkid = 0, vbaid = 0; +int linkid = 0; #if (defined __WIN32__ || defined _WIN32) HANDLE linksync[4]; #else @@ -214,21 +232,6 @@ int StartServer(void); u16 StartRFU(u16); -const char *MakeInstanceFilename(const char *Input) -{ - if (vbaid == 0) - return Input; - - static char *result=NULL; - if (result!=NULL) - free(result); - - result = (char *)malloc(strlen(Input)+3); - char *p = strrchr((char *)Input, '.'); - sprintf(result, "%.*s-%d.%s", (int)(p-Input), Input, vbaid+1, p+1); - return result; -} - void StartLink(u16 value) { if (ioMem == NULL) @@ -1218,7 +1221,7 @@ void LinkServerThread(void *_sid){ fdset.Add(lanlink.tcpsocket); if(lanlink.terminate){ ReleaseSemaphore(linksync[vbaid], 1, NULL); - return; + goto CloseInfoDisplay; } if(fdset.Wait(0.1)==1){ sf::Socket::Status st = @@ -1247,6 +1250,8 @@ void LinkServerThread(void *_sid){ ls.tcpsocket[i].Send(outbuffer, 4); } +CloseInfoDisplay: + delete sid; return; } @@ -1300,7 +1305,8 @@ void lserver::Recv(void){ fdset.Clear(); for(i=0;iLaunch(); - return 0; + return true; } void LinkClientThread(void *_cid){ @@ -1378,7 +1384,8 @@ void LinkClientThread(void *_cid){ // stupid SFML has no way of giving what sort of error occurred // so we'll just have to do a retry loop, I guess. cid->Ping(); - if(lanlink.terminate) return; + if(lanlink.terminate) + goto CloseInfoDisplay; // old code had broken sleep on socket, which isn't // even connected yet // corrected sleep on socket worked, but this is more sane @@ -1401,7 +1408,7 @@ void LinkClientThread(void *_cid){ cid->Ping(); if(lanlink.terminate) { lanlink.tcpsocket.Close(); - return; + goto CloseInfoDisplay; } } linkid = (int)READ16LE(&u16inbuffer[0]); @@ -1420,7 +1427,7 @@ void LinkClientThread(void *_cid){ cid->Ping(); if(lanlink.terminate) { lanlink.tcpsocket.Close(); - return; + goto CloseInfoDisplay; } } @@ -1428,6 +1435,8 @@ void LinkClientThread(void *_cid){ cid->Connected(); +CloseInfoDisplay: + delete cid; return; } @@ -1468,7 +1477,8 @@ void lclient::Recv(void){ // old code used socket # instead of mask again fdset.Add(lanlink.tcpsocket); // old code stripped off ms again - if(fdset.Wait((float)linktimeout / 1000.0)==0){ + if (fdset.Wait((float)(linktimeout / 1000.)) == 0) + { numtransfers = 0; return; } diff --git a/src/gba/GBALink.h b/src/gba/GBALink.h index d67ea1ab..89ed793d 100644 --- a/src/gba/GBALink.h +++ b/src/gba/GBALink.h @@ -51,16 +51,18 @@ enum JOY_CMD_WRITE = 0x15 }; -// Link implementation; only present if enabled +extern const char *MakeInstanceFilename(const char *Input); + #ifndef NO_LINK +// Link implementation #include #include class ServerInfoDisplay { public: - virtual void ShowServerIP(sf::IPAddress addr) = 0; - virtual void ShowConnect(int player) = 0; + virtual void ShowServerIP(const sf::IPAddress& addr) = 0; + virtual void ShowConnect(const int player) = 0; virtual void Ping() = 0; virtual void Connected() = 0; }; @@ -103,9 +105,9 @@ public: class ClientInfoDisplay { public: - virtual void ConnectStart(sf::IPAddress addr) = 0; + virtual void ConnectStart(const sf::IPAddress& addr) = 0; virtual void Ping() = 0; - virtual void ShowConnect(int player, int togo) = 0; + virtual void ShowConnect(const int player, const int togo) = 0; virtual void Connected() = 0; }; @@ -144,13 +146,13 @@ typedef struct { } LANLINKDATA; extern bool gba_joybus_enabled; +extern bool gba_link_enabled; + extern sf::IPAddress joybusHostAddr; extern void JoyBusConnect(); extern void JoyBusShutdown(); extern void JoyBusUpdate(int ticks); -extern bool gba_link_enabled; - extern bool InitLink(); extern void CloseLink(); extern void StartLink(u16); @@ -161,7 +163,6 @@ extern void LinkChildStop(); extern void LinkChildSend(u16); extern void CloseLanLink(); extern void CleanLocalLink(); -extern const char *MakeInstanceFilename(const char *Input); extern LANLINKDATA lanlink; extern int vbaid; extern bool rfu_enabled; @@ -173,15 +174,23 @@ extern int linkid; #else // stubs to keep #ifdef's out of mainline -#define StartLink(x) -#define StartGPLink(x) -#define LinkSSend(x) -#define LinkUpdate(x) -#define JoyBusUpdate(x) -#define InitLink() false -#define CloseLink() -#define gba_link_enabled false -#define gba_joybus_enabled false +const bool gba_joybus_enabled = false; +const bool gba_link_enabled = false; + +inline void JoyBusConnect() { } +inline void JoyBusShutdown() { } +inline void JoyBusUpdate(int) { } + +inline bool InitLink() { return true; } +inline void CloseLink() { } +inline void StartLink(u16) { } +inline void StartGPLink(u16) { } +inline void LinkSSend(u16) { } +inline void LinkUpdate(int) { } +inline void LinkChildStop() { } +inline void LinkChildSend(u16) { } +inline void CloseLanLink() { } +inline void CleanLocalLink() { } #endif #endif /* GBA_GBALINK_H */ diff --git a/src/gtk/gvbam.desktop b/src/gtk/gvbam.desktop index 0d829b4f..2b78ba89 100644 --- a/src/gtk/gvbam.desktop +++ b/src/gtk/gvbam.desktop @@ -1,11 +1,11 @@ -[Desktop Entry] -Version=1.0 -Encoding=UTF-8 -Type=Application -Name=VBA-M -GenericName=GameBoy Advance Emulator -Comment=Nindendo GameBoy Advance Emulator -Exec=gvbam -Icon=vbam -Categories=Application;Game;Emulator;GTK -MimeType=application/x-gameboy-rom;application/x-gameboy-advance-rom;application/x-dmg-rom;application/x-agb-rom;application/x-gb-rom;application/x-gba-rom +[Desktop Entry] +Version=1.0 +Encoding=UTF-8 +Type=Application +Name=VBA-M +GenericName=GameBoy Advance Emulator +Comment=Nindendo GameBoy Advance Emulator +Exec=gvbam +Icon=vbam +Categories=Application;Game;Emulator;GTK +MimeType=application/x-gameboy-rom;application/x-gameboy-advance-rom;application/x-dmg-rom;application/x-agb-rom;application/x-gb-rom;application/x-gba-rom diff --git a/src/gtk/icons/scalable/apps/vbam.svg b/src/gtk/icons/scalable/apps/vbam.svg index 4201ae94..ebebf75e 100644 --- a/src/gtk/icons/scalable/apps/vbam.svg +++ b/src/gtk/icons/scalable/apps/vbam.svg @@ -1,836 +1,836 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Mintendo GameJoy Advance - 2006-11-25 - - - Matteo Drera - - - - - Nintendo Gameboy Advance ;) - - - - - - nintendo - mintendo - gameboy - gamejoy - advance - visualboy - emulator - gba - gb - rom - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Mintendo GameJoy Advance + 2006-11-25 + + + Matteo Drera + + + + + Nintendo Gameboy Advance ;) + + + + + + nintendo + mintendo + gameboy + gamejoy + advance + visualboy + emulator + gba + gb + rom + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/gtk/ui/cheatedit.ui b/src/gtk/ui/cheatedit.ui index 1c3e144e..64bfdc57 100644 --- a/src/gtk/ui/cheatedit.ui +++ b/src/gtk/ui/cheatedit.ui @@ -1,179 +1,179 @@ - - - - - - - - - - - - 5 - Edit cheat - center-on-parent - dialog - - - True - - - True - - - True - 0 - none - - - True - 12 - - - True - True - 31 - - - - - - - - True - <b>Description</b> - True - - - - - False - 0 - - - - - True - 0 - none - - - True - 12 - - - True - model1 - - - - 0 - - - - - - - - - True - <b>Type</b> - True - - - - - False - 1 - - - - - True - 0 - none - - - True - 12 - - - True - True - never - automatic - - - True - True - - - - - - - - - True - <b>Codes</b> - True - - - - - end - 2 - - - - - 1 - - - - - True - end - - - gtk-apply - True - True - True - True - - - False - False - 0 - - - - - gtk-close - True - True - True - True - - - False - False - 1 - - - - - False - end - 0 - - - - - - CheatApplyButton - CheatCancelButton - - - + + + + + + + + + + + + 5 + Edit cheat + center-on-parent + dialog + + + True + + + True + + + True + 0 + none + + + True + 12 + + + True + True + 31 + + + + + + + + True + <b>Description</b> + True + + + + + False + 0 + + + + + True + 0 + none + + + True + 12 + + + True + model1 + + + + 0 + + + + + + + + + True + <b>Type</b> + True + + + + + False + 1 + + + + + True + 0 + none + + + True + 12 + + + True + True + never + automatic + + + True + True + + + + + + + + + True + <b>Codes</b> + True + + + + + end + 2 + + + + + 1 + + + + + True + end + + + gtk-apply + True + True + True + True + + + False + False + 0 + + + + + gtk-close + True + True + True + True + + + False + False + 1 + + + + + False + end + 0 + + + + + + CheatApplyButton + CheatCancelButton + + + diff --git a/src/gtk/ui/cheatlist.ui b/src/gtk/ui/cheatlist.ui index 9baaeb45..59df081f 100644 --- a/src/gtk/ui/cheatlist.ui +++ b/src/gtk/ui/cheatlist.ui @@ -1,180 +1,180 @@ - - - - - - 320 - 260 - 5 - Cheat list - center-on-parent - dialog - - - True - - - True - - - True - Open cheat list - gtk-open - True - document-open - - - False - True - - - - - True - Save cheat list - gtk-save - True - document-save - - - False - True - - - - - True - - - False - True - - - - - True - Add new cheat - gtk-add - True - list-add - - - False - True - - - - - True - Delete selected cheat - gtk-delete - True - list-remove - - - False - True - - - - - True - Delete all cheats - True - gtk-clear - - - False - True - - - - - True - - - False - True - - - - - True - Toggle all Cheats - gtk-markall - True - edit-select-all - - - False - True - - - - - False - 0 - - - - - True - True - - - True - True - never - automatic - - - True - True - - - - - end - 0 - - - - - 1 - - - - - True - end - - - - - - gtk-close - True - True - True - True - - - False - False - 1 - - - - - False - end - 2 - - - - - - button1 - - - + + + + + + 320 + 260 + 5 + Cheat list + center-on-parent + dialog + + + True + + + True + + + True + Open cheat list + gtk-open + True + document-open + + + False + True + + + + + True + Save cheat list + gtk-save + True + document-save + + + False + True + + + + + True + + + False + True + + + + + True + Add new cheat + gtk-add + True + list-add + + + False + True + + + + + True + Delete selected cheat + gtk-delete + True + list-remove + + + False + True + + + + + True + Delete all cheats + True + gtk-clear + + + False + True + + + + + True + + + False + True + + + + + True + Toggle all Cheats + gtk-markall + True + edit-select-all + + + False + True + + + + + False + 0 + + + + + True + True + + + True + True + never + automatic + + + True + True + + + + + end + 0 + + + + + 1 + + + + + True + end + + + + + + gtk-close + True + True + True + True + + + False + False + 1 + + + + + False + end + 2 + + + + + + button1 + + + diff --git a/src/gtk/ui/display.ui b/src/gtk/ui/display.ui index 91d29d6b..54d73bb1 100644 --- a/src/gtk/ui/display.ui +++ b/src/gtk/ui/display.ui @@ -1,278 +1,278 @@ - - - - 600 - 100 - 10 - 100 - 10 - 100 - - - - - - - - - - - - - - - - - - 1x - - - 2x - - - 3x - - - 4x - - - 5x - - - 6x - - - - - 5 - GTK_WIN_POS_CENTER_ON_PARENT - GDK_WINDOW_TYPE_HINT_DIALOG - False - - - True - 2 - - - True - 0 - GTK_SHADOW_NONE - - - True - 12 - - - True - - - True - True - OpenGL - True - True - - - - - True - True - Cairo - True - True - OutputOpenGL - - - 1 - - - - - - - - - True - <b>Output module</b> - True - - - - - False - 1 - - - - - True - 0 - GTK_SHADOW_NONE - - - True - 12 - - - True - - - True - 1 - Default scale : - GTK_JUSTIFY_RIGHT - - - False - - - - - True - ScalingListStore - - - - 0 - - - - - 1 - - - - - - - - - True - <b>Zoom</b> - True - - - - - False - 2 - - - - - True - 0 - GTK_SHADOW_NONE - - - True - 12 - - - True - 2 - 2 - - - True - 1 - Interframe blending : - - - 1 - 2 - GTK_FILL - - - - - True - 1 - Fullscreen filter : - - - GTK_FILL - - - - - True - IBFiltersListStore - - - - 0 - - - - - 1 - 2 - 1 - 2 - - - - - True - FiltersListStore - - - - 0 - - - - - 1 - 2 - - - - - - - - - True - <b>Filters</b> - True - - - - - 3 - - - - - True - GTK_BUTTONBOX_END - - - - - - True - True - True - gtk-close - True - - - 1 - - - - - False - GTK_PACK_END - - - - - - button1 - - - + + + + 600 + 100 + 10 + 100 + 10 + 100 + + + + + + + + + + + + + + + + + + 1x + + + 2x + + + 3x + + + 4x + + + 5x + + + 6x + + + + + 5 + GTK_WIN_POS_CENTER_ON_PARENT + GDK_WINDOW_TYPE_HINT_DIALOG + False + + + True + 2 + + + True + 0 + GTK_SHADOW_NONE + + + True + 12 + + + True + + + True + True + OpenGL + True + True + + + + + True + True + Cairo + True + True + OutputOpenGL + + + 1 + + + + + + + + + True + <b>Output module</b> + True + + + + + False + 1 + + + + + True + 0 + GTK_SHADOW_NONE + + + True + 12 + + + True + + + True + 1 + Default scale : + GTK_JUSTIFY_RIGHT + + + False + + + + + True + ScalingListStore + + + + 0 + + + + + 1 + + + + + + + + + True + <b>Zoom</b> + True + + + + + False + 2 + + + + + True + 0 + GTK_SHADOW_NONE + + + True + 12 + + + True + 2 + 2 + + + True + 1 + Interframe blending : + + + 1 + 2 + GTK_FILL + + + + + True + 1 + Fullscreen filter : + + + GTK_FILL + + + + + True + IBFiltersListStore + + + + 0 + + + + + 1 + 2 + 1 + 2 + + + + + True + FiltersListStore + + + + 0 + + + + + 1 + 2 + + + + + + + + + True + <b>Filters</b> + True + + + + + 3 + + + + + True + GTK_BUTTONBOX_END + + + + + + True + True + True + gtk-close + True + + + 1 + + + + + False + GTK_PACK_END + + + + + + button1 + + + diff --git a/src/gtk/ui/gameboy.ui b/src/gtk/ui/gameboy.ui index ac2ce5c2..743f11cd 100644 --- a/src/gtk/ui/gameboy.ui +++ b/src/gtk/ui/gameboy.ui @@ -1,206 +1,206 @@ - - - - - - - - - - Automatic - - - Game Boy Advance - - - Game Boy Color - - - Super Game Boy - - - Super Game Boy 2 - - - Game Boy - - - - - 5 - GameBoy settings - GTK_WIN_POS_CENTER_ON_PARENT - GDK_WINDOW_TYPE_HINT_DIALOG - False - - - True - - - True - 0 - GTK_SHADOW_NONE - - - True - 12 - - - True - - - True - - - True - Emulated system : - - - - - True - model1 - - - - 0 - - - - - 1 - - - - - - - True - True - Display Super Game Boy borders - True - - - 1 - - - - - True - True - Emulate a Game Boy Printer - True - - - 2 - - - - - - - - - True - <b>System and peripherals</b> - True - - - - - 1 - - - - - True - 0 - GTK_SHADOW_NONE - - - True - 12 - - - True - - - True - True - Use a Game Boy boot ROM file - True - - - - - True - - - True - Boot ROM file : - - - False - - - - - True - - - 1 - - - - - 1 - - - - - - - - - True - <b>Boot ROM</b> - True - - - - - 2 - - - - - True - GTK_BUTTONBOX_END - - - - - - True - True - True - gtk-close - True - - - 1 - - - - - False - GTK_PACK_END - - - - - - button1 - - - + + + + + + + + + + Automatic + + + Game Boy Advance + + + Game Boy Color + + + Super Game Boy + + + Super Game Boy 2 + + + Game Boy + + + + + 5 + GameBoy settings + GTK_WIN_POS_CENTER_ON_PARENT + GDK_WINDOW_TYPE_HINT_DIALOG + False + + + True + + + True + 0 + GTK_SHADOW_NONE + + + True + 12 + + + True + + + True + + + True + Emulated system : + + + + + True + model1 + + + + 0 + + + + + 1 + + + + + + + True + True + Display Super Game Boy borders + True + + + 1 + + + + + True + True + Emulate a Game Boy Printer + True + + + 2 + + + + + + + + + True + <b>System and peripherals</b> + True + + + + + 1 + + + + + True + 0 + GTK_SHADOW_NONE + + + True + 12 + + + True + + + True + True + Use a Game Boy boot ROM file + True + + + + + True + + + True + Boot ROM file : + + + False + + + + + True + + + 1 + + + + + 1 + + + + + + + + + True + <b>Boot ROM</b> + True + + + + + 2 + + + + + True + GTK_BUTTONBOX_END + + + + + + True + True + True + gtk-close + True + + + 1 + + + + + False + GTK_PACK_END + + + + + + button1 + + + diff --git a/src/gtk/ui/gameboyadvance.ui b/src/gtk/ui/gameboyadvance.ui index 346d2fb7..47161e7e 100644 --- a/src/gtk/ui/gameboyadvance.ui +++ b/src/gtk/ui/gameboyadvance.ui @@ -1,265 +1,265 @@ - - - - - - - - - - 64K - - - 128K - - - - - - - - - - Automatic - - - EEPROM - - - SRAM - - - Flash - - - EEPROM + Sensor - - - None - - - - - 5 - Game Boy Advance settings - GTK_WIN_POS_CENTER_ON_PARENT - GDK_WINDOW_TYPE_HINT_DIALOG - False - - - True - - - True - 0 - GTK_SHADOW_NONE - - - True - 12 - - - True - 2 - 2 - - - True - model1 - - - - 0 - - - - - 1 - 2 - 1 - 2 - - - - - True - model2 - - - - 0 - - - - - 1 - 2 - - - - - True - Flash size : - - - 1 - 2 - GTK_FILL - GTK_FILL - - - - - True - Save type : - - - GTK_FILL - GTK_FILL - - - - - - - - - True - <b>Cartridge</b> - True - - - - - 1 - - - - - True - 0 - GTK_SHADOW_NONE - - - True - 12 - - - True - - - True - True - Use a bios file - True - - - - - True - - - True - Bios file : - - - False - - - - - True - - - 1 - - - - - 1 - - - - - - - - - True - <b>Bios</b> - True - - - - - 2 - - - - - True - 0 - GTK_SHADOW_NONE - - - True - 12 - - - True - - - True - True - Enable real-time clock - True - - - - - - - - - True - <b>Real-Time Clock</b> - True - - - - - 3 - - - - - True - GTK_BUTTONBOX_END - - - - - - True - True - True - gtk-close - True - - - 1 - - - - - False - GTK_PACK_END - - - - - - button1 - - - + + + + + + + + + + 64K + + + 128K + + + + + + + + + + Automatic + + + EEPROM + + + SRAM + + + Flash + + + EEPROM + Sensor + + + None + + + + + 5 + Game Boy Advance settings + GTK_WIN_POS_CENTER_ON_PARENT + GDK_WINDOW_TYPE_HINT_DIALOG + False + + + True + + + True + 0 + GTK_SHADOW_NONE + + + True + 12 + + + True + 2 + 2 + + + True + model1 + + + + 0 + + + + + 1 + 2 + 1 + 2 + + + + + True + model2 + + + + 0 + + + + + 1 + 2 + + + + + True + Flash size : + + + 1 + 2 + GTK_FILL + GTK_FILL + + + + + True + Save type : + + + GTK_FILL + GTK_FILL + + + + + + + + + True + <b>Cartridge</b> + True + + + + + 1 + + + + + True + 0 + GTK_SHADOW_NONE + + + True + 12 + + + True + + + True + True + Use a bios file + True + + + + + True + + + True + Bios file : + + + False + + + + + True + + + 1 + + + + + 1 + + + + + + + + + True + <b>Bios</b> + True + + + + + 2 + + + + + True + 0 + GTK_SHADOW_NONE + + + True + 12 + + + True + + + True + True + Enable real-time clock + True + + + + + + + + + True + <b>Real-Time Clock</b> + True + + + + + 3 + + + + + True + GTK_BUTTONBOX_END + + + + + + True + True + True + gtk-close + True + + + 1 + + + + + False + GTK_PACK_END + + + + + + button1 + + + diff --git a/src/gtk/ui/preferences.ui b/src/gtk/ui/preferences.ui index 00e44855..74b20b00 100644 --- a/src/gtk/ui/preferences.ui +++ b/src/gtk/ui/preferences.ui @@ -1,226 +1,226 @@ - - - - - - 5 - Preferences - normal - False - - - True - 2 - - - True - 0 - none - - - True - 12 - - - Pause when inactive - True - True - False - True - - - - - - - True - <b>General</b> - True - - - - - False - 1 - - - - - True - 0 - none - - - True - 12 - - - True - 2 - - - Enable automatic frame skipping - True - True - False - True - - - 0 - - - - - True - - - True - 1 - Frameskip level : - - - False - 0 - - - - - True - False - FrameSkipAdjustment - True - - - 1 - - - - - 1 - - - - - - - - - True - <b>Frameskip</b> - True - - - - - False - 2 - - - - - True - 0 - none - - - True - 12 - - - True - - - True - Speed indicator : - - - False - 0 - - - - - True - SpeedIndicatorListStore - - - - 0 - - - - - 1 - - - - - - - - - True - <b>Appearance</b> - True - - - - - False - 3 - - - - - True - end - - - gtk-close - True - True - True - True - - - False - False - 0 - - - - - False - end - 0 - - - - - - button2 - - - - - - - - - - None - - - Percentage - - - Detailed - - - - - 9 - 1 - 1 - - + + + + + + 5 + Preferences + normal + False + + + True + 2 + + + True + 0 + none + + + True + 12 + + + Pause when inactive + True + True + False + True + + + + + + + True + <b>General</b> + True + + + + + False + 1 + + + + + True + 0 + none + + + True + 12 + + + True + 2 + + + Enable automatic frame skipping + True + True + False + True + + + 0 + + + + + True + + + True + 1 + Frameskip level : + + + False + 0 + + + + + True + False + FrameSkipAdjustment + True + + + 1 + + + + + 1 + + + + + + + + + True + <b>Frameskip</b> + True + + + + + False + 2 + + + + + True + 0 + none + + + True + 12 + + + True + + + True + Speed indicator : + + + False + 0 + + + + + True + SpeedIndicatorListStore + + + + 0 + + + + + 1 + + + + + + + + + True + <b>Appearance</b> + True + + + + + False + 3 + + + + + True + end + + + gtk-close + True + True + True + True + + + False + False + 0 + + + + + False + end + 0 + + + + + + button2 + + + + + + + + + + None + + + Percentage + + + Detailed + + + + + 9 + 1 + 1 + + diff --git a/src/gtk/ui/sound.ui b/src/gtk/ui/sound.ui index cb0906f0..9c693ec8 100644 --- a/src/gtk/ui/sound.ui +++ b/src/gtk/ui/sound.ui @@ -1,154 +1,154 @@ - - - - - - - - - - Mute - - - 25 % - - - 50 % - - - 100 % - - - 200 % - - - - - - - - - - 11 KHz - - - 22 KHz - - - 44.1 KHz - - - 48 KHz - - - - - 5 - GTK_WIN_POS_CENTER_ON_PARENT - GDK_WINDOW_TYPE_HINT_DIALOG - False - - - True - 2 - - - True - 10 - 2 - 2 - 10 - 10 - - - True - model1 - - - - 0 - - - - - 1 - 2 - - - - - True - 1 - Volume : - - - GTK_FILL - - - - - True - 1 - Sample rate : - - - 1 - 2 - GTK_FILL - - - - - True - model2 - - - - 0 - - - - - 1 - 2 - 1 - 2 - - - - - 1 - - - - - True - GTK_BUTTONBOX_END - - - - - - True - True - True - gtk-close - True - - - 1 - - - - - False - GTK_PACK_END - - - - - - button1 - - - + + + + + + + + + + Mute + + + 25 % + + + 50 % + + + 100 % + + + 200 % + + + + + + + + + + 11 KHz + + + 22 KHz + + + 44.1 KHz + + + 48 KHz + + + + + 5 + GTK_WIN_POS_CENTER_ON_PARENT + GDK_WINDOW_TYPE_HINT_DIALOG + False + + + True + 2 + + + True + 10 + 2 + 2 + 10 + 10 + + + True + model1 + + + + 0 + + + + + 1 + 2 + + + + + True + 1 + Volume : + + + GTK_FILL + + + + + True + 1 + Sample rate : + + + 1 + 2 + GTK_FILL + + + + + True + model2 + + + + 0 + + + + + 1 + 2 + 1 + 2 + + + + + 1 + + + + + True + GTK_BUTTONBOX_END + + + + + + True + True + True + gtk-close + True + + + 1 + + + + + False + GTK_PACK_END + + + + + + button1 + + + diff --git a/src/gtk/ui/vbam.ui b/src/gtk/ui/vbam.ui index 3d694d11..849bf542 100644 --- a/src/gtk/ui/vbam.ui +++ b/src/gtk/ui/vbam.ui @@ -1,596 +1,596 @@ - - - - - - False - VBA - - - - - - True - False - - - True - False - - - True - False - False - _File - True - - - False - - - gtk-open - True - False - False - True - True - accelgroup1 - - - - - True - False - False - Open rece_nt - True - - - - - True - False - - - - - True - False - False - Screen capt_ure... - True - - - - - True - False - - - - - gtk-close - True - False - False - True - True - accelgroup1 - - - - - gtk-quit - True - False - False - True - True - accelgroup1 - - - - - - - - - - True - False - False - _Emulation - True - - - False - - - True - False - False - Pause - True - - - - - - True - False - False - _Reset - True - - - - - - gtk-fullscreen - True - False - False - True - True - accelgroup1 - - - - - - True - False - - - - - True - False - False - Loa_d state - True - - - False - - - True - False - False - Most recent - True - - - - - True - False - False - Auto load most recent - True - - - - - True - False - - - - - True - False - False - Slot1 - True - - - - - - True - False - False - Slot2 - True - - - - - - True - False - False - Slot3 - True - - - - - - True - False - False - Slot4 - True - - - - - - True - False - False - Slot5 - True - - - - - - True - False - False - Slot6 - True - - - - - - True - False - False - Slot7 - True - - - - - - True - False - False - Slot8 - True - - - - - - True - False - False - Slot9 - True - - - - - - True - False - False - Slot10 - True - - - - - - True - False - False - From _File ... - True - - - - - - - - - - True - False - False - S_ave state - True - - - False - - - True - False - False - Oldest slot - True - - - - - True - False - - - - - True - False - False - Slot1 - True - - - - - - True - False - False - Slot2 - True - - - - - - True - False - False - Slot3 - True - - - - - - True - False - False - Slot4 - True - - - - - - True - False - False - Slot5 - True - - - - - - True - False - False - Slot6 - True - - - - - - True - False - False - Slot7 - True - - - - - - True - False - False - Slot8 - True - - - - - - True - False - False - Slot9 - True - - - - - - True - False - False - Slot10 - True - - - - - - True - False - - - - - True - False - False - To _File ... - True - - - - - - - - - - True - False - - - - - True - False - False - _List cheats ... - True - - - - - - True - False - False - _Disable cheats - True - - - - - - - - - True - False - False - _Options - True - - - False - - - True - False - False - _Preferences ... - True - - - - - True - False - False - _Game Boy ... - True - - - - - True - False - False - Game Boy _Advance ... - True - - - - - True - False - False - _Display ... - True - - - - - True - False - False - _Sound ... - True - - - - - True - False - False - D_irectories ... - True - - - - - True - False - False - _Joypads ... - True - - - - - - - - - True - False - False - _Help - True - - - False - - - gtk-about - True - False - False - True - True - accelgroup1 - - - - - - - - - False - True - 0 - - - - - True - False - 0 - 0 - - - - - - True - True - 1 - - - - - - - + + + + + + False + VBA + + + + + + True + False + + + True + False + + + True + False + False + _File + True + + + False + + + gtk-open + True + False + False + True + True + accelgroup1 + + + + + True + False + False + Open rece_nt + True + + + + + True + False + + + + + True + False + False + Screen capt_ure... + True + + + + + True + False + + + + + gtk-close + True + False + False + True + True + accelgroup1 + + + + + gtk-quit + True + False + False + True + True + accelgroup1 + + + + + + + + + + True + False + False + _Emulation + True + + + False + + + True + False + False + Pause + True + + + + + + True + False + False + _Reset + True + + + + + + gtk-fullscreen + True + False + False + True + True + accelgroup1 + + + + + + True + False + + + + + True + False + False + Loa_d state + True + + + False + + + True + False + False + Most recent + True + + + + + True + False + False + Auto load most recent + True + + + + + True + False + + + + + True + False + False + Slot1 + True + + + + + + True + False + False + Slot2 + True + + + + + + True + False + False + Slot3 + True + + + + + + True + False + False + Slot4 + True + + + + + + True + False + False + Slot5 + True + + + + + + True + False + False + Slot6 + True + + + + + + True + False + False + Slot7 + True + + + + + + True + False + False + Slot8 + True + + + + + + True + False + False + Slot9 + True + + + + + + True + False + False + Slot10 + True + + + + + + True + False + False + From _File ... + True + + + + + + + + + + True + False + False + S_ave state + True + + + False + + + True + False + False + Oldest slot + True + + + + + True + False + + + + + True + False + False + Slot1 + True + + + + + + True + False + False + Slot2 + True + + + + + + True + False + False + Slot3 + True + + + + + + True + False + False + Slot4 + True + + + + + + True + False + False + Slot5 + True + + + + + + True + False + False + Slot6 + True + + + + + + True + False + False + Slot7 + True + + + + + + True + False + False + Slot8 + True + + + + + + True + False + False + Slot9 + True + + + + + + True + False + False + Slot10 + True + + + + + + True + False + + + + + True + False + False + To _File ... + True + + + + + + + + + + True + False + + + + + True + False + False + _List cheats ... + True + + + + + + True + False + False + _Disable cheats + True + + + + + + + + + True + False + False + _Options + True + + + False + + + True + False + False + _Preferences ... + True + + + + + True + False + False + _Game Boy ... + True + + + + + True + False + False + Game Boy _Advance ... + True + + + + + True + False + False + _Display ... + True + + + + + True + False + False + _Sound ... + True + + + + + True + False + False + D_irectories ... + True + + + + + True + False + False + _Joypads ... + True + + + + + + + + + True + False + False + _Help + True + + + False + + + gtk-about + True + False + False + True + True + accelgroup1 + + + + + + + + + False + True + 0 + + + + + True + False + 0 + 0 + + + + + + True + True + 1 + + + + + + + diff --git a/src/sdl/expr.l b/src/sdl/expr.l index 3c730e17..0ed070a7 100644 --- a/src/sdl/expr.l +++ b/src/sdl/expr.l @@ -1,73 +1,73 @@ -%{ -#include "expr.cpp.h" - -#ifndef __GNUC__ -#include -#define isatty _isatty -#define fileno _fileno -#endif - -char *exprString; -int exprCol; - -#define YY_INPUT(buf,result,max_size) \ - { \ - int c = *exprString++; \ - exprCol++;\ - result = (c == 0) ? YY_NULL : (buf[0] = c, 1); \ - } -%} - -%option nomain -%option noyywrap -%option nounput - -SIZEOF "sizeof" -ID [a-zA-Z_][a-zA-Z0-9_]* -NUM [0-9]+ -DOT "." -ARROW "->" -STAR "*" -ADDR "&" - -%% - -{SIZEOF} { - return TOKEN_SIZEOF; -} - -{ID} { - return TOKEN_IDENTIFIER; -} - -{NUM} { - return TOKEN_NUMBER; -} - -{DOT} { - return TOKEN_DOT; -} - -{ARROW} { - return TOKEN_ARROW; -} - -{ADDR} { - return TOKEN_ADDR; -} - -{STAR} { - return TOKEN_STAR; -} - -[ \t\n]+ - -. return *yytext; - -%% - -void exprCleanBuffer() -{ - yy_delete_buffer(YY_CURRENT_BUFFER); - yy_init = 1; -} +%{ +#include "expr.cpp.h" + +#ifndef __GNUC__ +#include +#define isatty _isatty +#define fileno _fileno +#endif + +char *exprString; +int exprCol; + +#define YY_INPUT(buf,result,max_size) \ + { \ + int c = *exprString++; \ + exprCol++;\ + result = (c == 0) ? YY_NULL : (buf[0] = c, 1); \ + } +%} + +%option nomain +%option noyywrap +%option nounput + +SIZEOF "sizeof" +ID [a-zA-Z_][a-zA-Z0-9_]* +NUM [0-9]+ +DOT "." +ARROW "->" +STAR "*" +ADDR "&" + +%% + +{SIZEOF} { + return TOKEN_SIZEOF; +} + +{ID} { + return TOKEN_IDENTIFIER; +} + +{NUM} { + return TOKEN_NUMBER; +} + +{DOT} { + return TOKEN_DOT; +} + +{ARROW} { + return TOKEN_ARROW; +} + +{ADDR} { + return TOKEN_ADDR; +} + +{STAR} { + return TOKEN_STAR; +} + +[ \t\n]+ + +. return *yytext; + +%% + +void exprCleanBuffer() +{ + yy_delete_buffer(YY_CURRENT_BUFFER); + yy_init = 1; +} diff --git a/src/sdl/expr.ypp b/src/sdl/expr.ypp index 176cafe7..843d09dd 100644 --- a/src/sdl/expr.ypp +++ b/src/sdl/expr.ypp @@ -1,77 +1,77 @@ -%{ -namespace std { -#include -#include -#include -#include -} - -using namespace std; - -#include "../System.h" -#include "../gba/elf.h" -#include "exprNode.h" - -extern int yyerror(const char *); -extern int yylex(); -extern char *yytext; - - -//#define YYERROR_VERBOSE 1 -//#define YYDEBUG 1 - - Node *result = NULL; -%} - -%token TOKEN_IDENTIFIER TOKEN_DOT TOKEN_STAR TOKEN_ARROW TOKEN_ADDR -%token TOKEN_SIZEOF TOKEN_NUMBER -%left TOKEN_DOT TOKEN_ARROW '[' -%expect 6 -%% - -final: expression { result = $1; } -; - -expression: - simple_expression { $$ = $1; } | - '(' expression ')' { $$ = $2; } | - expression TOKEN_DOT ident { $$ = exprNodeDot($1, $3); } | - expression TOKEN_ARROW ident { $$ = exprNodeArrow($1, $3); } | - expression '[' number ']' { $$ = exprNodeArray($1, $3); } -; -simple_expression: - ident { $$ = $1; } | - TOKEN_STAR expression { $$ = exprNodeStar($2); } | - TOKEN_ADDR expression { $$ = exprNodeAddr($2); } | - TOKEN_SIZEOF '(' expression ')' { $$ = exprNodeSizeof($3); } -; - -number: - TOKEN_NUMBER { $$ = exprNodeNumber(); } -; - -ident: - TOKEN_IDENTIFIER {$$ = exprNodeIdentifier(); } -; - -%% - -int yyerror(const char *s) -{ - return 0; -} - -#ifndef SDL -extern FILE *yyin; -int main(int argc, char **argv) -{ - // yydebug = 1; - ++argv, --argc; - if(argc > 0) - yyin = fopen(argv[0], "r"); - else - yyin = stdin; - if(!yyparse()) - result->print(); -} -#endif +%{ +namespace std { +#include +#include +#include +#include +} + +using namespace std; + +#include "../System.h" +#include "../gba/elf.h" +#include "exprNode.h" + +extern int yyerror(const char *); +extern int yylex(); +extern char *yytext; + + +//#define YYERROR_VERBOSE 1 +//#define YYDEBUG 1 + + Node *result = NULL; +%} + +%token TOKEN_IDENTIFIER TOKEN_DOT TOKEN_STAR TOKEN_ARROW TOKEN_ADDR +%token TOKEN_SIZEOF TOKEN_NUMBER +%left TOKEN_DOT TOKEN_ARROW '[' +%expect 6 +%% + +final: expression { result = $1; } +; + +expression: + simple_expression { $$ = $1; } | + '(' expression ')' { $$ = $2; } | + expression TOKEN_DOT ident { $$ = exprNodeDot($1, $3); } | + expression TOKEN_ARROW ident { $$ = exprNodeArrow($1, $3); } | + expression '[' number ']' { $$ = exprNodeArray($1, $3); } +; +simple_expression: + ident { $$ = $1; } | + TOKEN_STAR expression { $$ = exprNodeStar($2); } | + TOKEN_ADDR expression { $$ = exprNodeAddr($2); } | + TOKEN_SIZEOF '(' expression ')' { $$ = exprNodeSizeof($3); } +; + +number: + TOKEN_NUMBER { $$ = exprNodeNumber(); } +; + +ident: + TOKEN_IDENTIFIER {$$ = exprNodeIdentifier(); } +; + +%% + +int yyerror(const char *s) +{ + return 0; +} + +#ifndef SDL +extern FILE *yyin; +int main(int argc, char **argv) +{ + // yydebug = 1; + ++argv, --argc; + if(argc > 0) + yyin = fopen(argv[0], "r"); + else + yyin = stdin; + if(!yyparse()) + result->print(); +} +#endif diff --git a/src/win32/JoybusOptions.cpp b/src/win32/JoybusOptions.cpp index 16f4f1bb..fe3e1c76 100644 --- a/src/win32/JoybusOptions.cpp +++ b/src/win32/JoybusOptions.cpp @@ -1,3 +1,5 @@ +#ifndef NO_LINK + #include "stdafx.h" #include "vba.h" #include "JoybusOptions.h" @@ -74,3 +76,5 @@ void JoybusOptions::OnBnClickedOk() OnOK(); } + +#endif // NO_LINK diff --git a/src/win32/LinkOptions.cpp b/src/win32/LinkOptions.cpp index 93ded40f..d851a4ae 100644 --- a/src/win32/LinkOptions.cpp +++ b/src/win32/LinkOptions.cpp @@ -1,3 +1,5 @@ +#ifndef NO_LINK + #include "stdafx.h" #include "vba.h" #include "LinkOptions.h" @@ -492,28 +494,55 @@ void LinkOptions::OnCancel() class Win32ServerInfoDisplay : public ServerInfoDisplay { - Win32ServerInfoDisplay(ServerWait _dlg) : dlg(_dlg) {} - void ShowServerIP(sf::IPAddress addr) { - dlg->m_serveraddress.Format("Server IP address is: %s", addr.ToString); - } - void ShowConnect(int player) { - dlg->m_plconn[i].Format("Player %d connected", player); - dlg->UpdateData(false); - } - void Ping() { dlg->m_prgctrl.StepIt(); } - void Connected() { - MessageBox(NULL, "All players connected", "Link", MB_OK); - dlg->SendMessage(WM_CLOSE, 0, 0); +public: + Win32ServerInfoDisplay(ServerWait *_dlg) + { + dlg = _dlg; + } + + ~Win32ServerInfoDisplay() + { + if (dlg) + { + // not connected + MessageBox(NULL, "Failed to connect.", "Link", MB_OK); + dlg->SendMessage(WM_CLOSE, 0, 0); + } + + delete dlg; + dlg = NULL; + } + + void ShowServerIP(const sf::IPAddress& addr) + { + dlg->m_serveraddress.Format("Server IP address is: %s", addr.ToString()); + } + + void ShowConnect(const int player) + { + dlg->m_plconn[0].Format("Player %d connected", player); + dlg->UpdateData(false); + } + + void Ping() + { + dlg->m_prgctrl.StepIt(); + } + + void Connected() + { + MessageBox(NULL, "All players connected", "Link", MB_OK); + dlg->SendMessage(WM_CLOSE, 0, 0); + delete dlg; + dlg = NULL; } + private: - ServerWait dlg; -} + ServerWait *dlg; +}; void LinkServer::OnServerStart() { - int errorcode; - ServerWait dlg; - UpdateData(TRUE); lanlink.numslaves = m_numplayers+1; @@ -522,13 +551,18 @@ void LinkServer::OnServerStart() lanlink.speed = m_speed==1 ? true : false; sf::IPAddress addr; - Win32ServerInfoDisplay dlginfo(dlg); - if(!ls.Init(&dlginfo)){ - MessageBox("Error occured.\nPlease try again.", "Error", MB_OK); - return; - } + // These must be created on the heap - referenced from the connection thread + ServerWait *dlg = new ServerWait; + // Owns the ServerWait* + Win32ServerInfoDisplay *dlginfo = new Win32ServerInfoDisplay(dlg); - dlg.DoModal(); + // ls thread will own the dlginfo + if (!ls.Init(dlginfo)) + { + // Thread didn't get created + delete dlginfo; + MessageBox("Error occurred.\nPlease try again.", "Error", MB_OK); + } return; } @@ -547,29 +581,59 @@ BOOL LinkClient::OnInitDialog() class Win32ClientInfoDisplay : public ClientInfoDisplay { - Win32ClientInfoDisplay(ServerWait _dlg) : dlg(_dlg) {} - void ConnectStart(sf::IPAddress addr) { +public: + Win32ClientInfoDisplay(ServerWait *_dlg) + { + dlg = _dlg; + } + + ~Win32ClientInfoDisplay() + { + if (dlg) + { + // not connected + MessageBox(NULL, "Failed to connect.", "Link", MB_OK); + dlg->SendMessage(WM_CLOSE, 0, 0); + } + + delete dlg; + dlg = NULL; + } + + void ConnectStart(const sf::IPAddress& addr) + { dlg->SetWindowText("Connecting..."); } - void ShowConnect(int player, int togo) { + + void ShowConnect(const int player, const int togo) + { dlg->m_serveraddress.Format("Connected as #%d", player); - if(togo) dlg->m_plconn[0].Format("Waiting for %d players to join", togo); - else dlg->m_plconn[0].Format("All players joined."); + if (togo) + dlg->m_plconn[0].Format("Waiting for %d players to join", togo); + else + dlg->m_plconn[0].Format("All players joined."); } - void Ping() { dlg->m_prgctrl.StepIt(); } - void Connected() { - MessageBox(NULL, "Connected.", "Link", MB_OK); - dlg->SendMessage(WM_CLOSE, 0, 0); + + void Ping() + { + dlg->m_prgctrl.StepIt(); + } + + void Connected() + { + MessageBox(NULL, "Connected.", "Link", MB_OK); + dlg->SendMessage(WM_CLOSE, 0, 0); + delete dlg; + dlg = NULL; } + private: - ServerWait dlg; -} + ServerWait *dlg; +}; void LinkClient::OnLinkConnect() { char ipaddress[31]; - int errorcode; - ServerWait dlg; UpdateData(TRUE); @@ -579,14 +643,23 @@ void LinkClient::OnLinkConnect() m_serverip.GetWindowText(ipaddress, 30); - Win32ClientInfoDisplay dlginfo(dlg); - if((errorcode=lc.Init(sf::IPAddress(std::string(ipaddress)), &dlginfo))!=0){ - char message[50]; - sprintf(message, "Error %d occured.\nPlease try again.", errorcode); - MessageBox(message, "Error", MB_OK); - return; + // These must be created on the heap - referenced from the connection thread + ServerWait *dlg = new ServerWait; + // Owns the ServerWait* + Win32ClientInfoDisplay *dlginfo = new Win32ClientInfoDisplay(dlg); + + // lc thread will own the dlginfo + if (!lc.Init(sf::IPAddress(std::string(ipaddress)), dlginfo)) + { + // Thread didn't get created + delete dlginfo; + MessageBox("Error occurred.\nPlease try again.", "Error", MB_OK); } - dlg.DoModal(); + else + { + dlg->DoModal(); + } + return; } @@ -674,3 +747,5 @@ BOOL LinkServer::PreTranslateMessage(MSG* pMsg) return CDialog::PreTranslateMessage(pMsg); } + +#endif // NO_LINK diff --git a/src/win32/MainWndOptions.cpp b/src/win32/MainWndOptions.cpp index 6b507581..ddb87c5e 100644 --- a/src/win32/MainWndOptions.cpp +++ b/src/win32/MainWndOptions.cpp @@ -1547,7 +1547,7 @@ void MainWnd::OnOptionsVideoFullscreenmaxscale() } } - +#ifndef NO_LINK void MainWnd::OnLinkOptions() { LinkOptions dlg; @@ -1584,7 +1584,14 @@ void MainWnd::OnOptionsJoybus() JoybusOptions dlg; dlg.DoModal(); } - +#else +void MainWnd::OnLinkOptions() { } +void MainWnd::OnOptionsLinkRFU() { } +void MainWnd::OnUpdateOptionsLinkEnable(CCmdUI*) { } +void MainWnd::OnOptionsLinkEnable() { } +void MainWnd::OnUpdateOptionsLinkRFU(CCmdUI*) { } +void MainWnd::OnOptionsJoybus() { } +#endif void MainWnd::OnOptionsEmulatorGameoverrides() { diff --git a/src/win32/VBA.cpp b/src/win32/VBA.cpp index 4aac89ae..11be969b 100644 --- a/src/win32/VBA.cpp +++ b/src/win32/VBA.cpp @@ -111,7 +111,7 @@ void winlog(const char *msg, ...); /* Link ---------------------*/ -extern int InitLink(void); +extern bool InitLink(void); extern void CloseLink(void); //extern int linkid; extern char inifile[]; @@ -1254,7 +1254,11 @@ BOOL VBA::OnIdle(LONG lCount) } else if(emulating && active && !paused) { for(int i = 0; i < 2; i++) { emulator.emuMain(emulator.emuCount); - if(lanlink.connected&&linkid&&lc.numtransfers==0) lc.CheckConn(); + +#ifndef NO_LINK + if (lanlink.connected && linkid && lc.numtransfers == 0) + lc.CheckConn(); +#endif if(rewindSaveNeeded && rewindMemory && emulator.emuWriteMemState) { rewindCount++; @@ -1618,6 +1622,7 @@ void VBA::loadSettings() updateThrottle( (unsigned short)regQueryDwordValue( "throttle", 0 ) ); +#ifndef NO_LINK linktimeout = regQueryDwordValue("LinkTimeout", 1000); rfu_enabled = regQueryDwordValue("RFU", false) ? true : false; @@ -1630,6 +1635,7 @@ void VBA::loadSettings() } lanlink.active = regQueryDwordValue("LAN", 0) ? true : false; +#endif Sm60FPS::bSaveMoreCPU = regQueryDwordValue("saveMoreCPU", 0); @@ -2553,11 +2559,15 @@ void VBA::saveSettings() regSetDwordValue("throttle", throttle); regSetStringValue("pluginName", pluginName); regSetDwordValue("saveMoreCPU", Sm60FPS::bSaveMoreCPU); + +#ifndef NO_LINK regSetDwordValue("LinkTimeout", linktimeout); regSetDwordValue("RFU", rfu_enabled); regSetDwordValue("linkEnabled", gba_link_enabled); regSetDwordValue("joybusEnabled", gba_joybus_enabled); regSetStringValue("joybusHostAddr", joybusHostAddr.ToString().c_str()); +#endif + regSetDwordValue("lastFullscreen", lastFullscreen); regSetDwordValue("pauseWhenInactive", pauseWhenInactive); diff --git a/src/win32/rpi.h b/src/win32/rpi.h index 79201396..c519567a 100644 --- a/src/win32/rpi.h +++ b/src/win32/rpi.h @@ -7,7 +7,7 @@ // http://www.hiend3d.com/hq2x.html // Modified by suanyuan //--------------------------------------------------------------------------------------------------------------------------- -#ifdef __MSW__ +#if defined(_WIN32) #include #else #define HMODULE void * diff --git a/src/wx/wxplist.in b/src/wx/wxplist.in index 173669c6..b0f310a8 100644 --- a/src/wx/wxplist.in +++ b/src/wx/wxplist.in @@ -1,122 +1,122 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleExecutable - ${MACOSX_BUNDLE_EXECUTABLE_NAME} - CFBundleGetInfoString - ${MACOSX_BUNDLE_INFO_STRING} - CFBundleIconFile - ${MACOSX_BUNDLE_ICON_FILE} - CFBundleIdentifier - ${MACOSX_BUNDLE_GUI_IDENTIFIER} - CFBundleInfoDictionaryVersion - 6.0 - CFBundleLongVersionString - ${MACOSX_BUNDLE_LONG_VERSION_STRING} - CFBundleName - ${MACOSX_BUNDLE_BUNDLE_NAME} - CFBundlePackageType - APPL - CFBundleShortVersionString - ${MACOSX_BUNDLE_SHORT_VERSION_STRING} - CFBundleSignature - ???? - CFBundleVersion - ${MACOSX_BUNDLE_BUNDLE_VERSION} - CSResourcesFileMapped - - LSRequiresCarbon - - NSHumanReadableCopyright - ${MACOSX_BUNDLE_COPYRIGHT} - UTExportedTypeDeclarations - - - UTTypeIdentifier - public.gbarom - UTTypeReferenceURL - http://www.vba-m.com/ - UTTypeDescription - GameBoy Advance ROM - UTTypeIconFile - wxvbam.icns - UTTypeConformsTo - - public.data - - UTTypeTagSpecification - - public.filename-extension - - agb - agb.gz - agb.z - gba - gba.gz - gba.z - - - - - - - UTTypeIdentifier - public.gbrom - UTTypeReferenceURL - http://www.vba-m.com/ - UTTypeDescription - GameBoy ROM - UTTypeIconFile - wxvbam.icns - UTTypeConformsTo - - public.data - - UTTypeTagSpecification - - public.filename-extension - - gb - gb.gz - gb.z - cgb - cgb.gz - cgb.z - gbc - gbc.gz - gbc.z - sgb - sgb.gz - sgb.z - - - - - CFBundleDocumentTypes - - - CFBundleTypeName - Cartridge - CFBundleTypeRole - Viewer - LSItemContentTypes - - public.gbarom - public.gbrom - - LSHandlerRank - Alternate - - - - + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + ${MACOSX_BUNDLE_EXECUTABLE_NAME} + CFBundleGetInfoString + ${MACOSX_BUNDLE_INFO_STRING} + CFBundleIconFile + ${MACOSX_BUNDLE_ICON_FILE} + CFBundleIdentifier + ${MACOSX_BUNDLE_GUI_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleLongVersionString + ${MACOSX_BUNDLE_LONG_VERSION_STRING} + CFBundleName + ${MACOSX_BUNDLE_BUNDLE_NAME} + CFBundlePackageType + APPL + CFBundleShortVersionString + ${MACOSX_BUNDLE_SHORT_VERSION_STRING} + CFBundleSignature + ???? + CFBundleVersion + ${MACOSX_BUNDLE_BUNDLE_VERSION} + CSResourcesFileMapped + + LSRequiresCarbon + + NSHumanReadableCopyright + ${MACOSX_BUNDLE_COPYRIGHT} + UTExportedTypeDeclarations + + + UTTypeIdentifier + public.gbarom + UTTypeReferenceURL + http://www.vba-m.com/ + UTTypeDescription + GameBoy Advance ROM + UTTypeIconFile + wxvbam.icns + UTTypeConformsTo + + public.data + + UTTypeTagSpecification + + public.filename-extension + + agb + agb.gz + agb.z + gba + gba.gz + gba.z + + + + + + + UTTypeIdentifier + public.gbrom + UTTypeReferenceURL + http://www.vba-m.com/ + UTTypeDescription + GameBoy ROM + UTTypeIconFile + wxvbam.icns + UTTypeConformsTo + + public.data + + UTTypeTagSpecification + + public.filename-extension + + gb + gb.gz + gb.z + cgb + cgb.gz + cgb.z + gbc + gbc.gz + gbc.z + sgb + sgb.gz + sgb.z + + + + + CFBundleDocumentTypes + + + CFBundleTypeName + Cartridge + CFBundleTypeRole + Viewer + LSItemContentTypes + + public.gbarom + public.gbrom + + LSHandlerRank + Alternate + + + + diff --git a/src/wx/wxvbam.desktop b/src/wx/wxvbam.desktop index 2fe65e30..5af68177 100644 --- a/src/wx/wxvbam.desktop +++ b/src/wx/wxvbam.desktop @@ -1,10 +1,10 @@ -[Desktop Entry] -Version=1.0 -Encoding=UTF-8 -Type=Application -Name=VBA-M -GenericName=GameBoy Advance Emulator -Comment=Nindendo GameBoy Advance Emulator -Exec=wxvbam -Icon=vbam -Categories=Application;Game;Emulator +[Desktop Entry] +Version=1.0 +Encoding=UTF-8 +Type=Application +Name=VBA-M +GenericName=GameBoy Advance Emulator +Comment=Nindendo GameBoy Advance Emulator +Exec=wxvbam +Icon=vbam +Categories=Application;Game;Emulator diff --git a/src/wx/wxvbam.rc b/src/wx/wxvbam.rc index 758b59a6..54a77c47 100644 --- a/src/wx/wxvbam.rc +++ b/src/wx/wxvbam.rc @@ -1,42 +1,42 @@ -IDI_MAINICON ICON "../win32/res/VBA.ico" - -#include "wx/msw/wx.rc" - -///////////////////////////////////////////////////////////////////////////// -// -// Version -// - -VS_VERSION_INFO VERSIONINFO - FILEVERSION 1,8,0,0 - PRODUCTVERSION 1,8,0,0 - FILEFLAGSMASK 0x17L -#ifdef _DEBUG - FILEFLAGS 0x1L -#else - FILEFLAGS 0x0L -#endif - FILEOS 0x4L - FILETYPE 0x1L - FILESUBTYPE 0x0L -BEGIN - BLOCK "StringFileInfo" - BEGIN - BLOCK "040904b0" - BEGIN - VALUE "Comments", "VBA-M comes with NO WARRANTY. Use it at your own risk." - VALUE "CompanyName", "http://vba-m.com/" - VALUE "FileDescription", "VisualBoyAdvance-M" - VALUE "FileVersion", "1, 8, 0, 0" - VALUE "InternalName", "VBA-M" - VALUE "LegalCopyright", "Copyright 2008-2009 VBA-M development team" - VALUE "OriginalFilename", "VisualBoyAdvance-M.exe" - VALUE "ProductName", "GB/C/A emulator for Windows" - VALUE "ProductVersion", "1, 8, 0, 0" - END - END - BLOCK "VarFileInfo" - BEGIN - VALUE "Translation", 0x409, 1200 - END -END +IDI_MAINICON ICON "../win32/res/VBA.ico" + +#include "wx/msw/wx.rc" + +///////////////////////////////////////////////////////////////////////////// +// +// Version +// + +VS_VERSION_INFO VERSIONINFO + FILEVERSION 1,8,0,0 + PRODUCTVERSION 1,8,0,0 + FILEFLAGSMASK 0x17L +#ifdef _DEBUG + FILEFLAGS 0x1L +#else + FILEFLAGS 0x0L +#endif + FILEOS 0x4L + FILETYPE 0x1L + FILESUBTYPE 0x0L +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040904b0" + BEGIN + VALUE "Comments", "VBA-M comes with NO WARRANTY. Use it at your own risk." + VALUE "CompanyName", "http://vba-m.com/" + VALUE "FileDescription", "VisualBoyAdvance-M" + VALUE "FileVersion", "1, 8, 0, 0" + VALUE "InternalName", "VBA-M" + VALUE "LegalCopyright", "Copyright 2008-2009 VBA-M development team" + VALUE "OriginalFilename", "VisualBoyAdvance-M.exe" + VALUE "ProductName", "GB/C/A emulator for Windows" + VALUE "ProductVersion", "1, 8, 0, 0" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x409, 1200 + END +END diff --git a/src/wx/wxvbam.xrc b/src/wx/wxvbam.xrc index b073ea0f..658113d8 100644 --- a/src/wx/wxvbam.xrc +++ b/src/wx/wxvbam.xrc @@ -1,6503 +1,6503 @@ - - - - - - 2 - -3,-1 - - - wxHORIZONTAL - - - - - - wxEXPAND - 160,144 - - - VBAM - - - - - - - - - - - - - 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Ctrl+P - 1 - - - - 1 - - - - Ctrl+R - - - - - F11 - - - - - - Alt+1 - 1 - - - - Alt+2 - 1 - - - - Alt+3 - 1 - - - - Alt+4 - 1 - - - - - - - - - - Ctrl+L - - - - 1 - - - - - F1 - - - - F2 - - - - F3 - - - - F4 - - - - F5 - - - - F6 - - - - F7 - - - - F8 - - - - F9 - - - - F10 - - - - - - - - - 1 - - - - 1 - - - - - - - Ctrl+S - - - - - Shift+F1 - - - - Shift+F2 - - - - Shift+F3 - - - - Shift+F4 - - - - Shift+F5 - - - - Shift+F6 - - - - Shift+F7 - - - - Shift+F8 - - - - Shift+F9 - - - - Shift+F10 - - - - - - - - - - Ctrl+B - - - - - Ctrl+C - - - - Ctrl+F - - - - 1 - - - - 1 - - - - - - - Ctrl+1 - 1 - 1 - - - - Ctrl+2 - 1 - 1 - - - - Ctrl+3 - 1 - 1 - - - - Ctrl+4 - 1 - 1 - - - - Ctrl+5 - 1 - 1 - - - - Ctrl+6 - 1 - 1 - - - - Ctrl+7 - 1 - 1 - - - - Ctrl+8 - 1 - 1 - - - - - - - 1 - 1 - - - - 1 - 1 - - - - 1 - 1 - - - - 1 - 1 - - - - 1 - 1 - - - - 1 - 1 - - - - - - Ctrl+N - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - icons/32x32/apps/vbam.png - - GB Printer - - wxVERTICAL - - - - - - 320,288 - - - wxALL|wxALIGN_CENTRE - 5 - - - - - - - - wxALL|wxALIGN_CENTRE_VERTICAL - 5 - - - - - 1x - 2x - 3x - 4x - - 1 - - wxALL|wxEXPAND - 5 - - wxHORIZONTAL - - wxALIGN_CENTRE_HORIZONTAL - - - - wxHORIZONTAL - - - wxALL - 5 - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - - - ROM Information - - wxVERTICAL - - - - - - - wxALL - 5 - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - 2 - - wxEXPAND - - - - - - - - wxALL|wxEXPAND - 5 - - - - - - wxVERTICAL - - - 2 - - - - - wxALL - 5 - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - wxALL - 5 - - - - - - - - - - wxALL|wxEXPAND - 5 - - - ROM Information - - - - wxVERTICAL - - - - - - wxALL|wxEXPAND - 5 - - - - - - - - - - - wxALL|wxEXPAND - 5 - - - Selct codes to import - - - - - wxVERTICAL - - - - - - - wxALL - 5 - - - - wxEXPAND|wxALL - 5 - - - - - - wxALL - 5 - - - - wxALL|wxEXPAND - 5 - - - - - - wxALL - 5 - - - - - - - wxALL|wxEXPAND - 5 - 200,100 - - 2 - 1 - 2 - - - wxEXPAND - - - - - - - - - - - wxALL|wxEXPAND - 5 - - - Export GameShark Snapshot - - - - - wxVERTICAL - - - - - - - - wxALL|wxALIGN_CENTRE - 5 - - - - - - wxALL|wxALIGN_CENTRE - 5 - - - wxALL|wxEXPAND - 5 - - - - - - - - wxALL|wxALIGN_CENTRE_VERTICAL - 5 - - - - - - - - - wxALL|wxALIGN_CENTRE - 5 - - - - - - wxALL|wxALIGN_CENTRE - 5 - - - - - - wxALL|wxALIGN_CENTRE - 5 - - 3 - - wxEXPAND - - - - - 200 - - wxALL|wxALIGN_CENTRE_VERTICAL - 5 - - - - - wxALL|wxEXPAND - 5 - - - - - 1 - - wxALL|wxALIGN_CENTRE_VERTICAL - 5 - - - - 2 - - - - 1 - - - wxALL|wxALIGN_CENTRE - 5 - - - - - 1 - - wxALL|wxALIGN_CENTRE - 5 - - - wxEXPAND - - - - - - wxALL|wxALIGN_CENTRE_VERTICAL - 5 - - - - 2 - 2 - - - - - - wxALL|wxALIGN_CENTRE - 5 - - - - - - wxALL|wxALIGN_CENTRE - 5 - - - wxEXPAND - - 2 - 1 - - wxEXPAND - - - - - - - - - - - - - wxALL|wxEXPAND - 5 - - - Network Link - - - - - wxVERTICAL - - - - - Open cheat list - - - - Save cheat list - - - - - Add new cheat - - - - Delete selected cheat - - - - - Delete all cheats - - - - - - Toggle all Cheats - - - wxEXPAND - - - - - - - wxALL|wxEXPAND - 5 - 200,100d - - - wxALL|wxEXPAND - 5 - - - - 1 - - - - - - Cheat list - - - - - wxVERTICAL - - - - - bold - - - wxALL - 5 - - - wxALL|wxEXPAND - 5 - - wxVERTICAL - - - wxALL|wxEXPAND - 5 - - - - - - - - bold - - - wxALL - 5 - - - - - - wxALL|wxEXPAND - 5 - - wxVERTICAL - - wxALL|wxEXPAND - 5 - - - - - - bold - - - wxALL - 5 - - - wxALL|wxEXPAND - 5 - - - wxHORIZONTAL - - - - - - wxALL|wxEXPAND - 5 - - - - - wxALL|wxEXPAND - 5 - - - - 1 - - - - - - - - - Edit cheat - - - - - wxVERTICAL - - - - - - wxALL|wxEXPAND - 5 - -1,200 - - - - wxHORIZONTAL - - - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - wxVERTICAL - - - wxALL|wxEXPAND - 5 - - - - - - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - wxVERTICAL - - wxALL|wxEXPAND - 5 - - - - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - wxVERTICAL - - wxALL|wxEXPAND - 5 - - wxVERTICAL - - - wxEXPAND - - - - - - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - wxALL|wxEXPAND - 5 - - - wxVERTICAL - - wxALL|wxEXPAND - 5 - - wxVERTICAL - - - wxEXPAND - - - wxEXPAND - - - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - wxALL - 5 - - wxHORIZONTAL - - wxALIGN_CENTRE - - - Search for cheats - - - - - wxVERTICAL - - - - - bold - - - wxALL - 5 - - - wxALL|wxEXPAND - 5 - - wxVERTICAL - - - wxALL|wxEXPAND - 5 - - - - - - - - bold - - - wxALL - 5 - - - - - - wxALL - 5 - - wxVERTICAL - - wxALL|wxEXPAND - 5 - - - - - - bold - - - wxALL - 5 - - - wxALL|wxEXPAND - 5 - - - wxHORIZONTAL - - - - wxALL|wxEXPAND - 5 - - - - - - - - bold - - - wxALL - 5 - - - - - - wxALL - 5 - - wxVERTICAL - - wxALL|wxEXPAND - 5 - - - wxALL|wxEXPAND - 5 - - - - 1 - - - - - - - - - Add cheat - - - - - wxVERTICAL - - - - - bold - - - wxALL - 5 - - - wxALL|wxEXPAND - 5 - - wxVERTICAL - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - - - - wxALL|wxALIGN_CENTRE_VERTICAL - 5 - - - - - - - - wxALL - 5 - - - - - - - wxALL - 5 - - wxHORIZONTAL - - wxEXPAND - - - - wxHORIZONTAL - - - - If not empty or 0, enable rewind (seconds) - - wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - 0 - 600 - seconds (0-600); 0 = disable - - wxALL|wxEXPAND - 5 - - - - - - - - - - bold - - - wxALL - 5 - - - - wxVERTICAL - - wxALL|wxEXPAND - 5 - - wxHORIZONTAL - - - - - wxALL|wxALIGN_CENTRE_VERTICAL - 5 - - - - 0 - 0 - 1000 - 0 = no throttle - - wxALL|wxALIGN_CENTRE_VERTICAL - 5 - - - - - - No throttle - 25% - 50% - 100% - 150% - 200% - - - wxALL|wxALIGN_CENTRE_VERTICAL - 5 - - - - - wxALL|wxEXPAND - 5 - - - wxALL|wxEXPAND - 5 - - - - - - - - - - - Preferences - - - GameBoy settings - wxOK|wxCANCEL - - - - - wxVERTICAL - - wxALL|wxEXPAND - 5 - - wxHORIZONTAL - - - - - - wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - - Automatic - Game Boy Advance - Game Boy Color - Super Game Boy - Super Game Boy 2 - Game Boy - - - - wxALL|wxEXPAND - 5 - - - - - - wxHORIZONTAL - - - - - - wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - - Never - Always - Automatic - - - - wxALL|wxEXPAND - 5 - - - wxALL|wxEXPAND - 5 - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - - - - - wxVERTICAL - - - - - bold - - - wxALL - 5 - - - - wxVERTICAL - - - - - wxALL - 5 - - - wxALL|wxEXPAND - 5 - - wxHORIZONTAL - - - - - wxALL|wxALIGN_CENTRE_VERTICAL - 5 - - - - 0 - 9 - - - wxALL|wxEXPAND - 5 - - - - - wxALL|wxEXPAND - 5 - - - - - - - - - wxVERTICAL - - - - - wxALL - 5 - - - wxEXPAND - - wxHORIZONTAL - - - - - wxALL|wxALIGN_CENTRE_VERTICAL - 5 - - - - Select A File - BIOS files (*.bin;*.rom)|*.bin;*.rom|All files|* - - - wxALL|wxEXPAND - 5 - - - - - - - - wxALL - 5 - - - - wxHORIZONTAL - - - - - wxALL|wxALIGN_CENTRE_VERTICAL - 5 - - - - Select A File - BIOS files (*.bin;*.rom)|*.bin;*.rom|All files|* - - - wxALL|wxEXPAND - 5 - - - wxEXPAND - - - - - - - - - wxVERTICAL - - - - - 0,0 - - - - - - 0,0 - - - - - - 0,0 - - - - - - - - - - - - - wxVERTICAL - - - - - Standard - Blue Sea - Dark Night - Green Forest - Hot Desert - Pink Dreams - Weird Colors - Real GB Colors - Real 'GB on GBASP' Colors - - - wxALL|wxEXPAND - 5 - - - - - - wxALL - 5 - - - - wxALL - 5 - - - - wxALL - 5 - - - - wxALL - 5 - - - wxHORIZONTAL - - wxALL|wxEXPAND - 5 - - - - - - wxALL - 5 - - - - wxALL - 5 - - - - wxALL - 5 - - - - wxALL - 5 - - - wxHORIZONTAL - - wxALL|wxEXPAND - 5 - - - - - - - - wxALL|wxALIGN_CENTRE_VERTICAL - 5 - - - - - - - - - wxALL|wxALIGN_RIGHT - 5 - - wxHORIZONTAL - - wxEXPAND - - - - - - - - wxVERTICAL - - - - - - wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - - - - - Automatic - EEPROM - SRAM - Flash - EEPROM + Sensor - None - - - - wxALL|wxEXPAND - 5 - - - wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - - - - - 64K - 128K - - - - wxALL|wxEXPAND - 5 - - 2 - 1 - - wxEXPAND - - - - - - wxALL|wxALIGN_CENTRE - 5 - - - wxVERTICAL - - wxALL|wxEXPAND - 5 - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - - - - - wxVERTICAL - - - - - bold - - - wxALL - 5 - - - - wxVERTICAL - - - - - wxALL - 5 - - - wxALL|wxEXPAND - 5 - - wxHORIZONTAL - - - - - wxALL|wxALIGN_CENTRE_VERTICAL - 5 - - - - 0 - 9 - - - wxALL|wxEXPAND - 5 - - - - - wxALL|wxEXPAND - 5 - - - - - - - - - wxVERTICAL - - - - - - - wxALL - 5 - - - wxALL|wxEXPAND - 5 - - wxHORIZONTAL - - - - - wxALL|wxALIGN_CENTRE_VERTICAL - 5 - - - - BIOS files (*.bin;*.rom)|*.bin;*.rom|All files|* - - - wxALL|wxEXPAND - 5 - - - - wxVERTICAL - - - - - wxALL - 5 - - - wxALL|wxEXPAND - 5 - - - - - - Game Boy Advance settings - wxOK|wxCANCEL - - - - - wxVERTICAL - - - - - - - wxALL - 5 - - - - - - wxALL|wxEXPAND - 5 - - - - - - wxALL - 5 - - - - wxALL|wxEXPAND - 5 - - - - - - wxALL - 5 - - - - - Default - Disabled - Enabled - - - wxALL|wxEXPAND - 5 - - - - - - wxALL - 5 - - - - - Default - Automatic - EEPROM - SRAM - Flash - EEPROM+Sensor - None - - - wxALL|wxEXPAND - 5 - - - - - - wxALL - 5 - - - - - Default - 64K - 128K - - - wxALL|wxEXPAND - 5 - - - - - - wxALL - 5 - - - - - Default - Disabled - Enabled - - - wxALL|wxEXPAND - 5 - - 2 - 1 - - - wxEXPAND - - - - - - wxALL|wxALIGN_CENTRE_HORIZONTAL - 5 - - - - - - - - - - - wxVERTICAL - - - - wxEXPAND - - wxHORIZONTAL - - wxALL|wxALIGN_CENTRE_VERTICAL - 5 - - - - - - - - None - Percentage - Detailed - - - - wxALL|wxEXPAND - 5 - - - - wxVERTICAL - - - - - - - wxALL|wxEXPAND - 5 - - - - - - wxALL - 5 - - - - - - - - - wxVERTICAL - - - - - - - wxALL|wxALIGN_CENTRE_VERTICAL - 5 - - - - 1 - 6 - - - wxALL|wxEXPAND - 5 - - wxHORIZONTAL - - - - - - - wxALL - 5 - - - - - - - 0 = no maximum - - wxALL|wxALIGN_CENTRE_VERTICAL - 5 - - wxHORIZONTAL - - - 0 = no limit - - wxALL|wxEXPAND - 5 - - - wxEXPAND - - - - - - bold - - - wxALL - 5 - - - - - - - - - - wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - - wxALL|wxEXPAND - 5 - - wxHORIZONTAL - - wxEXPAND - - - - - - wxALL - 5 - - wxVERTICAL - - wxALL|wxEXPAND - 5 - - - - - - - - - wxVERTICAL - - - - - bold - - - wxALL - 5 - - - wxALL|wxEXPAND - 5 - - wxVERTICAL - - - wxHORIZONTAL - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - - - - - - wxALL - 5 - - 2 - - - - - wxALL - 5 - - - wxEXPAND - - - - - - - - bold - - - wxALL - 5 - - - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - - - - - None - 2xSaI - Super 2xSaI - Super Eagle - Pixelate - Advance MAME Scale2x - Bilinear - Bilinear Plus - Scanlines - TV Mode - HQ2x - LQ2x - Simple 2X - Simple 3x - HQ 3x - Simple 4x - HQ 4x - Plugin - - - wxALL|wxEXPAND - 5 - - - - - - wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - wxALL|wxEXPAND - 5 - - - - - - wxRIGHT|wxALL|wxALIGN_CENTRE_VERTICAL - 5 - - - - - None - Smart interframe blending - Interframe motion blur - - - wxALL|wxEXPAND - 5 - - 2 - 1 - - wxALL|wxEXPAND - 5 - - - - - - Display settings - wxOK|wxCANCEL - - - - - - - - wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - - - - - - 100 - 0 - 400 - - wxALL|wxEXPAND - 5 - - - - - - - - wxALL - 5 - - - - wxEXPAND - - - - - - - - - wxEXPAND - - - - - - wxALL - 5 - - wxHORIZONTAL - - wxEXPAND - - wxVERTICAL - - wxEXPAND - - - wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - - - - - 48 KHz - 44.1 KHz - 22 KHz - 11 KHz - - - - wxALL|wxEXPAND - 5 - - 2 - 1 - - - - - - - - wxVERTICAL - - - - - - - - - - wxALL|wxEXPAND - 5 - - - - - - wxALL|wxEXPAND - 5 - - - - - - wxALL|wxEXPAND - 5 - - - - - - wxALL - 5 - - wxHORIZONTAL - - wxEXPAND - - - - wxALL|wxEXPAND - 5 - - - wxVERTICAL - - wxALL|wxEXPAND - 5 - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - - 2 - 10 - 1 - - - wxALL|wxEXPAND - 5 - - - - - - wxALL|wxALIGN_CENTRE - 5 - - wxVERTICAL - - wxALL|wxEXPAND - 5 - - - wxVERTICAL - - wxALL|wxEXPAND - 5 - - - - - - - - - wxVERTICAL - - - - - wxALL - 5 - - - - - - - wxALL - 5 - - - - - wxVERTICAL - - - - - wxALL - 5 - - - - - - wxALL|wxEXPAND - 5 - - - - - - - - wxALL - 5 - - - - wxEXPAND - - - - - - wxALL - 5 - - wxHORIZONTAL - - wxEXPAND - - - wxVERTICAL - - wxALL|wxEXPAND - 5 - - - - - wxVERTICAL - - - wxALL|wxEXPAND - 5 - - - - - - - - wxALL - 5 - - - - wxEXPAND - - - - - - wxALL - 5 - - wxHORIZONTAL - - wxEXPAND - - - wxALL|wxEXPAND - 5 - - - - - wxALL|wxEXPAND - 5 - - - - - - - - - wxVERTICAL - - - - - wxALL - 5 - - - - - wxVERTICAL - - - wxALL|wxEXPAND - 5 - - - - - - - - wxALL - 5 - - - - wxEXPAND - - - - - - wxALL - 5 - - wxHORIZONTAL - - wxEXPAND - - - wxALL|wxEXPAND - 5 - - - - - - Sound Settings - wxOK|wxCANCEL - - - - - wxVERTICAL - - - - - - - wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - Game Boy Advance ROMs - - - wxALL|wxEXPAND - 5 - - - - - - wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - Game Boy ROMs - - - wxALL|wxEXPAND - 5 - - - - - - wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - Native Saves - - - wxALL|wxEXPAND - 5 - - - - - - wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - Emulator Saves - - - wxALL|wxEXPAND - 5 - - - - - - wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - Screenshots - - - wxALL|wxEXPAND - 5 - - - - - - wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - Recordings - - - wxALL|wxEXPAND - 5 - - 2 - 1 - - - wxEXPAND - - - - - - - - - - - wxALL|wxEXPAND - 5 - - - Directories config - - - - - - 0,0 - - - - - - 0,0 - - - - - - 0,0 - - - - - - 0,0 - - - - Joypad Configuration - wxOK|wxCANCEL - - - - - wxVERTICAL - - - Click a field and press a key or move joystick to add. Press backspace to delete last added key. Resize window or click inside and move pointer to see entire contents if too small. - - - - - - - - wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - - - - wxALL|wxEXPAND - 5 - - - - - - wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - - - - wxALL|wxEXPAND - 5 - - - - - - wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - - - - wxALL|wxEXPAND - 5 - - - - - - wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - - - - wxALL|wxEXPAND - 5 - - - - - - wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - - - - wxALL|wxEXPAND - 5 - - - - - - wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - - - - wxALL|wxEXPAND - 5 - - - - - - wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - - - - wxALL|wxEXPAND - 5 - - - - - - - wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - - - - wxALL|wxEXPAND - 5 - - - - - - wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - - - - wxALL|wxEXPAND - 5 - - - - - - wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - - - - wxALL|wxEXPAND - 5 - - 4 - 1,3 - - - - - - - - - - - - wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - - - wxALL|wxEXPAND - 5 - - - - - - wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - - - wxALL|wxEXPAND - 5 - - - - - - wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - - - wxALL|wxEXPAND - 5 - - - - - - wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - - - wxALL|wxEXPAND - 5 - - - - - - wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - - - wxALL|wxEXPAND - 5 - - - wxEXPAND - - - wxEXPAND - - - - - - wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - - - wxALL|wxGROW - 5 - - - - - - wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - - - wxALL|wxEXPAND - 5 - - - - - - wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - - - wxALL|wxEXPAND - 5 - - - - - - wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - - - wxALL|wxEXPAND - 5 - - 4 - 1,3 - - - - - - - wxEXPAND|wxALL - - - - - - - - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - wxHORIZONTAL - - wxALIGN_CENTRE - - - - - Link Options - - wxVERTICAL - - - - - wxALL - 5 - - - - - - - - wxALL|wxALIGN_CENTRE_VERTICAL - 5 - - - - - wxALL|wxEXPAND - 5 - - wxHORIZONTAL - - wxALL|wxEXPAND - 5 - - - - - - wxALL - 5 - - - - - Please note that this is the first version of RFU emulation code and it's probably got more bugs than the link code. Also, it is only supported with 2 players in local mode. - - wxALL - 5 - - - - - - - - wxALL|wxALIGN_CENTRE_VERTICAL - 5 - - - - 0 - 9999999 - - - wxALL|wxEXPAND - 5 - - wxHORIZONTAL - - wxALL|wxEXPAND - 5 - - - - - - - - - - - wxALL|wxEXPAND - 5 - - - - - - wxVERTICAL - - - - - - - - - wxALL - 5 - - - - - - wxALL|wxEXPAND - 5 - - wxVERTICAL - - wxEXPAND - - - - - - - - wxALL - 5 - - - - - wxALL|wxEXPAND - 5 - - wxVERTICAL - - wxEXPAND - - - - - - - - wxALL|wxEXPAND - 5 - - - - - - wxALL|wxEXPAND - 5 - - - - - - wxALL|wxEXPAND - 5 - - wxVERTICAL - - wxEXPAND - - 3 - - - - - - - - - - - wxVERTICAL - - wxALL - 5 - - - - - - - - wxALL - 5 - - - - - - wxALL|wxEXPAND - 5 - - wxVERTICAL - - wxEXPAND - - - - - - - - - - - - - wxALL|wxEXPAND - 5 - - - Accelerator Editor - - - - wxVERTICAL - - - - - - - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - - - wxALL|wxEXPAND - 5 - - - - - - wxALL - 5 - - wxHORIZONTAL - - wxEXPAND - - wxVERTICAL - - - - modern - - - - wxALL|wxEXPAND - 5 - - - - wxEXPAND - - - - - - - - wxRIGHT - 5 - - - - - modern - - - - wxLEFT - 5 - - - - - - wxRIGHT - 5 - - - - - modern - - - - wxLEFT - 5 - - - - - - wxRIGHT - 5 - - - - - modern - - - - wxLEFT - 5 - - - - - - wxRIGHT - 5 - - - - - modern - - - - wxLEFT - 5 - - - - - - wxRIGHT - 5 - - - - - modern - - - - wxLEFT - 5 - - - - - - wxRIGHT - 5 - - - - - modern - - - - wxLEFT - 5 - - - - - - wxRIGHT - 5 - - - - - modern - - - - wxLEFT - 5 - - - - - - wxRIGHT - 5 - - - - - modern - - - - wxLEFT - 5 - - - - - - wxRIGHT - 5 - - - - - modern - - - - wxLEFT - 5 - - - - - - wxRIGHT - 5 - - - - - modern - - - - wxLEFT - 5 - - - - - - wxRIGHT - 5 - - - - - modern - - - - wxLEFT - 5 - - - - - - wxRIGHT - 5 - - - - - modern - - - - wxLEFT - 5 - - - - - - wxRIGHT - 5 - - - - - modern - - - - wxLEFT - 5 - - - - - - wxRIGHT - 5 - - - - - modern - - - - wxLEFT - 5 - - - - - - wxRIGHT - 5 - - - - - modern - - - - wxLEFT - 5 - - - - - - wxRIGHT - 5 - - - - - modern - - - - wxLEFT - 5 - - - - - - wxBOTTOM|wxRIGHT - 5 - - - - - modern - - - - wxBOTTOM|wxLEFT - 5 - - - - - - wxRIGHT - 5 - - - - - - wxLEFT - 5 - - - - - - wxRIGHT - 5 - - - - - - wxLEFT - 5 - - - - - - wxRIGHT - 5 - - - - - - wxLEFT - 5 - - - - - - wxRIGHT - 5 - - - - 2 - - - - - wxLEFT|wxRIGHT - 5 - - - - - modern - - - - wxLEFT - 5 - - - - 2 - - wxALL|wxEXPAND - 5 - - wxHORIZONTAL - - - wxEXPAND - - - - - - wxALL - 5 - - - - 4 - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - wxALL - 5 - - - wxEXPAND - - - Disassemble - - - - - wxVERTICAL - - - - - - - - wxALL|wxEXPAND - 5 - - - - - - wxALL - 5 - - wxHORIZONTAL - - wxEXPAND - - - - - - - modern - - - - wxALL|wxEXPAND - 5 - - - - - - - - wxRIGHT - 5 - - - - - modern - - - - wxLEFT - 5 - - - - - - wxRIGHT - 5 - - - - - modern - - - - wxLEFT - 5 - - - - - - wxRIGHT - 5 - - - - - modern - - - - wxLEFT - 5 - - - - - - wxRIGHT - 5 - - - - - modern - - - - wxLEFT - 5 - - - - - - wxRIGHT - 5 - - - - - modern - - - - wxLEFT - 5 - - - - - - wxRIGHT - 5 - - - - - modern - - - - wxLEFT - 5 - - - - - - wxRIGHT - 5 - - - - - modern - - - - wxLEFT - 5 - - - - - - wxRIGHT - 5 - - - - - modern - - - - wxLEFT - 5 - - - - - - - - - - - - - - - - - - - - - - - - - 2 - - wxALL|wxEXPAND - 5 - - wxHORIZONTAL - - - wxEXPAND - - - - - - wxALL - 5 - - - - 4 - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - wxALL - 5 - - - wxEXPAND - - - Disassemble - - - - - wxVERTICAL - - - - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - wxVERTICAL - - wxALL|wxEXPAND - 5 - - - - - - - wxALL|wxEXPAND - 5 - 400,200 - - wxHORIZONTAL - - - wxEXPAND - - - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - - - - - wxALL|wxEXPAND - 5 - - wxHORIZONTAL - - wxEXPAND - - - Logging - - - - I/O Viewer - - wxVERTICAL - - - - a - b - - - wxTOP|wxLEFT|wxRIGHT|wxEXPAND - 5 - - - - - - - - wxLEFT|wxRIGHT - 5 - - - - - - - wxRIGHT - 5 - - wxHORIZONTAL - - wxEXPAND - - - - - - wxLEFT - 5 - - - - - - wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - wxRIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - wxLEFT - 5 - - - - - - wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - wxRIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - wxLEFT - 5 - - - - - - wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - wxRIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - wxLEFT - 5 - - - - - - wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - wxRIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - wxLEFT - 5 - - - - - - wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - wxRIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - wxLEFT - 5 - - - - - - wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - wxRIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - wxLEFT - 5 - - - - - - wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - wxRIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - wxLEFT - 5 - - - - - - wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - wxRIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - wxLEFT - 5 - - - - - - wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - wxRIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - wxLEFT - 5 - - - - - - wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - wxRIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - wxLEFT - 5 - - - - - - wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - wxRIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - wxLEFT - 5 - - - - - - wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - wxRIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - wxLEFT - 5 - - - - - - wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - wxRIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - wxLEFT - 5 - - - - - - wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - wxRIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - wxLEFT - 5 - - - - - - wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - wxRIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - wxLEFT - 5 - - - - - - wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - - - wxRIGHT|wxALIGN_CENTRE_VERTICAL - 5 - - 3 - 2 - - - - - - - wxALL - 5 - - - - - - - - - wxALL - 5 - - wxHORIZONTAL - - - - wxALL - 5 - - - - - wxALL - 5 - - - wxEXPAND - - - - - Map view - - wxVERTICAL - - - - - wxVERTICAL - - - - - - - - - - - - - - - wxVERTICAL - - wxALL|wxEXPAND - 5 - - - - - - - - - - - - - - - - - - - - - - - - - - wxVERTICAL - - wxLEFT|wxRIGHT|wxEXPAND - 5 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 2 - - wxALL|wxEXPAND - 5 - - - - - 128,128d - - - 128,128d - - - wxALL - 5 - - - - 64,64d - - - wxALL - 5 - - - - - wxALL|wxALIGN_BOTTOM - 5 - - 3 - 1 - - wxEXPAND - - - - - - - - - - - - - wxALIGN_CENTRE_HORIZONTAL - - - - wxALIGN_RIGHT - - 3 - - wxEXPAND|wxALL - 5 - - - - - - wxVERTICAL - - - - - - - - - - - - - - - - - - - wxVERTICAL - - wxALL|wxEXPAND - 5 - - - - - - - - - - - - - - - - wxVERTICAL - - wxLEFT|wxRIGHT|wxEXPAND - 5 - - - - wxEXPAND - - - - - - - - - - - - wxVERTICAL - - wxEXPAND - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 2 - - wxALL|wxEXPAND - 5 - - - - - 128,128d - - - 128,128d - - - wxALL - 5 - - - - 64,64d - - - wxALL - 5 - - - - - wxALL|wxALIGN_BOTTOM - 5 - - 3 - 1 - - wxEXPAND - - - - - - - - - - - - - wxALIGN_CENTRE_HORIZONTAL - - - - wxALIGN_RIGHT - - 3 - - wxEXPAND|wxALL - 5 - - - Map view - - - - wxVERTICAL - - - - - - wxALL|wxEXPAND|wxALIGN_CENTRE_VERTICAL - 5 - - - - - - - wxALL|wxALIGN_CENTRE_VERTICAL - 5 - - - - - - wxALL|wxALIGN_CENTRE_VERTICAL - 5 - - - - - - wxALL|wxALIGN_CENTRE_VERTICAL - 5 - - - - - - - wxTOP|wxBOTTOM|wxLEFT|wxEXPAND|wxALIGN_CENTRE_VERTICAL - 5 - - - - - - wxALL|wxALIGN_CENTRE_VERTICAL - 5 - - wxHORIZONTAL - - wxEXPAND - - - - - modern - - - - - wxALL|wxEXPAND - 5 - 100,200 - - - - - - - - wxALL|wxALIGN_CENTRE_VERTICAL - 5 - - - - wxEXPAND - - - - - - wxALL|wxALIGN_CENTRE_VERTICAL - 5 - - - - wxALL|wxALIGN_CENTRE_VERTICAL - 5 - - wxHORIZONTAL - - wxEXPAND - - - - - - - - wxALL - 5 - - - - - - wxALL|wxALIGN_CENTRE_HORIZONTAL - 5 - - - - - - wxALL|wxALIGN_CENTRE_HORIZONTAL - 5 - - - - wxALL|wxALIGN_RIGHT - 5 - - 4 - - wxEXPAND - - - Memory viewer - - - - - wxVERTICAL - - - - - - - wxALL|wxALIGN_CENTRE_VERTICAL - 5 - - - - wxALL|wxEXPAND - 5 - - - - - - wxALL|wxALIGN_CENTRE_VERTICAL - 5 - - - - wxALL|wxEXPAND - 5 - - 2 - - wxEXPAND - - - - - - - - - - - wxALL|wxEXPAND - 5 - - - Enter address and size - - - OAM Viewer - - wxVERTICAL - - - wxHORIZONTAL - - - - - - - - - - 0 - 127 - - wxEXPAND - - - - 2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - wxEXPAND - - - - - - - - - - - - wxVERTICAL - - wxALL - 5 - - - - wxVERTICAL - - - - - - 64,64d - - - 64,64d - - - wxALL - 5 - - - - 64,64d - - - wxALL - 5 - - wxHORIZONTAL - - - - - wxALL|wxALIGN_BOTTOM - 5 - - - - - - - - - - - - wxALL - 5 - - - - - - wxALL|wxALIGN_CENTRE_HORIZONTAL - 5 - - - - wxALL|wxALIGN_RIGHT - 5 - - 3 - - wxEXPAND - - - - - - wxVERTICAL - - - wxHORIZONTAL - - - - - - - - - - 0 - 39 - - - wxEXPAND - - - - 2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - wxEXPAND - - - - - - - - - - - - wxVERTICAL - - wxALL - 5 - - - - wxVERTICAL - - - - - - 64,64d - - - 64,64d - - - wxALL - 5 - - - - 64,64d - - - wxALL - 5 - - wxHORIZONTAL - - - - - wxALL|wxALIGN_BOTTOM - 5 - - - - - - - - - - - - wxALL - 5 - - - - - - wxALL|wxALIGN_CENTRE_HORIZONTAL - 5 - - - - wxALL|wxALIGN_RIGHT - 5 - - 3 - - wxEXPAND - - - OAM Viewer - - - Palette View - - wxVERTICAL - - - - - wxALL - 5 - - - - 2 - - - - wxVERTICAL - - - 128,128d - - - - - wxALL - 5 - - - - - wxVERTICAL - - - 128,128d - - - - - wxALL - 5 - - - - 2 - - - - - wxALL - 5 - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - - - 4 - - - - - - - - - - wxALIGN_CENTRE_HORIZONTAL - - - - - - wxALIGN_CENTRE_HORIZONTAL - - - - wxALIGN_RIGHT - - - wxALL|wxEXPAND - 5 - - - - - - wxVERTICAL - - - - - wxALL - 5 - - - - - - - wxVERTICAL - - - 64,64d - - - - - - - - wxALL|wxALIGN_CENTRE_HORIZONTAL - 5 - - - wxALL - 5 - - - - - wxVERTICAL - - - 64,64d - - - - - - - - wxALL|wxALIGN_CENTRE_HORIZONTAL - 5 - - - wxALL - 5 - - wxHORIZONTAL - - wxEXPAND - - - - - - - - - - wxALL - 5 - - - - wxALL - 5 - - - - - - wxALL - 5 - - - - wxALL - 5 - - 2 - 1 - - wxEXPAND - - - - wxALL - 5 - - wxHORIZONTAL - - wxEXPAND - - - - - - wxALL - 5 - - - - - - - - wxALL - 5 - - - - - - - wxALL|wxALIGN_RIGHT - 5 - - wxHORIZONTAL - - wxEXPAND - - - Palette View - - - Tile Viewer - - wxVERTICAL - - - - - - - - - - - - - - - - - - - wxVERTICAL - - wxTOP|wxLEFT|wxRIGHT|wxEXPAND - 5 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - wxVERTICAL - - wxBOTTOM|wxLEFT|wxRIGHT|wxEXPAND - 5 - - - - - - wxTOP|wxLEFT|wxRIGHT - 5 - - - - 0 - 15 - 1 - 5 - - - wxBOTTOM|wxLEFT|wxRIGHT|wxEXPAND - 5 - - - - - - wxTOP|wxLEFT|wxRIGHT - 5 - - - - - - wxBOTTOM|wxLEFT|wxRIGHT - 5 - - wxVERTICAL - - wxEXPAND - - - - wxVERTICAL - - - - - - - - - - - - - - - - - - - 2 - - wxALL|wxEXPAND - 5 - - - - 64,64d - - - wxALL - 5 - - - - wxALL|wxALIGN_BOTTOM - 5 - - - - - - - 128,128d - - - 128,128d - - - wxALL - 5 - - wxHORIZONTAL - - wxEXPAND - - - - - - - - wxALL - 5 - - - - - - wxALL|wxALIGN_CENTRE_HORIZONTAL - 5 - - - - wxALL|wxALIGN_RIGHT - 5 - - 3 - - wxEXPAND - - - - - - wxVERTICAL - - - - - - - - - - - - - - - - - - - wxVERTICAL - - wxTOP|wxLEFT|wxRIGHT|wxEXPAND - 5 - - - - - - - - - - - - - - - - wxVERTICAL - - wxBOTTOM|wxLEFT|wxRIGHT|wxEXPAND - 5 - - - - - - wxTOP|wxLEFT|wxRIGHT - 5 - - - - 0 - 7 - 1 - 2 - - - wxBOTTOM|wxLEFT|wxRIGHT|wxEXPAND - 5 - - - - - - wxTOP|wxLEFT|wxRIGHT - 5 - - - - - - wxBOTTOM|wxLEFT|wxRIGHT - 5 - - wxVERTICAL - - wxEXPAND - - - - wxVERTICAL - - - - - - - - - - - - - - - - - - - 2 - - wxALL|wxEXPAND - 5 - - - - 64,64d - - - wxALL - 5 - - - - wxALL|wxALIGN_BOTTOM - 5 - - - - - - - 128,128d - - - 128,128d - - - wxALL - 5 - - wxHORIZONTAL - - wxEXPAND - - - - - - - - wxALL - 5 - - - - - - wxALL|wxALIGN_CENTRE_HORIZONTAL - 5 - - - - wxALL|wxALIGN_RIGHT - 5 - - 3 - - wxEXPAND - - - Tile Viewer - - + + + + + + 2 + -3,-1 + + + wxHORIZONTAL + + + + + + wxEXPAND + 160,144 + + + VBAM + + + + + + + + + + + + + 1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Ctrl+P + 1 + + + + 1 + + + + Ctrl+R + + + + + F11 + + + + + + Alt+1 + 1 + + + + Alt+2 + 1 + + + + Alt+3 + 1 + + + + Alt+4 + 1 + + + + + + + + + + Ctrl+L + + + + 1 + + + + + F1 + + + + F2 + + + + F3 + + + + F4 + + + + F5 + + + + F6 + + + + F7 + + + + F8 + + + + F9 + + + + F10 + + + + + + + + + 1 + + + + 1 + + + + + + + Ctrl+S + + + + + Shift+F1 + + + + Shift+F2 + + + + Shift+F3 + + + + Shift+F4 + + + + Shift+F5 + + + + Shift+F6 + + + + Shift+F7 + + + + Shift+F8 + + + + Shift+F9 + + + + Shift+F10 + + + + + + + + + + Ctrl+B + + + + + Ctrl+C + + + + Ctrl+F + + + + 1 + + + + 1 + + + + + + + Ctrl+1 + 1 + 1 + + + + Ctrl+2 + 1 + 1 + + + + Ctrl+3 + 1 + 1 + + + + Ctrl+4 + 1 + 1 + + + + Ctrl+5 + 1 + 1 + + + + Ctrl+6 + 1 + 1 + + + + Ctrl+7 + 1 + 1 + + + + Ctrl+8 + 1 + 1 + + + + + + + 1 + 1 + + + + 1 + 1 + + + + 1 + 1 + + + + 1 + 1 + + + + 1 + 1 + + + + 1 + 1 + + + + + + Ctrl+N + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + icons/32x32/apps/vbam.png + + GB Printer + + wxVERTICAL + + + + + + 320,288 + + + wxALL|wxALIGN_CENTRE + 5 + + + + + + + + wxALL|wxALIGN_CENTRE_VERTICAL + 5 + + + + + 1x + 2x + 3x + 4x + + 1 + + wxALL|wxEXPAND + 5 + + wxHORIZONTAL + + wxALIGN_CENTRE_HORIZONTAL + + + + wxHORIZONTAL + + + wxALL + 5 + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + + + ROM Information + + wxVERTICAL + + + + + + + wxALL + 5 + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + 2 + + wxEXPAND + + + + + + + + wxALL|wxEXPAND + 5 + + + + + + wxVERTICAL + + + 2 + + + + + wxALL + 5 + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + wxALL + 5 + + + + + + + + + + wxALL|wxEXPAND + 5 + + + ROM Information + + + + wxVERTICAL + + + + + + wxALL|wxEXPAND + 5 + + + + + + + + + + + wxALL|wxEXPAND + 5 + + + Selct codes to import + + + + + wxVERTICAL + + + + + + + wxALL + 5 + + + + wxEXPAND|wxALL + 5 + + + + + + wxALL + 5 + + + + wxALL|wxEXPAND + 5 + + + + + + wxALL + 5 + + + + + + + wxALL|wxEXPAND + 5 + 200,100 + + 2 + 1 + 2 + + + wxEXPAND + + + + + + + + + + + wxALL|wxEXPAND + 5 + + + Export GameShark Snapshot + + + + + wxVERTICAL + + + + + + + + wxALL|wxALIGN_CENTRE + 5 + + + + + + wxALL|wxALIGN_CENTRE + 5 + + + wxALL|wxEXPAND + 5 + + + + + + + + wxALL|wxALIGN_CENTRE_VERTICAL + 5 + + + + + + + + + wxALL|wxALIGN_CENTRE + 5 + + + + + + wxALL|wxALIGN_CENTRE + 5 + + + + + + wxALL|wxALIGN_CENTRE + 5 + + 3 + + wxEXPAND + + + + + 200 + + wxALL|wxALIGN_CENTRE_VERTICAL + 5 + + + + + wxALL|wxEXPAND + 5 + + + + + 1 + + wxALL|wxALIGN_CENTRE_VERTICAL + 5 + + + + 2 + + + + 1 + + + wxALL|wxALIGN_CENTRE + 5 + + + + + 1 + + wxALL|wxALIGN_CENTRE + 5 + + + wxEXPAND + + + + + + wxALL|wxALIGN_CENTRE_VERTICAL + 5 + + + + 2 + 2 + + + + + + wxALL|wxALIGN_CENTRE + 5 + + + + + + wxALL|wxALIGN_CENTRE + 5 + + + wxEXPAND + + 2 + 1 + + wxEXPAND + + + + + + + + + + + + + wxALL|wxEXPAND + 5 + + + Network Link + + + + + wxVERTICAL + + + + + Open cheat list + + + + Save cheat list + + + + + Add new cheat + + + + Delete selected cheat + + + + + Delete all cheats + + + + + + Toggle all Cheats + + + wxEXPAND + + + + + + + wxALL|wxEXPAND + 5 + 200,100d + + + wxALL|wxEXPAND + 5 + + + + 1 + + + + + + Cheat list + + + + + wxVERTICAL + + + + + bold + + + wxALL + 5 + + + wxALL|wxEXPAND + 5 + + wxVERTICAL + + + wxALL|wxEXPAND + 5 + + + + + + + + bold + + + wxALL + 5 + + + + + + wxALL|wxEXPAND + 5 + + wxVERTICAL + + wxALL|wxEXPAND + 5 + + + + + + bold + + + wxALL + 5 + + + wxALL|wxEXPAND + 5 + + + wxHORIZONTAL + + + + + + wxALL|wxEXPAND + 5 + + + + + wxALL|wxEXPAND + 5 + + + + 1 + + + + + + + + + Edit cheat + + + + + wxVERTICAL + + + + + + wxALL|wxEXPAND + 5 + -1,200 + + + + wxHORIZONTAL + + + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + wxVERTICAL + + + wxALL|wxEXPAND + 5 + + + + + + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + wxVERTICAL + + wxALL|wxEXPAND + 5 + + + + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + wxVERTICAL + + wxALL|wxEXPAND + 5 + + wxVERTICAL + + + wxEXPAND + + + + + + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + wxALL|wxEXPAND + 5 + + + wxVERTICAL + + wxALL|wxEXPAND + 5 + + wxVERTICAL + + + wxEXPAND + + + wxEXPAND + + + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + wxALL + 5 + + wxHORIZONTAL + + wxALIGN_CENTRE + + + Search for cheats + + + + + wxVERTICAL + + + + + bold + + + wxALL + 5 + + + wxALL|wxEXPAND + 5 + + wxVERTICAL + + + wxALL|wxEXPAND + 5 + + + + + + + + bold + + + wxALL + 5 + + + + + + wxALL + 5 + + wxVERTICAL + + wxALL|wxEXPAND + 5 + + + + + + bold + + + wxALL + 5 + + + wxALL|wxEXPAND + 5 + + + wxHORIZONTAL + + + + wxALL|wxEXPAND + 5 + + + + + + + + bold + + + wxALL + 5 + + + + + + wxALL + 5 + + wxVERTICAL + + wxALL|wxEXPAND + 5 + + + wxALL|wxEXPAND + 5 + + + + 1 + + + + + + + + + Add cheat + + + + + wxVERTICAL + + + + + bold + + + wxALL + 5 + + + wxALL|wxEXPAND + 5 + + wxVERTICAL + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + + + + wxALL|wxALIGN_CENTRE_VERTICAL + 5 + + + + + + + + wxALL + 5 + + + + + + + wxALL + 5 + + wxHORIZONTAL + + wxEXPAND + + + + wxHORIZONTAL + + + + If not empty or 0, enable rewind (seconds) + + wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + 0 + 600 + seconds (0-600); 0 = disable + + wxALL|wxEXPAND + 5 + + + + + + + + + + bold + + + wxALL + 5 + + + + wxVERTICAL + + wxALL|wxEXPAND + 5 + + wxHORIZONTAL + + + + + wxALL|wxALIGN_CENTRE_VERTICAL + 5 + + + + 0 + 0 + 1000 + 0 = no throttle + + wxALL|wxALIGN_CENTRE_VERTICAL + 5 + + + + + + No throttle + 25% + 50% + 100% + 150% + 200% + + + wxALL|wxALIGN_CENTRE_VERTICAL + 5 + + + + + wxALL|wxEXPAND + 5 + + + wxALL|wxEXPAND + 5 + + + + + + + + + + + Preferences + + + GameBoy settings + wxOK|wxCANCEL + + + + + wxVERTICAL + + wxALL|wxEXPAND + 5 + + wxHORIZONTAL + + + + + + wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + + Automatic + Game Boy Advance + Game Boy Color + Super Game Boy + Super Game Boy 2 + Game Boy + + + + wxALL|wxEXPAND + 5 + + + + + + wxHORIZONTAL + + + + + + wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + + Never + Always + Automatic + + + + wxALL|wxEXPAND + 5 + + + wxALL|wxEXPAND + 5 + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + + + + + wxVERTICAL + + + + + bold + + + wxALL + 5 + + + + wxVERTICAL + + + + + wxALL + 5 + + + wxALL|wxEXPAND + 5 + + wxHORIZONTAL + + + + + wxALL|wxALIGN_CENTRE_VERTICAL + 5 + + + + 0 + 9 + + + wxALL|wxEXPAND + 5 + + + + + wxALL|wxEXPAND + 5 + + + + + + + + + wxVERTICAL + + + + + wxALL + 5 + + + wxEXPAND + + wxHORIZONTAL + + + + + wxALL|wxALIGN_CENTRE_VERTICAL + 5 + + + + Select A File + BIOS files (*.bin;*.rom)|*.bin;*.rom|All files|* + + + wxALL|wxEXPAND + 5 + + + + + + + + wxALL + 5 + + + + wxHORIZONTAL + + + + + wxALL|wxALIGN_CENTRE_VERTICAL + 5 + + + + Select A File + BIOS files (*.bin;*.rom)|*.bin;*.rom|All files|* + + + wxALL|wxEXPAND + 5 + + + wxEXPAND + + + + + + + + + wxVERTICAL + + + + + 0,0 + + + + + + 0,0 + + + + + + 0,0 + + + + + + + + + + + + + wxVERTICAL + + + + + Standard + Blue Sea + Dark Night + Green Forest + Hot Desert + Pink Dreams + Weird Colors + Real GB Colors + Real 'GB on GBASP' Colors + + + wxALL|wxEXPAND + 5 + + + + + + wxALL + 5 + + + + wxALL + 5 + + + + wxALL + 5 + + + + wxALL + 5 + + + wxHORIZONTAL + + wxALL|wxEXPAND + 5 + + + + + + wxALL + 5 + + + + wxALL + 5 + + + + wxALL + 5 + + + + wxALL + 5 + + + wxHORIZONTAL + + wxALL|wxEXPAND + 5 + + + + + + + + wxALL|wxALIGN_CENTRE_VERTICAL + 5 + + + + + + + + + wxALL|wxALIGN_RIGHT + 5 + + wxHORIZONTAL + + wxEXPAND + + + + + + + + wxVERTICAL + + + + + + wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + + + + + Automatic + EEPROM + SRAM + Flash + EEPROM + Sensor + None + + + + wxALL|wxEXPAND + 5 + + + wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + + + + + 64K + 128K + + + + wxALL|wxEXPAND + 5 + + 2 + 1 + + wxEXPAND + + + + + + wxALL|wxALIGN_CENTRE + 5 + + + wxVERTICAL + + wxALL|wxEXPAND + 5 + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + + + + + wxVERTICAL + + + + + bold + + + wxALL + 5 + + + + wxVERTICAL + + + + + wxALL + 5 + + + wxALL|wxEXPAND + 5 + + wxHORIZONTAL + + + + + wxALL|wxALIGN_CENTRE_VERTICAL + 5 + + + + 0 + 9 + + + wxALL|wxEXPAND + 5 + + + + + wxALL|wxEXPAND + 5 + + + + + + + + + wxVERTICAL + + + + + + + wxALL + 5 + + + wxALL|wxEXPAND + 5 + + wxHORIZONTAL + + + + + wxALL|wxALIGN_CENTRE_VERTICAL + 5 + + + + BIOS files (*.bin;*.rom)|*.bin;*.rom|All files|* + + + wxALL|wxEXPAND + 5 + + + + wxVERTICAL + + + + + wxALL + 5 + + + wxALL|wxEXPAND + 5 + + + + + + Game Boy Advance settings + wxOK|wxCANCEL + + + + + wxVERTICAL + + + + + + + wxALL + 5 + + + + + + wxALL|wxEXPAND + 5 + + + + + + wxALL + 5 + + + + wxALL|wxEXPAND + 5 + + + + + + wxALL + 5 + + + + + Default + Disabled + Enabled + + + wxALL|wxEXPAND + 5 + + + + + + wxALL + 5 + + + + + Default + Automatic + EEPROM + SRAM + Flash + EEPROM+Sensor + None + + + wxALL|wxEXPAND + 5 + + + + + + wxALL + 5 + + + + + Default + 64K + 128K + + + wxALL|wxEXPAND + 5 + + + + + + wxALL + 5 + + + + + Default + Disabled + Enabled + + + wxALL|wxEXPAND + 5 + + 2 + 1 + + + wxEXPAND + + + + + + wxALL|wxALIGN_CENTRE_HORIZONTAL + 5 + + + + + + + + + + + wxVERTICAL + + + + wxEXPAND + + wxHORIZONTAL + + wxALL|wxALIGN_CENTRE_VERTICAL + 5 + + + + + + + + None + Percentage + Detailed + + + + wxALL|wxEXPAND + 5 + + + + wxVERTICAL + + + + + + + wxALL|wxEXPAND + 5 + + + + + + wxALL + 5 + + + + + + + + + wxVERTICAL + + + + + + + wxALL|wxALIGN_CENTRE_VERTICAL + 5 + + + + 1 + 6 + + + wxALL|wxEXPAND + 5 + + wxHORIZONTAL + + + + + + + wxALL + 5 + + + + + + + 0 = no maximum + + wxALL|wxALIGN_CENTRE_VERTICAL + 5 + + wxHORIZONTAL + + + 0 = no limit + + wxALL|wxEXPAND + 5 + + + wxEXPAND + + + + + + bold + + + wxALL + 5 + + + + + + + + + + wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + + wxALL|wxEXPAND + 5 + + wxHORIZONTAL + + wxEXPAND + + + + + + wxALL + 5 + + wxVERTICAL + + wxALL|wxEXPAND + 5 + + + + + + + + + wxVERTICAL + + + + + bold + + + wxALL + 5 + + + wxALL|wxEXPAND + 5 + + wxVERTICAL + + + wxHORIZONTAL + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + + + + + + wxALL + 5 + + 2 + + + + + wxALL + 5 + + + wxEXPAND + + + + + + + + bold + + + wxALL + 5 + + + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + + + + + None + 2xSaI + Super 2xSaI + Super Eagle + Pixelate + Advance MAME Scale2x + Bilinear + Bilinear Plus + Scanlines + TV Mode + HQ2x + LQ2x + Simple 2X + Simple 3x + HQ 3x + Simple 4x + HQ 4x + Plugin + + + wxALL|wxEXPAND + 5 + + + + + + wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + wxALL|wxEXPAND + 5 + + + + + + wxRIGHT|wxALL|wxALIGN_CENTRE_VERTICAL + 5 + + + + + None + Smart interframe blending + Interframe motion blur + + + wxALL|wxEXPAND + 5 + + 2 + 1 + + wxALL|wxEXPAND + 5 + + + + + + Display settings + wxOK|wxCANCEL + + + + + + + + wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + + + + + + 100 + 0 + 400 + + wxALL|wxEXPAND + 5 + + + + + + + + wxALL + 5 + + + + wxEXPAND + + + + + + + + + wxEXPAND + + + + + + wxALL + 5 + + wxHORIZONTAL + + wxEXPAND + + wxVERTICAL + + wxEXPAND + + + wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + + + + + 48 KHz + 44.1 KHz + 22 KHz + 11 KHz + + + + wxALL|wxEXPAND + 5 + + 2 + 1 + + + + + + + + wxVERTICAL + + + + + + + + + + wxALL|wxEXPAND + 5 + + + + + + wxALL|wxEXPAND + 5 + + + + + + wxALL|wxEXPAND + 5 + + + + + + wxALL + 5 + + wxHORIZONTAL + + wxEXPAND + + + + wxALL|wxEXPAND + 5 + + + wxVERTICAL + + wxALL|wxEXPAND + 5 + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + + 2 + 10 + 1 + + + wxALL|wxEXPAND + 5 + + + + + + wxALL|wxALIGN_CENTRE + 5 + + wxVERTICAL + + wxALL|wxEXPAND + 5 + + + wxVERTICAL + + wxALL|wxEXPAND + 5 + + + + + + + + + wxVERTICAL + + + + + wxALL + 5 + + + + + + + wxALL + 5 + + + + + wxVERTICAL + + + + + wxALL + 5 + + + + + + wxALL|wxEXPAND + 5 + + + + + + + + wxALL + 5 + + + + wxEXPAND + + + + + + wxALL + 5 + + wxHORIZONTAL + + wxEXPAND + + + wxVERTICAL + + wxALL|wxEXPAND + 5 + + + + + wxVERTICAL + + + wxALL|wxEXPAND + 5 + + + + + + + + wxALL + 5 + + + + wxEXPAND + + + + + + wxALL + 5 + + wxHORIZONTAL + + wxEXPAND + + + wxALL|wxEXPAND + 5 + + + + + wxALL|wxEXPAND + 5 + + + + + + + + + wxVERTICAL + + + + + wxALL + 5 + + + + + wxVERTICAL + + + wxALL|wxEXPAND + 5 + + + + + + + + wxALL + 5 + + + + wxEXPAND + + + + + + wxALL + 5 + + wxHORIZONTAL + + wxEXPAND + + + wxALL|wxEXPAND + 5 + + + + + + Sound Settings + wxOK|wxCANCEL + + + + + wxVERTICAL + + + + + + + wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + Game Boy Advance ROMs + + + wxALL|wxEXPAND + 5 + + + + + + wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + Game Boy ROMs + + + wxALL|wxEXPAND + 5 + + + + + + wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + Native Saves + + + wxALL|wxEXPAND + 5 + + + + + + wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + Emulator Saves + + + wxALL|wxEXPAND + 5 + + + + + + wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + Screenshots + + + wxALL|wxEXPAND + 5 + + + + + + wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + Recordings + + + wxALL|wxEXPAND + 5 + + 2 + 1 + + + wxEXPAND + + + + + + + + + + + wxALL|wxEXPAND + 5 + + + Directories config + + + + + + 0,0 + + + + + + 0,0 + + + + + + 0,0 + + + + + + 0,0 + + + + Joypad Configuration + wxOK|wxCANCEL + + + + + wxVERTICAL + + + Click a field and press a key or move joystick to add. Press backspace to delete last added key. Resize window or click inside and move pointer to see entire contents if too small. + + + + + + + + wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + + + + wxALL|wxEXPAND + 5 + + + + + + wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + + + + wxALL|wxEXPAND + 5 + + + + + + wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + + + + wxALL|wxEXPAND + 5 + + + + + + wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + + + + wxALL|wxEXPAND + 5 + + + + + + wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + + + + wxALL|wxEXPAND + 5 + + + + + + wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + + + + wxALL|wxEXPAND + 5 + + + + + + wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + + + + wxALL|wxEXPAND + 5 + + + + + + + wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + + + + wxALL|wxEXPAND + 5 + + + + + + wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + + + + wxALL|wxEXPAND + 5 + + + + + + wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + + + + wxALL|wxEXPAND + 5 + + 4 + 1,3 + + + + + + + + + + + + wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + + + wxALL|wxEXPAND + 5 + + + + + + wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + + + wxALL|wxEXPAND + 5 + + + + + + wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + + + wxALL|wxEXPAND + 5 + + + + + + wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + + + wxALL|wxEXPAND + 5 + + + + + + wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + + + wxALL|wxEXPAND + 5 + + + wxEXPAND + + + wxEXPAND + + + + + + wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + + + wxALL|wxGROW + 5 + + + + + + wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + + + wxALL|wxEXPAND + 5 + + + + + + wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + + + wxALL|wxEXPAND + 5 + + + + + + wxALL|wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + + + wxALL|wxEXPAND + 5 + + 4 + 1,3 + + + + + + + wxEXPAND|wxALL + + + + + + + + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + wxHORIZONTAL + + wxALIGN_CENTRE + + + + + Link Options + + wxVERTICAL + + + + + wxALL + 5 + + + + + + + + wxALL|wxALIGN_CENTRE_VERTICAL + 5 + + + + + wxALL|wxEXPAND + 5 + + wxHORIZONTAL + + wxALL|wxEXPAND + 5 + + + + + + wxALL + 5 + + + + + Please note that this is the first version of RFU emulation code and it's probably got more bugs than the link code. Also, it is only supported with 2 players in local mode. + + wxALL + 5 + + + + + + + + wxALL|wxALIGN_CENTRE_VERTICAL + 5 + + + + 0 + 9999999 + + + wxALL|wxEXPAND + 5 + + wxHORIZONTAL + + wxALL|wxEXPAND + 5 + + + + + + + + + + + wxALL|wxEXPAND + 5 + + + + + + wxVERTICAL + + + + + + + + + wxALL + 5 + + + + + + wxALL|wxEXPAND + 5 + + wxVERTICAL + + wxEXPAND + + + + + + + + wxALL + 5 + + + + + wxALL|wxEXPAND + 5 + + wxVERTICAL + + wxEXPAND + + + + + + + + wxALL|wxEXPAND + 5 + + + + + + wxALL|wxEXPAND + 5 + + + + + + wxALL|wxEXPAND + 5 + + wxVERTICAL + + wxEXPAND + + 3 + + + + + + + + + + + wxVERTICAL + + wxALL + 5 + + + + + + + + wxALL + 5 + + + + + + wxALL|wxEXPAND + 5 + + wxVERTICAL + + wxEXPAND + + + + + + + + + + + + + wxALL|wxEXPAND + 5 + + + Accelerator Editor + + + + wxVERTICAL + + + + + + + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + + + wxALL|wxEXPAND + 5 + + + + + + wxALL + 5 + + wxHORIZONTAL + + wxEXPAND + + wxVERTICAL + + + + modern + + + + wxALL|wxEXPAND + 5 + + + + wxEXPAND + + + + + + + + wxRIGHT + 5 + + + + + modern + + + + wxLEFT + 5 + + + + + + wxRIGHT + 5 + + + + + modern + + + + wxLEFT + 5 + + + + + + wxRIGHT + 5 + + + + + modern + + + + wxLEFT + 5 + + + + + + wxRIGHT + 5 + + + + + modern + + + + wxLEFT + 5 + + + + + + wxRIGHT + 5 + + + + + modern + + + + wxLEFT + 5 + + + + + + wxRIGHT + 5 + + + + + modern + + + + wxLEFT + 5 + + + + + + wxRIGHT + 5 + + + + + modern + + + + wxLEFT + 5 + + + + + + wxRIGHT + 5 + + + + + modern + + + + wxLEFT + 5 + + + + + + wxRIGHT + 5 + + + + + modern + + + + wxLEFT + 5 + + + + + + wxRIGHT + 5 + + + + + modern + + + + wxLEFT + 5 + + + + + + wxRIGHT + 5 + + + + + modern + + + + wxLEFT + 5 + + + + + + wxRIGHT + 5 + + + + + modern + + + + wxLEFT + 5 + + + + + + wxRIGHT + 5 + + + + + modern + + + + wxLEFT + 5 + + + + + + wxRIGHT + 5 + + + + + modern + + + + wxLEFT + 5 + + + + + + wxRIGHT + 5 + + + + + modern + + + + wxLEFT + 5 + + + + + + wxRIGHT + 5 + + + + + modern + + + + wxLEFT + 5 + + + + + + wxBOTTOM|wxRIGHT + 5 + + + + + modern + + + + wxBOTTOM|wxLEFT + 5 + + + + + + wxRIGHT + 5 + + + + + + wxLEFT + 5 + + + + + + wxRIGHT + 5 + + + + + + wxLEFT + 5 + + + + + + wxRIGHT + 5 + + + + + + wxLEFT + 5 + + + + + + wxRIGHT + 5 + + + + 2 + + + + + wxLEFT|wxRIGHT + 5 + + + + + modern + + + + wxLEFT + 5 + + + + 2 + + wxALL|wxEXPAND + 5 + + wxHORIZONTAL + + + wxEXPAND + + + + + + wxALL + 5 + + + + 4 + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + wxALL + 5 + + + wxEXPAND + + + Disassemble + + + + + wxVERTICAL + + + + + + + + wxALL|wxEXPAND + 5 + + + + + + wxALL + 5 + + wxHORIZONTAL + + wxEXPAND + + + + + + + modern + + + + wxALL|wxEXPAND + 5 + + + + + + + + wxRIGHT + 5 + + + + + modern + + + + wxLEFT + 5 + + + + + + wxRIGHT + 5 + + + + + modern + + + + wxLEFT + 5 + + + + + + wxRIGHT + 5 + + + + + modern + + + + wxLEFT + 5 + + + + + + wxRIGHT + 5 + + + + + modern + + + + wxLEFT + 5 + + + + + + wxRIGHT + 5 + + + + + modern + + + + wxLEFT + 5 + + + + + + wxRIGHT + 5 + + + + + modern + + + + wxLEFT + 5 + + + + + + wxRIGHT + 5 + + + + + modern + + + + wxLEFT + 5 + + + + + + wxRIGHT + 5 + + + + + modern + + + + wxLEFT + 5 + + + + + + + + + + + + + + + + + + + + + + + + + 2 + + wxALL|wxEXPAND + 5 + + wxHORIZONTAL + + + wxEXPAND + + + + + + wxALL + 5 + + + + 4 + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + wxALL + 5 + + + wxEXPAND + + + Disassemble + + + + + wxVERTICAL + + + + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + wxVERTICAL + + wxALL|wxEXPAND + 5 + + + + + + + wxALL|wxEXPAND + 5 + 400,200 + + wxHORIZONTAL + + + wxEXPAND + + + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + + + + + wxALL|wxEXPAND + 5 + + wxHORIZONTAL + + wxEXPAND + + + Logging + + + + I/O Viewer + + wxVERTICAL + + + + a + b + + + wxTOP|wxLEFT|wxRIGHT|wxEXPAND + 5 + + + + + + + + wxLEFT|wxRIGHT + 5 + + + + + + + wxRIGHT + 5 + + wxHORIZONTAL + + wxEXPAND + + + + + + wxLEFT + 5 + + + + + + wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + wxRIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + wxLEFT + 5 + + + + + + wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + wxRIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + wxLEFT + 5 + + + + + + wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + wxRIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + wxLEFT + 5 + + + + + + wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + wxRIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + wxLEFT + 5 + + + + + + wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + wxRIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + wxLEFT + 5 + + + + + + wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + wxRIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + wxLEFT + 5 + + + + + + wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + wxRIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + wxLEFT + 5 + + + + + + wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + wxRIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + wxLEFT + 5 + + + + + + wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + wxRIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + wxLEFT + 5 + + + + + + wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + wxRIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + wxLEFT + 5 + + + + + + wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + wxRIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + wxLEFT + 5 + + + + + + wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + wxRIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + wxLEFT + 5 + + + + + + wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + wxRIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + wxLEFT + 5 + + + + + + wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + wxRIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + wxLEFT + 5 + + + + + + wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + wxRIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + wxLEFT + 5 + + + + + + wxALIGN_RIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + + + wxRIGHT|wxALIGN_CENTRE_VERTICAL + 5 + + 3 + 2 + + + + + + + wxALL + 5 + + + + + + + + + wxALL + 5 + + wxHORIZONTAL + + + + wxALL + 5 + + + + + wxALL + 5 + + + wxEXPAND + + + + + Map view + + wxVERTICAL + + + + + wxVERTICAL + + + + + + + + + + + + + + + wxVERTICAL + + wxALL|wxEXPAND + 5 + + + + + + + + + + + + + + + + + + + + + + + + + + wxVERTICAL + + wxLEFT|wxRIGHT|wxEXPAND + 5 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2 + + wxALL|wxEXPAND + 5 + + + + + 128,128d + + + 128,128d + + + wxALL + 5 + + + + 64,64d + + + wxALL + 5 + + + + + wxALL|wxALIGN_BOTTOM + 5 + + 3 + 1 + + wxEXPAND + + + + + + + + + + + + + wxALIGN_CENTRE_HORIZONTAL + + + + wxALIGN_RIGHT + + 3 + + wxEXPAND|wxALL + 5 + + + + + + wxVERTICAL + + + + + + + + + + + + + + + + + + + wxVERTICAL + + wxALL|wxEXPAND + 5 + + + + + + + + + + + + + + + + wxVERTICAL + + wxLEFT|wxRIGHT|wxEXPAND + 5 + + + + wxEXPAND + + + + + + + + + + + + wxVERTICAL + + wxEXPAND + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 2 + + wxALL|wxEXPAND + 5 + + + + + 128,128d + + + 128,128d + + + wxALL + 5 + + + + 64,64d + + + wxALL + 5 + + + + + wxALL|wxALIGN_BOTTOM + 5 + + 3 + 1 + + wxEXPAND + + + + + + + + + + + + + wxALIGN_CENTRE_HORIZONTAL + + + + wxALIGN_RIGHT + + 3 + + wxEXPAND|wxALL + 5 + + + Map view + + + + wxVERTICAL + + + + + + wxALL|wxEXPAND|wxALIGN_CENTRE_VERTICAL + 5 + + + + + + + wxALL|wxALIGN_CENTRE_VERTICAL + 5 + + + + + + wxALL|wxALIGN_CENTRE_VERTICAL + 5 + + + + + + wxALL|wxALIGN_CENTRE_VERTICAL + 5 + + + + + + + wxTOP|wxBOTTOM|wxLEFT|wxEXPAND|wxALIGN_CENTRE_VERTICAL + 5 + + + + + + wxALL|wxALIGN_CENTRE_VERTICAL + 5 + + wxHORIZONTAL + + wxEXPAND + + + + + modern + + + + + wxALL|wxEXPAND + 5 + 100,200 + + + + + + + + wxALL|wxALIGN_CENTRE_VERTICAL + 5 + + + + wxEXPAND + + + + + + wxALL|wxALIGN_CENTRE_VERTICAL + 5 + + + + wxALL|wxALIGN_CENTRE_VERTICAL + 5 + + wxHORIZONTAL + + wxEXPAND + + + + + + + + wxALL + 5 + + + + + + wxALL|wxALIGN_CENTRE_HORIZONTAL + 5 + + + + + + wxALL|wxALIGN_CENTRE_HORIZONTAL + 5 + + + + wxALL|wxALIGN_RIGHT + 5 + + 4 + + wxEXPAND + + + Memory viewer + + + + + wxVERTICAL + + + + + + + wxALL|wxALIGN_CENTRE_VERTICAL + 5 + + + + wxALL|wxEXPAND + 5 + + + + + + wxALL|wxALIGN_CENTRE_VERTICAL + 5 + + + + wxALL|wxEXPAND + 5 + + 2 + + wxEXPAND + + + + + + + + + + + wxALL|wxEXPAND + 5 + + + Enter address and size + + + OAM Viewer + + wxVERTICAL + + + wxHORIZONTAL + + + + + + + + + + 0 + 127 + + wxEXPAND + + + + 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + wxEXPAND + + + + + + + + + + + + wxVERTICAL + + wxALL + 5 + + + + wxVERTICAL + + + + + + 64,64d + + + 64,64d + + + wxALL + 5 + + + + 64,64d + + + wxALL + 5 + + wxHORIZONTAL + + + + + wxALL|wxALIGN_BOTTOM + 5 + + + + + + + + + + + + wxALL + 5 + + + + + + wxALL|wxALIGN_CENTRE_HORIZONTAL + 5 + + + + wxALL|wxALIGN_RIGHT + 5 + + 3 + + wxEXPAND + + + + + + wxVERTICAL + + + wxHORIZONTAL + + + + + + + + + + 0 + 39 + + + wxEXPAND + + + + 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + wxEXPAND + + + + + + + + + + + + wxVERTICAL + + wxALL + 5 + + + + wxVERTICAL + + + + + + 64,64d + + + 64,64d + + + wxALL + 5 + + + + 64,64d + + + wxALL + 5 + + wxHORIZONTAL + + + + + wxALL|wxALIGN_BOTTOM + 5 + + + + + + + + + + + + wxALL + 5 + + + + + + wxALL|wxALIGN_CENTRE_HORIZONTAL + 5 + + + + wxALL|wxALIGN_RIGHT + 5 + + 3 + + wxEXPAND + + + OAM Viewer + + + Palette View + + wxVERTICAL + + + + + wxALL + 5 + + + + 2 + + + + wxVERTICAL + + + 128,128d + + + + + wxALL + 5 + + + + + wxVERTICAL + + + 128,128d + + + + + wxALL + 5 + + + + 2 + + + + + wxALL + 5 + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + + + 4 + + + + + + + + + + wxALIGN_CENTRE_HORIZONTAL + + + + + + wxALIGN_CENTRE_HORIZONTAL + + + + wxALIGN_RIGHT + + + wxALL|wxEXPAND + 5 + + + + + + wxVERTICAL + + + + + wxALL + 5 + + + + + + + wxVERTICAL + + + 64,64d + + + + + + + + wxALL|wxALIGN_CENTRE_HORIZONTAL + 5 + + + wxALL + 5 + + + + + wxVERTICAL + + + 64,64d + + + + + + + + wxALL|wxALIGN_CENTRE_HORIZONTAL + 5 + + + wxALL + 5 + + wxHORIZONTAL + + wxEXPAND + + + + + + + + + + wxALL + 5 + + + + wxALL + 5 + + + + + + wxALL + 5 + + + + wxALL + 5 + + 2 + 1 + + wxEXPAND + + + + wxALL + 5 + + wxHORIZONTAL + + wxEXPAND + + + + + + wxALL + 5 + + + + + + + + wxALL + 5 + + + + + + + wxALL|wxALIGN_RIGHT + 5 + + wxHORIZONTAL + + wxEXPAND + + + Palette View + + + Tile Viewer + + wxVERTICAL + + + + + + + + + + + + + + + + + + + wxVERTICAL + + wxTOP|wxLEFT|wxRIGHT|wxEXPAND + 5 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + wxVERTICAL + + wxBOTTOM|wxLEFT|wxRIGHT|wxEXPAND + 5 + + + + + + wxTOP|wxLEFT|wxRIGHT + 5 + + + + 0 + 15 + 1 + 5 + + + wxBOTTOM|wxLEFT|wxRIGHT|wxEXPAND + 5 + + + + + + wxTOP|wxLEFT|wxRIGHT + 5 + + + + + + wxBOTTOM|wxLEFT|wxRIGHT + 5 + + wxVERTICAL + + wxEXPAND + + + + wxVERTICAL + + + + + + + + + + + + + + + + + + + 2 + + wxALL|wxEXPAND + 5 + + + + 64,64d + + + wxALL + 5 + + + + wxALL|wxALIGN_BOTTOM + 5 + + + + + + + 128,128d + + + 128,128d + + + wxALL + 5 + + wxHORIZONTAL + + wxEXPAND + + + + + + + + wxALL + 5 + + + + + + wxALL|wxALIGN_CENTRE_HORIZONTAL + 5 + + + + wxALL|wxALIGN_RIGHT + 5 + + 3 + + wxEXPAND + + + + + + wxVERTICAL + + + + + + + + + + + + + + + + + + + wxVERTICAL + + wxTOP|wxLEFT|wxRIGHT|wxEXPAND + 5 + + + + + + + + + + + + + + + + wxVERTICAL + + wxBOTTOM|wxLEFT|wxRIGHT|wxEXPAND + 5 + + + + + + wxTOP|wxLEFT|wxRIGHT + 5 + + + + 0 + 7 + 1 + 2 + + + wxBOTTOM|wxLEFT|wxRIGHT|wxEXPAND + 5 + + + + + + wxTOP|wxLEFT|wxRIGHT + 5 + + + + + + wxBOTTOM|wxLEFT|wxRIGHT + 5 + + wxVERTICAL + + wxEXPAND + + + + wxVERTICAL + + + + + + + + + + + + + + + + + + + 2 + + wxALL|wxEXPAND + 5 + + + + 64,64d + + + wxALL + 5 + + + + wxALL|wxALIGN_BOTTOM + 5 + + + + + + + 128,128d + + + 128,128d + + + wxALL + 5 + + wxHORIZONTAL + + wxEXPAND + + + + + + + + wxALL + 5 + + + + + + wxALL|wxALIGN_CENTRE_HORIZONTAL + 5 + + + + wxALL|wxALIGN_RIGHT + 5 + + 3 + + wxEXPAND + + + Tile Viewer + +