summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2009-05-30 08:38:29 +0000
committerSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2009-05-30 08:38:29 +0000
commit502b3aecd646c124c99f82be813030a694782fcf (patch)
tree873a95ebef323d69d5688d86378c9e5ee452146f
parent928e43def776ab2cb40dbca87316ef956b805249 (diff)
downloadpcsxr-502b3aecd646c124c99f82be813030a694782fcf.tar.gz
supported translation for plugin config utilities
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@23603 e17a0e51-4ae3-4d35-97c3-1a29b211df97
-rw-r--r--plugins/dfcdrom/Makefile.am3
-rw-r--r--plugins/dfcdrom/Makefile.in3
-rw-r--r--plugins/dfcdrom/cdr.c6
-rw-r--r--plugins/dfcdrom/cdr.h2
-rw-r--r--plugins/dfcdrom/main.c16
-rw-r--r--plugins/dfinput/Makefile.am2
-rw-r--r--plugins/dfinput/Makefile.in2
-rw-r--r--plugins/dfinput/cfg.c17
-rw-r--r--plugins/dfinput/pad.c6
-rw-r--r--plugins/dfsound/Makefile.am2
-rw-r--r--plugins/dfsound/Makefile.in2
-rw-r--r--plugins/dfsound/spu.c7
-rw-r--r--plugins/dfsound/spucfg-0.1df/main.c13
-rw-r--r--plugins/dfxvideo/Makefile.am3
-rw-r--r--plugins/dfxvideo/Makefile.in3
-rw-r--r--plugins/dfxvideo/gpucfg-0.1df/main.c13
-rw-r--r--plugins/peopsxgl/Makefile.am2
-rw-r--r--plugins/peopsxgl/Makefile.in2
-rw-r--r--po/pcsx.pot1763
-rw-r--r--po/update-pot.sh2
-rwxr-xr-xpo/zh_CN.gmobin18257 -> 26204 bytes
-rw-r--r--po/zh_CN.po2382
-rwxr-xr-xpo/zh_TW.gmobin18229 -> 19621 bytes
-rw-r--r--po/zh_TW.po2344
24 files changed, 3964 insertions, 2631 deletions
diff --git a/plugins/dfcdrom/Makefile.am b/plugins/dfcdrom/Makefile.am
index 41949526..da03d92c 100644
--- a/plugins/dfcdrom/Makefile.am
+++ b/plugins/dfcdrom/Makefile.am
@@ -10,8 +10,7 @@ INCLUDES = -DPIXMAPDIR=\"${datadir}/pixmaps/\" \
-DLOCALE_DIR=\"${datadir}/locale/\" \
-DDATADIR=\"${datadir}/psemu/\" \
$(GTK2_CFLAGS) \
- -DREVISION=1 -DBUILD=0 \
- -I../../libpcsxcore
+ -I../../libpcsxcore -I../../include
bin_PROGRAMS = cfgDFCdrom
cfgDFCdrom_SOURCES = cfg-gtk2.c main.c support.c interface.c callbacks.c
diff --git a/plugins/dfcdrom/Makefile.in b/plugins/dfcdrom/Makefile.in
index b205ed77..639c6595 100644
--- a/plugins/dfcdrom/Makefile.in
+++ b/plugins/dfcdrom/Makefile.in
@@ -236,8 +236,7 @@ INCLUDES = -DPIXMAPDIR=\"${datadir}/pixmaps/\" \
-DLOCALE_DIR=\"${datadir}/locale/\" \
-DDATADIR=\"${datadir}/psemu/\" \
$(GTK2_CFLAGS) \
- -DREVISION=1 -DBUILD=0 \
- -I../../libpcsxcore
+ -I../../libpcsxcore -I../../include
cfgDFCdrom_SOURCES = cfg-gtk2.c main.c support.c interface.c callbacks.c
cfgDFCdrom_LDADD = $(GTK2_LIBS)
diff --git a/plugins/dfcdrom/cdr.c b/plugins/dfcdrom/cdr.c
index 4649ff62..50920aa4 100644
--- a/plugins/dfcdrom/cdr.c
+++ b/plugins/dfcdrom/cdr.c
@@ -49,10 +49,6 @@ char *LibName = "CDR NULL Plugin";
#endif
-const unsigned char version = 1; // PSEmu 1.x library
-const unsigned char revision = VERSION;
-const unsigned char build = BUILD;
-
char *PSEgetLibName(void) {
return LibName;
}
@@ -62,7 +58,7 @@ unsigned long PSEgetLibType(void) {
}
unsigned long PSEgetLibVersion(void) {
- return version << 16 | revision << 8 | build;
+ return 1 << 16;
}
#ifdef __linux__
diff --git a/plugins/dfcdrom/cdr.h b/plugins/dfcdrom/cdr.h
index 1f9afbaa..9a83d512 100644
--- a/plugins/dfcdrom/cdr.h
+++ b/plugins/dfcdrom/cdr.h
@@ -16,8 +16,6 @@ long UseSubQ;
long CacheSize;
long CdrSpeed;
-#define VERSION 1
-
#ifdef __linux__
#define DEV_DEF "/dev/cdrom"
diff --git a/plugins/dfcdrom/main.c b/plugins/dfcdrom/main.c
index 2b591045..c68c8107 100644
--- a/plugins/dfcdrom/main.c
+++ b/plugins/dfcdrom/main.c
@@ -1,7 +1,12 @@
-
#include <string.h>
#include <gtk/gtk.h>
+#include "config.h"
+
+#ifdef ENABLE_NLS
+#include <libintl.h>
+#endif
+
#include "interface.h"
#include "support.h"
@@ -11,6 +16,13 @@ int main (int argc, char *argv[])
GtkWidget *cfg_dialog;
GtkWidget *abt_dialog;
+#ifdef ENABLE_NLS
+ setlocale (LC_ALL, "");
+ bindtextdomain (GETTEXT_PACKAGE, LOCALE_DIR);
+ bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
+ textdomain (GETTEXT_PACKAGE);
+#endif
+
gtk_set_locale ();
gtk_init (&argc, &argv);
@@ -28,5 +40,3 @@ int main (int argc, char *argv[])
#endif
return 0;
}
-
-
diff --git a/plugins/dfinput/Makefile.am b/plugins/dfinput/Makefile.am
index cb6d2648..fa20fb13 100644
--- a/plugins/dfinput/Makefile.am
+++ b/plugins/dfinput/Makefile.am
@@ -11,7 +11,7 @@ INCLUDES = -DPIXMAPDIR=\"${datadir}/pixmaps/\" \
-DLOCALE_DIR=\"${datadir}/locale/\" \
-DDATADIR=\"${datadir}/psemu/\" \
$(GTK2_CFLAGS) $(GLADE2_CFLAGS) -I/usr/X11R6/include \
- -DVERSION=0 -DREVISION=1 -DBUILD=0
+ -I../../include
bin_PROGRAMS = cfgDFInput
cfgDFInput_SOURCES = cfg.c padjoy.h
diff --git a/plugins/dfinput/Makefile.in b/plugins/dfinput/Makefile.in
index 21515a10..b3aa8edb 100644
--- a/plugins/dfinput/Makefile.in
+++ b/plugins/dfinput/Makefile.in
@@ -241,7 +241,7 @@ INCLUDES = -DPIXMAPDIR=\"${datadir}/pixmaps/\" \
-DLOCALE_DIR=\"${datadir}/locale/\" \
-DDATADIR=\"${datadir}/psemu/\" \
$(GTK2_CFLAGS) $(GLADE2_CFLAGS) -I/usr/X11R6/include \
- -DVERSION=0 -DREVISION=1 -DBUILD=0
+ -I../../include
cfgDFInput_SOURCES = cfg.c padjoy.h
cfgDFInput_LDADD = $(GTK2_LIBS) $(GLADE2_LIBS)
diff --git a/plugins/dfinput/cfg.c b/plugins/dfinput/cfg.c
index 3f6d0184..dbb7f858 100644
--- a/plugins/dfinput/cfg.c
+++ b/plugins/dfinput/cfg.c
@@ -24,6 +24,8 @@
*
*/
+#include "config.h"
+
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@@ -44,6 +46,10 @@
#include <errno.h>
#include "padjoy.h"
+#ifdef ENABLE_NLS
+#include <libintl.h>
+#endif
+
#ifdef __linux__
char *LibName = "Gamepad/Keyboard Input";
#else
@@ -52,10 +58,6 @@ char *LibName = "Keyboard Input";
#define CONFIG_FILENAME "dfinput.cfg"
-const unsigned char version = VERSION;
-const unsigned char revision = REVISION;
-const unsigned char build = BUILD;
-
// Prototypes
static void loadConfig();
static void saveConfig();
@@ -1273,6 +1275,13 @@ void PADabout(void) {
/*---------------------------------------------------------------------*/
int main(int argc, char **argv) {
+#ifdef ENABLE_NLS
+ setlocale (LC_ALL, "");
+ bindtextdomain (GETTEXT_PACKAGE, LOCALE_DIR);
+ bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
+ textdomain (GETTEXT_PACKAGE);
+#endif
+
gtk_set_locale();
gtk_init (&argc, &argv);
diff --git a/plugins/dfinput/pad.c b/plugins/dfinput/pad.c
index dd564479..166d3a18 100644
--- a/plugins/dfinput/pad.c
+++ b/plugins/dfinput/pad.c
@@ -50,10 +50,6 @@ char *LibName = "Gamepad/Keyboard Input";
char *LibName = "Keyboard Input";
#endif
-const unsigned char version = VERSION;
-const unsigned char revision = REVISION;
-const unsigned char build = BUILD;
-
// Prototypes
static void loadConfig();
static void *thread_check_joydevice(void *arg);
@@ -159,7 +155,7 @@ uint32_t PSEgetLibType(void) {
}
uint32_t PSEgetLibVersion(void) {
- return version<<16|revision<<8|build;
+ return 1 << 16;
}
void init_macros() {
diff --git a/plugins/dfsound/Makefile.am b/plugins/dfsound/Makefile.am
index 5e4db842..70f3d650 100644
--- a/plugins/dfsound/Makefile.am
+++ b/plugins/dfsound/Makefile.am
@@ -2,7 +2,7 @@ INCLUDES = -DPIXMAPDIR=\"${datadir}/pixmaps/\" \
-DLOCALE_DIR=\"${datadir}/locale/\" \
-DDATADIR=\"${datadir}/psemu/\" \
$(GTK2_CFLAGS) $(GLADE2_CFLAGS) \
- -DVERSION=0 -DREVISION=1 -DBUILD=0
+ -I../../include
bindir = @libdir@/games/psemu/
libdir = @libdir@/games/psemu/
diff --git a/plugins/dfsound/Makefile.in b/plugins/dfsound/Makefile.in
index 715aa348..319bc687 100644
--- a/plugins/dfsound/Makefile.in
+++ b/plugins/dfsound/Makefile.in
@@ -243,7 +243,7 @@ INCLUDES = -DPIXMAPDIR=\"${datadir}/pixmaps/\" \
-DLOCALE_DIR=\"${datadir}/locale/\" \
-DDATADIR=\"${datadir}/psemu/\" \
$(GTK2_CFLAGS) $(GLADE2_CFLAGS) \
- -DVERSION=0 -DREVISION=1 -DBUILD=0
+ -I../../include
lib_LTLIBRARIES = libDFSound.la
libDFSound_la_SOURCES = spu.c cfg.c dma.c freeze.c psemu.c registers.c \
diff --git a/plugins/dfsound/spu.c b/plugins/dfsound/spu.c
index e6dd2776..ce697382 100644
--- a/plugins/dfsound/spu.c
+++ b/plugins/dfsound/spu.c
@@ -24,11 +24,6 @@
#include "dsoundoss.h"
#include "regs.h"
-// spu version infos/name
-const unsigned char version = 1;
-const unsigned char revision = 0;
-const unsigned char build = 0;
-
#if defined(USEALSA)
static char * libraryName = "ALSA Sound";
#elif defined (USEOSS)
@@ -914,7 +909,7 @@ unsigned long CALLBACK PSEgetLibType(void)
unsigned long CALLBACK PSEgetLibVersion(void)
{
- return version<<16|revision<<8|build;
+ return (1 << 16) | (6 << 8);
}
char * SPUgetLibInfos(void)
diff --git a/plugins/dfsound/spucfg-0.1df/main.c b/plugins/dfsound/spucfg-0.1df/main.c
index d358dac8..e40c74aa 100644
--- a/plugins/dfsound/spucfg-0.1df/main.c
+++ b/plugins/dfsound/spucfg-0.1df/main.c
@@ -1,3 +1,5 @@
+#include "config.h"
+
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
@@ -7,6 +9,10 @@
#include <glade/glade.h>
#include <gtk/gtk.h>
+#ifdef ENABLE_NLS
+#include <libintl.h>
+#endif
+
#define READBINARY "rb"
#define WRITEBINARY "wb"
#define CONFIG_FILENAME "dfsound.cfg"
@@ -68,6 +74,13 @@ int main(int argc, char *argv[])
char *pB, *p;
char cfg[255];
+#ifdef ENABLE_NLS
+ setlocale (LC_ALL, "");
+ bindtextdomain (GETTEXT_PACKAGE, LOCALE_DIR);
+ bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
+ textdomain (GETTEXT_PACKAGE);
+#endif
+
if (argc != 2) {
printf ("Usage: cfgDFSound {ABOUT | CFG}\n");
return 0;
diff --git a/plugins/dfxvideo/Makefile.am b/plugins/dfxvideo/Makefile.am
index e2396901..6f358b06 100644
--- a/plugins/dfxvideo/Makefile.am
+++ b/plugins/dfxvideo/Makefile.am
@@ -10,7 +10,8 @@ INCLUDES = -DPIXMAPDIR=\"${datadir}/pixmaps/\" \
-DLOCALE_DIR=\"${datadir}/locale/\" \
-DDATADIR=\"${datadir}/psemu/\" \
$(GTK2_CFLAGS) $(GLADE2_CFLAGS) -I/usr/X11R6/include \
- -I../../libpcsxcore -DVERSION=XVideo -DNUMBER=0.1.0
+ -I../../libpcsxcore -DVERSION=XVideo -DNUMBER=0.1.0 \
+ -I../../include
bindir = @libdir@/games/psemu/
libdir = @libdir@/games/psemu/
diff --git a/plugins/dfxvideo/Makefile.in b/plugins/dfxvideo/Makefile.in
index 76f5efad..096a6869 100644
--- a/plugins/dfxvideo/Makefile.in
+++ b/plugins/dfxvideo/Makefile.in
@@ -245,7 +245,8 @@ INCLUDES = -DPIXMAPDIR=\"${datadir}/pixmaps/\" \
-DLOCALE_DIR=\"${datadir}/locale/\" \
-DDATADIR=\"${datadir}/psemu/\" $(GTK2_CFLAGS) \
$(GLADE2_CFLAGS) -I/usr/X11R6/include -I../../libpcsxcore \
- -DVERSION=XVideo -DNUMBER=0.1.0 $(am__append_2)
+ -DVERSION=XVideo -DNUMBER=0.1.0 -I../../include \
+ $(am__append_2)
lib_LTLIBRARIES = libDFXVideo.la
libDFXVideo_la_SOURCES = gpu.c cfg.c draw.c fps.c key.c menu.c prim.c \
soft.c zn.c $(am__append_1)
diff --git a/plugins/dfxvideo/gpucfg-0.1df/main.c b/plugins/dfxvideo/gpucfg-0.1df/main.c
index 670a8351..487b9cfc 100644
--- a/plugins/dfxvideo/gpucfg-0.1df/main.c
+++ b/plugins/dfxvideo/gpucfg-0.1df/main.c
@@ -1,6 +1,12 @@
#include <gtk/gtk.h>
#include <glade/glade.h>
+#include "config.h"
+
+#ifdef ENABLE_NLS
+#include <libintl.h>
+#endif
+
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
@@ -84,6 +90,13 @@ main (int argc, char *argv[])
int i;
char tempstr[50];
+#ifdef ENABLE_NLS
+ setlocale (LC_ALL, "");
+ bindtextdomain (GETTEXT_PACKAGE, LOCALE_DIR);
+ bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
+ textdomain (GETTEXT_PACKAGE);
+#endif
+
if (argc!=2) {
printf("Usage: cfgDFXVideo {ABOUT | CFG}\n");
return 0;
diff --git a/plugins/peopsxgl/Makefile.am b/plugins/peopsxgl/Makefile.am
index c71d6429..f1d9cb88 100644
--- a/plugins/peopsxgl/Makefile.am
+++ b/plugins/peopsxgl/Makefile.am
@@ -2,7 +2,7 @@ INCLUDES = -DPIXMAPDIR=\"${datadir}/pixmaps/\" \
-DLOCALE_DIR=\"${datadir}/locale/\" \
-DDATADIR=\"${datadir}/psemu/\" \
$(GTK2_CFLAGS) $(GLADE2_CFLAGS) -I/usr/X11R6/include \
- -I../../libpcsxcore -fPIC
+ -I../../libpcsxcore -I../../include -fPIC
bindir = @libdir@/games/psemu/
libdir = @libdir@/games/psemu/
diff --git a/plugins/peopsxgl/Makefile.in b/plugins/peopsxgl/Makefile.in
index 211a78fb..46cef695 100644
--- a/plugins/peopsxgl/Makefile.in
+++ b/plugins/peopsxgl/Makefile.in
@@ -225,7 +225,7 @@ INCLUDES = -DPIXMAPDIR=\"${datadir}/pixmaps/\" \
-DLOCALE_DIR=\"${datadir}/locale/\" \
-DDATADIR=\"${datadir}/psemu/\" \
$(GTK2_CFLAGS) $(GLADE2_CFLAGS) -I/usr/X11R6/include \
- -I../../libpcsxcore -fPIC
+ -I../../libpcsxcore -I../../include -fPIC
lib_LTLIBRARIES = libpeopsxgl.la
libpeopsxgl_la_SOURCES = cfg.c draw.c fps.c gpu.c key.c menu.c \
diff --git a/po/pcsx.pot b/po/pcsx.pot
index 86ef48c5..7bbf7580 100644
--- a/po/pcsx.pot
+++ b/po/pcsx.pot
@@ -8,145 +8,692 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-03-25 19:23+0800\n"
+"POT-Creation-Date: 2009-05-30 16:09+0800\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=CHARSET\n"
+"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../libpcsxcore/cdriso.c:125
-#, c-format
-msgid "Could not open %s.\n"
+#: ../win32/gui/AboutDlg.c:26
+msgid ""
+"PCSX - A PlayStation Emulator\n"
+"\n"
+"Original Authors:\n"
+"main coder: linuzappz\n"
+"co-coders: shadow\n"
+"ex-coders: Nocomp, Pete Bernett, nik3d\n"
+"Webmaster: AkumaX"
msgstr ""
-#: ../libpcsxcore/cheat.c:335 ../libpcsxcore/cheat.c:454
-msgid "(Untitled)"
+#: ../win32/gui/AboutDlg.c:35
+msgid ""
+"PCSX-df Authors:\n"
+"Ryan Schultz, Andrew Burton, Stephen Chao,\n"
+"Marcus Comstedt, Stefan Sikora\n"
+"\n"
+"PCSX Reloaded By:\n"
+"Wei Mingzhi\n"
+"\n"
+"http://www.codeplex.com/pcsxr"
msgstr ""
-#: ../libpcsxcore/misc.c:372
+#: ../win32/gui/AboutDlg.c:46
+msgid "About"
+msgstr ""
+
+#: ../win32/gui/AboutDlg.c:48 ../win32/gui/AboutDlg.c:52
+#: ../win32/gui/ConfigurePlugins.c:462 ../win32/gui/ConfigurePlugins.c:593
+#: ../win32/gui/WndMain.c:906 ../win32/gui/WndMain.c:1142
+msgid "OK"
+msgstr ""
+
+#: ../win32/gui/AboutDlg.c:49
+msgid "PCSX EMU\n"
+msgstr ""
+
+#: ../win32/gui/ConfigurePlugins.c:385
+msgid "This plugin reports that should work correctly"
+msgstr ""
+
+#: ../win32/gui/ConfigurePlugins.c:386
+msgid "This plugin reports that should not work correctly"
+msgstr ""
+
+#: ../win32/gui/ConfigurePlugins.c:460
+msgid "Configuration"
+msgstr ""
+
+#: ../win32/gui/ConfigurePlugins.c:463 ../win32/gui/ConfigurePlugins.c:594
+#: ../win32/gui/WndMain.c:907 ../win32/gui/WndMain.c:1143
+msgid "Cancel"
+msgstr ""
+
+#: ../win32/gui/ConfigurePlugins.c:464
+msgid "Graphics"
+msgstr ""
+
+#: ../win32/gui/ConfigurePlugins.c:465
+msgid "First Controller"
+msgstr ""
+
+#: ../win32/gui/ConfigurePlugins.c:466
+msgid "Second Controller"
+msgstr ""
+
+#: ../win32/gui/ConfigurePlugins.c:467
+msgid "Sound"
+msgstr ""
+
+#: ../win32/gui/ConfigurePlugins.c:468
+msgid "Cdrom"
+msgstr ""
+
+#: ../win32/gui/ConfigurePlugins.c:469
+msgid "Bios"
+msgstr ""
+
+#: ../win32/gui/ConfigurePlugins.c:470
+msgid "Set Bios Directory"
+msgstr ""
+
+#: ../win32/gui/ConfigurePlugins.c:471
+msgid "Set Plugins Directory"
+msgstr ""
+
+#: ../win32/gui/ConfigurePlugins.c:472 ../win32/gui/ConfigurePlugins.c:475
+#: ../win32/gui/ConfigurePlugins.c:478 ../win32/gui/ConfigurePlugins.c:481
+#: ../win32/gui/ConfigurePlugins.c:484 ../win32/gui/ConfigurePlugins.c:596
+msgid "Configure..."
+msgstr ""
+
+#: ../win32/gui/ConfigurePlugins.c:473 ../win32/gui/ConfigurePlugins.c:476
+#: ../win32/gui/ConfigurePlugins.c:479 ../win32/gui/ConfigurePlugins.c:482
+#: ../win32/gui/ConfigurePlugins.c:485 ../win32/gui/ConfigurePlugins.c:597
+msgid "Test..."
+msgstr ""
+
+#: ../win32/gui/ConfigurePlugins.c:474 ../win32/gui/ConfigurePlugins.c:477
+#: ../win32/gui/ConfigurePlugins.c:480 ../win32/gui/ConfigurePlugins.c:483
+#: ../win32/gui/ConfigurePlugins.c:486 ../win32/gui/ConfigurePlugins.c:598
+msgid "About..."
+msgstr ""
+
+#: ../win32/gui/ConfigurePlugins.c:591
+msgid "NetPlay Configuration"
+msgstr ""
+
+#: ../win32/gui/ConfigurePlugins.c:595
+msgid "NetPlay"
+msgstr ""
+
+#: ../win32/gui/ConfigurePlugins.c:599
+msgid ""
+"Note: The NetPlay Plugin Directory should be the same as the other Plugins."
+msgstr ""
+
+#: ../win32/gui/plugin.c:90 ../win32/gui/WndMain.c:235
#, c-format
-msgid "Error opening file: %s"
+msgid "*PCSX*: Saved State %d"
msgstr ""
-#: ../libpcsxcore/misc.c:390
-msgid "CPE files not supported."
+#: ../win32/gui/plugin.c:91 ../win32/gui/WndMain.c:236
+#, c-format
+msgid "*PCSX*: Error Saving State %d"
msgstr ""
-#: ../libpcsxcore/misc.c:394
-msgid "COFF files not supported."
+#: ../win32/gui/plugin.c:107 ../win32/gui/WndMain.c:214
+#, c-format
+msgid "*PCSX*: Loaded State %d"
msgstr ""
-#: ../libpcsxcore/misc.c:398
-msgid "This file does not appear to be a valid PSX file."
+#: ../win32/gui/plugin.c:108 ../win32/gui/WndMain.c:215
+#, c-format
+msgid "*PCSX*: Error Loading State %d"
msgstr ""
-#: ../libpcsxcore/plugins.c:33
+#: ../win32/gui/plugin.c:119
#, c-format
-msgid "Error loading %s: %s"
+msgid "*PCSX*: Sio Irq Always Enabled"
msgstr ""
-#: ../libpcsxcore/plugins.c:162
+#: ../win32/gui/plugin.c:120
#, c-format
-msgid "Could not load GPU plugin %s!"
+msgid "*PCSX*: Sio Irq Not Always Enabled"
msgstr ""
-#: ../libpcsxcore/plugins.c:228
+#: ../win32/gui/plugin.c:127
#, c-format
-msgid "Could not load CD-ROM plugin %s!"
+msgid "*PCSX*: Black&White Mdecs Only Enabled"
msgstr ""
-#: ../libpcsxcore/plugins.c:467
+#: ../win32/gui/plugin.c:128
#, c-format
-msgid "Could not load SPU plugin %s!"
+msgid "*PCSX*: Black&White Mdecs Only Disabled"
msgstr ""
-#: ../libpcsxcore/plugins.c:615
+#: ../win32/gui/plugin.c:135
#, c-format
-msgid "Could not load Controller 1 plugin %s!"
+msgid "*PCSX*: Xa Enabled"
msgstr ""
-#: ../libpcsxcore/plugins.c:669
+#: ../win32/gui/plugin.c:136
#, c-format
-msgid "Could not load Controller 2 plugin %s!"
+msgid "*PCSX*: Xa Disabled"
msgstr ""
-#: ../libpcsxcore/plugins.c:712
+#: ../win32/gui/plugin.c:145
+msgid "*PCSX*: CdRom Case Opened"
+msgstr ""
+
+#: ../win32/gui/plugin.c:150
+msgid "*PCSX*: CdRom Case Closed"
+msgstr ""
+
+#: ../win32/gui/plugin.c:177
+msgid "Connecting..."
+msgstr ""
+
+#: ../win32/gui/plugin.c:179 ../win32/gui/plugin.c:186
#, c-format
-msgid "Could not load NetPlay plugin %s!"
+msgid "Please wait while connecting... %c\n"
msgstr ""
-#: ../libpcsxcore/plugins.c:775
+#: ../win32/gui/plugin.c:216
+msgid "Error Opening CDR Plugin"
+msgstr ""
+
+#: ../win32/gui/plugin.c:279
#, c-format
-msgid "Error initializing CD-ROM plugin: %d"
+msgid "Error Opening GPU Plugin (%d)"
msgstr ""
-#: ../libpcsxcore/plugins.c:777
+#: ../win32/gui/plugin.c:281
#, c-format
-msgid "Error initializing GPU plugin: %d"
+msgid "Error Opening SPU Plugin (%d)"
msgstr ""
-#: ../libpcsxcore/plugins.c:779
+#: ../win32/gui/plugin.c:284
#, c-format
-msgid "Error initializing SPU plugin: %d"
+msgid "Error Opening PAD1 Plugin (%d)"
msgstr ""
-#: ../libpcsxcore/plugins.c:781
+#: ../win32/gui/plugin.c:286
#, c-format
-msgid "Error initializing Controller 1 plugin: %d"
+msgid "Error Opening PAD2 Plugin (%d)"
msgstr ""
-#: ../libpcsxcore/plugins.c:783
+#: ../win32/gui/plugin.c:309
+msgid "Error Closing CDR Plugin"
+msgstr ""
+
+#: ../win32/gui/plugin.c:311
+msgid "Error Closing GPU Plugin"
+msgstr ""
+
+#: ../win32/gui/plugin.c:313
+msgid "Error Closing SPU Plugin"
+msgstr ""
+
+#: ../win32/gui/plugin.c:315
+msgid "Error Closing PAD1 Plugin"
+msgstr ""
+
+#: ../win32/gui/plugin.c:317
+msgid "Error Closing PAD2 Plugin"
+msgstr ""
+
+#: ../win32/gui/plugin.c:335
#, c-format
-msgid "Error initializing Controller 2 plugin: %d"
+msgid "CDRinit error: %d"
msgstr ""
-#: ../libpcsxcore/plugins.c:787
+#: ../win32/gui/plugin.c:337
#, c-format
-msgid "Error initializing NetPlay plugin: %d"
+msgid "GPUinit error: %d"
msgstr ""
-#: ../libpcsxcore/plugins.c:790
-msgid "Plugins loaded.\n"
+#: ../win32/gui/plugin.c:339
+#, c-format
+msgid "SPUinit error: %d"
msgstr ""
-#: ../libpcsxcore/psxmem.c:69
-msgid "Error allocating memory!"
+#: ../win32/gui/plugin.c:341
+#, c-format
+msgid "PAD1init error: %d"
msgstr ""
-#: ../libpcsxcore/psxmem.c:109
+#: ../win32/gui/plugin.c:343
#, c-format
-msgid "Could not open BIOS:\"%s\". Enabling HLE Bios!\n"
+msgid "PAD2init error: %d"
msgstr ""
-#: ../libpcsxcore/r3000a.c:34
+#: ../win32/gui/plugin.c:346
#, c-format
-msgid "Running PCSX Version %s (%s).\n"
+msgid "NETinit error: %d"
msgstr ""
-#: ../libpcsxcore/sio.c:99
-msgid "Connection closed!\n"
+#: ../win32/gui/WndMain.c:74
+msgid "Arabic"
msgstr ""
-#: ../libpcsxcore/sio.c:322
+#: ../win32/gui/WndMain.c:75
+msgid "Catalan"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:76
+msgid "German"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:77
+msgid "Greek"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:78 ../win32/gui/WndMain.c:1471
+#: ../win32/gui/WndMain.c:1473
+msgid "English"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:79
+msgid "Spanish"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:80
+msgid "French"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:81
+msgid "Italian"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:82
+msgid "Portuguese"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:83
+msgid "Romanian"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:84
+msgid "Russian"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:85
+msgid "Simplified Chinese"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:86
+msgid "Traditional Chinese"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:87
+msgid "Japanese"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:88
+msgid "Korean"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:129
+msgid "Pcsx needs to be configured"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:133
+msgid "Pcsx now will quit, restart it"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:253 ../win32/gui/WndMain.c:305
+msgid "PCSX State Format"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:280
#, c-format
-msgid "No memory card value was specified - creating a default card %s\n"
+msgid "*PCSX*: Loaded State %s"
msgstr ""
-#: ../libpcsxcore/sio.c:326
+#: ../win32/gui/WndMain.c:281
#, c-format
-msgid "The memory card %s doesn't exist - creating it\n"
+msgid "*PCSX*: Error Loading State %s"
msgstr ""
-#: ../libpcsxcore/sio.c:342
+#: ../win32/gui/WndMain.c:332
#, c-format
-msgid "Memory card %s failed to load!\n"
+msgid "*PCSX*: Saved State %s"
msgstr ""
-#: ../libpcsxcore/sio.c:346
+#: ../win32/gui/WndMain.c:333
#, c-format
-msgid "Loading memory card %s\n"
+msgid "*PCSX*: Error Saving State %s"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:382 ../win32/gui/WndMain.c:431 ../gui/Gtk2Gui.c:552
+#: ../gui/Gtk2Gui.c:675
+msgid "The CD does not appear to be a valid Playstation CD"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:388 ../win32/gui/WndMain.c:437 ../gui/Gtk2Gui.c:560
+#: ../gui/Gtk2Gui.c:683
+msgid "Could not load CD-ROM!"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:398
+msgid "Running BIOS is not supported with Internal HLE Bios."
+msgstr ""
+
+#: ../win32/gui/WndMain.c:604 ../gui/Gtk2Gui.c:1046
+msgid "Title"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:610 ../gui/Gtk2Gui.c:1052
+msgid "Status"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:616
+msgid "Game ID"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:622
+msgid "Game"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:796
+msgid "mid link block"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:799
+msgid "terminiting link block"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:807 ../gui/Gtk2Gui.c:1126
+msgid "Deleted"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:808 ../win32/gui/WndMain.c:811 ../gui/Gtk2Gui.c:1128
+#: ../gui/Gtk2Gui.c:1132
+msgid "Free"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:810 ../gui/Gtk2Gui.c:1130
+msgid "Used"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:904
+msgid "Memcard Manager"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:908 ../win32/gui/WndMain.c:911
+msgid "Select Mcd"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:909 ../win32/gui/WndMain.c:912
+msgid "Format Mcd"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:910 ../win32/gui/WndMain.c:913
+msgid "Reload Mcd"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:914
+msgid "-> Copy ->"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:915
+msgid "<- Copy <-"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:916
+msgid "Paste"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:917
+msgid "<- Un/Delete"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:918
+msgid "Un/Delete ->"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:920
+msgid "Memory Card 1"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:921
+msgid "Memory Card 2"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:976
+msgid "Are you sure you want to paste this selection?"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:976 ../win32/gui/WndMain.c:1087
+#: ../win32/gui/WndMain.c:1094
+msgid "Confirmation"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1087 ../win32/gui/WndMain.c:1094
+msgid "Are you sure you want to format this Memory Card?"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1140
+msgid "Cpu Config"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1145
+msgid "Disable Xa Decoding"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1146
+msgid "Sio Irq Always Enabled"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1147
+msgid "Black && White Movies"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1148
+msgid "Disable Cd audio"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1149 ../data/pcsx.glade2:1321
+msgid "Autodetect"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1150
+msgid "Enable Interpreter Cpu"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1151 ../data/pcsx.glade2:1183
+msgid "Enable Console Output"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1152
+msgid "Spu Irq Always Enabled"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1153 ../data/pcsx.glade2:1267
+msgid "Parasite Eve 2, Vandal Hearts 1/2 Fix"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1154 ../data/pcsx.glade2:1282
+msgid "InuYasha Sengoku Battle Fix"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1156
+msgid "Options"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1157
+msgid "Psx System Type"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1229
+msgid "Psx Mcd Format (*.mcr;*.mc;*.mem;*.vgs;*.mcd;*.gme;*.ddf)"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1234
+msgid "Psx Memory Card (*.mcr;*.mc)"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1239
+msgid "CVGS Memory Card (*.mem;*.vgs)"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1244
+msgid "Bleem Memory Card (*.mcd)"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1249
+msgid "DexDrive Memory Card (*.gme)"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1254
+msgid "DataDeck Memory Card (*.ddf)"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1259 ../win32/gui/WndMain.c:1340 ../gui/Cheat.c:372
+#: ../gui/Gtk2Gui.c:626
+msgid "All Files"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1298
+msgid "Psx Exe Format"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1335
+msgid "Psx Isos (*.iso;*.mdf;*.img;*.bin)"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1409
+msgid "&File"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1410
+msgid "E&xit"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1412
+msgid "&States"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1414
+msgid "Run &EXE"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1415
+msgid "Run &BIOS"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1416
+msgid "Run &ISO"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1417
+msgid "Run &CD"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1418
+msgid "&Save"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1419
+msgid "&Load"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1420 ../win32/gui/WndMain.c:1426
+msgid "&Other..."
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1421 ../win32/gui/WndMain.c:1427
+msgid "Slot &5"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1422 ../win32/gui/WndMain.c:1428
+msgid "Slot &4"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1423 ../win32/gui/WndMain.c:1429
+msgid "Slot &3"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1424 ../win32/gui/WndMain.c:1430
+msgid "Slot &2"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1425 ../win32/gui/WndMain.c:1431
+msgid "Slot &1"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1433
+msgid "&Emulator"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1434
+msgid "S&witch ISO"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1436
+msgid "Re&set"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1437
+msgid "&Run"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1439
+msgid "&Configuration"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1440
+msgid "&Memory cards"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1441
+msgid "C&PU"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1443
+msgid "&NetPlay"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1445
+msgid "&Controllers"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1446
+msgid "CD-&ROM"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1447
+msgid "&Sound"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1448
+msgid "&Graphics"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1450
+msgid "&Plugins && Bios"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1452
+msgid "&Language"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1476
+msgid "&Help"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1477
+msgid "&About..."
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1654
+msgid "Pcsx Msg"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:1657
+msgid "Error Loading Symbol"
msgstr ""
#: ../gui/Cheat.c:49
@@ -165,7 +712,7 @@ msgstr ""
msgid "Cheat Code:"
msgstr ""
-#: ../gui/Cheat.c:164 ../gui/Cheat.c:259 ../gui/LnxMain.c:359
+#: ../gui/Cheat.c:164 ../gui/Cheat.c:259 ../gui/LnxMain.c:355
msgid "Error"
msgstr ""
@@ -185,11 +732,6 @@ msgstr ""
msgid "PCSX Cheat Code Files (*.cht)"
msgstr ""
-#: ../gui/Cheat.c:372 ../gui/Gtk2Gui.c:626 ../win32/gui/WndMain.c:1259
-#: ../win32/gui/WndMain.c:1340
-msgid "All Files"
-msgstr ""
-
#: ../gui/Cheat.c:397
msgid "Save Cheat File"
msgstr ""
@@ -198,7 +740,8 @@ msgstr ""
msgid "All Files (*.*)"
msgstr ""
-#: ../gui/Cheat.c:445 ../gui/Gtk2Gui.c:377 ../gui/Gtk2Gui.c:998
+#: ../gui/Cheat.c:445 ../gui/Cheat.c:531 ../gui/Gtk2Gui.c:377
+#: ../gui/Gtk2Gui.c:998
msgid "Error: Glade interface could not be loaded!"
msgstr ""
@@ -206,7 +749,7 @@ msgstr ""
msgid "Cheat Codes"
msgstr ""
-#: ../gui/Cheat.c:456 ../data/pcsx.glade2:2250
+#: ../gui/Cheat.c:456 ../data/pcsx.glade2:2253
msgid "Enable"
msgstr ""
@@ -214,6 +757,10 @@ msgstr ""
msgid "Description"
msgstr ""
+#: ../gui/Cheat.c:536 ../data/pcsx.glade2:2362
+msgid "Cheat Search"
+msgstr ""
+
#: ../gui/Gtk2Gui.c:385 ../data/pcsx.glade2:517
msgid "Configure PCSX"
msgstr ""
@@ -238,16 +785,6 @@ msgstr ""
msgid "CD ROM failed"
msgstr ""
-#: ../gui/Gtk2Gui.c:552 ../gui/Gtk2Gui.c:675 ../win32/gui/WndMain.c:382
-#: ../win32/gui/WndMain.c:431
-msgid "The CD does not appear to be a valid Playstation CD"
-msgstr ""
-
-#: ../gui/Gtk2Gui.c:560 ../gui/Gtk2Gui.c:683 ../win32/gui/WndMain.c:388
-#: ../win32/gui/WndMain.c:437
-msgid "Could not load CD-ROM!"
-msgstr ""
-
#: ../gui/Gtk2Gui.c:560
msgid "The CD ROM could not be loaded"
msgstr ""
@@ -296,14 +833,6 @@ msgstr ""
msgid "Icon"
msgstr ""
-#: ../gui/Gtk2Gui.c:1046 ../win32/gui/WndMain.c:604
-msgid "Title"
-msgstr ""
-
-#: ../gui/Gtk2Gui.c:1052 ../win32/gui/WndMain.c:610
-msgid "Status"
-msgstr ""
-
#: ../gui/Gtk2Gui.c:1058
msgid "ID"
msgstr ""
@@ -312,19 +841,6 @@ msgstr ""
msgid "Name"
msgstr ""
-#: ../gui/Gtk2Gui.c:1126 ../win32/gui/WndMain.c:807
-msgid "Deleted"
-msgstr ""
-
-#: ../gui/Gtk2Gui.c:1128 ../gui/Gtk2Gui.c:1132 ../win32/gui/WndMain.c:808
-#: ../win32/gui/WndMain.c:811
-msgid "Free"
-msgstr ""
-
-#: ../gui/Gtk2Gui.c:1130 ../win32/gui/WndMain.c:810
-msgid "Used"
-msgstr ""
-
#: ../gui/Gtk2Gui.c:1224
msgid "Format this Memory Card?"
msgstr ""
@@ -360,25 +876,25 @@ msgstr ""
msgid "Could not open BIOS directory: '%s'\n"
msgstr ""
-#: ../gui/Gtk2Gui.c:2049 ../gui/Gtk2Gui.c:2143 ../gui/LnxMain.c:145
+#: ../gui/Gtk2Gui.c:2049 ../gui/Gtk2Gui.c:2142 ../gui/LnxMain.c:146
#, c-format
msgid "Could not open directory: '%s'\n"
msgstr ""
-#: ../gui/Gtk2Gui.c:2112
+#: ../gui/Gtk2Gui.c:2111
msgid "Internal HLE Bios"
msgstr ""
-#: ../gui/Gtk2Gui.c:2204
+#: ../gui/Gtk2Gui.c:2203
msgid "Notice"
msgstr ""
-#: ../gui/LnxMain.c:64
+#: ../gui/LnxMain.c:65
#, c-format
msgid "Creating memory card: %s\n"
msgstr ""
-#: ../gui/LnxMain.c:261
+#: ../gui/LnxMain.c:262
msgid ""
" pcsx [options] [file]\n"
"\toptions:\n"
@@ -392,23 +908,23 @@ msgid ""
"\tfile\t\tLoads file\n"
msgstr ""
-#: ../gui/LnxMain.c:299
+#: ../gui/LnxMain.c:300
#, c-format
msgid ""
"PCSX cannot be configured without using the GUI -- you should restart "
"without -nogui.\n"
msgstr ""
-#: ../gui/LnxMain.c:359
+#: ../gui/LnxMain.c:355
msgid "Failed loading plugins!"
msgstr ""
-#: ../gui/LnxMain.c:376
+#: ../gui/LnxMain.c:372
#, c-format
msgid "Could not load CD-ROM!\n"
msgstr ""
-#: ../gui/LnxMain.c:415
+#: ../gui/LnxMain.c:411
#, c-format
msgid "PSX emulator couldn't be initialized.\n"
msgstr ""
@@ -483,951 +999,868 @@ msgstr ""
msgid "Error closing GPU plugin!"
msgstr ""
-#: ../data/pcsx.glade2:9
-msgid "PCSX"
-msgstr ""
-
-#: ../data/pcsx.glade2:23
-msgid "_File"
-msgstr ""
-
-#: ../data/pcsx.glade2:30
-msgid "Run _CD"
-msgstr ""
-
-#: ../data/pcsx.glade2:46
-msgid "Run _ISO"
-msgstr ""
-
-#: ../data/pcsx.glade2:62
-msgid "Run _BIOS"
-msgstr ""
-
-#: ../data/pcsx.glade2:78
-msgid "Run _EXE"
-msgstr ""
-
-#: ../data/pcsx.glade2:99
-msgid "E_xit"
-msgstr ""
-
-#: ../data/pcsx.glade2:119
-msgid "_Emulator"
-msgstr ""
-
-#: ../data/pcsx.glade2:126
-msgid "_Continue"
-msgstr ""
-
-#: ../data/pcsx.glade2:141
-msgid "_Reset"
-msgstr ""
-
-#: ../data/pcsx.glade2:161
-msgid "_Switch ISO"
-msgstr ""
-
-#: ../data/pcsx.glade2:182
-msgid "_Save State"
-msgstr ""
-
-#: ../data/pcsx.glade2:189 ../data/pcsx.glade2:268
-msgid "Slot _1"
-msgstr ""
-
-#: ../data/pcsx.glade2:198 ../data/pcsx.glade2:277
-msgid "Slot _2"
-msgstr ""
-
-#: ../data/pcsx.glade2:207 ../data/pcsx.glade2:286
-msgid "Slot _3"
-msgstr ""
-
-#: ../data/pcsx.glade2:216 ../data/pcsx.glade2:295
-msgid "Slot _4"
-msgstr ""
-
-#: ../data/pcsx.glade2:225 ../data/pcsx.glade2:304
-msgid "Slot _5"
-msgstr ""
-
-#: ../data/pcsx.glade2:234 ../data/pcsx.glade2:313
-msgid "_Other..."
-msgstr ""
-
-#: ../data/pcsx.glade2:261
-msgid "_Load State"
+#: ../libpcsxcore/cdriso.c:125
+#, c-format
+msgid "Could not open %s.\n"
msgstr ""
-#: ../data/pcsx.glade2:344
-msgid "_Configuration"
+#: ../libpcsxcore/cheat.c:335 ../libpcsxcore/cheat.c:454
+msgid "(Untitled)"
msgstr ""
-#: ../data/pcsx.glade2:351
-msgid "_Plugins & BIOS"
+#: ../libpcsxcore/misc.c:372
+#, c-format
+msgid "Error opening file: %s"
msgstr ""
-#: ../data/pcsx.glade2:372
-msgid "_CPU"
+#: ../libpcsxcore/misc.c:390
+msgid "CPE files not supported."
msgstr ""
-#: ../data/pcsx.glade2:387
-msgid "_Memory Cards"
+#: ../libpcsxcore/misc.c:394
+msgid "COFF files not supported."
msgstr ""
-#: ../data/pcsx.glade2:403
-msgid "_Netplay"
+#: ../libpcsxcore/misc.c:398
+msgid "This file does not appear to be a valid PSX file."
msgstr ""
-#: ../data/pcsx.glade2:423
-msgid "Chea_t"
+#: ../libpcsxcore/plugins.c:33
+#, c-format
+msgid "Error loading %s: %s"
msgstr ""
-#: ../data/pcsx.glade2:431
-msgid "_Browse"
+#: ../libpcsxcore/plugins.c:162
+#, c-format
+msgid "Could not load GPU plugin %s!"
msgstr ""
-#: ../data/pcsx.glade2:445
-msgid "_Search"
+#: ../libpcsxcore/plugins.c:228
+#, c-format
+msgid "Could not load CD-ROM plugin %s!"
msgstr ""
-#: ../data/pcsx.glade2:474
-msgid "_Help"
+#: ../libpcsxcore/plugins.c:467
+#, c-format
+msgid "Could not load SPU plugin %s!"
msgstr ""
-#: ../data/pcsx.glade2:481
-msgid "_About PCSX"
+#: ../libpcsxcore/plugins.c:615
+#, c-format
+msgid "Could not load Controller 1 plugin %s!"
msgstr ""
-#: ../data/pcsx.glade2:617
-msgid "Select Folder to Search"
+#: ../libpcsxcore/plugins.c:669
+#, c-format
+msgid "Could not load Controller 2 plugin %s!"
msgstr ""
-#: ../data/pcsx.glade2:633
-msgid "Search in:"
+#: ../libpcsxcore/plugins.c:712
+#, c-format
+msgid "Could not load NetPlay plugin %s!"
msgstr ""
-#: ../data/pcsx.glade2:906
-msgid "Graphics:"
+#: ../libpcsxcore/plugins.c:775
+#, c-format
+msgid "Error initializing CD-ROM plugin: %d"
msgstr ""
-#: ../data/pcsx.glade2:919
-msgid "Sound:"
+#: ../libpcsxcore/plugins.c:777
+#, c-format
+msgid "Error initializing GPU plugin: %d"
msgstr ""
-#: ../data/pcsx.glade2:934
-msgid "Controller 1: "
+#: ../libpcsxcore/plugins.c:779
+#, c-format
+msgid "Error initializing SPU plugin: %d"
msgstr ""
-#: ../data/pcsx.glade2:949
-msgid "Controller 2:"
+#: ../libpcsxcore/plugins.c:781
+#, c-format
+msgid "Error initializing Controller 1 plugin: %d"
msgstr ""
-#: ../data/pcsx.glade2:964
-msgid "CD-ROM:"
+#: ../libpcsxcore/plugins.c:783
+#, c-format
+msgid "Error initializing Controller 2 plugin: %d"
msgstr ""
-#: ../data/pcsx.glade2:1002
-msgid "<b>Plugins</b>"
+#: ../libpcsxcore/plugins.c:787
+#, c-format
+msgid "Error initializing NetPlay plugin: %d"
msgstr ""
-#: ../data/pcsx.glade2:1061
-msgid "<b>BIOS</b>"
+#: ../libpcsxcore/plugins.c:790
+msgid "Plugins loaded.\n"
msgstr ""
-#: ../data/pcsx.glade2:1106
-msgid "Configure CPU"
+#: ../libpcsxcore/psxmem.c:69
+msgid "Error allocating memory!"
msgstr ""
-#: ../data/pcsx.glade2:1133
-msgid "Enable Debugger"
+#: ../libpcsxcore/psxmem.c:109
+#, c-format
+msgid "Could not open BIOS:\"%s\". Enabling HLE Bios!\n"
msgstr ""
-#: ../data/pcsx.glade2:1151
-msgid "SPU IRQ Always Enabled"
+#: ../libpcsxcore/r3000a.c:34
+#, c-format
+msgid "Running PCSX Version %s (%s).\n"
msgstr ""
-#: ../data/pcsx.glade2:1167
-msgid "Black & White Movies"
+#: ../libpcsxcore/sio.c:99
+msgid "Connection closed!\n"
msgstr ""
-#: ../data/pcsx.glade2:1183 ../win32/gui/WndMain.c:1151
-msgid "Enable Console Output"
+#: ../libpcsxcore/sio.c:322
+#, c-format
+msgid "No memory card value was specified - creating a default card %s\n"
msgstr ""
-#: ../data/pcsx.glade2:1201
-msgid "Enable Interpreter CPU"
+#: ../libpcsxcore/sio.c:326
+#, c-format
+msgid "The memory card %s doesn't exist - creating it\n"
msgstr ""
-#: ../data/pcsx.glade2:1235
-msgid "Disable CD Audio"
+#: ../libpcsxcore/sio.c:342
+#, c-format
+msgid "Memory card %s failed to load!\n"
msgstr ""
-#: ../data/pcsx.glade2:1251
-msgid "Disable XA Decoding"
+#: ../libpcsxcore/sio.c:346
+#, c-format
+msgid "Loading memory card %s\n"
msgstr ""
-#: ../data/pcsx.glade2:1267 ../win32/gui/WndMain.c:1153
-msgid "Parasite Eve 2, Vandal Hearts 1/2 Fix"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:8
+msgid "Configure X11 Video"
msgstr ""
-#: ../data/pcsx.glade2:1282 ../win32/gui/WndMain.c:1154
-msgid "InuYasha Sengoku Battle Fix"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:39
+msgid "Initial Window Size:"
msgstr ""
-#: ../data/pcsx.glade2:1298
-msgid "<b>Options</b>"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:50
+msgid "Stretching:"
msgstr ""
-#: ../data/pcsx.glade2:1321 ../win32/gui/WndMain.c:1149
-msgid "Autodetect"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:63
+msgid "Dithering:"
msgstr ""
-#: ../data/pcsx.glade2:1335
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:76
msgid ""
-"NTSC\n"
-"PAL"
-msgstr ""
-
-#: ../data/pcsx.glade2:1349
-msgid "<b>System Type</b>"
+"320x240\n"
+"640x480\n"
+"800x600\n"
+"1024x768\n"
+"1152x864\n"
+"1280x1024\n"
+"1600x1200"
msgstr ""
-#: ../data/pcsx.glade2:1391
-msgid "Configure NetPlay"
-msgstr ""
-
-#: ../data/pcsx.glade2:1473
-msgid "<b>NetPlay</b>"
-msgstr ""
-
-#: ../data/pcsx.glade2:1517
-msgid "Configure Memory Cards"
-msgstr ""
-
-#: ../data/pcsx.glade2:1587 ../data/pcsx.glade2:1951
-msgid "Format"
-msgstr ""
-
-#: ../data/pcsx.glade2:1631 ../data/pcsx.glade2:1995
-msgid "Reload"
-msgstr ""
-
-#: ../data/pcsx.glade2:1673
-msgid "<b>Memory Card 1</b>"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:95
+msgid ""
+"0: None\n"
+"1: 2xSai\n"
+"2: 2xSuperSai\n"
+"3: SuperEagle\n"
+"4: Scale2x\n"
+"5: Scale3x\n"
+"6: HQ2X\n"
+"7: HQ3X"
msgstr ""
-#: ../data/pcsx.glade2:1728 ../data/pcsx.glade2:1772
-msgid "Copy"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:117
+msgid ""
+"0: Off (fastest)\n"
+"1: Game dependant\n"
+"2: Always"
msgstr ""
-#: ../data/pcsx.glade2:1819 ../data/pcsx.glade2:1866
-msgid "Un/Delete"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:139
+msgid "Maintain 4:3 Aspect Ratio"
msgstr ""
-#: ../data/pcsx.glade2:2037
-msgid "<b>Memory Card 2</b>"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:153
+msgid "Toggle windowed/fullscreen mode."
msgstr ""
-#: ../data/pcsx.glade2:2091
-msgid ""
-"(C) 1999-2003 PCSX Team\n"
-"(C) 2005-2006 Ryan Schultz\n"
-"(C) 2005-2006 Andrew Burton\n"
-"(C) 2008-2009 Wei Mingzhi"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:154
+msgid "Fullscreen"
msgstr ""
-#: ../data/pcsx.glade2:2095
-msgid "A PlayStation emulator."
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:177
+msgid "<b>Screen</b>"
msgstr ""
-#: ../data/pcsx.glade2:2097
-msgid "PCSX Reloaded"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:203
+msgid "Toggle whether the FPS will be shown."
msgstr ""
-#: ../data/pcsx.glade2:2098
-msgid ""
-"This program is free software; you can redistribute it\n"
-"and/or modify it under the terms of the GNU General\n"
-"Public License as published by the Free Software\n"
-"Foundation; either version 2 of the License, or (at your\n"
-"option) any later version.\n"
-"\n"
-"This program is distributed in the hope that it will be\n"
-"useful, but WITHOUT ANY WARRANTY; without even\n"
-"the implied warranty of MERCHANTABILITY or\n"
-"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\n"
-"Public License along with this program; if not, write to\n"
-"the Free Software Foundation, Inc."
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:204
+msgid "Show FPS"
msgstr ""
-#: ../data/pcsx.glade2:2127
-msgid "translator-credits"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:218
+msgid "Enable this if games display too quickly."
msgstr ""
-#: ../data/pcsx.glade2:2146
-msgid "Edit Cheat Codes"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:219
+msgid "Autodetect FPS limit"
msgstr ""
-#: ../data/pcsx.glade2:2182
-msgid "<b>Cheat Codes</b>"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:235
+msgid "Skip frames when rendering."
msgstr ""
-#: ../data/pcsx.glade2:2200
-msgid "gtk-add"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:236
+msgid "Enable frame skipping"
msgstr ""
-#: ../data/pcsx.glade2:2210
-msgid "gtk-edit"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:257
+msgid "Set FPS"
msgstr ""
-#: ../data/pcsx.glade2:2223
-msgid "gtk-delete"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:272
+msgid "200.0"
msgstr ""
-#: ../data/pcsx.glade2:2282
-msgid "Disable"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:295
+msgid "<b>Framerate</b>"
msgstr ""
-#: ../data/pcsx.glade2:2300
-msgid "gtk-open"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:324
+msgid "Use game fixes"
msgstr ""
-#: ../data/pcsx.glade2:2313
-msgid "gtk-save-as"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:348
+msgid "better g-colors, worse textures"
msgstr ""
-#: ../data/pcsx.glade2:2342
-msgid "gtk-close"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:363
+msgid "Needed by Dark Forces"
msgstr ""
-#: ../win32/gui/AboutDlg.c:26
-msgid ""
-"PCSX - A PlayStation Emulator\n"
-"\n"
-"Original Authors:\n"
-"main coder: linuzappz\n"
-"co-coders: shadow\n"
-"ex-coders: Nocomp, Pete Bernett, nik3d\n"
-"Webmaster: AkumaX"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:378
+msgid "Draw quads with triangles"
msgstr ""
-#: ../win32/gui/AboutDlg.c:35
-msgid ""
-"PCSX-df Authors:\n"
-"Ryan Schultz, Andrew Burton, Stephen Chao,\n"
-"Marcus Comstedt, Stefan Sikora\n"
-"\n"
-"PCSX Reloaded By:\n"
-"Wei Mingzhi\n"
-"\n"
-"http://www.codeplex.com/pcsxr"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:394
+msgid "Repeated flat tex triangles"
msgstr ""
-#: ../win32/gui/AboutDlg.c:46
-msgid "About"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:410
+msgid "Disable CPU Saving"
msgstr ""
-#: ../win32/gui/AboutDlg.c:48 ../win32/gui/AboutDlg.c:52
-#: ../win32/gui/ConfigurePlugins.c:462 ../win32/gui/ConfigurePlugins.c:593
-#: ../win32/gui/WndMain.c:906 ../win32/gui/WndMain.c:1142
-msgid "OK"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:426
+msgid "Odd/even bit hack"
msgstr ""
-#: ../win32/gui/AboutDlg.c:49
-msgid "PCSX EMU\n"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:440
+msgid "For precise framerate"
msgstr ""
-#: ../win32/gui/ConfigurePlugins.c:385
-msgid "This plugin reports that should work correctly"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:455
+msgid "Better FPS limit in some"
msgstr ""
-#: ../win32/gui/ConfigurePlugins.c:386
-msgid "This plugin reports that should not work correctly"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:470
+msgid "PC FPS calculation"
msgstr ""
-#: ../win32/gui/ConfigurePlugins.c:460
-msgid "Configuration"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:486
+msgid "Pandemonium 2"
msgstr ""
-#: ../win32/gui/ConfigurePlugins.c:463 ../win32/gui/ConfigurePlugins.c:594
-#: ../win32/gui/WndMain.c:907 ../win32/gui/WndMain.c:1143
-msgid "Cancel"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:501
+msgid "Lazy screen update"
msgstr ""
-#: ../win32/gui/ConfigurePlugins.c:464
-msgid "Graphics"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:517
+msgid "Skip every second frame"
msgstr ""
-#: ../win32/gui/ConfigurePlugins.c:465
-msgid "First Controller"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:532
+msgid "Old frame skipping"
msgstr ""
-#: ../win32/gui/ConfigurePlugins.c:466
-msgid "Second Controller"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:548
+msgid "Expand screen width"
msgstr ""
-#: ../win32/gui/ConfigurePlugins.c:467
-msgid "Sound"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:564
+msgid "Ignore brightness color"
msgstr ""
-#: ../win32/gui/ConfigurePlugins.c:468
-msgid "Cdrom"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:580
+msgid "Disable coordinate check"
msgstr ""
-#: ../win32/gui/ConfigurePlugins.c:469
-msgid "Bios"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:596
+msgid "Chrono Cross"
msgstr ""
-#: ../win32/gui/ConfigurePlugins.c:470
-msgid "Set Bios Directory"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:609
+msgid "Capcom fighting games"
msgstr ""
-#: ../win32/gui/ConfigurePlugins.c:471
-msgid "Set Plugins Directory"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:624
+msgid "Black screens in Lunar"
msgstr ""
-#: ../win32/gui/ConfigurePlugins.c:472 ../win32/gui/ConfigurePlugins.c:475
-#: ../win32/gui/ConfigurePlugins.c:478 ../win32/gui/ConfigurePlugins.c:481
-#: ../win32/gui/ConfigurePlugins.c:484 ../win32/gui/ConfigurePlugins.c:596
-msgid "Configure..."
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:639
+msgid "Compatibility mode"
msgstr ""
-#: ../win32/gui/ConfigurePlugins.c:473 ../win32/gui/ConfigurePlugins.c:476
-#: ../win32/gui/ConfigurePlugins.c:479 ../win32/gui/ConfigurePlugins.c:482
-#: ../win32/gui/ConfigurePlugins.c:485 ../win32/gui/ConfigurePlugins.c:597
-msgid "Test..."
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:664
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:428
+msgid "<b>Compatibility</b>"
msgstr ""
-#: ../win32/gui/ConfigurePlugins.c:474 ../win32/gui/ConfigurePlugins.c:477
-#: ../win32/gui/ConfigurePlugins.c:480 ../win32/gui/ConfigurePlugins.c:483
-#: ../win32/gui/ConfigurePlugins.c:486 ../win32/gui/ConfigurePlugins.c:598
-msgid "About..."
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:701
+msgid "About X11 Video Plugin"
msgstr ""
-#: ../win32/gui/ConfigurePlugins.c:591
-msgid "NetPlay Configuration"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:714
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:516
+msgid "Coded by: Pete Bernert and the P.E.Op.S. team"
msgstr ""
-#: ../win32/gui/ConfigurePlugins.c:595
-msgid "NetPlay"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:725
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:541
+msgid "Homepage: http://home.t-online.de/home/PeteBernert/"
msgstr ""
-#: ../win32/gui/ConfigurePlugins.c:599
-msgid ""
-"Note: The NetPlay Plugin Directory should be the same as the other Plugins."
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:737
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:566
+msgid "EMail: BlackDove@addcom.de"
msgstr ""
-#: ../win32/gui/plugin.c:90 ../win32/gui/WndMain.c:235
-#, c-format
-msgid "*PCSX*: Saved State %d"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:750
+msgid "Version: 1.15"
msgstr ""
-#: ../win32/gui/plugin.c:91 ../win32/gui/WndMain.c:236
-#, c-format
-msgid "*PCSX*: Error Saving State %d"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:762
+msgid "Release date: 2003"
msgstr ""
-#: ../win32/gui/plugin.c:107 ../win32/gui/WndMain.c:214
-#, c-format
-msgid "*PCSX*: Loaded State %d"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:774
+msgid "<b>PCSX-df Video Plugin Adaption</b>"
msgstr ""
-#: ../win32/gui/plugin.c:108 ../win32/gui/WndMain.c:215
-#, c-format
-msgid "*PCSX*: Error Loading State %d"
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:787
+msgid "XVideo Support: Stephen Chao"
msgstr ""
-#: ../win32/gui/plugin.c:119
-#, c-format
-msgid "*PCSX*: Sio Irq Always Enabled"
+#: ../data/pcsx.glade2:9
+msgid "PCSX"
msgstr ""
-#: ../win32/gui/plugin.c:120
-#, c-format
-msgid "*PCSX*: Sio Irq Not Always Enabled"
+#: ../data/pcsx.glade2:23
+msgid "_File"
msgstr ""
-#: ../win32/gui/plugin.c:127
-#, c-format
-msgid "*PCSX*: Black&White Mdecs Only Enabled"
+#: ../data/pcsx.glade2:30
+msgid "Run _CD"
msgstr ""
-#: ../win32/gui/plugin.c:128
-#, c-format
-msgid "*PCSX*: Black&White Mdecs Only Disabled"
+#: ../data/pcsx.glade2:46
+msgid "Run _ISO"
msgstr ""
-#: ../win32/gui/plugin.c:135
-#, c-format
-msgid "*PCSX*: Xa Enabled"
+#: ../data/pcsx.glade2:62
+msgid "Run _BIOS"
msgstr ""
-#: ../win32/gui/plugin.c:136
-#, c-format
-msgid "*PCSX*: Xa Disabled"
+#: ../data/pcsx.glade2:78
+msgid "Run _EXE"
msgstr ""
-#: ../win32/gui/plugin.c:145
-msgid "*PCSX*: CdRom Case Opened"
+#: ../data/pcsx.glade2:99
+msgid "E_xit"
msgstr ""
-#: ../win32/gui/plugin.c:150
-msgid "*PCSX*: CdRom Case Closed"
+#: ../data/pcsx.glade2:119
+msgid "_Emulator"
msgstr ""
-#: ../win32/gui/plugin.c:177
-msgid "Connecting..."
+#: ../data/pcsx.glade2:126
+msgid "_Continue"
msgstr ""
-#: ../win32/gui/plugin.c:179 ../win32/gui/plugin.c:186
-#, c-format
-msgid "Please wait while connecting... %c\n"
+#: ../data/pcsx.glade2:141
+msgid "_Reset"
msgstr ""
-#: ../win32/gui/plugin.c:216
-msgid "Error Opening CDR Plugin"
+#: ../data/pcsx.glade2:161
+msgid "_Switch ISO"
msgstr ""
-#: ../win32/gui/plugin.c:279
-#, c-format
-msgid "Error Opening GPU Plugin (%d)"
+#: ../data/pcsx.glade2:182
+msgid "_Save State"
msgstr ""
-#: ../win32/gui/plugin.c:281
-#, c-format
-msgid "Error Opening SPU Plugin (%d)"
+#: ../data/pcsx.glade2:189 ../data/pcsx.glade2:268
+msgid "Slot _1"
msgstr ""
-#: ../win32/gui/plugin.c:284
-#, c-format
-msgid "Error Opening PAD1 Plugin (%d)"
+#: ../data/pcsx.glade2:198 ../data/pcsx.glade2:277
+msgid "Slot _2"
msgstr ""
-#: ../win32/gui/plugin.c:286
-#, c-format
-msgid "Error Opening PAD2 Plugin (%d)"
+#: ../data/pcsx.glade2:207 ../data/pcsx.glade2:286
+msgid "Slot _3"
msgstr ""
-#: ../win32/gui/plugin.c:309
-msgid "Error Closing CDR Plugin"
+#: ../data/pcsx.glade2:216 ../data/pcsx.glade2:295
+msgid "Slot _4"
msgstr ""
-#: ../win32/gui/plugin.c:311
-msgid "Error Closing GPU Plugin"
+#: ../data/pcsx.glade2:225 ../data/pcsx.glade2:304
+msgid "Slot _5"
msgstr ""
-#: ../win32/gui/plugin.c:313
-msgid "Error Closing SPU Plugin"
+#: ../data/pcsx.glade2:234 ../data/pcsx.glade2:313
+msgid "_Other..."
msgstr ""
-#: ../win32/gui/plugin.c:315
-msgid "Error Closing PAD1 Plugin"
+#: ../data/pcsx.glade2:261
+msgid "_Load State"
msgstr ""
-#: ../win32/gui/plugin.c:317
-msgid "Error Closing PAD2 Plugin"
+#: ../data/pcsx.glade2:344
+msgid "_Configuration"
msgstr ""
-#: ../win32/gui/plugin.c:335
-#, c-format
-msgid "CDRinit error: %d"
+#: ../data/pcsx.glade2:351
+msgid "_Plugins & BIOS"
msgstr ""
-#: ../win32/gui/plugin.c:337
-#, c-format
-msgid "GPUinit error: %d"
+#: ../data/pcsx.glade2:372
+msgid "_CPU"
msgstr ""
-#: ../win32/gui/plugin.c:339
-#, c-format
-msgid "SPUinit error: %d"
+#: ../data/pcsx.glade2:387
+msgid "_Memory Cards"
msgstr ""
-#: ../win32/gui/plugin.c:341
-#, c-format
-msgid "PAD1init error: %d"
+#: ../data/pcsx.glade2:403
+msgid "_Netplay"
msgstr ""
-#: ../win32/gui/plugin.c:343
-#, c-format
-msgid "PAD2init error: %d"
+#: ../data/pcsx.glade2:423
+msgid "Chea_t"
msgstr ""
-#: ../win32/gui/plugin.c:346
-#, c-format
-msgid "NETinit error: %d"
+#: ../data/pcsx.glade2:431
+msgid "_Browse"
msgstr ""
-#: ../win32/gui/WndMain.c:74
-msgid "Arabic"
+#: ../data/pcsx.glade2:445
+msgid "_Search"
msgstr ""
-#: ../win32/gui/WndMain.c:75
-msgid "Catalan"
+#: ../data/pcsx.glade2:474
+msgid "_Help"
msgstr ""
-#: ../win32/gui/WndMain.c:76
-msgid "German"
+#: ../data/pcsx.glade2:481
+msgid "_About PCSX"
msgstr ""
-#: ../win32/gui/WndMain.c:77
-msgid "Greek"
+#: ../data/pcsx.glade2:617
+msgid "Select Folder to Search"
msgstr ""
-#: ../win32/gui/WndMain.c:78 ../win32/gui/WndMain.c:1471
-#: ../win32/gui/WndMain.c:1473
-msgid "English"
+#: ../data/pcsx.glade2:633
+msgid "Search in:"
msgstr ""
-#: ../win32/gui/WndMain.c:79
-msgid "Spanish"
+#: ../data/pcsx.glade2:906
+msgid "Graphics:"
msgstr ""
-#: ../win32/gui/WndMain.c:80
-msgid "French"
+#: ../data/pcsx.glade2:919
+msgid "Sound:"
msgstr ""
-#: ../win32/gui/WndMain.c:81
-msgid "Italian"
+#: ../data/pcsx.glade2:934
+msgid "Controller 1: "
msgstr ""
-#: ../win32/gui/WndMain.c:82
-msgid "Portuguese"
+#: ../data/pcsx.glade2:949
+msgid "Controller 2:"
msgstr ""
-#: ../win32/gui/WndMain.c:83
-msgid "Romanian"
+#: ../data/pcsx.glade2:964
+msgid "CD-ROM:"
msgstr ""
-#: ../win32/gui/WndMain.c:84
-msgid "Russian"
+#: ../data/pcsx.glade2:1002
+msgid "<b>Plugins</b>"
msgstr ""
-#: ../win32/gui/WndMain.c:85
-msgid "Simplified Chinese"
+#: ../data/pcsx.glade2:1061
+msgid "<b>BIOS</b>"
msgstr ""
-#: ../win32/gui/WndMain.c:86
-msgid "Traditional Chinese"
+#: ../data/pcsx.glade2:1106
+msgid "Configure CPU"
msgstr ""
-#: ../win32/gui/WndMain.c:87
-msgid "Japanese"
+#: ../data/pcsx.glade2:1133
+msgid "Enable Debugger"
msgstr ""
-#: ../win32/gui/WndMain.c:88
-msgid "Korean"
+#: ../data/pcsx.glade2:1151
+msgid "SPU IRQ Always Enabled"
msgstr ""
-#: ../win32/gui/WndMain.c:129
-msgid "Pcsx needs to be configured"
+#: ../data/pcsx.glade2:1167
+msgid "Black & White Movies"
msgstr ""
-#: ../win32/gui/WndMain.c:133
-msgid "Pcsx now will quit, restart it"
+#: ../data/pcsx.glade2:1201
+msgid "Enable Interpreter CPU"
msgstr ""
-#: ../win32/gui/WndMain.c:253 ../win32/gui/WndMain.c:305
-msgid "PCSX State Format"
+#: ../data/pcsx.glade2:1235
+msgid "Disable CD Audio"
msgstr ""
-#: ../win32/gui/WndMain.c:280
-#, c-format
-msgid "*PCSX*: Loaded State %s"
+#: ../data/pcsx.glade2:1251
+msgid "Disable XA Decoding"
msgstr ""
-#: ../win32/gui/WndMain.c:281
-#, c-format
-msgid "*PCSX*: Error Loading State %s"
+#: ../data/pcsx.glade2:1298
+msgid "<b>Options</b>"
msgstr ""
-#: ../win32/gui/WndMain.c:332
-#, c-format
-msgid "*PCSX*: Saved State %s"
+#: ../data/pcsx.glade2:1335
+msgid ""
+"NTSC\n"
+"PAL"
msgstr ""
-#: ../win32/gui/WndMain.c:333
-#, c-format
-msgid "*PCSX*: Error Saving State %s"
+#: ../data/pcsx.glade2:1349
+msgid "<b>System Type</b>"
msgstr ""
-#: ../win32/gui/WndMain.c:398
-msgid "Running BIOS is not supported with Internal HLE Bios."
+#: ../data/pcsx.glade2:1391
+msgid "Configure NetPlay"
msgstr ""
-#: ../win32/gui/WndMain.c:616
-msgid "Game ID"
+#: ../data/pcsx.glade2:1473
+msgid "<b>NetPlay</b>"
msgstr ""
-#: ../win32/gui/WndMain.c:622
-msgid "Game"
+#: ../data/pcsx.glade2:1517
+msgid "Configure Memory Cards"
msgstr ""
-#: ../win32/gui/WndMain.c:796
-msgid "mid link block"
+#: ../data/pcsx.glade2:1587 ../data/pcsx.glade2:1951
+msgid "Format"
msgstr ""
-#: ../win32/gui/WndMain.c:799
-msgid "terminiting link block"
+#: ../data/pcsx.glade2:1631 ../data/pcsx.glade2:1995
+msgid "Reload"
msgstr ""
-#: ../win32/gui/WndMain.c:904
-msgid "Memcard Manager"
+#: ../data/pcsx.glade2:1673
+msgid "<b>Memory Card 1</b>"
msgstr ""
-#: ../win32/gui/WndMain.c:908 ../win32/gui/WndMain.c:911
-msgid "Select Mcd"
+#: ../data/pcsx.glade2:1728 ../data/pcsx.glade2:1772
+msgid "Copy"
msgstr ""
-#: ../win32/gui/WndMain.c:909 ../win32/gui/WndMain.c:912
-msgid "Format Mcd"
+#: ../data/pcsx.glade2:1819 ../data/pcsx.glade2:1866
+msgid "Un/Delete"
msgstr ""
-#: ../win32/gui/WndMain.c:910 ../win32/gui/WndMain.c:913
-msgid "Reload Mcd"
+#: ../data/pcsx.glade2:2037
+msgid "<b>Memory Card 2</b>"
msgstr ""
-#: ../win32/gui/WndMain.c:914
-msgid "-> Copy ->"
+#: ../data/pcsx.glade2:2091
+msgid ""
+"(C) 1999-2003 PCSX Team\n"
+"(C) 2005-2006 Ryan Schultz\n"
+"(C) 2005-2006 Andrew Burton\n"
+"(C) 2008-2009 Wei Mingzhi"
msgstr ""
-#: ../win32/gui/WndMain.c:915
-msgid "<- Copy <-"
+#: ../data/pcsx.glade2:2095
+msgid "A PlayStation emulator."
msgstr ""
-#: ../win32/gui/WndMain.c:916
-msgid "Paste"
+#: ../data/pcsx.glade2:2097
+msgid "PCSX Reloaded"
msgstr ""
-#: ../win32/gui/WndMain.c:917
-msgid "<- Un/Delete"
+#: ../data/pcsx.glade2:2098
+msgid ""
+"This program is free software; you can redistribute it\n"
+"and/or modify it under the terms of the GNU General\n"
+"Public License as published by the Free Software\n"
+"Foundation; either version 2 of the License, or (at your\n"
+"option) any later version.\n"
+"\n"
+"This program is distributed in the hope that it will be\n"
+"useful, but WITHOUT ANY WARRANTY; without even\n"
+"the implied warranty of MERCHANTABILITY or\n"
+"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\n"
+"Public License along with this program; if not, write to\n"
+"the Free Software Foundation, Inc."
msgstr ""
-#: ../win32/gui/WndMain.c:918
-msgid "Un/Delete ->"
+#: ../data/pcsx.glade2:2127 ../plugins/dfinput/dfinput.glade2:212
+msgid "translator-credits"
msgstr ""
-#: ../win32/gui/WndMain.c:920
-msgid "Memory Card 1"
+#: ../data/pcsx.glade2:2148
+msgid "Edit Cheat Codes"
msgstr ""
-#: ../win32/gui/WndMain.c:921
-msgid "Memory Card 2"
+#: ../data/pcsx.glade2:2185
+msgid "<b>Cheat Codes</b>"
msgstr ""
-#: ../win32/gui/WndMain.c:976
-msgid "Are you sure you want to paste this selection?"
+#: ../data/pcsx.glade2:2203
+msgid "gtk-add"
msgstr ""
-#: ../win32/gui/WndMain.c:976 ../win32/gui/WndMain.c:1087
-#: ../win32/gui/WndMain.c:1094
-msgid "Confirmation"
+#: ../data/pcsx.glade2:2213
+msgid "gtk-edit"
msgstr ""
-#: ../win32/gui/WndMain.c:1087 ../win32/gui/WndMain.c:1094
-msgid "Are you sure you want to format this Memory Card?"
+#: ../data/pcsx.glade2:2226
+msgid "gtk-delete"
msgstr ""
-#: ../win32/gui/WndMain.c:1140
-msgid "Cpu Config"
+#: ../data/pcsx.glade2:2285
+msgid "Disable"
msgstr ""
-#: ../win32/gui/WndMain.c:1145
-msgid "Disable Xa Decoding"
+#: ../data/pcsx.glade2:2303
+msgid "gtk-open"
msgstr ""
-#: ../win32/gui/WndMain.c:1146
-msgid "Sio Irq Always Enabled"
+#: ../data/pcsx.glade2:2316
+msgid "gtk-save-as"
msgstr ""
-#: ../win32/gui/WndMain.c:1147
-msgid "Black && White Movies"
+#: ../data/pcsx.glade2:2345 ../data/pcsx.glade2:2789
+msgid "gtk-close"
msgstr ""
-#: ../win32/gui/WndMain.c:1148
-msgid "Disable Cd audio"
+#: ../data/pcsx.glade2:2397
+msgid ""
+"Unsigned 8-bit\n"
+"Unsigned 16-bit\n"
+"Unsigned 32-bit\n"
+"Signed 8-bit\n"
+"Signed 16-bit\n"
+"Signed 32-bit"
msgstr ""
-#: ../win32/gui/WndMain.c:1150
-msgid "Enable Interpreter Cpu"
+#: ../data/pcsx.glade2:2415
+msgid "Search For:"
msgstr ""
-#: ../win32/gui/WndMain.c:1152
-msgid "Spu Irq Always Enabled"
+#: ../data/pcsx.glade2:2425
+msgid "Data Type:"
msgstr ""
-#: ../win32/gui/WndMain.c:1156
-msgid "Options"
+#: ../data/pcsx.glade2:2437
+msgid "Value:"
msgstr ""
-#: ../win32/gui/WndMain.c:1157
-msgid "Psx System Type"
+#: ../data/pcsx.glade2:2449
+msgid "Data Base:"
msgstr ""
-#: ../win32/gui/WndMain.c:1229
-msgid "Psx Mcd Format (*.mcr;*.mc;*.mem;*.vgs;*.mcd;*.gme;*.ddf)"
+#: ../data/pcsx.glade2:2463
+msgid ""
+"Equal Value\n"
+"Not Equal Value\n"
+"Range"
msgstr ""
-#: ../win32/gui/WndMain.c:1234
-msgid "Psx Memory Card (*.mcr;*.mc)"
+#: ../data/pcsx.glade2:2489
+msgid ""
+"Decimal\n"
+"Hexadecimal"
msgstr ""
-#: ../win32/gui/WndMain.c:1239
-msgid "CVGS Memory Card (*.mem;*.vgs)"
+#: ../data/pcsx.glade2:2504
+msgid "Big-Endian"
msgstr ""
-#: ../win32/gui/WndMain.c:1244
-msgid "Bleem Memory Card (*.mcd)"
+#: ../data/pcsx.glade2:2517
+msgid "To:"
msgstr ""
-#: ../win32/gui/WndMain.c:1249
-msgid "DexDrive Memory Card (*.gme)"
+#: ../data/pcsx.glade2:2589 ../data/pcsx.glade2:2618 ../data/pcsx.glade2:2650
+msgid "label"
msgstr ""
-#: ../win32/gui/WndMain.c:1254
-msgid "DataDeck Memory Card (*.ddf)"
+#: ../data/pcsx.glade2:2679
+msgid "label_resultsfound"
msgstr ""
-#: ../win32/gui/WndMain.c:1298
-msgid "Psx Exe Format"
+#: ../data/pcsx.glade2:2712
+msgid "Search"
msgstr ""
-#: ../win32/gui/WndMain.c:1335
-msgid "Psx Isos (*.iso;*.mdf;*.img;*.bin)"
+#: ../data/pcsx.glade2:2741
+msgid "Restart"
msgstr ""
-#: ../win32/gui/WndMain.c:1409
-msgid "&File"
+#: ../data/pcsx.glade2:2768
+msgid "<b>Cheat Search</b>"
msgstr ""
-#: ../win32/gui/WndMain.c:1410
-msgid "E&xit"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:9
+msgid "Configure Sound"
msgstr ""
-#: ../win32/gui/WndMain.c:1412
-msgid "&States"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:62
+msgid "Volume:"
msgstr ""
-#: ../win32/gui/WndMain.c:1414
-msgid "Run &EXE"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:90
+msgid "Interpolation:"
msgstr ""
-#: ../win32/gui/WndMain.c:1415
-msgid "Run &BIOS"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:118
+msgid "Reverb:"
msgstr ""
-#: ../win32/gui/WndMain.c:1416
-msgid "Run &ISO"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:146
+msgid ""
+"Low\n"
+"Medium\n"
+"Loud\n"
+"Loudest"
msgstr ""
-#: ../win32/gui/WndMain.c:1417
-msgid "Run &CD"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:165
+msgid ""
+"Off\n"
+"Simple\n"
+"Playstation"
msgstr ""
-#: ../win32/gui/WndMain.c:1418
-msgid "&Save"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:184
+msgid ""
+"None\n"
+"Simple\n"
+"Gaussian\n"
+"Cubic"
msgstr ""
-#: ../win32/gui/WndMain.c:1419
-msgid "&Load"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:208
+msgid "<b>General</b>"
msgstr ""
-#: ../win32/gui/WndMain.c:1420 ../win32/gui/WndMain.c:1426
-msgid "&Other..."
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:264
+msgid "Enable or disable XA music."
msgstr ""
-#: ../win32/gui/WndMain.c:1421 ../win32/gui/WndMain.c:1427
-msgid "Slot &5"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:266
+msgid "Enable XA"
msgstr ""
-#: ../win32/gui/WndMain.c:1422 ../win32/gui/WndMain.c:1428
-msgid "Slot &4"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:284
+msgid "Choose this if XA music is played too quickly."
msgstr ""
-#: ../win32/gui/WndMain.c:1423 ../win32/gui/WndMain.c:1429
-msgid "Slot &3"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:286
+msgid "Adjust XA speed"
msgstr ""
-#: ../win32/gui/WndMain.c:1424 ../win32/gui/WndMain.c:1430
-msgid "Slot &2"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:308
+msgid "<b>XA Music</b>"
msgstr ""
-#: ../win32/gui/WndMain.c:1425 ../win32/gui/WndMain.c:1431
-msgid "Slot &1"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:364
+msgid "Use the asynchronous SPU interface."
msgstr ""
-#: ../win32/gui/WndMain.c:1433
-msgid "&Emulator"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:366
+msgid "High compatibility mode"
msgstr ""
-#: ../win32/gui/WndMain.c:1434
-msgid "S&witch ISO"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:384
+msgid "Wait for CPU; only useful for some games."
msgstr ""
-#: ../win32/gui/WndMain.c:1436
-msgid "Re&set"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:386
+msgid "SPU IRQ Wait"
msgstr ""
-#: ../win32/gui/WndMain.c:1437
-msgid "&Run"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:404
+msgid "Play only one channel for a performance boost."
msgstr ""
-#: ../win32/gui/WndMain.c:1439
-msgid "&Configuration"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:406
+msgid "Single channel sound"
msgstr ""
-#: ../win32/gui/WndMain.c:1440
-msgid "&Memory cards"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:486
+msgid "About Sound Plugin"
msgstr ""
-#: ../win32/gui/WndMain.c:1441
-msgid "C&PU"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:592
+msgid "Version: 1.6"
msgstr ""
-#: ../win32/gui/WndMain.c:1443
-msgid "&NetPlay"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:617
+msgid "Release date: 05.04.2003"
msgstr ""
-#: ../win32/gui/WndMain.c:1445
-msgid "&Controllers"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:642
+msgid "<b>PCSX-df Sound Plugin Adaption</b>"
msgstr ""
-#: ../win32/gui/WndMain.c:1446
-msgid "CD-&ROM"
+#: ../plugins/dfinput/dfinput.glade2:7
+msgid "Configure Gamepad/Keyboard"
msgstr ""
-#: ../win32/gui/WndMain.c:1447
-msgid "&Sound"
+#: ../plugins/dfinput/dfinput.glade2:25
+msgid "Pad number:"
msgstr ""
-#: ../win32/gui/WndMain.c:1448
-msgid "&Graphics"
+#: ../plugins/dfinput/dfinput.glade2:36
+msgid "1"
msgstr ""
-#: ../win32/gui/WndMain.c:1450
-msgid "&Plugins && Bios"
+#: ../plugins/dfinput/dfinput.glade2:51
+msgid "2"
msgstr ""
-#: ../win32/gui/WndMain.c:1452
-msgid "&Language"
+#: ../plugins/dfinput/dfinput.glade2:73
+msgid "Device file:"
msgstr ""
-#: ../win32/gui/WndMain.c:1476
-msgid "&Help"
+#: ../plugins/dfinput/dfinput.glade2:104
+msgid "Multi-threaded"
msgstr ""
-#: ../win32/gui/WndMain.c:1477
-msgid "&About..."
+#: ../plugins/dfinput/dfinput.glade2:118
+msgid "Analog"
msgstr ""
-#: ../win32/gui/WndMain.c:1654
-msgid "Pcsx Msg"
+#: ../plugins/dfinput/dfinput.glade2:155
+msgid "<b>Button Configuration</b>"
msgstr ""
-#: ../win32/gui/WndMain.c:1657
-msgid "Error Loading Symbol"
+#: ../plugins/dfinput/dfinput.glade2:209
+msgid "Based on PadJoy by Erich Kitzmüller (ammoq@ammoq.com)"
msgstr ""
diff --git a/po/update-pot.sh b/po/update-pot.sh
new file mode 100644
index 00000000..dbd7311b
--- /dev/null
+++ b/po/update-pot.sh
@@ -0,0 +1,2 @@
+#!/bin/sh
+xgettext --keyword=_ --keyword=N_ ../win32/gui/*.c ../gui/*.c ../gui/*.h ../libpcsxcore/*.c ../plugins/dfxvideo/gpucfg-0.1df/*.glade2 ../data/*.glade2 ../plugins/dfsound/spucfg-0.1df/*.glade2 ../plugins/dfcdrom/*.c ../plugins/dfinput/*.c ../plugins/dfinput/*.glade2 --output=pcsx.pot
diff --git a/po/zh_CN.gmo b/po/zh_CN.gmo
index cdbfa90e..8cadce07 100755
--- a/po/zh_CN.gmo
+++ b/po/zh_CN.gmo
Binary files differ
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 1c4f31bf..e8b422c7 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -7,322 +7,905 @@ msgid ""
msgstr ""
"Project-Id-Version: pcsxr 1.0\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-03-25 19:23+0800\n"
-"PO-Revision-Date: 2009-03-25 19:24+0700\n"
+"POT-Creation-Date: 2009-05-30 16:09+0800\n"
+"PO-Revision-Date: 2009-05-30 16:27+0700\n"
"Last-Translator: Wei Mingzhi <whistler@openoffice.org>\n"
"Language-Team: Simplified Chinese <whistler@openoffice.org>\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=gbk\n"
+"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../libpcsxcore/cdriso.c:125
-#, c-format
-msgid "Could not open %s.\n"
-msgstr "޷ %s\n"
+#: ../win32/gui/AboutDlg.c:26
+msgid ""
+"PCSX - A PlayStation Emulator\n"
+"\n"
+"Original Authors:\n"
+"main coder: linuzappz\n"
+"co-coders: shadow\n"
+"ex-coders: Nocomp, Pete Bernett, nik3d\n"
+"Webmaster: AkumaX"
+msgstr ""
+"PCSX - 一个 PlayStation 模拟器\n"
+"\n"
+"原作者:\n"
+"主程序员: linuzappz\n"
+"辅助程序员: shadow\n"
+"前程序员: Nocomp, Pete Bernett, nik3d\n"
+"网络管理: AkumaX"
-#: ../libpcsxcore/cheat.c:335
-#: ../libpcsxcore/cheat.c:454
-msgid "(Untitled)"
-msgstr "(δ)"
+#: ../win32/gui/AboutDlg.c:35
+msgid ""
+"PCSX-df Authors:\n"
+"Ryan Schultz, Andrew Burton, Stephen Chao,\n"
+"Marcus Comstedt, Stefan Sikora\n"
+"\n"
+"PCSX Reloaded By:\n"
+"Wei Mingzhi\n"
+"\n"
+"http://www.codeplex.com/pcsxr"
+msgstr ""
+"PCSX-df 开发者:\n"
+"Ryan Schultz, Andrew Burton, Stephen Chao,\n"
+"Marcus Comstedt, Stefan Sikora\n"
+"\n"
+"PCSX Reloaded 开发者:\n"
+"Wei Mingzhi\n"
+"\n"
+"http://www.codeplex.com/pcsxr"
-#: ../libpcsxcore/misc.c:372
+#: ../win32/gui/AboutDlg.c:46
+msgid "About"
+msgstr "关于 PCSX"
+
+#: ../win32/gui/AboutDlg.c:48
+#: ../win32/gui/AboutDlg.c:52
+#: ../win32/gui/ConfigurePlugins.c:462
+#: ../win32/gui/ConfigurePlugins.c:593
+#: ../win32/gui/WndMain.c:906
+#: ../win32/gui/WndMain.c:1142
+msgid "OK"
+msgstr "确定"
+
+#: ../win32/gui/AboutDlg.c:49
+msgid "PCSX EMU\n"
+msgstr "PCSX 模拟器\n"
+
+#: ../win32/gui/ConfigurePlugins.c:385
+msgid "This plugin reports that should work correctly"
+msgstr "此插件报告其可正常工作。"
+
+#: ../win32/gui/ConfigurePlugins.c:386
+msgid "This plugin reports that should not work correctly"
+msgstr "此插件报告其不可正常工作。"
+
+#: ../win32/gui/ConfigurePlugins.c:460
+msgid "Configuration"
+msgstr "配置"
+
+#: ../win32/gui/ConfigurePlugins.c:463
+#: ../win32/gui/ConfigurePlugins.c:594
+#: ../win32/gui/WndMain.c:907
+#: ../win32/gui/WndMain.c:1143
+msgid "Cancel"
+msgstr "取消"
+
+#: ../win32/gui/ConfigurePlugins.c:464
+msgid "Graphics"
+msgstr "图像"
+
+#: ../win32/gui/ConfigurePlugins.c:465
+msgid "First Controller"
+msgstr "主控制器"
+
+#: ../win32/gui/ConfigurePlugins.c:466
+msgid "Second Controller"
+msgstr "辅控制器"
+
+#: ../win32/gui/ConfigurePlugins.c:467
+msgid "Sound"
+msgstr "声音"
+
+#: ../win32/gui/ConfigurePlugins.c:468
+msgid "Cdrom"
+msgstr "CD-ROM"
+
+#: ../win32/gui/ConfigurePlugins.c:469
+msgid "Bios"
+msgstr "BIOS"
+
+#: ../win32/gui/ConfigurePlugins.c:470
+msgid "Set Bios Directory"
+msgstr "设置 BIOS 目录"
+
+#: ../win32/gui/ConfigurePlugins.c:471
+msgid "Set Plugins Directory"
+msgstr "设置插件目录"
+
+#: ../win32/gui/ConfigurePlugins.c:472
+#: ../win32/gui/ConfigurePlugins.c:475
+#: ../win32/gui/ConfigurePlugins.c:478
+#: ../win32/gui/ConfigurePlugins.c:481
+#: ../win32/gui/ConfigurePlugins.c:484
+#: ../win32/gui/ConfigurePlugins.c:596
+msgid "Configure..."
+msgstr "配置..."
+
+#: ../win32/gui/ConfigurePlugins.c:473
+#: ../win32/gui/ConfigurePlugins.c:476
+#: ../win32/gui/ConfigurePlugins.c:479
+#: ../win32/gui/ConfigurePlugins.c:482
+#: ../win32/gui/ConfigurePlugins.c:485
+#: ../win32/gui/ConfigurePlugins.c:597
+msgid "Test..."
+msgstr "测试..."
+
+#: ../win32/gui/ConfigurePlugins.c:474
+#: ../win32/gui/ConfigurePlugins.c:477
+#: ../win32/gui/ConfigurePlugins.c:480
+#: ../win32/gui/ConfigurePlugins.c:483
+#: ../win32/gui/ConfigurePlugins.c:486
+#: ../win32/gui/ConfigurePlugins.c:598
+msgid "About..."
+msgstr "关于..."
+
+#: ../win32/gui/ConfigurePlugins.c:591
+msgid "NetPlay Configuration"
+msgstr "联网游戏配置"
+
+#: ../win32/gui/ConfigurePlugins.c:595
+msgid "NetPlay"
+msgstr "联网游戏"
+
+#: ../win32/gui/ConfigurePlugins.c:599
+msgid "Note: The NetPlay Plugin Directory should be the same as the other Plugins."
+msgstr "注意: 联网游戏插件应和其它插件放在同一目录中。"
+
+#: ../win32/gui/plugin.c:90
+#: ../win32/gui/WndMain.c:235
#, c-format
-msgid "Error opening file: %s"
-msgstr "ļ: %s!"
+msgid "*PCSX*: Saved State %d"
+msgstr ""
-#: ../libpcsxcore/misc.c:390
-msgid "CPE files not supported."
-msgstr "CPE ļ֧!"
+#: ../win32/gui/plugin.c:91
+#: ../win32/gui/WndMain.c:236
+#, c-format
+msgid "*PCSX*: Error Saving State %d"
+msgstr ""
-#: ../libpcsxcore/misc.c:394
-msgid "COFF files not supported."
-msgstr "COFF ļ֧!"
+#: ../win32/gui/plugin.c:107
+#: ../win32/gui/WndMain.c:214
+#, c-format
+msgid "*PCSX*: Loaded State %d"
+msgstr ""
-#: ../libpcsxcore/misc.c:398
-msgid "This file does not appear to be a valid PSX file."
-msgstr "ļһϷ PSX ļ"
+#: ../win32/gui/plugin.c:108
+#: ../win32/gui/WndMain.c:215
+#, c-format
+msgid "*PCSX*: Error Loading State %d"
+msgstr ""
-#: ../libpcsxcore/plugins.c:33
+#: ../win32/gui/plugin.c:119
#, c-format
-msgid "Error loading %s: %s"
-msgstr "޷ %s: %s"
+msgid "*PCSX*: Sio Irq Always Enabled"
+msgstr ""
-#: ../libpcsxcore/plugins.c:162
+#: ../win32/gui/plugin.c:120
#, c-format
-msgid "Could not load GPU plugin %s!"
-msgstr "޷ GPU %s!"
+msgid "*PCSX*: Sio Irq Not Always Enabled"
+msgstr ""
-#: ../libpcsxcore/plugins.c:228
+#: ../win32/gui/plugin.c:127
#, c-format
-msgid "Could not load CD-ROM plugin %s!"
-msgstr "޷ CD-ROM %s!"
+msgid "*PCSX*: Black&White Mdecs Only Enabled"
+msgstr ""
-#: ../libpcsxcore/plugins.c:467
+#: ../win32/gui/plugin.c:128
#, c-format
-msgid "Could not load SPU plugin %s!"
-msgstr "޷ SPU %s!"
+msgid "*PCSX*: Black&White Mdecs Only Disabled"
+msgstr ""
-#: ../libpcsxcore/plugins.c:615
+#: ../win32/gui/plugin.c:135
#, c-format
-msgid "Could not load Controller 1 plugin %s!"
-msgstr "޷ \"1\" %s!"
+msgid "*PCSX*: Xa Enabled"
+msgstr ""
-#: ../libpcsxcore/plugins.c:669
+#: ../win32/gui/plugin.c:136
#, c-format
-msgid "Could not load Controller 2 plugin %s!"
-msgstr "޷ \"2\" %s!"
+msgid "*PCSX*: Xa Disabled"
+msgstr ""
-#: ../libpcsxcore/plugins.c:712
+#: ../win32/gui/plugin.c:145
+msgid "*PCSX*: CdRom Case Opened"
+msgstr ""
+
+#: ../win32/gui/plugin.c:150
+msgid "*PCSX*: CdRom Case Closed"
+msgstr ""
+
+#: ../win32/gui/plugin.c:177
+msgid "Connecting..."
+msgstr "正在连接..."
+
+#: ../win32/gui/plugin.c:179
+#: ../win32/gui/plugin.c:186
#, c-format
-msgid "Could not load NetPlay plugin %s!"
-msgstr "޷Ϸ %s!"
+msgid "Please wait while connecting... %c\n"
+msgstr "请稍候,正在连接... %c\n"
-#: ../libpcsxcore/plugins.c:775
+#: ../win32/gui/plugin.c:216
+msgid "Error Opening CDR Plugin"
+msgstr "无法打开 CDR 插件"
+
+#: ../win32/gui/plugin.c:279
#, c-format
-msgid "Error initializing CD-ROM plugin: %d"
-msgstr "CD-ROM ʼ: %d"
+msgid "Error Opening GPU Plugin (%d)"
+msgstr "无法打开 GPU 插件 (%d)"
-#: ../libpcsxcore/plugins.c:777
+#: ../win32/gui/plugin.c:281
#, c-format
-msgid "Error initializing GPU plugin: %d"
-msgstr "GPU ʼ: %d"
+msgid "Error Opening SPU Plugin (%d)"
+msgstr "无法打开 SPU 插件 (%d)"
-#: ../libpcsxcore/plugins.c:779
+#: ../win32/gui/plugin.c:284
#, c-format
-msgid "Error initializing SPU plugin: %d"
-msgstr "SPU ʼ: %d"
+msgid "Error Opening PAD1 Plugin (%d)"
+msgstr "无法打开 PAD1 插件 (%d)"
-#: ../libpcsxcore/plugins.c:781
+#: ../win32/gui/plugin.c:286
#, c-format
-msgid "Error initializing Controller 1 plugin: %d"
-msgstr "\"1\" ʼ: %d"
+msgid "Error Opening PAD2 Plugin (%d)"
+msgstr "无法打开 PAD2 插件 (%d)"
-#: ../libpcsxcore/plugins.c:783
+#: ../win32/gui/plugin.c:309
+msgid "Error Closing CDR Plugin"
+msgstr "无法关闭 CD-ROM 插件 (%d)"
+
+#: ../win32/gui/plugin.c:311
+msgid "Error Closing GPU Plugin"
+msgstr "无法关闭 GPU 插件"
+
+#: ../win32/gui/plugin.c:313
+msgid "Error Closing SPU Plugin"
+msgstr "无法关闭 SPU 插件"
+
+#: ../win32/gui/plugin.c:315
+msgid "Error Closing PAD1 Plugin"
+msgstr "无法关闭 PAD1 插件"
+
+#: ../win32/gui/plugin.c:317
+msgid "Error Closing PAD2 Plugin"
+msgstr "无法关闭 PAD2 插件!"
+
+#: ../win32/gui/plugin.c:335
#, c-format
-msgid "Error initializing Controller 2 plugin: %d"
-msgstr "\"2\" ʼ: %d"
+msgid "CDRinit error: %d"
+msgstr "CDRinit 错误: %d"
-#: ../libpcsxcore/plugins.c:787
+#: ../win32/gui/plugin.c:337
#, c-format
-msgid "Error initializing NetPlay plugin: %d"
-msgstr "Ϸʼ: %d"
+msgid "GPUinit error: %d"
+msgstr "GPUinit 错误: %d"
-#: ../libpcsxcore/plugins.c:790
-msgid "Plugins loaded.\n"
-msgstr "Ѽء\n"
+#: ../win32/gui/plugin.c:339
+#, c-format
+msgid "SPUinit error: %d"
+msgstr "SPUinit 错误: %d"
-#: ../libpcsxcore/psxmem.c:69
-msgid "Error allocating memory!"
-msgstr "ڴ!"
+#: ../win32/gui/plugin.c:341
+#, c-format
+msgid "PAD1init error: %d"
+msgstr "PAD1init 错误: %d"
-#: ../libpcsxcore/psxmem.c:109
+#: ../win32/gui/plugin.c:343
#, c-format
-msgid "Could not open BIOS:\"%s\". Enabling HLE Bios!\n"
-msgstr "޷ BIOS: \"%s\"ʹڲ HLE Bios\n"
+msgid "PAD2init error: %d"
+msgstr "PAD2init 错误: %d"
-#: ../libpcsxcore/r3000a.c:34
+#: ../win32/gui/plugin.c:346
#, c-format
-msgid "Running PCSX Version %s (%s).\n"
-msgstr " PCSX 汾 %s (%s)\n"
+msgid "NETinit error: %d"
+msgstr "NETinit 错误: %d"
-#: ../libpcsxcore/sio.c:99
-msgid "Connection closed!\n"
-msgstr "ӱر!\n"
+#: ../win32/gui/WndMain.c:74
+msgid "Arabic"
+msgstr "阿拉伯语"
-#: ../libpcsxcore/sio.c:322
+#: ../win32/gui/WndMain.c:75
+msgid "Catalan"
+msgstr "加泰隆尼亚语"
+
+#: ../win32/gui/WndMain.c:76
+msgid "German"
+msgstr "德语"
+
+#: ../win32/gui/WndMain.c:77
+msgid "Greek"
+msgstr "希腊语"
+
+#: ../win32/gui/WndMain.c:78
+#: ../win32/gui/WndMain.c:1471
+#: ../win32/gui/WndMain.c:1473
+msgid "English"
+msgstr "英语"
+
+#: ../win32/gui/WndMain.c:79
+msgid "Spanish"
+msgstr "西班牙语"
+
+#: ../win32/gui/WndMain.c:80
+msgid "French"
+msgstr "法语"
+
+#: ../win32/gui/WndMain.c:81
+msgid "Italian"
+msgstr "意大利语"
+
+#: ../win32/gui/WndMain.c:82
+msgid "Portuguese"
+msgstr "葡萄牙语"
+
+#: ../win32/gui/WndMain.c:83
+msgid "Romanian"
+msgstr "罗马尼亚语"
+
+#: ../win32/gui/WndMain.c:84
+msgid "Russian"
+msgstr "俄语"
+
+#: ../win32/gui/WndMain.c:85
+msgid "Simplified Chinese"
+msgstr "简体中文"
+
+#: ../win32/gui/WndMain.c:86
+msgid "Traditional Chinese"
+msgstr "繁体中文"
+
+#: ../win32/gui/WndMain.c:87
+msgid "Japanese"
+msgstr "日语"
+
+#: ../win32/gui/WndMain.c:88
+msgid "Korean"
+msgstr "朝鲜语"
+
+#: ../win32/gui/WndMain.c:129
+msgid "Pcsx needs to be configured"
+msgstr "PCSX 需要被配置。"
+
+#: ../win32/gui/WndMain.c:133
+msgid "Pcsx now will quit, restart it"
+msgstr "PCSX 将退出,请重新启动它。"
+
+#: ../win32/gui/WndMain.c:253
+#: ../win32/gui/WndMain.c:305
+msgid "PCSX State Format"
+msgstr "PCSX 存档格式"
+
+#: ../win32/gui/WndMain.c:280
#, c-format
-msgid "No memory card value was specified - creating a default card %s\n"
-msgstr "δָ俨 - һĬϵļ俨 %s\n"
+msgid "*PCSX*: Loaded State %s"
+msgstr ""
-#: ../libpcsxcore/sio.c:326
+#: ../win32/gui/WndMain.c:281
#, c-format
-msgid "The memory card %s doesn't exist - creating it\n"
-msgstr "俨 %s - ڴ\n"
+msgid "*PCSX*: Error Loading State %s"
+msgstr ""
-#: ../libpcsxcore/sio.c:342
+#: ../win32/gui/WndMain.c:332
#, c-format
-msgid "Memory card %s failed to load!\n"
-msgstr "俨 %s ȡʧ!\n"
+msgid "*PCSX*: Saved State %s"
+msgstr ""
-#: ../libpcsxcore/sio.c:346
+#: ../win32/gui/WndMain.c:333
#, c-format
-msgid "Loading memory card %s\n"
-msgstr "ؼ俨 %s\n"
+msgid "*PCSX*: Error Saving State %s"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:382
+#: ../win32/gui/WndMain.c:431
+#: ../gui/Gtk2Gui.c:552
+#: ../gui/Gtk2Gui.c:675
+msgid "The CD does not appear to be a valid Playstation CD"
+msgstr "此光盘不是一张合法的 PlayStation 光盘。"
+
+#: ../win32/gui/WndMain.c:388
+#: ../win32/gui/WndMain.c:437
+#: ../gui/Gtk2Gui.c:560
+#: ../gui/Gtk2Gui.c:683
+msgid "Could not load CD-ROM!"
+msgstr "无法加载光盘!"
+
+#: ../win32/gui/WndMain.c:398
+msgid "Running BIOS is not supported with Internal HLE Bios."
+msgstr "内部 HLE BIOS 不支持直接运行。"
+
+#: ../win32/gui/WndMain.c:604
+#: ../gui/Gtk2Gui.c:1046
+msgid "Title"
+msgstr "标题"
+
+#: ../win32/gui/WndMain.c:610
+#: ../gui/Gtk2Gui.c:1052
+msgid "Status"
+msgstr "状态"
+
+#: ../win32/gui/WndMain.c:616
+msgid "Game ID"
+msgstr "游戏 ID"
+
+#: ../win32/gui/WndMain.c:622
+msgid "Game"
+msgstr "游戏"
+
+#: ../win32/gui/WndMain.c:796
+msgid "mid link block"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:799
+msgid "terminiting link block"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:807
+#: ../gui/Gtk2Gui.c:1126
+msgid "Deleted"
+msgstr "已删除"
+
+#: ../win32/gui/WndMain.c:808
+#: ../win32/gui/WndMain.c:811
+#: ../gui/Gtk2Gui.c:1128
+#: ../gui/Gtk2Gui.c:1132
+msgid "Free"
+msgstr "空闲"
+
+#: ../win32/gui/WndMain.c:810
+#: ../gui/Gtk2Gui.c:1130
+msgid "Used"
+msgstr "已使用"
+
+#: ../win32/gui/WndMain.c:904
+msgid "Memcard Manager"
+msgstr "记忆卡管理器"
+
+#: ../win32/gui/WndMain.c:908
+#: ../win32/gui/WndMain.c:911
+msgid "Select Mcd"
+msgstr "选择"
+
+#: ../win32/gui/WndMain.c:909
+#: ../win32/gui/WndMain.c:912
+msgid "Format Mcd"
+msgstr "格式化"
+
+#: ../win32/gui/WndMain.c:910
+#: ../win32/gui/WndMain.c:913
+msgid "Reload Mcd"
+msgstr "重新加载"
+
+#: ../win32/gui/WndMain.c:914
+msgid "-> Copy ->"
+msgstr "-> 复制 ->"
+
+#: ../win32/gui/WndMain.c:915
+msgid "<- Copy <-"
+msgstr "<- 复制 <-"
+
+#: ../win32/gui/WndMain.c:916
+msgid "Paste"
+msgstr "粘贴"
+
+#: ../win32/gui/WndMain.c:917
+msgid "<- Un/Delete"
+msgstr "<- 删除/恢复"
+
+#: ../win32/gui/WndMain.c:918
+msgid "Un/Delete ->"
+msgstr "删除/恢复 ->"
+
+#: ../win32/gui/WndMain.c:920
+msgid "Memory Card 1"
+msgstr "记忆卡 1"
+
+#: ../win32/gui/WndMain.c:921
+msgid "Memory Card 2"
+msgstr "记忆卡 2"
+
+#: ../win32/gui/WndMain.c:976
+msgid "Are you sure you want to paste this selection?"
+msgstr "是否确认粘贴此选中内容?"
+
+#: ../win32/gui/WndMain.c:976
+#: ../win32/gui/WndMain.c:1087
+#: ../win32/gui/WndMain.c:1094
+msgid "Confirmation"
+msgstr "确认"
+
+#: ../win32/gui/WndMain.c:1087
+#: ../win32/gui/WndMain.c:1094
+msgid "Are you sure you want to format this Memory Card?"
+msgstr "是否确认格式化此记忆卡?"
+
+#: ../win32/gui/WndMain.c:1140
+msgid "Cpu Config"
+msgstr "CPU 配置"
+
+#: ../win32/gui/WndMain.c:1145
+msgid "Disable Xa Decoding"
+msgstr "禁用 XA 解码"
+
+#: ../win32/gui/WndMain.c:1146
+msgid "Sio Irq Always Enabled"
+msgstr "SIO IRQ 总是启用"
+
+#: ../win32/gui/WndMain.c:1147
+msgid "Black && White Movies"
+msgstr "黑白电影"
+
+#: ../win32/gui/WndMain.c:1148
+msgid "Disable Cd audio"
+msgstr "禁用 CD 音频"
+
+#: ../win32/gui/WndMain.c:1149
+#: ../data/pcsx.glade2:1321
+msgid "Autodetect"
+msgstr "自动检测"
+
+#: ../win32/gui/WndMain.c:1150
+msgid "Enable Interpreter Cpu"
+msgstr "启用解释执行 CPU"
+
+#: ../win32/gui/WndMain.c:1151
+#: ../data/pcsx.glade2:1183
+msgid "Enable Console Output"
+msgstr "启用控制台输出"
+
+#: ../win32/gui/WndMain.c:1152
+msgid "Spu Irq Always Enabled"
+msgstr "SPU IRQ 总是启用"
+
+#: ../win32/gui/WndMain.c:1153
+#: ../data/pcsx.glade2:1267
+msgid "Parasite Eve 2, Vandal Hearts 1/2 Fix"
+msgstr "Parasite Eve 2, Vandal Hearts 1/2 修正"
+
+#: ../win32/gui/WndMain.c:1154
+#: ../data/pcsx.glade2:1282
+msgid "InuYasha Sengoku Battle Fix"
+msgstr "InuYasha Sengoku 战斗修正"
+
+#: ../win32/gui/WndMain.c:1156
+msgid "Options"
+msgstr "选项"
+
+#: ../win32/gui/WndMain.c:1157
+msgid "Psx System Type"
+msgstr "Psx 系统类型"
+
+#: ../win32/gui/WndMain.c:1229
+msgid "Psx Mcd Format (*.mcr;*.mc;*.mem;*.vgs;*.mcd;*.gme;*.ddf)"
+msgstr "Psx 记忆卡格式 (*.mcr;*.mc;*.mem;*.vgs;*.mcd;*.gme;*.ddf)"
+
+#: ../win32/gui/WndMain.c:1234
+msgid "Psx Memory Card (*.mcr;*.mc)"
+msgstr "Psx 记忆卡 (*.mcr;*.mc)"
+
+#: ../win32/gui/WndMain.c:1239
+msgid "CVGS Memory Card (*.mem;*.vgs)"
+msgstr "VGS 记忆卡 (*.mem;*.vgs)"
+
+#: ../win32/gui/WndMain.c:1244
+msgid "Bleem Memory Card (*.mcd)"
+msgstr "Bleem 记忆卡 (*.mcd)"
+
+#: ../win32/gui/WndMain.c:1249
+msgid "DexDrive Memory Card (*.gme)"
+msgstr "DexDrive 记忆卡 (*.gme)"
+
+#: ../win32/gui/WndMain.c:1254
+msgid "DataDeck Memory Card (*.ddf)"
+msgstr "DataDeck 记忆卡 (*.ddl)"
+
+#: ../win32/gui/WndMain.c:1259
+#: ../win32/gui/WndMain.c:1340
+#: ../gui/Cheat.c:372
+#: ../gui/Gtk2Gui.c:626
+msgid "All Files"
+msgstr "所有文件"
+
+#: ../win32/gui/WndMain.c:1298
+msgid "Psx Exe Format"
+msgstr "PSX EXE 格式"
+
+#: ../win32/gui/WndMain.c:1335
+msgid "Psx Isos (*.iso;*.mdf;*.img;*.bin)"
+msgstr "Psx 光盘镜像 (*.iso;*.mdf;*.img;*.bin)"
+
+#: ../win32/gui/WndMain.c:1409
+msgid "&File"
+msgstr "文件(&F)"
+
+#: ../win32/gui/WndMain.c:1410
+msgid "E&xit"
+msgstr "退出(&X)"
+
+#: ../win32/gui/WndMain.c:1412
+msgid "&States"
+msgstr "存档(&S)"
+
+#: ../win32/gui/WndMain.c:1414
+msgid "Run &EXE"
+msgstr "运行 EXE(&E)"
+
+#: ../win32/gui/WndMain.c:1415
+msgid "Run &BIOS"
+msgstr "运行 BIOS(&B)"
+
+#: ../win32/gui/WndMain.c:1416
+msgid "Run &ISO"
+msgstr "运行 ISO(&I)"
+
+#: ../win32/gui/WndMain.c:1417
+msgid "Run &CD"
+msgstr "运行光碟(&C)"
+
+#: ../win32/gui/WndMain.c:1418
+msgid "&Save"
+msgstr "保存(&S)"
+
+#: ../win32/gui/WndMain.c:1419
+msgid "&Load"
+msgstr "读取(&L)"
+
+#: ../win32/gui/WndMain.c:1420
+#: ../win32/gui/WndMain.c:1426
+msgid "&Other..."
+msgstr "其它(&O)..."
+
+#: ../win32/gui/WndMain.c:1421
+#: ../win32/gui/WndMain.c:1427
+msgid "Slot &5"
+msgstr "存档 5(&5)"
+
+#: ../win32/gui/WndMain.c:1422
+#: ../win32/gui/WndMain.c:1428
+msgid "Slot &4"
+msgstr "存档 4(&4)"
+
+#: ../win32/gui/WndMain.c:1423
+#: ../win32/gui/WndMain.c:1429
+msgid "Slot &3"
+msgstr "存档 3(&3)"
+
+#: ../win32/gui/WndMain.c:1424
+#: ../win32/gui/WndMain.c:1430
+msgid "Slot &2"
+msgstr "存档 2(&2)"
+
+#: ../win32/gui/WndMain.c:1425
+#: ../win32/gui/WndMain.c:1431
+msgid "Slot &1"
+msgstr "存档 1(&1)"
+
+#: ../win32/gui/WndMain.c:1433
+msgid "&Emulator"
+msgstr "模拟器(&E)"
+
+#: ../win32/gui/WndMain.c:1434
+msgid "S&witch ISO"
+msgstr "更换 ISO(&W)"
+
+#: ../win32/gui/WndMain.c:1436
+msgid "Re&set"
+msgstr "复位(&S)"
+
+#: ../win32/gui/WndMain.c:1437
+msgid "&Run"
+msgstr "运行(&R)"
+
+#: ../win32/gui/WndMain.c:1439
+msgid "&Configuration"
+msgstr "配置(&C)"
+
+#: ../win32/gui/WndMain.c:1440
+msgid "&Memory cards"
+msgstr "记忆卡(&M)"
+
+#: ../win32/gui/WndMain.c:1441
+msgid "C&PU"
+msgstr "CPU(&P)"
+
+#: ../win32/gui/WndMain.c:1443
+msgid "&NetPlay"
+msgstr "联网游戏(&N)"
+
+#: ../win32/gui/WndMain.c:1445
+msgid "&Controllers"
+msgstr "控制器(&C)"
+
+#: ../win32/gui/WndMain.c:1446
+msgid "CD-&ROM"
+msgstr "CD-ROM(&R)"
+
+#: ../win32/gui/WndMain.c:1447
+msgid "&Sound"
+msgstr "声音(&S)"
+
+#: ../win32/gui/WndMain.c:1448
+msgid "&Graphics"
+msgstr "图像(&G)"
+
+#: ../win32/gui/WndMain.c:1450
+msgid "&Plugins && Bios"
+msgstr "插件及 BIOS(&P)"
+
+#: ../win32/gui/WndMain.c:1452
+msgid "&Language"
+msgstr "语言(&L)"
+
+#: ../win32/gui/WndMain.c:1476
+msgid "&Help"
+msgstr "帮助(&H)"
+
+#: ../win32/gui/WndMain.c:1477
+msgid "&About..."
+msgstr "关于(&A)..."
+
+#: ../win32/gui/WndMain.c:1654
+msgid "Pcsx Msg"
+msgstr "PCSX 消息"
+
+#: ../win32/gui/WndMain.c:1657
+msgid "Error Loading Symbol"
+msgstr "无法加载符号"
#: ../gui/Cheat.c:49
msgid " Yes"
-msgstr " "
+msgstr " 是"
#: ../gui/Cheat.c:118
msgid "Add New Cheat"
-msgstr ""
+msgstr "添加新作弊码"
#: ../gui/Cheat.c:126
#: ../gui/Cheat.c:210
msgid "Cheat Description:"
-msgstr ":"
+msgstr "作弊码描述:"
#: ../gui/Cheat.c:134
#: ../gui/Cheat.c:219
msgid "Cheat Code:"
-msgstr ":"
+msgstr "作弊码:"
#: ../gui/Cheat.c:164
#: ../gui/Cheat.c:259
-#: ../gui/LnxMain.c:359
+#: ../gui/LnxMain.c:355
msgid "Error"
-msgstr ""
+msgstr "错误"
#: ../gui/Cheat.c:164
#: ../gui/Cheat.c:259
msgid "Invalid cheat code!"
-msgstr "Ƿ!"
+msgstr "非法作弊码!"
#: ../gui/Cheat.c:202
msgid "Edit Cheat"
-msgstr "༭"
+msgstr "编辑作弊码"
#: ../gui/Cheat.c:357
msgid "Open Cheat File"
-msgstr "ļ"
+msgstr "打开作弊码文件"
#: ../gui/Cheat.c:367
#: ../gui/Cheat.c:407
msgid "PCSX Cheat Code Files (*.cht)"
-msgstr "PCSX ļ (*.cht)"
-
-#: ../gui/Cheat.c:372
-#: ../gui/Gtk2Gui.c:626
-#: ../win32/gui/WndMain.c:1259
-#: ../win32/gui/WndMain.c:1340
-msgid "All Files"
-msgstr "ļ"
+msgstr "PCSX 作弊码文件 (*.cht)"
#: ../gui/Cheat.c:397
msgid "Save Cheat File"
-msgstr "ļ"
+msgstr "保存作弊码文件"
#: ../gui/Cheat.c:412
msgid "All Files (*.*)"
-msgstr "ļ (*.*)"
+msgstr "所有文件 (*.*)"
#: ../gui/Cheat.c:445
+#: ../gui/Cheat.c:531
#: ../gui/Gtk2Gui.c:377
#: ../gui/Gtk2Gui.c:998
msgid "Error: Glade interface could not be loaded!"
-msgstr "޷ Glade !"
+msgstr "错误:无法加载 Glade 界面!"
#: ../gui/Cheat.c:450
msgid "Cheat Codes"
-msgstr ""
+msgstr "作弊码"
#: ../gui/Cheat.c:456
-#: ../data/pcsx.glade2:2250
+#: ../data/pcsx.glade2:2253
msgid "Enable"
-msgstr ""
+msgstr "启用"
#: ../gui/Cheat.c:462
msgid "Description"
-msgstr ""
+msgstr "描述"
+
+#: ../gui/Cheat.c:536
+#: ../data/pcsx.glade2:2362
+msgid "Cheat Search"
+msgstr "查找作弊码"
#: ../gui/Gtk2Gui.c:385
#: ../data/pcsx.glade2:517
msgid "Configure PCSX"
-msgstr " PCSX"
+msgstr "配置 PCSX"
#: ../gui/Gtk2Gui.c:471
msgid "Select PSX EXE File"
-msgstr "ѡ PSX EXE ļ"
+msgstr "选择 PSX EXE 文件"
#: ../gui/Gtk2Gui.c:481
msgid "PlayStation Executable Files"
-msgstr "PlayStation ִļ"
+msgstr "PlayStation 可执行文件"
#: ../gui/Gtk2Gui.c:521
msgid "Not a valid PSX file"
-msgstr "һϷ PSX ļ"
+msgstr "不是一个合法的 PSX 文件"
#: ../gui/Gtk2Gui.c:521
msgid "The file does not appear to be a valid Playstation executable"
-msgstr "ļһϷ PlayStation ִļ"
+msgstr "此文件不是一个合法的 PlayStation 可执行文件"
#: ../gui/Gtk2Gui.c:552
#: ../gui/Gtk2Gui.c:675
msgid "CD ROM failed"
-msgstr "CD-ROM ʧ"
-
-#: ../gui/Gtk2Gui.c:552
-#: ../gui/Gtk2Gui.c:675
-#: ../win32/gui/WndMain.c:382
-#: ../win32/gui/WndMain.c:431
-msgid "The CD does not appear to be a valid Playstation CD"
-msgstr "˹̲һźϷ PlayStation ̡"
-
-#: ../gui/Gtk2Gui.c:560
-#: ../gui/Gtk2Gui.c:683
-#: ../win32/gui/WndMain.c:388
-#: ../win32/gui/WndMain.c:437
-msgid "Could not load CD-ROM!"
-msgstr "޷ع!"
+msgstr "CD-ROM 失败"
#: ../gui/Gtk2Gui.c:560
msgid "The CD ROM could not be loaded"
-msgstr "޷ CD-ROM"
+msgstr "无法加载 CD-ROM"
#: ../gui/Gtk2Gui.c:575
msgid "Could not run BIOS"
-msgstr "޷ BIOS"
+msgstr "无法运行 BIOS"
#: ../gui/Gtk2Gui.c:575
msgid "Running BIOS is not supported with Internal HLE BIOS."
-msgstr "ڲ HLE BIOS ֱ֧С"
+msgstr "内部 HLE BIOS 不支持直接运行。"
#: ../gui/Gtk2Gui.c:605
msgid "Open PSX Disc Image File"
-msgstr " PSX ̾ļ"
+msgstr "打开 PSX 光盘镜像文件"
#: ../gui/Gtk2Gui.c:621
msgid "PSX Image Files (*.bin, *.img, *.mdf, *.iso)"
-msgstr "PS ļ (*.bin, *.img, *.mdf, *.iso)"
+msgstr "PS 镜像文件 (*.bin, *.img, *.mdf, *.iso)"
#: ../gui/Gtk2Gui.c:857
#, c-format
msgid "Loaded state %s."
-msgstr "Ѷȡ浵 %s"
+msgstr "已读取存档 %s。"
#: ../gui/Gtk2Gui.c:862
#, c-format
msgid "Error loading state %s!"
-msgstr "ȡ浵 %s ʱ"
+msgstr "读取存档 %s 时出错。"
#: ../gui/Gtk2Gui.c:873
#, c-format
msgid "Saved state %s."
-msgstr "ѱ浵 %s"
+msgstr "已保存存档 %s"
#: ../gui/Gtk2Gui.c:875
#, c-format
msgid "Error saving state %s!"
-msgstr "浵 %s ʱ"
+msgstr "保存存档 %s 时出错。"
#: ../gui/Gtk2Gui.c:909
#: ../gui/Gtk2Gui.c:936
msgid "Select State File"
-msgstr "ѡ浵ļ"
+msgstr "选择存档文件"
#: ../gui/Gtk2Gui.c:1040
msgid "Icon"
-msgstr "ͼ"
-
-#: ../gui/Gtk2Gui.c:1046
-#: ../win32/gui/WndMain.c:604
-msgid "Title"
-msgstr ""
-
-#: ../gui/Gtk2Gui.c:1052
-#: ../win32/gui/WndMain.c:610
-msgid "Status"
-msgstr "״̬"
+msgstr "图标"
#: ../gui/Gtk2Gui.c:1058
msgid "ID"
@@ -330,79 +913,62 @@ msgstr "ID"
#: ../gui/Gtk2Gui.c:1064
msgid "Name"
-msgstr ""
-
-#: ../gui/Gtk2Gui.c:1126
-#: ../win32/gui/WndMain.c:807
-msgid "Deleted"
-msgstr "ɾ"
-
-#: ../gui/Gtk2Gui.c:1128
-#: ../gui/Gtk2Gui.c:1132
-#: ../win32/gui/WndMain.c:808
-#: ../win32/gui/WndMain.c:811
-msgid "Free"
-msgstr ""
-
-#: ../gui/Gtk2Gui.c:1130
-#: ../win32/gui/WndMain.c:810
-msgid "Used"
-msgstr "ʹ"
+msgstr "名称"
#: ../gui/Gtk2Gui.c:1224
msgid "Format this Memory Card?"
-msgstr "ʽ˼俨?"
+msgstr "格式化此记忆卡?"
#: ../gui/Gtk2Gui.c:1226
msgid "If you format the memory card, the card will be empty, and any existing data overwritten."
-msgstr "ѡʽ俨俨գκݶǡ"
+msgstr "如果您选择格式化记忆卡,记忆卡将被清空,并且任何现有数据都将被覆盖。"
#: ../gui/Gtk2Gui.c:1229
msgid "Format card"
-msgstr "ʽ俨"
+msgstr "格式化记忆卡"
#: ../gui/Gtk2Gui.c:1344
msgid "No space available in the target memory card!"
-msgstr "Ŀ俨ûпλ!"
+msgstr "目标记忆卡没有空余位置!"
#: ../gui/Gtk2Gui.c:1489
msgid "Memory Card Manager"
-msgstr "俨"
+msgstr "记忆卡管理器"
#: ../gui/Gtk2Gui.c:1758
msgid "No configuration required"
-msgstr "Ҫ"
+msgstr "不需要配置"
#: ../gui/Gtk2Gui.c:1758
msgid "This plugin doesn't need to be configured."
-msgstr "˲Ҫá"
+msgstr "此插件需要被配置。"
#: ../gui/Gtk2Gui.c:2017
#, c-format
msgid "Could not open BIOS directory: '%s'\n"
-msgstr "޷ BIOS Ŀ¼: \"%s\"\n"
+msgstr "无法打开 BIOS 目录: \"%s\"\n"
#: ../gui/Gtk2Gui.c:2049
-#: ../gui/Gtk2Gui.c:2143
-#: ../gui/LnxMain.c:145
+#: ../gui/Gtk2Gui.c:2142
+#: ../gui/LnxMain.c:146
#, c-format
msgid "Could not open directory: '%s'\n"
-msgstr "޷Ŀ¼: \"%s\"\n"
+msgstr "无法打开目录: \"%s\"\n"
-#: ../gui/Gtk2Gui.c:2112
+#: ../gui/Gtk2Gui.c:2111
msgid "Internal HLE Bios"
-msgstr "ڲ HLE-Bios"
+msgstr "内部 HLE-Bios"
-#: ../gui/Gtk2Gui.c:2204
+#: ../gui/Gtk2Gui.c:2203
msgid "Notice"
-msgstr ""
+msgstr "警告"
-#: ../gui/LnxMain.c:64
+#: ../gui/LnxMain.c:65
#, c-format
msgid "Creating memory card: %s\n"
-msgstr "俨: %s\n"
+msgstr "建立记忆卡: %s\n"
-#: ../gui/LnxMain.c:261
+#: ../gui/LnxMain.c:262
msgid ""
" pcsx [options] [file]\n"
"\toptions:\n"
@@ -415,106 +981,480 @@ msgid ""
"\t-h -help\tDisplay this message\n"
"\tfile\t\tLoads file\n"
msgstr ""
-" pcsx [ѡ] [ļ]\n"
-"\tѡ:\n"
-"\t-runcd\t\t CD-ROM\n"
-"\t-cdfile ļ\tһ CD ļ\n"
-"\t-nogui\t\tʹ GTK ͼν\n"
-"\t-cfg ļ\tһضļ (ĬΪ: ~/.pcsx/pcsx.cfg)\n"
-"\t-psxout\t\t PSX \n"
-"\t-load \tָŵĴ浵 (1-5)\n"
-"\t-h -help\tʾϢ\n"
-"\tļ\t\tļ\n"
-
-#: ../gui/LnxMain.c:299
+" pcsx [选项] [文件]\n"
+"\t选项:\n"
+"\t-runcd\t\t运行 CD-ROM\n"
+"\t-cdfile 文件\t运行一个 CD 镜像文件\n"
+"\t-nogui\t\t不使用 GTK 图形界面\n"
+"\t-cfg 文件\t加载一个特定的配置文件 (默认为: ~/.pcsx/pcsx.cfg)\n"
+"\t-psxout\t\t启用 PSX 输出\n"
+"\t-load 编号\t加载指定编号的存档 (1-5)\n"
+"\t-h -help\t显示此信息\n"
+"\t文件\t\t加载文件\n"
+
+#: ../gui/LnxMain.c:300
#, c-format
msgid "PCSX cannot be configured without using the GUI -- you should restart without -nogui.\n"
-msgstr "PCSX ַ -- 벻ʹ -nogui \n"
+msgstr "PCSX 不能在字符界面下配置 -- 请不使用 -nogui 参数重新启动程序\n"
-#: ../gui/LnxMain.c:359
+#: ../gui/LnxMain.c:355
msgid "Failed loading plugins!"
-msgstr "زʧ!"
+msgstr "加载插件失败!"
-#: ../gui/LnxMain.c:376
+#: ../gui/LnxMain.c:372
#, c-format
msgid "Could not load CD-ROM!\n"
-msgstr "޷ع̡\n"
+msgstr "无法加载光盘。\n"
-#: ../gui/LnxMain.c:415
+#: ../gui/LnxMain.c:411
#, c-format
msgid "PSX emulator couldn't be initialized.\n"
-msgstr "޷ʼ PSX ģ\n"
+msgstr "无法初始化 PSX 模拟器。\n"
#: ../gui/Plugin.c:204
#: ../data/pcsx.glade2:1219
#, c-format
msgid "SIO IRQ Always Enabled"
-msgstr "SIO IRQ "
+msgstr "SIO IRQ 总是启用"
#: ../gui/Plugin.c:205
#, c-format
msgid "SIO IRQ Not Always Enabled"
-msgstr "SIO IRQ "
+msgstr "SIO IRQ 不总是启用"
#: ../gui/Plugin.c:211
#, c-format
msgid "Black & White Mdecs Only Enabled"
-msgstr "Black & White Mdecs Only "
+msgstr "Black & White Mdecs Only 启用"
#: ../gui/Plugin.c:212
#, c-format
msgid "Black & White Mdecs Only Disabled"
-msgstr "Black & White Mdecs Only "
+msgstr "Black & White Mdecs Only 禁用"
#: ../gui/Plugin.c:218
#, c-format
msgid "XA Enabled"
-msgstr "XA "
+msgstr "XA 已启用"
#: ../gui/Plugin.c:219
#, c-format
msgid "XA Disabled"
-msgstr "XA ѽ"
+msgstr "XA 已禁用"
#: ../gui/Plugin.c:285
msgid "Error opening CD-ROM plugin!"
-msgstr "޷CD-ROM !"
+msgstr "无法打开CD-ROM 插件!"
#: ../gui/Plugin.c:287
msgid "Error opening SPU plugin!"
-msgstr "޷ SPU !"
+msgstr "无法打开 SPU 插件!"
#: ../gui/Plugin.c:290
msgid "Error opening GPU plugin!"
-msgstr "޷ GPU !"
+msgstr "无法打开 GPU 插件!"
#: ../gui/Plugin.c:292
msgid "Error opening Controller 1 plugin!"
-msgstr "޷ \" 1\" !"
+msgstr "无法打开 \"控制器 1\" 插件!"
#: ../gui/Plugin.c:294
msgid "Error opening Controller 2 plugin!"
-msgstr "޷ \" 2\" !"
+msgstr "无法打开 \"控制器 2\" 插件!"
#: ../gui/Plugin.c:374
msgid "Error closing CD-ROM plugin!"
-msgstr "޷ر CD-ROM !"
+msgstr "无法关闭 CD-ROM 插件!"
#: ../gui/Plugin.c:376
msgid "Error closing SPU plugin!"
-msgstr "޷ر SPU !"
+msgstr "无法关闭 SPU 插件!"
#: ../gui/Plugin.c:378
msgid "Error closing Controller 1 Plugin!"
-msgstr "޷ر \" 1\" !"
+msgstr "无法关闭 \"控制器 1\" 插件!"
#: ../gui/Plugin.c:380
msgid "Error closing Controller 2 plugin!"
-msgstr "޷ر \" 2\" !"
+msgstr "无法关闭 \"控制器 2\" 插件!"
#: ../gui/Plugin.c:382
msgid "Error closing GPU plugin!"
-msgstr "޷ر GPU !"
+msgstr "无法关闭 GPU 插件!"
+
+#: ../libpcsxcore/cdriso.c:125
+#, c-format
+msgid "Could not open %s.\n"
+msgstr "无法打开 %s。\n"
+
+#: ../libpcsxcore/cheat.c:335
+#: ../libpcsxcore/cheat.c:454
+msgid "(Untitled)"
+msgstr "(未命名)"
+
+#: ../libpcsxcore/misc.c:372
+#, c-format
+msgid "Error opening file: %s"
+msgstr "打开文件错误: %s!"
+
+#: ../libpcsxcore/misc.c:390
+msgid "CPE files not supported."
+msgstr "CPE 文件不被支持!"
+
+#: ../libpcsxcore/misc.c:394
+msgid "COFF files not supported."
+msgstr "COFF 文件不被支持!"
+
+#: ../libpcsxcore/misc.c:398
+msgid "This file does not appear to be a valid PSX file."
+msgstr "此文件不是一个合法的 PSX 文件。"
+
+#: ../libpcsxcore/plugins.c:33
+#, c-format
+msgid "Error loading %s: %s"
+msgstr "无法加载 %s: %s"
+
+#: ../libpcsxcore/plugins.c:162
+#, c-format
+msgid "Could not load GPU plugin %s!"
+msgstr "无法加载 GPU 插件 %s!"
+
+#: ../libpcsxcore/plugins.c:228
+#, c-format
+msgid "Could not load CD-ROM plugin %s!"
+msgstr "无法加载 CD-ROM 插件 %s!"
+
+#: ../libpcsxcore/plugins.c:467
+#, c-format
+msgid "Could not load SPU plugin %s!"
+msgstr "无法加载 SPU 插件 %s!"
+
+#: ../libpcsxcore/plugins.c:615
+#, c-format
+msgid "Could not load Controller 1 plugin %s!"
+msgstr "无法加载 \"控制器1\" 插件 %s!"
+
+#: ../libpcsxcore/plugins.c:669
+#, c-format
+msgid "Could not load Controller 2 plugin %s!"
+msgstr "无法加载 \"控制器2\" 插件 %s!"
+
+#: ../libpcsxcore/plugins.c:712
+#, c-format
+msgid "Could not load NetPlay plugin %s!"
+msgstr "无法加载联网游戏插件 %s!"
+
+#: ../libpcsxcore/plugins.c:775
+#, c-format
+msgid "Error initializing CD-ROM plugin: %d"
+msgstr "CD-ROM 插件初始化错误: %d"
+
+#: ../libpcsxcore/plugins.c:777
+#, c-format
+msgid "Error initializing GPU plugin: %d"
+msgstr "GPU 插件初始化错误: %d"
+
+#: ../libpcsxcore/plugins.c:779
+#, c-format
+msgid "Error initializing SPU plugin: %d"
+msgstr "SPU 插件初始化错误: %d"
+
+#: ../libpcsxcore/plugins.c:781
+#, c-format
+msgid "Error initializing Controller 1 plugin: %d"
+msgstr "\"控制器1\" 插件初始化错误: %d"
+
+#: ../libpcsxcore/plugins.c:783
+#, c-format
+msgid "Error initializing Controller 2 plugin: %d"
+msgstr "\"控制器2\" 插件初始化错误: %d"
+
+#: ../libpcsxcore/plugins.c:787
+#, c-format
+msgid "Error initializing NetPlay plugin: %d"
+msgstr "联网游戏插件初始化错误: %d"
+
+#: ../libpcsxcore/plugins.c:790
+msgid "Plugins loaded.\n"
+msgstr "插件已加载。\n"
+
+#: ../libpcsxcore/psxmem.c:69
+msgid "Error allocating memory!"
+msgstr "分配内存错误!"
+
+#: ../libpcsxcore/psxmem.c:109
+#, c-format
+msgid "Could not open BIOS:\"%s\". Enabling HLE Bios!\n"
+msgstr "无法打开 BIOS: \"%s\"。使用内部 HLE Bios。\n"
+
+#: ../libpcsxcore/r3000a.c:34
+#, c-format
+msgid "Running PCSX Version %s (%s).\n"
+msgstr "正在运行 PCSX 版本 %s (%s)。\n"
+
+#: ../libpcsxcore/sio.c:99
+msgid "Connection closed!\n"
+msgstr "连接被关闭!\n"
+
+#: ../libpcsxcore/sio.c:322
+#, c-format
+msgid "No memory card value was specified - creating a default card %s\n"
+msgstr "未指定记忆卡 - 创建一个默认的记忆卡 %s\n"
+
+#: ../libpcsxcore/sio.c:326
+#, c-format
+msgid "The memory card %s doesn't exist - creating it\n"
+msgstr "记忆卡 %s 不存在 - 正在创建\n"
+
+#: ../libpcsxcore/sio.c:342
+#, c-format
+msgid "Memory card %s failed to load!\n"
+msgstr "记忆卡 %s 读取失败!\n"
+
+#: ../libpcsxcore/sio.c:346
+#, c-format
+msgid "Loading memory card %s\n"
+msgstr "加载记忆卡 %s\n"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:8
+msgid "Configure X11 Video"
+msgstr "配置 X11 视频"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:39
+msgid "Initial Window Size:"
+msgstr "初始窗口大小:"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:50
+msgid "Stretching:"
+msgstr "拉抻:"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:63
+msgid "Dithering:"
+msgstr "抖动:"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:76
+msgid ""
+"320x240\n"
+"640x480\n"
+"800x600\n"
+"1024x768\n"
+"1152x864\n"
+"1280x1024\n"
+"1600x1200"
+msgstr ""
+"320x240\n"
+"640x480\n"
+"800x600\n"
+"1024x768\n"
+"1152x864\n"
+"1280x1024\n"
+"1600x1200"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:95
+msgid ""
+"0: None\n"
+"1: 2xSai\n"
+"2: 2xSuperSai\n"
+"3: SuperEagle\n"
+"4: Scale2x\n"
+"5: Scale3x\n"
+"6: HQ2X\n"
+"7: HQ3X"
+msgstr ""
+"0: None\n"
+"1: 2xSai\n"
+"2: 2xSuperSai\n"
+"3: SuperEagle\n"
+"4: Scale2x\n"
+"5: Scale3x\n"
+"6: HQ2X\n"
+"7: HQ3X"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:117
+msgid ""
+"0: Off (fastest)\n"
+"1: Game dependant\n"
+"2: Always"
+msgstr ""
+"0: 关闭 (最快)\n"
+"1: 取决于游戏\n"
+"2: 总是"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:139
+msgid "Maintain 4:3 Aspect Ratio"
+msgstr "维持 4:3 宽高比"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:153
+msgid "Toggle windowed/fullscreen mode."
+msgstr "切换窗口/全屏模式"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:154
+msgid "Fullscreen"
+msgstr "全屏"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:177
+msgid "<b>Screen</b>"
+msgstr "<b>屏幕</b>"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:203
+msgid "Toggle whether the FPS will be shown."
+msgstr "切换 FPS (每秒帧数) 是否将被显示。"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:204
+msgid "Show FPS"
+msgstr "显示 FPS"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:218
+msgid "Enable this if games display too quickly."
+msgstr "如果游戏运行得过快,请启用此项。"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:219
+msgid "Autodetect FPS limit"
+msgstr "自动检测 FPS 极限"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:235
+msgid "Skip frames when rendering."
+msgstr "渲染时跳帧。"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:236
+msgid "Enable frame skipping"
+msgstr "启用跳帧"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:257
+msgid "Set FPS"
+msgstr "设置 FPS"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:272
+msgid "200.0"
+msgstr "200.0"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:295
+msgid "<b>Framerate</b>"
+msgstr "<b>帧率</b>"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:324
+msgid "Use game fixes"
+msgstr "使用特定游戏修正"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:348
+msgid "better g-colors, worse textures"
+msgstr "较好的 g-colors, 较差的纹理"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:363
+msgid "Needed by Dark Forces"
+msgstr "Dark Forces 运行需要"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:378
+msgid "Draw quads with triangles"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:394
+msgid "Repeated flat tex triangles"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:410
+msgid "Disable CPU Saving"
+msgstr "禁用 CPU 保存"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:426
+msgid "Odd/even bit hack"
+msgstr "奇/偶位 hack"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:440
+msgid "For precise framerate"
+msgstr "精确帧率"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:455
+msgid "Better FPS limit in some"
+msgstr "某些游戏中可取得较好的 FPS 极限值"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:470
+msgid "PC FPS calculation"
+msgstr "PC FPS 计算"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:486
+msgid "Pandemonium 2"
+msgstr "Pandemonium 2"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:501
+msgid "Lazy screen update"
+msgstr "懒惰的屏幕更新"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:517
+msgid "Skip every second frame"
+msgstr "每两帧跳过一帧"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:532
+msgid "Old frame skipping"
+msgstr "旧的跳帧方式"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:548
+msgid "Expand screen width"
+msgstr "扩展屏幕宽度"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:564
+msgid "Ignore brightness color"
+msgstr "忽略亮色"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:580
+msgid "Disable coordinate check"
+msgstr "禁用坐标检查"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:596
+msgid "Chrono Cross"
+msgstr "Chrono Cross"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:609
+msgid "Capcom fighting games"
+msgstr "Capcom 格斗游戏"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:624
+msgid "Black screens in Lunar"
+msgstr "Lunar 中黑屏"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:639
+msgid "Compatibility mode"
+msgstr "兼容模式"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:664
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:428
+msgid "<b>Compatibility</b>"
+msgstr "<b>兼容性</b>"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:701
+msgid "About X11 Video Plugin"
+msgstr "关于 X11 视频插件"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:714
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:516
+msgid "Coded by: Pete Bernert and the P.E.Op.S. team"
+msgstr "编写: Pete Bernert 以及 P.E.Op.S. 开发组"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:725
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:541
+msgid "Homepage: http://home.t-online.de/home/PeteBernert/"
+msgstr "主页: http://home.t-online.de/home/PeteBernert/"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:737
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:566
+msgid "EMail: BlackDove@addcom.de"
+msgstr "EMail: BlackDove@addcom.de"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:750
+msgid "Version: 1.15"
+msgstr "版本: 1.15"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:762
+msgid "Release date: 2003"
+msgstr "发布日期: 2003"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:774
+msgid "<b>PCSX-df Video Plugin Adaption</b>"
+msgstr "<b>PCSX-df 视频插件</b>"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:787
+msgid "XVideo Support: Stephen Chao"
+msgstr "XVideo 支持: Stephen Chao"
#: ../data/pcsx.glade2:9
msgid "PCSX"
@@ -522,89 +1462,89 @@ msgstr "PCSX"
#: ../data/pcsx.glade2:23
msgid "_File"
-msgstr "ļ(_F)"
+msgstr "文件(_F)"
#: ../data/pcsx.glade2:30
msgid "Run _CD"
-msgstr "й(_C)"
+msgstr "运行光盘(_C)"
#: ../data/pcsx.glade2:46
msgid "Run _ISO"
-msgstr " _ISO"
+msgstr "运行 _ISO"
#: ../data/pcsx.glade2:62
msgid "Run _BIOS"
-msgstr " _BIOS"
+msgstr "运行 _BIOS"
#: ../data/pcsx.glade2:78
msgid "Run _EXE"
-msgstr " _EXE"
+msgstr "运行 _EXE"
#: ../data/pcsx.glade2:99
msgid "E_xit"
-msgstr "˳(_X)"
+msgstr "退出(_X)"
#: ../data/pcsx.glade2:119
msgid "_Emulator"
-msgstr "ģ(_E)"
+msgstr "模拟器(_E)"
#: ../data/pcsx.glade2:126
msgid "_Continue"
-msgstr "(_C)"
+msgstr "继续(_C)"
#: ../data/pcsx.glade2:141
msgid "_Reset"
-msgstr "λ(_R)"
+msgstr "复位(_R)"
#: ../data/pcsx.glade2:161
msgid "_Switch ISO"
-msgstr " ISO(_S)"
+msgstr "更换 ISO(_S)"
#: ../data/pcsx.glade2:182
msgid "_Save State"
-msgstr "ʱ浵(_S)"
+msgstr "即时存档(_S)"
#: ../data/pcsx.glade2:189
#: ../data/pcsx.glade2:268
msgid "Slot _1"
-msgstr "浵 _1"
+msgstr "存档 _1"
#: ../data/pcsx.glade2:198
#: ../data/pcsx.glade2:277
msgid "Slot _2"
-msgstr "浵 _2"
+msgstr "存档 _2"
#: ../data/pcsx.glade2:207
#: ../data/pcsx.glade2:286
msgid "Slot _3"
-msgstr "浵 _3"
+msgstr "存档 _3"
#: ../data/pcsx.glade2:216
#: ../data/pcsx.glade2:295
msgid "Slot _4"
-msgstr "浵 _4"
+msgstr "存档 _4"
#: ../data/pcsx.glade2:225
#: ../data/pcsx.glade2:304
msgid "Slot _5"
-msgstr "浵 _5"
+msgstr "存档 _5"
#: ../data/pcsx.glade2:234
#: ../data/pcsx.glade2:313
msgid "_Other..."
-msgstr "(_O)..."
+msgstr "其它(_O)..."
#: ../data/pcsx.glade2:261
msgid "_Load State"
-msgstr "ʱ(_L)"
+msgstr "即时读档(_L)"
#: ../data/pcsx.glade2:344
msgid "_Configuration"
-msgstr "(_C)"
+msgstr "配置(_C)"
#: ../data/pcsx.glade2:351
msgid "_Plugins & BIOS"
-msgstr " BIOS(_P)"
+msgstr "插件及 BIOS(_P)"
#: ../data/pcsx.glade2:372
msgid "_CPU"
@@ -612,55 +1552,55 @@ msgstr "_CPU"
#: ../data/pcsx.glade2:387
msgid "_Memory Cards"
-msgstr "俨(_M)"
+msgstr "记忆卡(_M)"
#: ../data/pcsx.glade2:403
msgid "_Netplay"
-msgstr "Ϸ(_N)"
+msgstr "联网游戏(_N)"
#: ../data/pcsx.glade2:423
msgid "Chea_t"
-msgstr "(_T)"
+msgstr "作弊码(_T)"
#: ../data/pcsx.glade2:431
msgid "_Browse"
-msgstr "(_B)"
+msgstr "浏览(_B)"
#: ../data/pcsx.glade2:445
msgid "_Search"
-msgstr "(_S)"
+msgstr "查找(_S)"
#: ../data/pcsx.glade2:474
msgid "_Help"
-msgstr "(_H)"
+msgstr "帮助(_H)"
#: ../data/pcsx.glade2:481
msgid "_About PCSX"
-msgstr " PCSX(_A)"
+msgstr "关于 PCSX(_A)"
#: ../data/pcsx.glade2:617
msgid "Select Folder to Search"
-msgstr "ѡҪҵļ"
+msgstr "选择要查找的文件夹"
#: ../data/pcsx.glade2:633
msgid "Search in:"
-msgstr "ڴ˴Ҳ:"
+msgstr "在此处查找插件:"
#: ../data/pcsx.glade2:906
msgid "Graphics:"
-msgstr "ͼ:"
+msgstr "图像:"
#: ../data/pcsx.glade2:919
msgid "Sound:"
-msgstr ":"
+msgstr "声音:"
#: ../data/pcsx.glade2:934
msgid "Controller 1: "
-msgstr " 1:"
+msgstr "控制器 1:"
#: ../data/pcsx.glade2:949
msgid "Controller 2:"
-msgstr " 2:"
+msgstr "控制器 2:"
#: ../data/pcsx.glade2:964
msgid "CD-ROM:"
@@ -668,7 +1608,7 @@ msgstr "CD-ROM:"
#: ../data/pcsx.glade2:1002
msgid "<b>Plugins</b>"
-msgstr "<b></b>"
+msgstr "<b>插件</b>"
#: ../data/pcsx.glade2:1061
msgid "<b>BIOS</b>"
@@ -676,55 +1616,35 @@ msgstr "<b>BIOS</b>"
#: ../data/pcsx.glade2:1106
msgid "Configure CPU"
-msgstr " CPU"
+msgstr "配置 CPU"
#: ../data/pcsx.glade2:1133
msgid "Enable Debugger"
-msgstr "õ"
+msgstr "启用调试器"
#: ../data/pcsx.glade2:1151
msgid "SPU IRQ Always Enabled"
-msgstr "SPU IRQ "
+msgstr "SPU IRQ 总是启用"
#: ../data/pcsx.glade2:1167
msgid "Black & White Movies"
-msgstr "ڰ׵Ӱ"
-
-#: ../data/pcsx.glade2:1183
-#: ../win32/gui/WndMain.c:1151
-msgid "Enable Console Output"
-msgstr "ÿ̨"
+msgstr "黑白电影"
#: ../data/pcsx.glade2:1201
msgid "Enable Interpreter CPU"
-msgstr "ýִ CPU"
+msgstr "启用解释执行 CPU"
#: ../data/pcsx.glade2:1235
msgid "Disable CD Audio"
-msgstr " CD Ƶ"
+msgstr "禁用 CD 音频"
#: ../data/pcsx.glade2:1251
msgid "Disable XA Decoding"
-msgstr " XA "
-
-#: ../data/pcsx.glade2:1267
-#: ../win32/gui/WndMain.c:1153
-msgid "Parasite Eve 2, Vandal Hearts 1/2 Fix"
-msgstr "Parasite Eve 2, Vandal Hearts 1/2 "
-
-#: ../data/pcsx.glade2:1282
-#: ../win32/gui/WndMain.c:1154
-msgid "InuYasha Sengoku Battle Fix"
-msgstr "InuYasha Sengoku ս"
+msgstr "禁用 XA 解码"
#: ../data/pcsx.glade2:1298
msgid "<b>Options</b>"
-msgstr "<b>ѡ</b>"
-
-#: ../data/pcsx.glade2:1321
-#: ../win32/gui/WndMain.c:1149
-msgid "Autodetect"
-msgstr "Զ"
+msgstr "<b>选项</b>"
#: ../data/pcsx.glade2:1335
msgid ""
@@ -736,47 +1656,47 @@ msgstr ""
#: ../data/pcsx.glade2:1349
msgid "<b>System Type</b>"
-msgstr "<b>ϵͳ</b>"
+msgstr "<b>系统类型</b>"
#: ../data/pcsx.glade2:1391
msgid "Configure NetPlay"
-msgstr "Ϸ"
+msgstr "配置联网游戏"
#: ../data/pcsx.glade2:1473
msgid "<b>NetPlay</b>"
-msgstr "<b>Ϸ</b>"
+msgstr "<b>联网游戏</b>"
#: ../data/pcsx.glade2:1517
msgid "Configure Memory Cards"
-msgstr "ü俨"
+msgstr "配置记忆卡"
#: ../data/pcsx.glade2:1587
#: ../data/pcsx.glade2:1951
msgid "Format"
-msgstr "ʽ"
+msgstr "格式化"
#: ../data/pcsx.glade2:1631
#: ../data/pcsx.glade2:1995
msgid "Reload"
-msgstr "¼"
+msgstr "重新加载"
#: ../data/pcsx.glade2:1673
msgid "<b>Memory Card 1</b>"
-msgstr "<b>俨 1</b>"
+msgstr "<b>记忆卡 1</b>"
#: ../data/pcsx.glade2:1728
#: ../data/pcsx.glade2:1772
msgid "Copy"
-msgstr ""
+msgstr "复制"
#: ../data/pcsx.glade2:1819
#: ../data/pcsx.glade2:1866
msgid "Un/Delete"
-msgstr "ɾ/ָ"
+msgstr "删除/恢复"
#: ../data/pcsx.glade2:2037
msgid "<b>Memory Card 2</b>"
-msgstr "<b>俨 2</b>"
+msgstr "<b>记忆卡 2</b>"
#: ../data/pcsx.glade2:2091
msgid ""
@@ -785,14 +1705,14 @@ msgid ""
"(C) 2005-2006 Andrew Burton\n"
"(C) 2008-2009 Wei Mingzhi"
msgstr ""
-"(C) 1999-2003 PCSX \n"
+"(C) 1999-2003 PCSX 开发组\n"
"(C) 2005-2006 Ryan Schultz\n"
"(C) 2005-2006 Andrew Burton\n"
"(C) 2008-2009 Wei Mingzhi"
#: ../data/pcsx.glade2:2095
msgid "A PlayStation emulator."
-msgstr "һ PlayStation ģ"
+msgstr "一个 PlayStation 模拟器。"
#: ../data/pcsx.glade2:2097
msgid "PCSX Reloaded"
@@ -818,739 +1738,297 @@ msgid ""
msgstr ""
#: ../data/pcsx.glade2:2127
+#: ../plugins/dfinput/dfinput.glade2:212
msgid "translator-credits"
msgstr "Wei Mingzhi <whistler@openoffice.org>"
-#: ../data/pcsx.glade2:2146
+#: ../data/pcsx.glade2:2148
msgid "Edit Cheat Codes"
-msgstr "༭"
+msgstr "编辑作弊码"
-#: ../data/pcsx.glade2:2182
+#: ../data/pcsx.glade2:2185
msgid "<b>Cheat Codes</b>"
-msgstr "<b></b>"
+msgstr "<b>作弊码</b>"
-#: ../data/pcsx.glade2:2200
+#: ../data/pcsx.glade2:2203
msgid "gtk-add"
-msgstr ""
+msgstr "gtk-add"
-#: ../data/pcsx.glade2:2210
+#: ../data/pcsx.glade2:2213
msgid "gtk-edit"
-msgstr ""
+msgstr "gtk-edit"
-#: ../data/pcsx.glade2:2223
+#: ../data/pcsx.glade2:2226
msgid "gtk-delete"
-msgstr ""
+msgstr "gtk-delete"
-#: ../data/pcsx.glade2:2282
+#: ../data/pcsx.glade2:2285
msgid "Disable"
-msgstr ""
+msgstr "禁用"
-#: ../data/pcsx.glade2:2300
+#: ../data/pcsx.glade2:2303
msgid "gtk-open"
-msgstr ""
+msgstr "gtk-open"
-#: ../data/pcsx.glade2:2313
+#: ../data/pcsx.glade2:2316
msgid "gtk-save-as"
-msgstr ""
+msgstr "gtk-save-as"
-#: ../data/pcsx.glade2:2342
+#: ../data/pcsx.glade2:2345
+#: ../data/pcsx.glade2:2789
msgid "gtk-close"
-msgstr ""
+msgstr "gtk-close"
-#: ../win32/gui/AboutDlg.c:26
+#: ../data/pcsx.glade2:2397
msgid ""
-"PCSX - A PlayStation Emulator\n"
-"\n"
-"Original Authors:\n"
-"main coder: linuzappz\n"
-"co-coders: shadow\n"
-"ex-coders: Nocomp, Pete Bernett, nik3d\n"
-"Webmaster: AkumaX"
+"Unsigned 8-bit\n"
+"Unsigned 16-bit\n"
+"Unsigned 32-bit\n"
+"Signed 8-bit\n"
+"Signed 16-bit\n"
+"Signed 32-bit"
msgstr ""
-"PCSX - һ PlayStation ģ\n"
-"\n"
-"ԭ:\n"
-"Ա: linuzappz\n"
-"Ա: shadow\n"
-"ǰԱ: Nocomp, Pete Bernett, nik3d\n"
-": AkumaX"
-
-#: ../win32/gui/AboutDlg.c:35
+"无符号 8 位\n"
+"无符号 16 位\n"
+"无符号 32 位\n"
+"有符号 8 位\n"
+"有符号 16 位\n"
+"有符号 32 位"
+
+#: ../data/pcsx.glade2:2415
+msgid "Search For:"
+msgstr "查找:"
+
+#: ../data/pcsx.glade2:2425
+msgid "Data Type:"
+msgstr "数据类型:"
+
+#: ../data/pcsx.glade2:2437
+msgid "Value:"
+msgstr "值:"
+
+#: ../data/pcsx.glade2:2449
+msgid "Data Base:"
+msgstr "数据基:"
+
+#: ../data/pcsx.glade2:2463
msgid ""
-"PCSX-df Authors:\n"
-"Ryan Schultz, Andrew Burton, Stephen Chao,\n"
-"Marcus Comstedt, Stefan Sikora\n"
-"\n"
-"PCSX Reloaded By:\n"
-"Wei Mingzhi\n"
-"\n"
-"http://www.codeplex.com/pcsxr"
-msgstr ""
-"PCSX-df :\n"
-"Ryan Schultz, Andrew Burton, Stephen Chao,\n"
-"Marcus Comstedt, Stefan Sikora\n"
-"\n"
-"PCSX Reloaded :\n"
-"Wei Mingzhi\n"
-"\n"
-"http://www.codeplex.com/pcsxr"
-
-#: ../win32/gui/AboutDlg.c:46
-msgid "About"
-msgstr " PCSX"
-
-#: ../win32/gui/AboutDlg.c:48
-#: ../win32/gui/AboutDlg.c:52
-#: ../win32/gui/ConfigurePlugins.c:462
-#: ../win32/gui/ConfigurePlugins.c:593
-#: ../win32/gui/WndMain.c:906
-#: ../win32/gui/WndMain.c:1142
-msgid "OK"
-msgstr "ȷ"
-
-#: ../win32/gui/AboutDlg.c:49
-msgid "PCSX EMU\n"
-msgstr "PCSX ģ\n"
-
-#: ../win32/gui/ConfigurePlugins.c:385
-msgid "This plugin reports that should work correctly"
-msgstr "˲"
-
-#: ../win32/gui/ConfigurePlugins.c:386
-msgid "This plugin reports that should not work correctly"
-msgstr "˲䲻"
-
-#: ../win32/gui/ConfigurePlugins.c:460
-msgid "Configuration"
-msgstr ""
-
-#: ../win32/gui/ConfigurePlugins.c:463
-#: ../win32/gui/ConfigurePlugins.c:594
-#: ../win32/gui/WndMain.c:907
-#: ../win32/gui/WndMain.c:1143
-msgid "Cancel"
-msgstr "ȡ"
-
-#: ../win32/gui/ConfigurePlugins.c:464
-msgid "Graphics"
-msgstr "ͼ"
-
-#: ../win32/gui/ConfigurePlugins.c:465
-msgid "First Controller"
-msgstr ""
-
-#: ../win32/gui/ConfigurePlugins.c:466
-msgid "Second Controller"
-msgstr ""
-
-#: ../win32/gui/ConfigurePlugins.c:467
-msgid "Sound"
-msgstr ""
-
-#: ../win32/gui/ConfigurePlugins.c:468
-msgid "Cdrom"
-msgstr "CD-ROM"
-
-#: ../win32/gui/ConfigurePlugins.c:469
-msgid "Bios"
-msgstr "BIOS"
-
-#: ../win32/gui/ConfigurePlugins.c:470
-msgid "Set Bios Directory"
-msgstr " BIOS Ŀ¼"
-
-#: ../win32/gui/ConfigurePlugins.c:471
-msgid "Set Plugins Directory"
-msgstr "òĿ¼"
-
-#: ../win32/gui/ConfigurePlugins.c:472
-#: ../win32/gui/ConfigurePlugins.c:475
-#: ../win32/gui/ConfigurePlugins.c:478
-#: ../win32/gui/ConfigurePlugins.c:481
-#: ../win32/gui/ConfigurePlugins.c:484
-#: ../win32/gui/ConfigurePlugins.c:596
-msgid "Configure..."
-msgstr "..."
-
-#: ../win32/gui/ConfigurePlugins.c:473
-#: ../win32/gui/ConfigurePlugins.c:476
-#: ../win32/gui/ConfigurePlugins.c:479
-#: ../win32/gui/ConfigurePlugins.c:482
-#: ../win32/gui/ConfigurePlugins.c:485
-#: ../win32/gui/ConfigurePlugins.c:597
-msgid "Test..."
-msgstr "..."
-
-#: ../win32/gui/ConfigurePlugins.c:474
-#: ../win32/gui/ConfigurePlugins.c:477
-#: ../win32/gui/ConfigurePlugins.c:480
-#: ../win32/gui/ConfigurePlugins.c:483
-#: ../win32/gui/ConfigurePlugins.c:486
-#: ../win32/gui/ConfigurePlugins.c:598
-msgid "About..."
-msgstr "..."
-
-#: ../win32/gui/ConfigurePlugins.c:591
-msgid "NetPlay Configuration"
-msgstr "Ϸ"
-
-#: ../win32/gui/ConfigurePlugins.c:595
-msgid "NetPlay"
-msgstr "Ϸ"
-
-#: ../win32/gui/ConfigurePlugins.c:599
-msgid "Note: The NetPlay Plugin Directory should be the same as the other Plugins."
-msgstr "ע: ϷӦͬһĿ¼С"
-
-#: ../win32/gui/plugin.c:90
-#: ../win32/gui/WndMain.c:235
-#, c-format
-msgid "*PCSX*: Saved State %d"
-msgstr ""
-
-#: ../win32/gui/plugin.c:91
-#: ../win32/gui/WndMain.c:236
-#, c-format
-msgid "*PCSX*: Error Saving State %d"
-msgstr ""
-
-#: ../win32/gui/plugin.c:107
-#: ../win32/gui/WndMain.c:214
-#, c-format
-msgid "*PCSX*: Loaded State %d"
-msgstr ""
-
-#: ../win32/gui/plugin.c:108
-#: ../win32/gui/WndMain.c:215
-#, c-format
-msgid "*PCSX*: Error Loading State %d"
-msgstr ""
-
-#: ../win32/gui/plugin.c:119
-#, c-format
-msgid "*PCSX*: Sio Irq Always Enabled"
-msgstr ""
-
-#: ../win32/gui/plugin.c:120
-#, c-format
-msgid "*PCSX*: Sio Irq Not Always Enabled"
-msgstr ""
-
-#: ../win32/gui/plugin.c:127
-#, c-format
-msgid "*PCSX*: Black&White Mdecs Only Enabled"
-msgstr ""
-
-#: ../win32/gui/plugin.c:128
-#, c-format
-msgid "*PCSX*: Black&White Mdecs Only Disabled"
-msgstr ""
-
-#: ../win32/gui/plugin.c:135
-#, c-format
-msgid "*PCSX*: Xa Enabled"
-msgstr ""
-
-#: ../win32/gui/plugin.c:136
-#, c-format
-msgid "*PCSX*: Xa Disabled"
+"Equal Value\n"
+"Not Equal Value\n"
+"Range"
msgstr ""
+"等于数值\n"
+"不等于数值\n"
+"范围"
-#: ../win32/gui/plugin.c:145
-msgid "*PCSX*: CdRom Case Opened"
-msgstr ""
-
-#: ../win32/gui/plugin.c:150
-msgid "*PCSX*: CdRom Case Closed"
+#: ../data/pcsx.glade2:2489
+msgid ""
+"Decimal\n"
+"Hexadecimal"
msgstr ""
+"十进制\n"
+"十六进制"
-#: ../win32/gui/plugin.c:177
-msgid "Connecting..."
-msgstr "..."
-
-#: ../win32/gui/plugin.c:179
-#: ../win32/gui/plugin.c:186
-#, c-format
-msgid "Please wait while connecting... %c\n"
-msgstr "Ժ... %c\n"
-
-#: ../win32/gui/plugin.c:216
-msgid "Error Opening CDR Plugin"
-msgstr "޷ CDR "
-
-#: ../win32/gui/plugin.c:279
-#, c-format
-msgid "Error Opening GPU Plugin (%d)"
-msgstr "޷ GPU (%d)"
-
-#: ../win32/gui/plugin.c:281
-#, c-format
-msgid "Error Opening SPU Plugin (%d)"
-msgstr "޷ SPU (%d)"
-
-#: ../win32/gui/plugin.c:284
-#, c-format
-msgid "Error Opening PAD1 Plugin (%d)"
-msgstr "޷ PAD1 (%d)"
-
-#: ../win32/gui/plugin.c:286
-#, c-format
-msgid "Error Opening PAD2 Plugin (%d)"
-msgstr "޷ PAD2 (%d)"
-
-#: ../win32/gui/plugin.c:309
-msgid "Error Closing CDR Plugin"
-msgstr "޷ر CD-ROM (%d)"
-
-#: ../win32/gui/plugin.c:311
-msgid "Error Closing GPU Plugin"
-msgstr "޷ر GPU "
-
-#: ../win32/gui/plugin.c:313
-msgid "Error Closing SPU Plugin"
-msgstr "޷ر SPU "
-
-#: ../win32/gui/plugin.c:315
-msgid "Error Closing PAD1 Plugin"
-msgstr "޷ر PAD1 "
+#: ../data/pcsx.glade2:2504
+msgid "Big-Endian"
+msgstr "Big-Endian"
-#: ../win32/gui/plugin.c:317
-msgid "Error Closing PAD2 Plugin"
-msgstr "޷ر PAD2 !"
+#: ../data/pcsx.glade2:2517
+msgid "To:"
+msgstr "到:"
-#: ../win32/gui/plugin.c:335
-#, c-format
-msgid "CDRinit error: %d"
-msgstr "CDRinit : %d"
+#: ../data/pcsx.glade2:2589
+#: ../data/pcsx.glade2:2618
+#: ../data/pcsx.glade2:2650
+msgid "label"
+msgstr "label"
-#: ../win32/gui/plugin.c:337
-#, c-format
-msgid "GPUinit error: %d"
-msgstr "GPUinit : %d"
-
-#: ../win32/gui/plugin.c:339
-#, c-format
-msgid "SPUinit error: %d"
-msgstr "SPUinit : %d"
-
-#: ../win32/gui/plugin.c:341
-#, c-format
-msgid "PAD1init error: %d"
-msgstr "PAD1init : %d"
-
-#: ../win32/gui/plugin.c:343
-#, c-format
-msgid "PAD2init error: %d"
-msgstr "PAD2init : %d"
+#: ../data/pcsx.glade2:2679
+msgid "label_resultsfound"
+msgstr "label_resultsfound"
-#: ../win32/gui/plugin.c:346
-#, c-format
-msgid "NETinit error: %d"
-msgstr "NETinit : %d"
+#: ../data/pcsx.glade2:2712
+msgid "Search"
+msgstr "查找"
-#: ../win32/gui/WndMain.c:74
-msgid "Arabic"
-msgstr ""
+#: ../data/pcsx.glade2:2741
+msgid "Restart"
+msgstr "复位"
-#: ../win32/gui/WndMain.c:75
-msgid "Catalan"
-msgstr "̩¡"
+#: ../data/pcsx.glade2:2768
+msgid "<b>Cheat Search</b>"
+msgstr "<b>作弊码查找</b>"
-#: ../win32/gui/WndMain.c:76
-msgid "German"
-msgstr ""
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:9
+msgid "Configure Sound"
+msgstr "配置音频"
-#: ../win32/gui/WndMain.c:77
-msgid "Greek"
-msgstr "ϣ"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:62
+msgid "Volume:"
+msgstr "音量:"
-#: ../win32/gui/WndMain.c:78
-#: ../win32/gui/WndMain.c:1471
-#: ../win32/gui/WndMain.c:1473
-msgid "English"
-msgstr "Ӣ"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:90
+msgid "Interpolation:"
+msgstr "插值:"
-#: ../win32/gui/WndMain.c:79
-msgid "Spanish"
-msgstr ""
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:118
+msgid "Reverb:"
+msgstr "回响:"
-#: ../win32/gui/WndMain.c:80
-msgid "French"
-msgstr ""
-
-#: ../win32/gui/WndMain.c:81
-msgid "Italian"
-msgstr ""
-
-#: ../win32/gui/WndMain.c:82
-msgid "Portuguese"
-msgstr ""
-
-#: ../win32/gui/WndMain.c:83
-msgid "Romanian"
-msgstr ""
-
-#: ../win32/gui/WndMain.c:84
-msgid "Russian"
-msgstr ""
-
-#: ../win32/gui/WndMain.c:85
-msgid "Simplified Chinese"
-msgstr ""
-
-#: ../win32/gui/WndMain.c:86
-msgid "Traditional Chinese"
-msgstr ""
-
-#: ../win32/gui/WndMain.c:87
-msgid "Japanese"
-msgstr ""
-
-#: ../win32/gui/WndMain.c:88
-msgid "Korean"
-msgstr ""
-
-#: ../win32/gui/WndMain.c:129
-msgid "Pcsx needs to be configured"
-msgstr "PCSX Ҫá"
-
-#: ../win32/gui/WndMain.c:133
-msgid "Pcsx now will quit, restart it"
-msgstr "PCSX ˳"
-
-#: ../win32/gui/WndMain.c:253
-#: ../win32/gui/WndMain.c:305
-msgid "PCSX State Format"
-msgstr "PCSX 浵ʽ"
-
-#: ../win32/gui/WndMain.c:280
-#, c-format
-msgid "*PCSX*: Loaded State %s"
-msgstr ""
-
-#: ../win32/gui/WndMain.c:281
-#, c-format
-msgid "*PCSX*: Error Loading State %s"
-msgstr ""
-
-#: ../win32/gui/WndMain.c:332
-#, c-format
-msgid "*PCSX*: Saved State %s"
-msgstr ""
-
-#: ../win32/gui/WndMain.c:333
-#, c-format
-msgid "*PCSX*: Error Saving State %s"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:146
+msgid ""
+"Low\n"
+"Medium\n"
+"Loud\n"
+"Loudest"
msgstr ""
+"低\n"
+"中\n"
+"高\n"
+"最高"
-#: ../win32/gui/WndMain.c:398
-msgid "Running BIOS is not supported with Internal HLE Bios."
-msgstr "ڲ HLE BIOS ֱ֧С"
-
-#: ../win32/gui/WndMain.c:616
-msgid "Game ID"
-msgstr "Ϸ ID"
-
-#: ../win32/gui/WndMain.c:622
-msgid "Game"
-msgstr "Ϸ"
-
-#: ../win32/gui/WndMain.c:796
-msgid "mid link block"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:165
+msgid ""
+"Off\n"
+"Simple\n"
+"Playstation"
msgstr ""
+"关\n"
+"简易\n"
+"Playstation"
-#: ../win32/gui/WndMain.c:799
-msgid "terminiting link block"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:184
+msgid ""
+"None\n"
+"Simple\n"
+"Gaussian\n"
+"Cubic"
msgstr ""
+"无\n"
+"简易\n"
+"高斯\n"
+"立方"
-#: ../win32/gui/WndMain.c:904
-msgid "Memcard Manager"
-msgstr "俨"
-
-#: ../win32/gui/WndMain.c:908
-#: ../win32/gui/WndMain.c:911
-msgid "Select Mcd"
-msgstr "ѡ"
-
-#: ../win32/gui/WndMain.c:909
-#: ../win32/gui/WndMain.c:912
-msgid "Format Mcd"
-msgstr "ʽ"
-
-#: ../win32/gui/WndMain.c:910
-#: ../win32/gui/WndMain.c:913
-msgid "Reload Mcd"
-msgstr "¼"
-
-#: ../win32/gui/WndMain.c:914
-msgid "-> Copy ->"
-msgstr "-> ->"
-
-#: ../win32/gui/WndMain.c:915
-msgid "<- Copy <-"
-msgstr "<- <-"
-
-#: ../win32/gui/WndMain.c:916
-msgid "Paste"
-msgstr "ճ"
-
-#: ../win32/gui/WndMain.c:917
-msgid "<- Un/Delete"
-msgstr "<- ɾ/ָ"
-
-#: ../win32/gui/WndMain.c:918
-msgid "Un/Delete ->"
-msgstr "ɾ/ָ ->"
-
-#: ../win32/gui/WndMain.c:920
-msgid "Memory Card 1"
-msgstr "俨 1"
-
-#: ../win32/gui/WndMain.c:921
-msgid "Memory Card 2"
-msgstr "俨 2"
-
-#: ../win32/gui/WndMain.c:976
-msgid "Are you sure you want to paste this selection?"
-msgstr "Ƿȷճѡ?"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:208
+msgid "<b>General</b>"
+msgstr "<b>一般</b>"
-#: ../win32/gui/WndMain.c:976
-#: ../win32/gui/WndMain.c:1087
-#: ../win32/gui/WndMain.c:1094
-msgid "Confirmation"
-msgstr "ȷ"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:264
+msgid "Enable or disable XA music."
+msgstr "启用或禁用 XA 音乐。"
-#: ../win32/gui/WndMain.c:1087
-#: ../win32/gui/WndMain.c:1094
-msgid "Are you sure you want to format this Memory Card?"
-msgstr "Ƿȷϸʽ˼俨?"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:266
+msgid "Enable XA"
+msgstr "启用 XA"
-#: ../win32/gui/WndMain.c:1140
-msgid "Cpu Config"
-msgstr "CPU "
-
-#: ../win32/gui/WndMain.c:1145
-msgid "Disable Xa Decoding"
-msgstr " XA "
-
-#: ../win32/gui/WndMain.c:1146
-msgid "Sio Irq Always Enabled"
-msgstr "SIO IRQ "
-
-#: ../win32/gui/WndMain.c:1147
-msgid "Black && White Movies"
-msgstr "ڰ׵Ӱ"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:284
+msgid "Choose this if XA music is played too quickly."
+msgstr "如 XA 音乐播放得太快,请选择此项。"
-#: ../win32/gui/WndMain.c:1148
-msgid "Disable Cd audio"
-msgstr " CD Ƶ"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:286
+msgid "Adjust XA speed"
+msgstr "调整 XA 速度"
-#: ../win32/gui/WndMain.c:1150
-msgid "Enable Interpreter Cpu"
-msgstr "ýִ CPU"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:308
+msgid "<b>XA Music</b>"
+msgstr "<b>XA 音乐</b>"
-#: ../win32/gui/WndMain.c:1152
-msgid "Spu Irq Always Enabled"
-msgstr "SPU IRQ "
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:364
+msgid "Use the asynchronous SPU interface."
+msgstr "使用异步 SPU 接口。"
-#: ../win32/gui/WndMain.c:1156
-msgid "Options"
-msgstr "ѡ"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:366
+msgid "High compatibility mode"
+msgstr "高兼容性模式"
-#: ../win32/gui/WndMain.c:1157
-msgid "Psx System Type"
-msgstr "Psx ϵͳ"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:384
+msgid "Wait for CPU; only useful for some games."
+msgstr "等待 CPU; 仅在部分游戏中有用处。"
-#: ../win32/gui/WndMain.c:1229
-msgid "Psx Mcd Format (*.mcr;*.mc;*.mem;*.vgs;*.mcd;*.gme;*.ddf)"
-msgstr "Psx 俨ʽ (*.mcr;*.mc;*.mem;*.vgs;*.mcd;*.gme;*.ddf)"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:386
+msgid "SPU IRQ Wait"
+msgstr "SPU IRQ 等待"
-#: ../win32/gui/WndMain.c:1234
-msgid "Psx Memory Card (*.mcr;*.mc)"
-msgstr "Psx 俨 (*.mcr;*.mc)"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:404
+msgid "Play only one channel for a performance boost."
+msgstr "仅播放一个声道以提升性能。"
-#: ../win32/gui/WndMain.c:1239
-msgid "CVGS Memory Card (*.mem;*.vgs)"
-msgstr "VGS 俨 (*.mem;*.vgs)"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:406
+msgid "Single channel sound"
+msgstr "单声道"
-#: ../win32/gui/WndMain.c:1244
-msgid "Bleem Memory Card (*.mcd)"
-msgstr "Bleem 俨 (*.mcd)"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:486
+msgid "About Sound Plugin"
+msgstr "关于音频插件"
-#: ../win32/gui/WndMain.c:1249
-msgid "DexDrive Memory Card (*.gme)"
-msgstr "DexDrive 俨 (*.gme)"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:592
+msgid "Version: 1.6"
+msgstr "版本: 1.6"
-#: ../win32/gui/WndMain.c:1254
-msgid "DataDeck Memory Card (*.ddf)"
-msgstr "DataDeck 俨 (*.ddl)"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:617
+msgid "Release date: 05.04.2003"
+msgstr "发布日期: 05.04.2003"
-#: ../win32/gui/WndMain.c:1298
-msgid "Psx Exe Format"
-msgstr "PSX EXE ʽ"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:642
+msgid "<b>PCSX-df Sound Plugin Adaption</b>"
+msgstr "<b>PCSX-df 音频插件</b>"
-#: ../win32/gui/WndMain.c:1335
-msgid "Psx Isos (*.iso;*.mdf;*.img;*.bin)"
-msgstr "Psx ̾ (*.iso;*.mdf;*.img;*.bin)"
+#: ../plugins/dfinput/dfinput.glade2:7
+msgid "Configure Gamepad/Keyboard"
+msgstr "配置手柄/键盘"
-#: ../win32/gui/WndMain.c:1409
-msgid "&File"
-msgstr "ļ(&F)"
+#: ../plugins/dfinput/dfinput.glade2:25
+msgid "Pad number:"
+msgstr "手柄编号:"
-#: ../win32/gui/WndMain.c:1410
-msgid "E&xit"
-msgstr "˳(&X)"
+#: ../plugins/dfinput/dfinput.glade2:36
+msgid "1"
+msgstr "1"
-#: ../win32/gui/WndMain.c:1412
-msgid "&States"
-msgstr "浵(&S)"
+#: ../plugins/dfinput/dfinput.glade2:51
+msgid "2"
+msgstr "2"
-#: ../win32/gui/WndMain.c:1414
-msgid "Run &EXE"
-msgstr " EXE(&E)"
+#: ../plugins/dfinput/dfinput.glade2:73
+msgid "Device file:"
+msgstr "设备文件:"
-#: ../win32/gui/WndMain.c:1415
-msgid "Run &BIOS"
-msgstr " BIOS(&B)"
+#: ../plugins/dfinput/dfinput.glade2:104
+msgid "Multi-threaded"
+msgstr "多线程"
-#: ../win32/gui/WndMain.c:1416
-msgid "Run &ISO"
-msgstr " ISO(&I)"
+#: ../plugins/dfinput/dfinput.glade2:118
+msgid "Analog"
+msgstr "模拟"
-#: ../win32/gui/WndMain.c:1417
-msgid "Run &CD"
-msgstr "й(&C)"
+#: ../plugins/dfinput/dfinput.glade2:155
+msgid "<b>Button Configuration</b>"
+msgstr "<b>按键配置</b>"
-#: ../win32/gui/WndMain.c:1418
-msgid "&Save"
-msgstr "(&S)"
-
-#: ../win32/gui/WndMain.c:1419
-msgid "&Load"
-msgstr "ȡ(&L)"
-
-#: ../win32/gui/WndMain.c:1420
-#: ../win32/gui/WndMain.c:1426
-msgid "&Other..."
-msgstr "(&O)..."
-
-#: ../win32/gui/WndMain.c:1421
-#: ../win32/gui/WndMain.c:1427
-msgid "Slot &5"
-msgstr "浵 5(&5)"
-
-#: ../win32/gui/WndMain.c:1422
-#: ../win32/gui/WndMain.c:1428
-msgid "Slot &4"
-msgstr "浵 4(&4)"
-
-#: ../win32/gui/WndMain.c:1423
-#: ../win32/gui/WndMain.c:1429
-msgid "Slot &3"
-msgstr "浵 3(&3)"
-
-#: ../win32/gui/WndMain.c:1424
-#: ../win32/gui/WndMain.c:1430
-msgid "Slot &2"
-msgstr "浵 2(&2)"
-
-#: ../win32/gui/WndMain.c:1425
-#: ../win32/gui/WndMain.c:1431
-msgid "Slot &1"
-msgstr "浵 1(&1)"
-
-#: ../win32/gui/WndMain.c:1433
-msgid "&Emulator"
-msgstr "ģ(&E)"
-
-#: ../win32/gui/WndMain.c:1434
-msgid "S&witch ISO"
-msgstr " ISO(&W)"
-
-#: ../win32/gui/WndMain.c:1436
-msgid "Re&set"
-msgstr "λ(&S)"
-
-#: ../win32/gui/WndMain.c:1437
-msgid "&Run"
-msgstr "(&R)"
-
-#: ../win32/gui/WndMain.c:1439
-msgid "&Configuration"
-msgstr "(&C)"
-
-#: ../win32/gui/WndMain.c:1440
-msgid "&Memory cards"
-msgstr "俨(&M)"
-
-#: ../win32/gui/WndMain.c:1441
-msgid "C&PU"
-msgstr "CPU(&P)"
-
-#: ../win32/gui/WndMain.c:1443
-msgid "&NetPlay"
-msgstr "Ϸ(&N)"
-
-#: ../win32/gui/WndMain.c:1445
-msgid "&Controllers"
-msgstr "(&C)"
-
-#: ../win32/gui/WndMain.c:1446
-msgid "CD-&ROM"
-msgstr "CD-ROM(&R)"
-
-#: ../win32/gui/WndMain.c:1447
-msgid "&Sound"
-msgstr "(&S)"
-
-#: ../win32/gui/WndMain.c:1448
-msgid "&Graphics"
-msgstr "ͼ(&G)"
-
-#: ../win32/gui/WndMain.c:1450
-msgid "&Plugins && Bios"
-msgstr " BIOS(&P)"
-
-#: ../win32/gui/WndMain.c:1452
-msgid "&Language"
-msgstr "(&L)"
-
-#: ../win32/gui/WndMain.c:1476
-msgid "&Help"
-msgstr "(&H)"
-
-#: ../win32/gui/WndMain.c:1477
-msgid "&About..."
-msgstr "(&A)..."
-
-#: ../win32/gui/WndMain.c:1654
-msgid "Pcsx Msg"
-msgstr "PCSX Ϣ"
-
-#: ../win32/gui/WndMain.c:1657
-msgid "Error Loading Symbol"
-msgstr "޷ط"
+#: ../plugins/dfinput/dfinput.glade2:209
+msgid "Based on PadJoy by Erich Kitzmüller (ammoq@ammoq.com)"
+msgstr "基于由 Erich Kitzmüller (ammoq@ammoq.com) 编写的 PadJoy"
#~ msgid "_Load"
-#~ msgstr "ȡ(_L)"
+#~ msgstr "读取(_L)"
#~ msgid "_Save"
-#~ msgstr "(_S)"
+#~ msgstr "保存(_S)"
#~ msgid "_Run"
-#~ msgstr "(_R)"
+#~ msgstr "运行(_R)"
#~ msgid ""
#~ "PCSX is licensed under the GNU GPL; see the included COPYING file for "
#~ "more detail."
-#~ msgstr "PCSX GNU GPL ·ο COPYING ļ"
+#~ msgstr "PCSX 在 GNU GPL 条款下发布;请参看包含的 COPYING 文件。"
#~ msgid "This plugin reports that it should work correctly."
-#~ msgstr "˲"
+#~ msgstr "此插件报告其可正常工作。"
#~ msgid "This plugin reports that it won't work correctly."
-#~ msgstr "˲䲻"
+#~ msgstr "此插件报告其不可正常工作。"
#~ msgid "Could not load Cdrom"
-#~ msgstr "޷ع"
+#~ msgstr "无法加载光盘"
#~ msgid "Could not open plugins directory: '%s'\n"
-#~ msgstr "޷򿪲Ŀ¼: \"%s\"\n"
+#~ msgstr "无法打开插件目录: \"%s\"\n"
#~ msgid "Run CD Though &Bios"
-#~ msgstr "ʹ BIOS й(&B)"
+#~ msgstr "使用 BIOS 运行光碟(&B)"
#~ msgid "Run CD Through BIOS"
-#~ msgstr "ʹ BIOS й"
+#~ msgstr "使用 BIOS 运行光碟"
diff --git a/po/zh_TW.gmo b/po/zh_TW.gmo
index e948ab21..fb64a769 100755
--- a/po/zh_TW.gmo
+++ b/po/zh_TW.gmo
Binary files differ
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 9fc87c51..a2364770 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -7,322 +7,846 @@ msgid ""
msgstr ""
"Project-Id-Version: pcsxr 1.0\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-03-25 19:23+0800\n"
+"POT-Creation-Date: 2009-05-30 16:09+0800\n"
"PO-Revision-Date: 2009-03-25 19:25+0700\n"
"Last-Translator: Wei Mingzhi <whistler@openoffice.org>\n"
"Language-Team: Traditional Chinese <whistler@openoffice.org>\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=big5\n"
+"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../libpcsxcore/cdriso.c:125
-#, c-format
-msgid "Could not open %s.\n"
-msgstr "Lk} \"%s\"\n"
+#: ../win32/gui/AboutDlg.c:26
+msgid ""
+"PCSX - A PlayStation Emulator\n"
+"\n"
+"Original Authors:\n"
+"main coder: linuzappz\n"
+"co-coders: shadow\n"
+"ex-coders: Nocomp, Pete Bernett, nik3d\n"
+"Webmaster: AkumaX"
+msgstr ""
+"PCSX - 一個 PlayStation 模擬器\n"
+"\n"
+"原作者:\n"
+"主程式: linuzappz\n"
+"輔助程式: shadow\n"
+"前程式: Nocomp, Pete Bernett, nik3d\n"
+"網絡管理: AkumaX"
-#: ../libpcsxcore/cheat.c:335
-#: ../libpcsxcore/cheat.c:454
-msgid "(Untitled)"
-msgstr "(wW)"
+#: ../win32/gui/AboutDlg.c:35
+msgid ""
+"PCSX-df Authors:\n"
+"Ryan Schultz, Andrew Burton, Stephen Chao,\n"
+"Marcus Comstedt, Stefan Sikora\n"
+"\n"
+"PCSX Reloaded By:\n"
+"Wei Mingzhi\n"
+"\n"
+"http://www.codeplex.com/pcsxr"
+msgstr ""
+"PCSX-df 開發者:\n"
+"Ryan Schultz, Andrew Burton, Stephen Chao,\n"
+"Marcus Comstedt, Stefan Sikora\n"
+"\n"
+"PCSX Reloaded 開發者:\n"
+"Wei Mingzhi\n"
+"\n"
+"http://www.codeplex.com/pcsxr"
-#: ../libpcsxcore/misc.c:372
+#: ../win32/gui/AboutDlg.c:46
+msgid "About"
+msgstr "關於 PCSX"
+
+#: ../win32/gui/AboutDlg.c:48 ../win32/gui/AboutDlg.c:52
+#: ../win32/gui/ConfigurePlugins.c:462 ../win32/gui/ConfigurePlugins.c:593
+#: ../win32/gui/WndMain.c:906 ../win32/gui/WndMain.c:1142
+msgid "OK"
+msgstr "確定"
+
+#: ../win32/gui/AboutDlg.c:49
+msgid "PCSX EMU\n"
+msgstr "PCSX 模擬器\n"
+
+#: ../win32/gui/ConfigurePlugins.c:385
+msgid "This plugin reports that should work correctly"
+msgstr "此外掛報告其可正常工作。"
+
+#: ../win32/gui/ConfigurePlugins.c:386
+msgid "This plugin reports that should not work correctly"
+msgstr "此外掛報告其不可正常工作。"
+
+#: ../win32/gui/ConfigurePlugins.c:460
+msgid "Configuration"
+msgstr "配置"
+
+#: ../win32/gui/ConfigurePlugins.c:463 ../win32/gui/ConfigurePlugins.c:594
+#: ../win32/gui/WndMain.c:907 ../win32/gui/WndMain.c:1143
+msgid "Cancel"
+msgstr "取消"
+
+#: ../win32/gui/ConfigurePlugins.c:464
+msgid "Graphics"
+msgstr "圖像"
+
+#: ../win32/gui/ConfigurePlugins.c:465
+msgid "First Controller"
+msgstr "主控制器"
+
+#: ../win32/gui/ConfigurePlugins.c:466
+msgid "Second Controller"
+msgstr "輔控制器"
+
+#: ../win32/gui/ConfigurePlugins.c:467
+msgid "Sound"
+msgstr "聲音"
+
+#: ../win32/gui/ConfigurePlugins.c:468
+msgid "Cdrom"
+msgstr "CD-ROM"
+
+#: ../win32/gui/ConfigurePlugins.c:469
+msgid "Bios"
+msgstr "BIOS"
+
+#: ../win32/gui/ConfigurePlugins.c:470
+msgid "Set Bios Directory"
+msgstr "設置 BIOS 目錄"
+
+#: ../win32/gui/ConfigurePlugins.c:471
+msgid "Set Plugins Directory"
+msgstr "設置外掛目錄"
+
+#: ../win32/gui/ConfigurePlugins.c:472 ../win32/gui/ConfigurePlugins.c:475
+#: ../win32/gui/ConfigurePlugins.c:478 ../win32/gui/ConfigurePlugins.c:481
+#: ../win32/gui/ConfigurePlugins.c:484 ../win32/gui/ConfigurePlugins.c:596
+msgid "Configure..."
+msgstr "配置..."
+
+#: ../win32/gui/ConfigurePlugins.c:473 ../win32/gui/ConfigurePlugins.c:476
+#: ../win32/gui/ConfigurePlugins.c:479 ../win32/gui/ConfigurePlugins.c:482
+#: ../win32/gui/ConfigurePlugins.c:485 ../win32/gui/ConfigurePlugins.c:597
+msgid "Test..."
+msgstr "測試..."
+
+#: ../win32/gui/ConfigurePlugins.c:474 ../win32/gui/ConfigurePlugins.c:477
+#: ../win32/gui/ConfigurePlugins.c:480 ../win32/gui/ConfigurePlugins.c:483
+#: ../win32/gui/ConfigurePlugins.c:486 ../win32/gui/ConfigurePlugins.c:598
+msgid "About..."
+msgstr "關於..."
+
+#: ../win32/gui/ConfigurePlugins.c:591
+msgid "NetPlay Configuration"
+msgstr "聯網遊戲配置"
+
+#: ../win32/gui/ConfigurePlugins.c:595
+msgid "NetPlay"
+msgstr "聯網遊戲"
+
+#: ../win32/gui/ConfigurePlugins.c:599
+msgid ""
+"Note: The NetPlay Plugin Directory should be the same as the other Plugins."
+msgstr "注意: 聯網遊戲外掛應和其它外掛放在同一資料夾中。"
+
+#: ../win32/gui/plugin.c:90 ../win32/gui/WndMain.c:235
#, c-format
-msgid "Error opening file: %s"
-msgstr "}ɮ׿~: %s!"
+msgid "*PCSX*: Saved State %d"
+msgstr ""
-#: ../libpcsxcore/misc.c:390
-msgid "CPE files not supported."
-msgstr "CPE ɮפQ䴩!"
+#: ../win32/gui/plugin.c:91 ../win32/gui/WndMain.c:236
+#, c-format
+msgid "*PCSX*: Error Saving State %d"
+msgstr ""
-#: ../libpcsxcore/misc.c:394
-msgid "COFF files not supported."
-msgstr "COFF ɮפQ䴩!"
+#: ../win32/gui/plugin.c:107 ../win32/gui/WndMain.c:214
+#, c-format
+msgid "*PCSX*: Loaded State %d"
+msgstr ""
-#: ../libpcsxcore/misc.c:398
-msgid "This file does not appear to be a valid PSX file."
-msgstr "ɮפO@ӦXk PSX ɮסC"
+#: ../win32/gui/plugin.c:108 ../win32/gui/WndMain.c:215
+#, c-format
+msgid "*PCSX*: Error Loading State %d"
+msgstr ""
-#: ../libpcsxcore/plugins.c:33
+#: ../win32/gui/plugin.c:119
#, c-format
-msgid "Error loading %s: %s"
-msgstr "Lk[ %s: %s"
+msgid "*PCSX*: Sio Irq Always Enabled"
+msgstr ""
-#: ../libpcsxcore/plugins.c:162
+#: ../win32/gui/plugin.c:120
#, c-format
-msgid "Could not load GPU plugin %s!"
-msgstr "Lk[ GPU ~ %s!"
+msgid "*PCSX*: Sio Irq Not Always Enabled"
+msgstr ""
-#: ../libpcsxcore/plugins.c:228
+#: ../win32/gui/plugin.c:127
#, c-format
-msgid "Could not load CD-ROM plugin %s!"
-msgstr "Lk[ CD-ROM ~ %s!"
+msgid "*PCSX*: Black&White Mdecs Only Enabled"
+msgstr ""
-#: ../libpcsxcore/plugins.c:467
+#: ../win32/gui/plugin.c:128
#, c-format
-msgid "Could not load SPU plugin %s!"
-msgstr "Lk[ SPU ~ %s!"
+msgid "*PCSX*: Black&White Mdecs Only Disabled"
+msgstr ""
-#: ../libpcsxcore/plugins.c:615
+#: ../win32/gui/plugin.c:135
#, c-format
-msgid "Could not load Controller 1 plugin %s!"
-msgstr "Lk[ \"1\" ~ %s!"
+msgid "*PCSX*: Xa Enabled"
+msgstr ""
-#: ../libpcsxcore/plugins.c:669
+#: ../win32/gui/plugin.c:136
#, c-format
-msgid "Could not load Controller 2 plugin %s!"
-msgstr "Lk[ \"2\" ~ %s!"
+msgid "*PCSX*: Xa Disabled"
+msgstr ""
-#: ../libpcsxcore/plugins.c:712
+#: ../win32/gui/plugin.c:145
+msgid "*PCSX*: CdRom Case Opened"
+msgstr ""
+
+#: ../win32/gui/plugin.c:150
+msgid "*PCSX*: CdRom Case Closed"
+msgstr ""
+
+#: ../win32/gui/plugin.c:177
+msgid "Connecting..."
+msgstr "正在連接..."
+
+#: ../win32/gui/plugin.c:179 ../win32/gui/plugin.c:186
#, c-format
-msgid "Could not load NetPlay plugin %s!"
-msgstr "Lk[pC~ %s!"
+msgid "Please wait while connecting... %c\n"
+msgstr "請稍候,正在連接... %c\n"
-#: ../libpcsxcore/plugins.c:775
+#: ../win32/gui/plugin.c:216
+msgid "Error Opening CDR Plugin"
+msgstr "無法開啟 CDR 外掛"
+
+#: ../win32/gui/plugin.c:279
#, c-format
-msgid "Error initializing CD-ROM plugin: %d"
-msgstr "CD-ROM ~lƿ~: %d"
+msgid "Error Opening GPU Plugin (%d)"
+msgstr "無法開啟 GPU 外掛 (%d)"
-#: ../libpcsxcore/plugins.c:777
+#: ../win32/gui/plugin.c:281
#, c-format
-msgid "Error initializing GPU plugin: %d"
-msgstr "GPU ~lƿ~: %d"
+msgid "Error Opening SPU Plugin (%d)"
+msgstr "無法開啟 SPU 外掛 (%d)"
-#: ../libpcsxcore/plugins.c:779
+#: ../win32/gui/plugin.c:284
#, c-format
-msgid "Error initializing SPU plugin: %d"
-msgstr "SPU ~lƿ~: %d"
+msgid "Error Opening PAD1 Plugin (%d)"
+msgstr "無法開啟 PAD1 外掛 (%d)"
-#: ../libpcsxcore/plugins.c:781
+#: ../win32/gui/plugin.c:286
#, c-format
-msgid "Error initializing Controller 1 plugin: %d"
-msgstr "\"1\" ~lƿ~: %d"
+msgid "Error Opening PAD2 Plugin (%d)"
+msgstr "無法開啟 PAD2 外掛 (%d)"
-#: ../libpcsxcore/plugins.c:783
+#: ../win32/gui/plugin.c:309
+msgid "Error Closing CDR Plugin"
+msgstr "無法關閉 CD-ROM 外掛 (%d)"
+
+#: ../win32/gui/plugin.c:311
+msgid "Error Closing GPU Plugin"
+msgstr "無法關閉 GPU 外掛"
+
+#: ../win32/gui/plugin.c:313
+msgid "Error Closing SPU Plugin"
+msgstr "無法關閉 SPU 外掛"
+
+#: ../win32/gui/plugin.c:315
+msgid "Error Closing PAD1 Plugin"
+msgstr "無法關閉 PAD1 外掛"
+
+#: ../win32/gui/plugin.c:317
+msgid "Error Closing PAD2 Plugin"
+msgstr "無法關閉 PAD2 外掛!"
+
+#: ../win32/gui/plugin.c:335
#, c-format
-msgid "Error initializing Controller 2 plugin: %d"
-msgstr "\"2\" ~lƿ~: %d"
+msgid "CDRinit error: %d"
+msgstr "CDRinit 錯誤: %d"
-#: ../libpcsxcore/plugins.c:787
+#: ../win32/gui/plugin.c:337
#, c-format
-msgid "Error initializing NetPlay plugin: %d"
-msgstr "pC~lƿ~: %d"
+msgid "GPUinit error: %d"
+msgstr "GPUinit 錯誤: %d"
-#: ../libpcsxcore/plugins.c:790
-msgid "Plugins loaded.\n"
-msgstr "~w[C\n"
+#: ../win32/gui/plugin.c:339
+#, c-format
+msgid "SPUinit error: %d"
+msgstr "SPUinit 錯誤: %d"
-#: ../libpcsxcore/psxmem.c:69
-msgid "Error allocating memory!"
-msgstr "ts~!"
+#: ../win32/gui/plugin.c:341
+#, c-format
+msgid "PAD1init error: %d"
+msgstr "PAD1init 錯誤: %d"
-#: ../libpcsxcore/psxmem.c:109
+#: ../win32/gui/plugin.c:343
#, c-format
-msgid "Could not open BIOS:\"%s\". Enabling HLE Bios!\n"
-msgstr "Lk} BIOS: \"%s\"CϥΤ HLE BiosC\n"
+msgid "PAD2init error: %d"
+msgstr "PAD2init 錯誤: %d"
-#: ../libpcsxcore/r3000a.c:34
+#: ../win32/gui/plugin.c:346
#, c-format
-msgid "Running PCSX Version %s (%s).\n"
-msgstr "PCSX %s (%s) 椤C\n"
+msgid "NETinit error: %d"
+msgstr "NETinit 錯誤: %d"
-#: ../libpcsxcore/sio.c:99
-msgid "Connection closed!\n"
-msgstr "sQ!\n"
+#: ../win32/gui/WndMain.c:74
+msgid "Arabic"
+msgstr "阿拉伯語"
-#: ../libpcsxcore/sio.c:322
+#: ../win32/gui/WndMain.c:75
+msgid "Catalan"
+msgstr "加泰隆尼亞語"
+
+#: ../win32/gui/WndMain.c:76
+msgid "German"
+msgstr "德語"
+
+#: ../win32/gui/WndMain.c:77
+msgid "Greek"
+msgstr "希臘語"
+
+#: ../win32/gui/WndMain.c:78 ../win32/gui/WndMain.c:1471
+#: ../win32/gui/WndMain.c:1473
+msgid "English"
+msgstr "英語"
+
+#: ../win32/gui/WndMain.c:79
+msgid "Spanish"
+msgstr "西班牙語"
+
+#: ../win32/gui/WndMain.c:80
+msgid "French"
+msgstr "法語"
+
+#: ../win32/gui/WndMain.c:81
+msgid "Italian"
+msgstr "意大利語"
+
+#: ../win32/gui/WndMain.c:82
+msgid "Portuguese"
+msgstr "葡萄牙語"
+
+#: ../win32/gui/WndMain.c:83
+msgid "Romanian"
+msgstr "羅馬尼亞語"
+
+#: ../win32/gui/WndMain.c:84
+msgid "Russian"
+msgstr "俄語"
+
+#: ../win32/gui/WndMain.c:85
+msgid "Simplified Chinese"
+msgstr "簡體中文"
+
+#: ../win32/gui/WndMain.c:86
+msgid "Traditional Chinese"
+msgstr "繁體中文"
+
+#: ../win32/gui/WndMain.c:87
+msgid "Japanese"
+msgstr "日語"
+
+#: ../win32/gui/WndMain.c:88
+msgid "Korean"
+msgstr "韓國語"
+
+#: ../win32/gui/WndMain.c:129
+msgid "Pcsx needs to be configured"
+msgstr "Pcsx 需要被配置。"
+
+#: ../win32/gui/WndMain.c:133
+msgid "Pcsx now will quit, restart it"
+msgstr "PCSX 將關閉,請重新啟動它。"
+
+#: ../win32/gui/WndMain.c:253 ../win32/gui/WndMain.c:305
+msgid "PCSX State Format"
+msgstr "PCSX 記錄格式"
+
+#: ../win32/gui/WndMain.c:280
#, c-format
-msgid "No memory card value was specified - creating a default card %s\n"
-msgstr "wOХd - Ыؤ@ӷsOХd %s\n"
+msgid "*PCSX*: Loaded State %s"
+msgstr ""
-#: ../libpcsxcore/sio.c:326
+#: ../win32/gui/WndMain.c:281
#, c-format
-msgid "The memory card %s doesn't exist - creating it\n"
-msgstr "OХd %s sb - bЫ\n"
+msgid "*PCSX*: Error Loading State %s"
+msgstr ""
-#: ../libpcsxcore/sio.c:342
+#: ../win32/gui/WndMain.c:332
#, c-format
-msgid "Memory card %s failed to load!\n"
-msgstr "OХd %s Ū!\n"
+msgid "*PCSX*: Saved State %s"
+msgstr ""
-#: ../libpcsxcore/sio.c:346
+#: ../win32/gui/WndMain.c:333
#, c-format
-msgid "Loading memory card %s\n"
-msgstr "b[OХd %s\n"
+msgid "*PCSX*: Error Saving State %s"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:382 ../win32/gui/WndMain.c:431 ../gui/Gtk2Gui.c:552
+#: ../gui/Gtk2Gui.c:675
+msgid "The CD does not appear to be a valid Playstation CD"
+msgstr "此光碟不是一張合法的 PlayStation 光碟。"
+
+#: ../win32/gui/WndMain.c:388 ../win32/gui/WndMain.c:437 ../gui/Gtk2Gui.c:560
+#: ../gui/Gtk2Gui.c:683
+msgid "Could not load CD-ROM!"
+msgstr "無法加載光碟!"
+
+#: ../win32/gui/WndMain.c:398
+msgid "Running BIOS is not supported with Internal HLE Bios."
+msgstr "內部 HLE BIOS 不支援直接執行。"
+
+#: ../win32/gui/WndMain.c:604 ../gui/Gtk2Gui.c:1046
+msgid "Title"
+msgstr "標題"
+
+#: ../win32/gui/WndMain.c:610 ../gui/Gtk2Gui.c:1052
+msgid "Status"
+msgstr "狀態"
+
+#: ../win32/gui/WndMain.c:616
+msgid "Game ID"
+msgstr "遊戲 ID"
+
+#: ../win32/gui/WndMain.c:622
+msgid "Game"
+msgstr "遊戲"
+
+#: ../win32/gui/WndMain.c:796
+msgid "mid link block"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:799
+msgid "terminiting link block"
+msgstr ""
+
+#: ../win32/gui/WndMain.c:807 ../gui/Gtk2Gui.c:1126
+msgid "Deleted"
+msgstr "已刪除"
+
+#: ../win32/gui/WndMain.c:808 ../win32/gui/WndMain.c:811 ../gui/Gtk2Gui.c:1128
+#: ../gui/Gtk2Gui.c:1132
+msgid "Free"
+msgstr "空閑"
+
+#: ../win32/gui/WndMain.c:810 ../gui/Gtk2Gui.c:1130
+msgid "Used"
+msgstr "已使用"
+
+#: ../win32/gui/WndMain.c:904
+msgid "Memcard Manager"
+msgstr "記憶卡管理器"
+
+#: ../win32/gui/WndMain.c:908 ../win32/gui/WndMain.c:911
+msgid "Select Mcd"
+msgstr "選擇"
+
+#: ../win32/gui/WndMain.c:909 ../win32/gui/WndMain.c:912
+msgid "Format Mcd"
+msgstr "格式化"
+
+#: ../win32/gui/WndMain.c:910 ../win32/gui/WndMain.c:913
+msgid "Reload Mcd"
+msgstr "重新加載"
+
+#: ../win32/gui/WndMain.c:914
+msgid "-> Copy ->"
+msgstr "-> 複制 ->"
+
+#: ../win32/gui/WndMain.c:915
+msgid "<- Copy <-"
+msgstr "<- 複制 <-"
+
+#: ../win32/gui/WndMain.c:916
+msgid "Paste"
+msgstr "粘貼"
+
+#: ../win32/gui/WndMain.c:917
+msgid "<- Un/Delete"
+msgstr "<- 刪除/恢複"
+
+#: ../win32/gui/WndMain.c:918
+msgid "Un/Delete ->"
+msgstr "刪除/恢複 ->"
+
+#: ../win32/gui/WndMain.c:920
+msgid "Memory Card 1"
+msgstr "記憶卡 1"
+
+#: ../win32/gui/WndMain.c:921
+msgid "Memory Card 2"
+msgstr "記憶卡 2"
+
+#: ../win32/gui/WndMain.c:976
+msgid "Are you sure you want to paste this selection?"
+msgstr "是否確認粘貼此選中內容?"
+
+#: ../win32/gui/WndMain.c:976 ../win32/gui/WndMain.c:1087
+#: ../win32/gui/WndMain.c:1094
+msgid "Confirmation"
+msgstr "確認"
+
+#: ../win32/gui/WndMain.c:1087 ../win32/gui/WndMain.c:1094
+msgid "Are you sure you want to format this Memory Card?"
+msgstr "是否確認格式化此記憶卡?"
+
+#: ../win32/gui/WndMain.c:1140
+msgid "Cpu Config"
+msgstr "CPU 配置"
+
+#: ../win32/gui/WndMain.c:1145
+msgid "Disable Xa Decoding"
+msgstr "禁用 XA 解碼"
+
+#: ../win32/gui/WndMain.c:1146
+msgid "Sio Irq Always Enabled"
+msgstr "SIO IRQ 總是啟用"
+
+#: ../win32/gui/WndMain.c:1147
+msgid "Black && White Movies"
+msgstr "黑白電影"
+
+#: ../win32/gui/WndMain.c:1148
+msgid "Disable Cd audio"
+msgstr "禁用 CD 音頻"
+
+#: ../win32/gui/WndMain.c:1149 ../data/pcsx.glade2:1321
+msgid "Autodetect"
+msgstr "自動檢測"
+
+#: ../win32/gui/WndMain.c:1150
+msgid "Enable Interpreter Cpu"
+msgstr "啟用解釋執行 CPU"
+
+#: ../win32/gui/WndMain.c:1151 ../data/pcsx.glade2:1183
+msgid "Enable Console Output"
+msgstr "啟用控制台輸出"
+
+#: ../win32/gui/WndMain.c:1152
+msgid "Spu Irq Always Enabled"
+msgstr "SPU IRQ 總是啟用"
+
+#: ../win32/gui/WndMain.c:1153 ../data/pcsx.glade2:1267
+msgid "Parasite Eve 2, Vandal Hearts 1/2 Fix"
+msgstr "Parasite Eve 2, Vandal Hearts 1/2 修正"
+
+#: ../win32/gui/WndMain.c:1154 ../data/pcsx.glade2:1282
+msgid "InuYasha Sengoku Battle Fix"
+msgstr "InuYasha Sengoku 戰斗修正"
+
+#: ../win32/gui/WndMain.c:1156
+msgid "Options"
+msgstr "選項"
+
+#: ../win32/gui/WndMain.c:1157
+msgid "Psx System Type"
+msgstr "Psx 系統類型"
+
+#: ../win32/gui/WndMain.c:1229
+msgid "Psx Mcd Format (*.mcr;*.mc;*.mem;*.vgs;*.mcd;*.gme;*.ddf)"
+msgstr "Psx 記憶卡格式 (*.mcr;*.mc;*.mem;*.vgs;*.mcd;*.gme;*.ddf)"
+
+#: ../win32/gui/WndMain.c:1234
+msgid "Psx Memory Card (*.mcr;*.mc)"
+msgstr "Psx 記憶卡 (*.mcr;*.mc)"
+
+#: ../win32/gui/WndMain.c:1239
+msgid "CVGS Memory Card (*.mem;*.vgs)"
+msgstr "VGS 記憶卡 (*.mem;*.vgs)"
+
+#: ../win32/gui/WndMain.c:1244
+msgid "Bleem Memory Card (*.mcd)"
+msgstr "Bleem 記憶卡 (*.mcd)"
+
+#: ../win32/gui/WndMain.c:1249
+msgid "DexDrive Memory Card (*.gme)"
+msgstr "DexDrive 記憶卡 (*.gme)"
+
+#: ../win32/gui/WndMain.c:1254
+msgid "DataDeck Memory Card (*.ddf)"
+msgstr "DataDeck 記憶卡 (*.ddl)"
+
+#: ../win32/gui/WndMain.c:1259 ../win32/gui/WndMain.c:1340 ../gui/Cheat.c:372
+#: ../gui/Gtk2Gui.c:626
+msgid "All Files"
+msgstr "所有檔案"
+
+#: ../win32/gui/WndMain.c:1298
+msgid "Psx Exe Format"
+msgstr "PSX EXE 格式"
+
+#: ../win32/gui/WndMain.c:1335
+msgid "Psx Isos (*.iso;*.mdf;*.img;*.bin)"
+msgstr "Psx 鏡像檔 (*.iso;*.mdf;*.img;*.bin)"
+
+#: ../win32/gui/WndMain.c:1409
+msgid "&File"
+msgstr "檔案(&F)"
+
+#: ../win32/gui/WndMain.c:1410
+msgid "E&xit"
+msgstr "離開(&X)"
+
+#: ../win32/gui/WndMain.c:1412
+msgid "&States"
+msgstr "記錄(&S)"
+
+#: ../win32/gui/WndMain.c:1414
+msgid "Run &EXE"
+msgstr "執行 EXE(&E)"
+
+#: ../win32/gui/WndMain.c:1415
+msgid "Run &BIOS"
+msgstr "執行 BIOS(&B)"
+
+#: ../win32/gui/WndMain.c:1416
+msgid "Run &ISO"
+msgstr "執行 ISO(&I)"
+
+#: ../win32/gui/WndMain.c:1417
+msgid "Run &CD"
+msgstr "執行光碟(&C)"
+
+#: ../win32/gui/WndMain.c:1418
+msgid "&Save"
+msgstr "存儲(&S)"
+
+#: ../win32/gui/WndMain.c:1419
+msgid "&Load"
+msgstr "讀取(&L)"
+
+#: ../win32/gui/WndMain.c:1420 ../win32/gui/WndMain.c:1426
+msgid "&Other..."
+msgstr "其它(&O)..."
+
+#: ../win32/gui/WndMain.c:1421 ../win32/gui/WndMain.c:1427
+msgid "Slot &5"
+msgstr "記錄 5(&5)"
+
+#: ../win32/gui/WndMain.c:1422 ../win32/gui/WndMain.c:1428
+msgid "Slot &4"
+msgstr "記錄 4(&4)"
+
+#: ../win32/gui/WndMain.c:1423 ../win32/gui/WndMain.c:1429
+msgid "Slot &3"
+msgstr "記錄 3(&3)"
+
+#: ../win32/gui/WndMain.c:1424 ../win32/gui/WndMain.c:1430
+msgid "Slot &2"
+msgstr "記錄 2(&2)"
+
+#: ../win32/gui/WndMain.c:1425 ../win32/gui/WndMain.c:1431
+msgid "Slot &1"
+msgstr "記錄 1(&1)"
+
+#: ../win32/gui/WndMain.c:1433
+msgid "&Emulator"
+msgstr "模擬器(&E)"
+
+#: ../win32/gui/WndMain.c:1434
+msgid "S&witch ISO"
+msgstr "更換 ISO(_W)"
+
+#: ../win32/gui/WndMain.c:1436
+msgid "Re&set"
+msgstr "複位(&S)"
+
+#: ../win32/gui/WndMain.c:1437
+msgid "&Run"
+msgstr "執行(&R)"
+
+#: ../win32/gui/WndMain.c:1439
+msgid "&Configuration"
+msgstr "配置(&C)"
+
+#: ../win32/gui/WndMain.c:1440
+msgid "&Memory cards"
+msgstr "記憶卡(&M)"
+
+#: ../win32/gui/WndMain.c:1441
+msgid "C&PU"
+msgstr "CPU(&P)"
+
+#: ../win32/gui/WndMain.c:1443
+msgid "&NetPlay"
+msgstr "聯網遊戲(&N)"
+
+#: ../win32/gui/WndMain.c:1445
+msgid "&Controllers"
+msgstr "控制器(&C)"
+
+#: ../win32/gui/WndMain.c:1446
+msgid "CD-&ROM"
+msgstr "CD-ROM(&R)"
+
+#: ../win32/gui/WndMain.c:1447
+msgid "&Sound"
+msgstr "聲音(&S)"
+
+#: ../win32/gui/WndMain.c:1448
+msgid "&Graphics"
+msgstr "圖像(&G)"
+
+#: ../win32/gui/WndMain.c:1450
+msgid "&Plugins && Bios"
+msgstr "外掛及 BIOS(&P)"
+
+#: ../win32/gui/WndMain.c:1452
+msgid "&Language"
+msgstr "語言(&L)"
+
+#: ../win32/gui/WndMain.c:1476
+msgid "&Help"
+msgstr "說明(&H)"
+
+#: ../win32/gui/WndMain.c:1477
+msgid "&About..."
+msgstr "關於(&A)..."
+
+#: ../win32/gui/WndMain.c:1654
+msgid "Pcsx Msg"
+msgstr "Pcsx 消息"
+
+#: ../win32/gui/WndMain.c:1657
+msgid "Error Loading Symbol"
+msgstr "無法加載符號"
#: ../gui/Cheat.c:49
msgid " Yes"
-msgstr " O"
+msgstr " 是"
#: ../gui/Cheat.c:118
msgid "Add New Cheat"
-msgstr "K[s"
+msgstr "添加新金手指"
-#: ../gui/Cheat.c:126
-#: ../gui/Cheat.c:210
+#: ../gui/Cheat.c:126 ../gui/Cheat.c:210
msgid "Cheat Description:"
-msgstr "yz:"
+msgstr "金手指描述:"
-#: ../gui/Cheat.c:134
-#: ../gui/Cheat.c:219
+#: ../gui/Cheat.c:134 ../gui/Cheat.c:219
msgid "Cheat Code:"
-msgstr "X:"
+msgstr "金手指碼:"
-#: ../gui/Cheat.c:164
-#: ../gui/Cheat.c:259
-#: ../gui/LnxMain.c:359
+#: ../gui/Cheat.c:164 ../gui/Cheat.c:259 ../gui/LnxMain.c:355
msgid "Error"
-msgstr "~"
+msgstr "錯誤"
-#: ../gui/Cheat.c:164
-#: ../gui/Cheat.c:259
+#: ../gui/Cheat.c:164 ../gui/Cheat.c:259
msgid "Invalid cheat code!"
-msgstr "DkX!"
+msgstr "非法金手指碼!"
#: ../gui/Cheat.c:202
msgid "Edit Cheat"
-msgstr "s"
+msgstr "編輯金手指"
#: ../gui/Cheat.c:357
msgid "Open Cheat File"
-msgstr "}"
+msgstr "打開金手指檔"
-#: ../gui/Cheat.c:367
-#: ../gui/Cheat.c:407
+#: ../gui/Cheat.c:367 ../gui/Cheat.c:407
msgid "PCSX Cheat Code Files (*.cht)"
-msgstr "PCSX (*.cht)"
-
-#: ../gui/Cheat.c:372
-#: ../gui/Gtk2Gui.c:626
-#: ../win32/gui/WndMain.c:1259
-#: ../win32/gui/WndMain.c:1340
-msgid "All Files"
-msgstr "Ҧɮ"
+msgstr "PCSX 金手指檔 (*.cht)"
#: ../gui/Cheat.c:397
msgid "Save Cheat File"
-msgstr "xs"
+msgstr "儲存金手指檔"
#: ../gui/Cheat.c:412
msgid "All Files (*.*)"
-msgstr "Ҧɮ (*.*)"
+msgstr "所有檔案 (*.*)"
-#: ../gui/Cheat.c:445
-#: ../gui/Gtk2Gui.c:377
+#: ../gui/Cheat.c:445 ../gui/Cheat.c:531 ../gui/Gtk2Gui.c:377
#: ../gui/Gtk2Gui.c:998
msgid "Error: Glade interface could not be loaded!"
-msgstr "~GLk[ Glade ɭ!"
+msgstr "錯誤:無法加載 Glade 界面!"
#: ../gui/Cheat.c:450
msgid "Cheat Codes"
-msgstr "X"
+msgstr "金手指碼"
-#: ../gui/Cheat.c:456
-#: ../data/pcsx.glade2:2250
+#: ../gui/Cheat.c:456 ../data/pcsx.glade2:2253
msgid "Enable"
-msgstr "ҥ"
+msgstr "啟用"
#: ../gui/Cheat.c:462
msgid "Description"
-msgstr "yz"
+msgstr "描述"
-#: ../gui/Gtk2Gui.c:385
-#: ../data/pcsx.glade2:517
+#: ../gui/Cheat.c:536 ../data/pcsx.glade2:2362
+#, fuzzy
+msgid "Cheat Search"
+msgstr "搜尋(_S)"
+
+#: ../gui/Gtk2Gui.c:385 ../data/pcsx.glade2:517
msgid "Configure PCSX"
-msgstr "tm PCSX"
+msgstr "配置 PCSX"
#: ../gui/Gtk2Gui.c:471
msgid "Select PSX EXE File"
-msgstr " PS EXE ɮ"
+msgstr "選擇 PS EXE 檔案"
#: ../gui/Gtk2Gui.c:481
msgid "PlayStation Executable Files"
-msgstr "PlayStation "
+msgstr "PlayStation 執行檔"
#: ../gui/Gtk2Gui.c:521
msgid "Not a valid PSX file"
-msgstr "O@ӦXk PSX "
+msgstr "不是一個合法的 PSX 檔"
#: ../gui/Gtk2Gui.c:521
msgid "The file does not appear to be a valid Playstation executable"
-msgstr "󤣬O@ӦXk PlayStation "
+msgstr "此文件不是一個合法的 PlayStation 執行檔"
-#: ../gui/Gtk2Gui.c:552
-#: ../gui/Gtk2Gui.c:675
+#: ../gui/Gtk2Gui.c:552 ../gui/Gtk2Gui.c:675
msgid "CD ROM failed"
-msgstr "CD-ROM "
-
-#: ../gui/Gtk2Gui.c:552
-#: ../gui/Gtk2Gui.c:675
-#: ../win32/gui/WndMain.c:382
-#: ../win32/gui/WndMain.c:431
-msgid "The CD does not appear to be a valid Playstation CD"
-msgstr "ФO@iXk PlayStation СC"
-
-#: ../gui/Gtk2Gui.c:560
-#: ../gui/Gtk2Gui.c:683
-#: ../win32/gui/WndMain.c:388
-#: ../win32/gui/WndMain.c:437
-msgid "Could not load CD-ROM!"
-msgstr "Lk[!"
+msgstr "CD-ROM 失敗"
#: ../gui/Gtk2Gui.c:560
msgid "The CD ROM could not be loaded"
-msgstr "Lk[ CD-ROM"
+msgstr "無法加載 CD-ROM"
#: ../gui/Gtk2Gui.c:575
msgid "Could not run BIOS"
-msgstr "Lk BIOS"
+msgstr "無法執行 BIOS"
#: ../gui/Gtk2Gui.c:575
msgid "Running BIOS is not supported with Internal HLE BIOS."
-msgstr " HLE BIOS 䴩C"
+msgstr "內部 HLE BIOS 不支援直接執行。"
#: ../gui/Gtk2Gui.c:605
msgid "Open PSX Disc Image File"
-msgstr "} PSX ЬM"
+msgstr "打開 PSX 光碟映像檔"
#: ../gui/Gtk2Gui.c:621
msgid "PSX Image Files (*.bin, *.img, *.mdf, *.iso)"
-msgstr "PSX 蹳 (*.bin, *.img, *.mdf, *.iso)"
+msgstr "PSX 鏡像檔 (*.bin, *.img, *.mdf, *.iso)"
#: ../gui/Gtk2Gui.c:857
#, c-format
msgid "Loaded state %s."
-msgstr "wŪO %sC"
+msgstr "已讀取記錄 %s。"
#: ../gui/Gtk2Gui.c:862
#, c-format
msgid "Error loading state %s!"
-msgstr "ŪO %s ɥXC"
+msgstr "讀取記錄 %s 時出錯。"
#: ../gui/Gtk2Gui.c:873
#, c-format
msgid "Saved state %s."
-msgstr "wsxO %s"
+msgstr "已存儲記錄 %s"
#: ../gui/Gtk2Gui.c:875
#, c-format
msgid "Error saving state %s!"
-msgstr "sxO %s ɥXC"
+msgstr "存儲記錄 %s 時出錯。"
-#: ../gui/Gtk2Gui.c:909
-#: ../gui/Gtk2Gui.c:936
+#: ../gui/Gtk2Gui.c:909 ../gui/Gtk2Gui.c:936
msgid "Select State File"
-msgstr "ܰOɮ"
+msgstr "選擇記錄檔案"
#: ../gui/Gtk2Gui.c:1040
msgid "Icon"
-msgstr "ϲ"
-
-#: ../gui/Gtk2Gui.c:1046
-#: ../win32/gui/WndMain.c:604
-msgid "Title"
-msgstr "D"
-
-#: ../gui/Gtk2Gui.c:1052
-#: ../win32/gui/WndMain.c:610
-msgid "Status"
-msgstr "A"
+msgstr "圖符"
#: ../gui/Gtk2Gui.c:1058
msgid "ID"
@@ -330,79 +854,62 @@ msgstr "ID"
#: ../gui/Gtk2Gui.c:1064
msgid "Name"
-msgstr "W"
-
-#: ../gui/Gtk2Gui.c:1126
-#: ../win32/gui/WndMain.c:807
-msgid "Deleted"
-msgstr "wR"
-
-#: ../gui/Gtk2Gui.c:1128
-#: ../gui/Gtk2Gui.c:1132
-#: ../win32/gui/WndMain.c:808
-#: ../win32/gui/WndMain.c:811
-msgid "Free"
-msgstr "Ŷ~"
-
-#: ../gui/Gtk2Gui.c:1130
-#: ../win32/gui/WndMain.c:810
-msgid "Used"
-msgstr "wϥ"
+msgstr "名稱"
#: ../gui/Gtk2Gui.c:1224
msgid "Format this Memory Card?"
-msgstr "榡ƦOХd?"
+msgstr "格式化此記憶卡?"
#: ../gui/Gtk2Gui.c:1226
-msgid "If you format the memory card, the card will be empty, and any existing data overwritten."
-msgstr "pGzܮ榡ưOХdAOХdNQMšAåB{ƾڳNQл\C"
+msgid ""
+"If you format the memory card, the card will be empty, and any existing data "
+"overwritten."
+msgstr "如果您選擇格式化記憶卡,記憶卡將被清空,並且任何現有數據都將被覆蓋。"
#: ../gui/Gtk2Gui.c:1229
msgid "Format card"
-msgstr "榡ưOХd"
+msgstr "格式化記憶卡"
#: ../gui/Gtk2Gui.c:1344
msgid "No space available in the target memory card!"
-msgstr "ؼаOХdSžlm!"
+msgstr "目標記憶卡沒有空餘位置!"
#: ../gui/Gtk2Gui.c:1489
msgid "Memory Card Manager"
-msgstr "OХd޲z"
+msgstr "記憶卡管理器"
#: ../gui/Gtk2Gui.c:1758
msgid "No configuration required"
-msgstr "ݭntm"
+msgstr "不需要配置"
#: ../gui/Gtk2Gui.c:1758
msgid "This plugin doesn't need to be configured."
-msgstr "~ݭnQtmC"
+msgstr "此外掛需要被配置。"
#: ../gui/Gtk2Gui.c:2017
#, c-format
msgid "Could not open BIOS directory: '%s'\n"
-msgstr "Lk} BIOS ؿ: \"%s\"\n"
+msgstr "無法開啟 BIOS 目錄: \"%s\"\n"
-#: ../gui/Gtk2Gui.c:2049
-#: ../gui/Gtk2Gui.c:2143
-#: ../gui/LnxMain.c:145
+#: ../gui/Gtk2Gui.c:2049 ../gui/Gtk2Gui.c:2142 ../gui/LnxMain.c:146
#, c-format
msgid "Could not open directory: '%s'\n"
-msgstr "Lk}ҥؿ: \"%s\"\n"
+msgstr "無法開啟目錄: \"%s\"\n"
-#: ../gui/Gtk2Gui.c:2112
+#: ../gui/Gtk2Gui.c:2111
msgid "Internal HLE Bios"
-msgstr " HLE-Bios"
+msgstr "內部 HLE-Bios"
-#: ../gui/Gtk2Gui.c:2204
+#: ../gui/Gtk2Gui.c:2203
msgid "Notice"
-msgstr "ĵi"
+msgstr "警告"
-#: ../gui/LnxMain.c:64
+#: ../gui/LnxMain.c:65
#, c-format
msgid "Creating memory card: %s\n"
-msgstr "ЫذOХd: %s\n"
+msgstr "創建記憶卡: %s\n"
-#: ../gui/LnxMain.c:261
+#: ../gui/LnxMain.c:262
msgid ""
" pcsx [options] [file]\n"
"\toptions:\n"
@@ -415,106 +922,469 @@ msgid ""
"\t-h -help\tDisplay this message\n"
"\tfile\t\tLoads file\n"
msgstr ""
-" pcsx [ﶵ] [ɮ]\n"
-"\tﶵ:\n"
-"\t-runcd\t\t CD-ROM\n"
-"\t-cdfile ɮ\t CD 蹳\n"
-"\t-nogui\t\t} GTK GUI\n"
-"\t-cfg ɮ\t[@ӯSwtmɮ (q{: ~/.pcsx/pcsx.cfg)\n"
-"\t-psxout\t\tҥ PSX X\n"
-"\t-load s\t[wsO (1-5)\n"
-"\t-h -help\tܦH\n"
-"\tɮ\t\t[ɮ\n"
-
-#: ../gui/LnxMain.c:299
+" pcsx [選項] [檔案]\n"
+"\t選項:\n"
+"\t-runcd\t\t執行 CD-ROM\n"
+"\t-cdfile 檔案\t執行 CD 鏡像檔\n"
+"\t-nogui\t\t不開啟 GTK GUI\n"
+"\t-cfg 檔案\t加載一個特定的配置檔案 (默認為: ~/.pcsx/pcsx.cfg)\n"
+"\t-psxout\t\t啟用 PSX 輸出\n"
+"\t-load 編號\t加載指定編號的記錄 (1-5)\n"
+"\t-h -help\t顯示此信息\n"
+"\t檔案\t\t加載檔案\n"
+
+#: ../gui/LnxMain.c:300
#, c-format
-msgid "PCSX cannot be configured without using the GUI -- you should restart without -nogui.\n"
-msgstr "PCSX brŬɭUtm -- Фϥ -nogui ѼƭsҰʵ{\n"
+msgid ""
+"PCSX cannot be configured without using the GUI -- you should restart "
+"without -nogui.\n"
+msgstr "PCSX 不能在字符界面下配置 -- 請不使用 -nogui 參數重新啟動程式\n"
-#: ../gui/LnxMain.c:359
+#: ../gui/LnxMain.c:355
msgid "Failed loading plugins!"
-msgstr "~["
+msgstr "外掛加載失敗"
-#: ../gui/LnxMain.c:376
+#: ../gui/LnxMain.c:372
#, c-format
msgid "Could not load CD-ROM!\n"
-msgstr "Lk[СC\n"
+msgstr "無法加載光碟。\n"
-#: ../gui/LnxMain.c:415
+#: ../gui/LnxMain.c:411
#, c-format
msgid "PSX emulator couldn't be initialized.\n"
-msgstr "PSX LkơC\n"
+msgstr "PSX 模擬器無法初期化。\n"
-#: ../gui/Plugin.c:204
-#: ../data/pcsx.glade2:1219
+#: ../gui/Plugin.c:204 ../data/pcsx.glade2:1219
#, c-format
msgid "SIO IRQ Always Enabled"
-msgstr "SIO IRQ `Oҥ"
+msgstr "SIO IRQ 總是啟用"
#: ../gui/Plugin.c:205
#, c-format
msgid "SIO IRQ Not Always Enabled"
-msgstr "SIO IRQ `Oҥ"
+msgstr "SIO IRQ 不總是啟用"
#: ../gui/Plugin.c:211
#, c-format
msgid "Black & White Mdecs Only Enabled"
-msgstr "Black & White Mdecs Only ҥ"
+msgstr "Black & White Mdecs Only 啟用"
#: ../gui/Plugin.c:212
#, c-format
msgid "Black & White Mdecs Only Disabled"
-msgstr "Black & White Mdecs Only T"
+msgstr "Black & White Mdecs Only 禁用"
#: ../gui/Plugin.c:218
#, c-format
msgid "XA Enabled"
-msgstr "XA wҥ"
+msgstr "XA 已啟用"
#: ../gui/Plugin.c:219
#, c-format
msgid "XA Disabled"
-msgstr "XA wT"
+msgstr "XA 已禁用"
#: ../gui/Plugin.c:285
msgid "Error opening CD-ROM plugin!"
-msgstr "Lk} CD-ROM ~!"
+msgstr "無法開啟 CD-ROM 外掛!"
#: ../gui/Plugin.c:287
msgid "Error opening SPU plugin!"
-msgstr "Lk} SPU ~!"
+msgstr "無法開啟 SPU 外掛!"
#: ../gui/Plugin.c:290
msgid "Error opening GPU plugin!"
-msgstr "Lk} GPU ~!"
+msgstr "無法開啟 GPU 外掛!"
#: ../gui/Plugin.c:292
msgid "Error opening Controller 1 plugin!"
-msgstr "Lk} \" 1\" ~!"
+msgstr "無法開啟 \"控制器 1\" 外掛!"
#: ../gui/Plugin.c:294
msgid "Error opening Controller 2 plugin!"
-msgstr "Lk} \" 2\" ~!"
+msgstr "無法開啟 \"控制器 2\" 外掛!"
#: ../gui/Plugin.c:374
msgid "Error closing CD-ROM plugin!"
-msgstr "Lk CD-ROM ~!"
+msgstr "無法關閉 CD-ROM 外掛!"
#: ../gui/Plugin.c:376
msgid "Error closing SPU plugin!"
-msgstr "Lk SPU ~!"
+msgstr "無法關閉 SPU 外掛!"
#: ../gui/Plugin.c:378
msgid "Error closing Controller 1 Plugin!"
-msgstr "Lk \" 1\" ~!"
+msgstr "無法關閉 \"控制器 1\" 外掛!"
#: ../gui/Plugin.c:380
msgid "Error closing Controller 2 plugin!"
-msgstr "Lk \" 2\" ~!"
+msgstr "無法關閉 \"控制器 2\" 外掛!"
#: ../gui/Plugin.c:382
msgid "Error closing GPU plugin!"
-msgstr "Lk GPU ~!"
+msgstr "無法關閉 GPU 外掛!"
+
+#: ../libpcsxcore/cdriso.c:125
+#, c-format
+msgid "Could not open %s.\n"
+msgstr "無法開啟 \"%s\"\n"
+
+#: ../libpcsxcore/cheat.c:335 ../libpcsxcore/cheat.c:454
+msgid "(Untitled)"
+msgstr "(未定名)"
+
+#: ../libpcsxcore/misc.c:372
+#, c-format
+msgid "Error opening file: %s"
+msgstr "開啟檔案錯誤: %s!"
+
+#: ../libpcsxcore/misc.c:390
+msgid "CPE files not supported."
+msgstr "CPE 檔案不被支援!"
+
+#: ../libpcsxcore/misc.c:394
+msgid "COFF files not supported."
+msgstr "COFF 檔案不被支援!"
+
+#: ../libpcsxcore/misc.c:398
+msgid "This file does not appear to be a valid PSX file."
+msgstr "此檔案不是一個合法的 PSX 檔案。"
+
+#: ../libpcsxcore/plugins.c:33
+#, c-format
+msgid "Error loading %s: %s"
+msgstr "無法加載 %s: %s"
+
+#: ../libpcsxcore/plugins.c:162
+#, c-format
+msgid "Could not load GPU plugin %s!"
+msgstr "無法加載 GPU 外掛 %s!"
+
+#: ../libpcsxcore/plugins.c:228
+#, c-format
+msgid "Could not load CD-ROM plugin %s!"
+msgstr "無法加載 CD-ROM 外掛 %s!"
+
+#: ../libpcsxcore/plugins.c:467
+#, c-format
+msgid "Could not load SPU plugin %s!"
+msgstr "無法加載 SPU 外掛 %s!"
+
+#: ../libpcsxcore/plugins.c:615
+#, c-format
+msgid "Could not load Controller 1 plugin %s!"
+msgstr "無法加載 \"控制器1\" 外掛 %s!"
+
+#: ../libpcsxcore/plugins.c:669
+#, c-format
+msgid "Could not load Controller 2 plugin %s!"
+msgstr "無法加載 \"控制器2\" 外掛 %s!"
+
+#: ../libpcsxcore/plugins.c:712
+#, c-format
+msgid "Could not load NetPlay plugin %s!"
+msgstr "無法加載聯網遊戲外掛 %s!"
+
+#: ../libpcsxcore/plugins.c:775
+#, c-format
+msgid "Error initializing CD-ROM plugin: %d"
+msgstr "CD-ROM 外掛初始化錯誤: %d"
+
+#: ../libpcsxcore/plugins.c:777
+#, c-format
+msgid "Error initializing GPU plugin: %d"
+msgstr "GPU 外掛初始化錯誤: %d"
+
+#: ../libpcsxcore/plugins.c:779
+#, c-format
+msgid "Error initializing SPU plugin: %d"
+msgstr "SPU 外掛初始化錯誤: %d"
+
+#: ../libpcsxcore/plugins.c:781
+#, c-format
+msgid "Error initializing Controller 1 plugin: %d"
+msgstr "\"控制器1\" 外掛初始化錯誤: %d"
+
+#: ../libpcsxcore/plugins.c:783
+#, c-format
+msgid "Error initializing Controller 2 plugin: %d"
+msgstr "\"控制器2\" 外掛初始化錯誤: %d"
+
+#: ../libpcsxcore/plugins.c:787
+#, c-format
+msgid "Error initializing NetPlay plugin: %d"
+msgstr "聯網遊戲外掛初始化錯誤: %d"
+
+#: ../libpcsxcore/plugins.c:790
+msgid "Plugins loaded.\n"
+msgstr "外掛已加載。\n"
+
+#: ../libpcsxcore/psxmem.c:69
+msgid "Error allocating memory!"
+msgstr "分配內存錯誤!"
+
+#: ../libpcsxcore/psxmem.c:109
+#, c-format
+msgid "Could not open BIOS:\"%s\". Enabling HLE Bios!\n"
+msgstr "無法開啟 BIOS: \"%s\"。使用內部 HLE Bios。\n"
+
+#: ../libpcsxcore/r3000a.c:34
+#, c-format
+msgid "Running PCSX Version %s (%s).\n"
+msgstr "PCSX 版本 %s (%s) 執行中。\n"
+
+#: ../libpcsxcore/sio.c:99
+msgid "Connection closed!\n"
+msgstr "連接被關閉!\n"
+
+#: ../libpcsxcore/sio.c:322
+#, c-format
+msgid "No memory card value was specified - creating a default card %s\n"
+msgstr "未指定記憶卡 - 創建一個新的記憶卡 %s\n"
+
+#: ../libpcsxcore/sio.c:326
+#, c-format
+msgid "The memory card %s doesn't exist - creating it\n"
+msgstr "記憶卡 %s 不存在 - 正在創建\n"
+
+#: ../libpcsxcore/sio.c:342
+#, c-format
+msgid "Memory card %s failed to load!\n"
+msgstr "記憶卡 %s 讀取失敗!\n"
+
+#: ../libpcsxcore/sio.c:346
+#, c-format
+msgid "Loading memory card %s\n"
+msgstr "正在加載記憶卡 %s\n"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:8
+#, fuzzy
+msgid "Configure X11 Video"
+msgstr "配置 PCSX"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:39
+msgid "Initial Window Size:"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:50
+#, fuzzy
+msgid "Stretching:"
+msgstr "在此處查找外掛:"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:63
+msgid "Dithering:"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:76
+msgid ""
+"320x240\n"
+"640x480\n"
+"800x600\n"
+"1024x768\n"
+"1152x864\n"
+"1280x1024\n"
+"1600x1200"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:95
+msgid ""
+"0: None\n"
+"1: 2xSai\n"
+"2: 2xSuperSai\n"
+"3: SuperEagle\n"
+"4: Scale2x\n"
+"5: Scale3x\n"
+"6: HQ2X\n"
+"7: HQ3X"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:117
+msgid ""
+"0: Off (fastest)\n"
+"1: Game dependant\n"
+"2: Always"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:139
+msgid "Maintain 4:3 Aspect Ratio"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:153
+msgid "Toggle windowed/fullscreen mode."
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:154
+msgid "Fullscreen"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:177
+#, fuzzy
+msgid "<b>Screen</b>"
+msgstr "<b>BIOS</b>"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:203
+msgid "Toggle whether the FPS will be shown."
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:204
+msgid "Show FPS"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:218
+msgid "Enable this if games display too quickly."
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:219
+#, fuzzy
+msgid "Autodetect FPS limit"
+msgstr "自動檢測"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:235
+msgid "Skip frames when rendering."
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:236
+msgid "Enable frame skipping"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:257
+msgid "Set FPS"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:272
+msgid "200.0"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:295
+#, fuzzy
+msgid "<b>Framerate</b>"
+msgstr "<b>金手指碼</b>"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:324
+msgid "Use game fixes"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:348
+msgid "better g-colors, worse textures"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:363
+msgid "Needed by Dark Forces"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:378
+msgid "Draw quads with triangles"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:394
+msgid "Repeated flat tex triangles"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:410
+#, fuzzy
+msgid "Disable CPU Saving"
+msgstr "禁用 CD 音頻"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:426
+msgid "Odd/even bit hack"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:440
+msgid "For precise framerate"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:455
+msgid "Better FPS limit in some"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:470
+msgid "PC FPS calculation"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:486
+msgid "Pandemonium 2"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:501
+msgid "Lazy screen update"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:517
+msgid "Skip every second frame"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:532
+msgid "Old frame skipping"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:548
+msgid "Expand screen width"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:564
+msgid "Ignore brightness color"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:580
+#, fuzzy
+msgid "Disable coordinate check"
+msgstr "禁用 XA 解碼"
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:596
+msgid "Chrono Cross"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:609
+msgid "Capcom fighting games"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:624
+msgid "Black screens in Lunar"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:639
+msgid "Compatibility mode"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:664
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:428
+msgid "<b>Compatibility</b>"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:701
+msgid "About X11 Video Plugin"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:714
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:516
+msgid "Coded by: Pete Bernert and the P.E.Op.S. team"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:725
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:541
+msgid "Homepage: http://home.t-online.de/home/PeteBernert/"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:737
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:566
+msgid "EMail: BlackDove@addcom.de"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:750
+msgid "Version: 1.15"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:762
+msgid "Release date: 2003"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:774
+msgid "<b>PCSX-df Video Plugin Adaption</b>"
+msgstr ""
+
+#: ../plugins/dfxvideo/gpucfg-0.1df/dfxvideo.glade2:787
+msgid "XVideo Support: Stephen Chao"
+msgstr ""
#: ../data/pcsx.glade2:9
msgid "PCSX"
@@ -522,89 +1392,83 @@ msgstr "PCSX"
#: ../data/pcsx.glade2:23
msgid "_File"
-msgstr "ɮ(_F)"
+msgstr "檔案(_F)"
#: ../data/pcsx.glade2:30
msgid "Run _CD"
-msgstr "(_C)"
+msgstr "執行光碟(_C)"
#: ../data/pcsx.glade2:46
msgid "Run _ISO"
-msgstr " _ISO"
+msgstr "執行 _ISO"
#: ../data/pcsx.glade2:62
msgid "Run _BIOS"
-msgstr " _BIOS"
+msgstr "執行 _BIOS"
#: ../data/pcsx.glade2:78
msgid "Run _EXE"
-msgstr " _EXE"
+msgstr "執行 _EXE"
#: ../data/pcsx.glade2:99
msgid "E_xit"
-msgstr "}(_X)"
+msgstr "離開(_X)"
#: ../data/pcsx.glade2:119
msgid "_Emulator"
-msgstr "(_E)"
+msgstr "模擬器(_E)"
#: ../data/pcsx.glade2:126
msgid "_Continue"
-msgstr "~(_C)"
+msgstr "繼續(_C)"
#: ../data/pcsx.glade2:141
msgid "_Reset"
-msgstr "Ʀ(_R)"
+msgstr "複位(_R)"
#: ../data/pcsx.glade2:161
msgid "_Switch ISO"
-msgstr " ISO(_S)"
+msgstr "更換 ISO(_S)"
#: ../data/pcsx.glade2:182
msgid "_Save State"
-msgstr "sxO(_S)"
+msgstr "存儲記錄(_S)"
-#: ../data/pcsx.glade2:189
-#: ../data/pcsx.glade2:268
+#: ../data/pcsx.glade2:189 ../data/pcsx.glade2:268
msgid "Slot _1"
-msgstr "O _1"
+msgstr "記錄 _1"
-#: ../data/pcsx.glade2:198
-#: ../data/pcsx.glade2:277
+#: ../data/pcsx.glade2:198 ../data/pcsx.glade2:277
msgid "Slot _2"
-msgstr "O _2"
+msgstr "記錄 _2"
-#: ../data/pcsx.glade2:207
-#: ../data/pcsx.glade2:286
+#: ../data/pcsx.glade2:207 ../data/pcsx.glade2:286
msgid "Slot _3"
-msgstr "O _3"
+msgstr "記錄 _3"
-#: ../data/pcsx.glade2:216
-#: ../data/pcsx.glade2:295
+#: ../data/pcsx.glade2:216 ../data/pcsx.glade2:295
msgid "Slot _4"
-msgstr "O _4"
+msgstr "記錄 _4"
-#: ../data/pcsx.glade2:225
-#: ../data/pcsx.glade2:304
+#: ../data/pcsx.glade2:225 ../data/pcsx.glade2:304
msgid "Slot _5"
-msgstr "O _5"
+msgstr "記錄 _5"
-#: ../data/pcsx.glade2:234
-#: ../data/pcsx.glade2:313
+#: ../data/pcsx.glade2:234 ../data/pcsx.glade2:313
msgid "_Other..."
-msgstr "䥦(_O)..."
+msgstr "其它(_O)..."
#: ../data/pcsx.glade2:261
msgid "_Load State"
-msgstr "ŪO(_L)"
+msgstr "讀取記錄(_L)"
#: ../data/pcsx.glade2:344
msgid "_Configuration"
-msgstr "tm(_C)"
+msgstr "配置(_C)"
#: ../data/pcsx.glade2:351
msgid "_Plugins & BIOS"
-msgstr "~ BIOS(_P)"
+msgstr "外掛及 BIOS(_P)"
#: ../data/pcsx.glade2:372
msgid "_CPU"
@@ -612,55 +1476,55 @@ msgstr "_CPU"
#: ../data/pcsx.glade2:387
msgid "_Memory Cards"
-msgstr "OХd(_M)"
+msgstr "記憶卡(_M)"
#: ../data/pcsx.glade2:403
msgid "_Netplay"
-msgstr "pC(_N)"
+msgstr "聯網遊戲(_N)"
#: ../data/pcsx.glade2:423
msgid "Chea_t"
-msgstr "(_T)"
+msgstr "金手指(_T)"
#: ../data/pcsx.glade2:431
msgid "_Browse"
-msgstr "˵(_B)"
+msgstr "檢視(_B)"
#: ../data/pcsx.glade2:445
msgid "_Search"
-msgstr "jM(_S)"
+msgstr "搜尋(_S)"
#: ../data/pcsx.glade2:474
msgid "_Help"
-msgstr "(_H)"
+msgstr "說明(_H)"
#: ../data/pcsx.glade2:481
msgid "_About PCSX"
-msgstr " PCSX(_A)"
+msgstr "關於 PCSX(_A)"
#: ../data/pcsx.glade2:617
msgid "Select Folder to Search"
-msgstr "ܭnd䪺Ƨ"
+msgstr "選擇要查找的資料夾"
#: ../data/pcsx.glade2:633
msgid "Search in:"
-msgstr "bBd~:"
+msgstr "在此處查找外掛:"
#: ../data/pcsx.glade2:906
msgid "Graphics:"
-msgstr "Ϲ:"
+msgstr "圖像:"
#: ../data/pcsx.glade2:919
msgid "Sound:"
-msgstr "n:"
+msgstr "聲音:"
#: ../data/pcsx.glade2:934
msgid "Controller 1: "
-msgstr " 1:"
+msgstr "控制器 1:"
#: ../data/pcsx.glade2:949
msgid "Controller 2:"
-msgstr " 2:"
+msgstr "控制器 2:"
#: ../data/pcsx.glade2:964
msgid "CD-ROM:"
@@ -668,7 +1532,7 @@ msgstr "CD-ROM:"
#: ../data/pcsx.glade2:1002
msgid "<b>Plugins</b>"
-msgstr "<b>~</b>"
+msgstr "<b>外掛</b>"
#: ../data/pcsx.glade2:1061
msgid "<b>BIOS</b>"
@@ -676,55 +1540,35 @@ msgstr "<b>BIOS</b>"
#: ../data/pcsx.glade2:1106
msgid "Configure CPU"
-msgstr "tm CPU"
+msgstr "配置 CPU"
#: ../data/pcsx.glade2:1133
msgid "Enable Debugger"
-msgstr "ҥνով"
+msgstr "啟用調試器"
#: ../data/pcsx.glade2:1151
msgid "SPU IRQ Always Enabled"
-msgstr "SPU IRQ `Oҥ"
+msgstr "SPU IRQ 總是啟用"
#: ../data/pcsx.glade2:1167
msgid "Black & White Movies"
-msgstr "¥չqv"
-
-#: ../data/pcsx.glade2:1183
-#: ../win32/gui/WndMain.c:1151
-msgid "Enable Console Output"
-msgstr "ҥαxX"
+msgstr "黑白電影"
#: ../data/pcsx.glade2:1201
msgid "Enable Interpreter CPU"
-msgstr "ҥθ CPU"
+msgstr "啟用解釋執行 CPU"
#: ../data/pcsx.glade2:1235
msgid "Disable CD Audio"
-msgstr "T CD W"
+msgstr "禁用 CD 音頻"
#: ../data/pcsx.glade2:1251
msgid "Disable XA Decoding"
-msgstr "T XA ѽX"
-
-#: ../data/pcsx.glade2:1267
-#: ../win32/gui/WndMain.c:1153
-msgid "Parasite Eve 2, Vandal Hearts 1/2 Fix"
-msgstr "Parasite Eve 2, Vandal Hearts 1/2 ץ"
-
-#: ../data/pcsx.glade2:1282
-#: ../win32/gui/WndMain.c:1154
-msgid "InuYasha Sengoku Battle Fix"
-msgstr "InuYasha Sengoku Ԥץ"
+msgstr "禁用 XA 解碼"
#: ../data/pcsx.glade2:1298
msgid "<b>Options</b>"
-msgstr "<b>ﶵ</b>"
-
-#: ../data/pcsx.glade2:1321
-#: ../win32/gui/WndMain.c:1149
-msgid "Autodetect"
-msgstr "۰˴"
+msgstr "<b>選項</b>"
#: ../data/pcsx.glade2:1335
msgid ""
@@ -736,47 +1580,43 @@ msgstr ""
#: ../data/pcsx.glade2:1349
msgid "<b>System Type</b>"
-msgstr "<b>t</b>"
+msgstr "<b>系統類型</b>"
#: ../data/pcsx.glade2:1391
msgid "Configure NetPlay"
-msgstr "tmpC"
+msgstr "配置聯網遊戲"
#: ../data/pcsx.glade2:1473
msgid "<b>NetPlay</b>"
-msgstr "<b>pC</b>"
+msgstr "<b>聯網遊戲</b>"
#: ../data/pcsx.glade2:1517
msgid "Configure Memory Cards"
-msgstr "tmOХd"
+msgstr "配置記憶卡"
-#: ../data/pcsx.glade2:1587
-#: ../data/pcsx.glade2:1951
+#: ../data/pcsx.glade2:1587 ../data/pcsx.glade2:1951
msgid "Format"
-msgstr "榡"
+msgstr "格式化"
-#: ../data/pcsx.glade2:1631
-#: ../data/pcsx.glade2:1995
+#: ../data/pcsx.glade2:1631 ../data/pcsx.glade2:1995
msgid "Reload"
-msgstr "s["
+msgstr "重新加載"
#: ../data/pcsx.glade2:1673
msgid "<b>Memory Card 1</b>"
-msgstr "<b>OХd 1</b>"
+msgstr "<b>記憶卡 1</b>"
-#: ../data/pcsx.glade2:1728
-#: ../data/pcsx.glade2:1772
+#: ../data/pcsx.glade2:1728 ../data/pcsx.glade2:1772
msgid "Copy"
-msgstr "ƨ"
+msgstr "複制"
-#: ../data/pcsx.glade2:1819
-#: ../data/pcsx.glade2:1866
+#: ../data/pcsx.glade2:1819 ../data/pcsx.glade2:1866
msgid "Un/Delete"
-msgstr "R/"
+msgstr "刪除/恢複"
#: ../data/pcsx.glade2:2037
msgid "<b>Memory Card 2</b>"
-msgstr "<b>OХd 2</b>"
+msgstr "<b>記憶卡 2</b>"
#: ../data/pcsx.glade2:2091
msgid ""
@@ -785,14 +1625,14 @@ msgid ""
"(C) 2005-2006 Andrew Burton\n"
"(C) 2008-2009 Wei Mingzhi"
msgstr ""
-"(C) 1999-2003 PCSX }o\n"
+"(C) 1999-2003 PCSX 開發組\n"
"(C) 2005-2006 Ryan Schultz\n"
"(C) 2005-2006 Andrew Burton\n"
"(C) 2008-2009 Wei Mingzhi"
#: ../data/pcsx.glade2:2095
msgid "A PlayStation emulator."
-msgstr "@ PlayStation C"
+msgstr "一個 PlayStation 模擬器。"
#: ../data/pcsx.glade2:2097
msgid "PCSX Reloaded"
@@ -817,740 +1657,290 @@ msgid ""
"the Free Software Foundation, Inc."
msgstr ""
-#: ../data/pcsx.glade2:2127
+#: ../data/pcsx.glade2:2127 ../plugins/dfinput/dfinput.glade2:212
msgid "translator-credits"
msgstr "Wei Mingzhi <whistler@openoffice.org>"
-#: ../data/pcsx.glade2:2146
+#: ../data/pcsx.glade2:2148
msgid "Edit Cheat Codes"
-msgstr "s"
+msgstr "編輯金手指"
-#: ../data/pcsx.glade2:2182
+#: ../data/pcsx.glade2:2185
msgid "<b>Cheat Codes</b>"
-msgstr "<b>X</b>"
+msgstr "<b>金手指碼</b>"
-#: ../data/pcsx.glade2:2200
+#: ../data/pcsx.glade2:2203
msgid "gtk-add"
msgstr ""
-#: ../data/pcsx.glade2:2210
+#: ../data/pcsx.glade2:2213
msgid "gtk-edit"
msgstr ""
-#: ../data/pcsx.glade2:2223
+#: ../data/pcsx.glade2:2226
msgid "gtk-delete"
msgstr ""
-#: ../data/pcsx.glade2:2282
+#: ../data/pcsx.glade2:2285
msgid "Disable"
-msgstr "T"
+msgstr "禁用"
-#: ../data/pcsx.glade2:2300
+#: ../data/pcsx.glade2:2303
msgid "gtk-open"
msgstr ""
-#: ../data/pcsx.glade2:2313
+#: ../data/pcsx.glade2:2316
msgid "gtk-save-as"
msgstr ""
-#: ../data/pcsx.glade2:2342
+#: ../data/pcsx.glade2:2345 ../data/pcsx.glade2:2789
msgid "gtk-close"
msgstr ""
-#: ../win32/gui/AboutDlg.c:26
+#: ../data/pcsx.glade2:2397
msgid ""
-"PCSX - A PlayStation Emulator\n"
-"\n"
-"Original Authors:\n"
-"main coder: linuzappz\n"
-"co-coders: shadow\n"
-"ex-coders: Nocomp, Pete Bernett, nik3d\n"
-"Webmaster: AkumaX"
-msgstr ""
-"PCSX - @ PlayStation \n"
-"\n"
-"@:\n"
-"D{: linuzappz\n"
-"U{: shadow\n"
-"e{: Nocomp, Pete Bernett, nik3d\n"
-"޲z: AkumaX"
-
-#: ../win32/gui/AboutDlg.c:35
-msgid ""
-"PCSX-df Authors:\n"
-"Ryan Schultz, Andrew Burton, Stephen Chao,\n"
-"Marcus Comstedt, Stefan Sikora\n"
-"\n"
-"PCSX Reloaded By:\n"
-"Wei Mingzhi\n"
-"\n"
-"http://www.codeplex.com/pcsxr"
-msgstr ""
-"PCSX-df }o:\n"
-"Ryan Schultz, Andrew Burton, Stephen Chao,\n"
-"Marcus Comstedt, Stefan Sikora\n"
-"\n"
-"PCSX Reloaded }o:\n"
-"Wei Mingzhi\n"
-"\n"
-"http://www.codeplex.com/pcsxr"
-
-#: ../win32/gui/AboutDlg.c:46
-msgid "About"
-msgstr " PCSX"
-
-#: ../win32/gui/AboutDlg.c:48
-#: ../win32/gui/AboutDlg.c:52
-#: ../win32/gui/ConfigurePlugins.c:462
-#: ../win32/gui/ConfigurePlugins.c:593
-#: ../win32/gui/WndMain.c:906
-#: ../win32/gui/WndMain.c:1142
-msgid "OK"
-msgstr "Tw"
-
-#: ../win32/gui/AboutDlg.c:49
-msgid "PCSX EMU\n"
-msgstr "PCSX \n"
-
-#: ../win32/gui/ConfigurePlugins.c:385
-msgid "This plugin reports that should work correctly"
-msgstr "~ii`u@C"
-
-#: ../win32/gui/ConfigurePlugins.c:386
-msgid "This plugin reports that should not work correctly"
-msgstr "~i䤣i`u@C"
-
-#: ../win32/gui/ConfigurePlugins.c:460
-msgid "Configuration"
-msgstr "tm"
-
-#: ../win32/gui/ConfigurePlugins.c:463
-#: ../win32/gui/ConfigurePlugins.c:594
-#: ../win32/gui/WndMain.c:907
-#: ../win32/gui/WndMain.c:1143
-msgid "Cancel"
-msgstr ""
-
-#: ../win32/gui/ConfigurePlugins.c:464
-msgid "Graphics"
-msgstr "Ϲ"
-
-#: ../win32/gui/ConfigurePlugins.c:465
-msgid "First Controller"
-msgstr "D"
-
-#: ../win32/gui/ConfigurePlugins.c:466
-msgid "Second Controller"
-msgstr ""
-
-#: ../win32/gui/ConfigurePlugins.c:467
-msgid "Sound"
-msgstr "n"
-
-#: ../win32/gui/ConfigurePlugins.c:468
-msgid "Cdrom"
-msgstr "CD-ROM"
-
-#: ../win32/gui/ConfigurePlugins.c:469
-msgid "Bios"
-msgstr "BIOS"
-
-#: ../win32/gui/ConfigurePlugins.c:470
-msgid "Set Bios Directory"
-msgstr "]m BIOS ؿ"
-
-#: ../win32/gui/ConfigurePlugins.c:471
-msgid "Set Plugins Directory"
-msgstr "]m~ؿ"
-
-#: ../win32/gui/ConfigurePlugins.c:472
-#: ../win32/gui/ConfigurePlugins.c:475
-#: ../win32/gui/ConfigurePlugins.c:478
-#: ../win32/gui/ConfigurePlugins.c:481
-#: ../win32/gui/ConfigurePlugins.c:484
-#: ../win32/gui/ConfigurePlugins.c:596
-msgid "Configure..."
-msgstr "tm..."
-
-#: ../win32/gui/ConfigurePlugins.c:473
-#: ../win32/gui/ConfigurePlugins.c:476
-#: ../win32/gui/ConfigurePlugins.c:479
-#: ../win32/gui/ConfigurePlugins.c:482
-#: ../win32/gui/ConfigurePlugins.c:485
-#: ../win32/gui/ConfigurePlugins.c:597
-msgid "Test..."
-msgstr "..."
-
-#: ../win32/gui/ConfigurePlugins.c:474
-#: ../win32/gui/ConfigurePlugins.c:477
-#: ../win32/gui/ConfigurePlugins.c:480
-#: ../win32/gui/ConfigurePlugins.c:483
-#: ../win32/gui/ConfigurePlugins.c:486
-#: ../win32/gui/ConfigurePlugins.c:598
-msgid "About..."
-msgstr "..."
-
-#: ../win32/gui/ConfigurePlugins.c:591
-msgid "NetPlay Configuration"
-msgstr "pCtm"
-
-#: ../win32/gui/ConfigurePlugins.c:595
-msgid "NetPlay"
-msgstr "pC"
-
-#: ../win32/gui/ConfigurePlugins.c:599
-msgid "Note: The NetPlay Plugin Directory should be the same as the other Plugins."
-msgstr "`N: pC~M䥦~bP@ƧC"
-
-#: ../win32/gui/plugin.c:90
-#: ../win32/gui/WndMain.c:235
-#, c-format
-msgid "*PCSX*: Saved State %d"
+"Unsigned 8-bit\n"
+"Unsigned 16-bit\n"
+"Unsigned 32-bit\n"
+"Signed 8-bit\n"
+"Signed 16-bit\n"
+"Signed 32-bit"
msgstr ""
-#: ../win32/gui/plugin.c:91
-#: ../win32/gui/WndMain.c:236
-#, c-format
-msgid "*PCSX*: Error Saving State %d"
-msgstr ""
+#: ../data/pcsx.glade2:2415
+#, fuzzy
+msgid "Search For:"
+msgstr "在此處查找外掛:"
-#: ../win32/gui/plugin.c:107
-#: ../win32/gui/WndMain.c:214
-#, c-format
-msgid "*PCSX*: Loaded State %d"
+#: ../data/pcsx.glade2:2425
+msgid "Data Type:"
msgstr ""
-#: ../win32/gui/plugin.c:108
-#: ../win32/gui/WndMain.c:215
-#, c-format
-msgid "*PCSX*: Error Loading State %d"
+#: ../data/pcsx.glade2:2437
+msgid "Value:"
msgstr ""
-#: ../win32/gui/plugin.c:119
-#, c-format
-msgid "*PCSX*: Sio Irq Always Enabled"
+#: ../data/pcsx.glade2:2449
+msgid "Data Base:"
msgstr ""
-#: ../win32/gui/plugin.c:120
-#, c-format
-msgid "*PCSX*: Sio Irq Not Always Enabled"
+#: ../data/pcsx.glade2:2463
+msgid ""
+"Equal Value\n"
+"Not Equal Value\n"
+"Range"
msgstr ""
-#: ../win32/gui/plugin.c:127
-#, c-format
-msgid "*PCSX*: Black&White Mdecs Only Enabled"
+#: ../data/pcsx.glade2:2489
+msgid ""
+"Decimal\n"
+"Hexadecimal"
msgstr ""
-#: ../win32/gui/plugin.c:128
-#, c-format
-msgid "*PCSX*: Black&White Mdecs Only Disabled"
+#: ../data/pcsx.glade2:2504
+msgid "Big-Endian"
msgstr ""
-#: ../win32/gui/plugin.c:135
-#, c-format
-msgid "*PCSX*: Xa Enabled"
+#: ../data/pcsx.glade2:2517
+msgid "To:"
msgstr ""
-#: ../win32/gui/plugin.c:136
-#, c-format
-msgid "*PCSX*: Xa Disabled"
+#: ../data/pcsx.glade2:2589 ../data/pcsx.glade2:2618 ../data/pcsx.glade2:2650
+msgid "label"
msgstr ""
-#: ../win32/gui/plugin.c:145
-msgid "*PCSX*: CdRom Case Opened"
+#: ../data/pcsx.glade2:2679
+msgid "label_resultsfound"
msgstr ""
-#: ../win32/gui/plugin.c:150
-msgid "*PCSX*: CdRom Case Closed"
-msgstr ""
+#: ../data/pcsx.glade2:2712
+#, fuzzy
+msgid "Search"
+msgstr "搜尋(_S)"
-#: ../win32/gui/plugin.c:177
-msgid "Connecting..."
-msgstr "bs..."
+#: ../data/pcsx.glade2:2741
+#, fuzzy
+msgid "Restart"
+msgstr "複位(_R)"
-#: ../win32/gui/plugin.c:179
-#: ../win32/gui/plugin.c:186
-#, c-format
-msgid "Please wait while connecting... %c\n"
-msgstr "еyԡAbs... %c\n"
+#: ../data/pcsx.glade2:2768
+#, fuzzy
+msgid "<b>Cheat Search</b>"
+msgstr "<b>金手指碼</b>"
-#: ../win32/gui/plugin.c:216
-msgid "Error Opening CDR Plugin"
-msgstr "Lk} CDR ~"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:9
+#, fuzzy
+msgid "Configure Sound"
+msgstr "配置 PCSX"
-#: ../win32/gui/plugin.c:279
-#, c-format
-msgid "Error Opening GPU Plugin (%d)"
-msgstr "Lk} GPU ~ (%d)"
-
-#: ../win32/gui/plugin.c:281
-#, c-format
-msgid "Error Opening SPU Plugin (%d)"
-msgstr "Lk} SPU ~ (%d)"
-
-#: ../win32/gui/plugin.c:284
-#, c-format
-msgid "Error Opening PAD1 Plugin (%d)"
-msgstr "Lk} PAD1 ~ (%d)"
-
-#: ../win32/gui/plugin.c:286
-#, c-format
-msgid "Error Opening PAD2 Plugin (%d)"
-msgstr "Lk} PAD2 ~ (%d)"
-
-#: ../win32/gui/plugin.c:309
-msgid "Error Closing CDR Plugin"
-msgstr "Lk CD-ROM ~ (%d)"
-
-#: ../win32/gui/plugin.c:311
-msgid "Error Closing GPU Plugin"
-msgstr "Lk GPU ~"
-
-#: ../win32/gui/plugin.c:313
-msgid "Error Closing SPU Plugin"
-msgstr "Lk SPU ~"
-
-#: ../win32/gui/plugin.c:315
-msgid "Error Closing PAD1 Plugin"
-msgstr "Lk PAD1 ~"
-
-#: ../win32/gui/plugin.c:317
-msgid "Error Closing PAD2 Plugin"
-msgstr "Lk PAD2 ~!"
-
-#: ../win32/gui/plugin.c:335
-#, c-format
-msgid "CDRinit error: %d"
-msgstr "CDRinit ~: %d"
-
-#: ../win32/gui/plugin.c:337
-#, c-format
-msgid "GPUinit error: %d"
-msgstr "GPUinit ~: %d"
-
-#: ../win32/gui/plugin.c:339
-#, c-format
-msgid "SPUinit error: %d"
-msgstr "SPUinit ~: %d"
-
-#: ../win32/gui/plugin.c:341
-#, c-format
-msgid "PAD1init error: %d"
-msgstr "PAD1init ~: %d"
-
-#: ../win32/gui/plugin.c:343
-#, c-format
-msgid "PAD2init error: %d"
-msgstr "PAD2init ~: %d"
-
-#: ../win32/gui/plugin.c:346
-#, c-format
-msgid "NETinit error: %d"
-msgstr "NETinit ~: %d"
-
-#: ../win32/gui/WndMain.c:74
-msgid "Arabic"
-msgstr "ԧBy"
-
-#: ../win32/gui/WndMain.c:75
-msgid "Catalan"
-msgstr "[Ȼy"
-
-#: ../win32/gui/WndMain.c:76
-msgid "German"
-msgstr "wy"
-
-#: ../win32/gui/WndMain.c:77
-msgid "Greek"
-msgstr "þy"
-
-#: ../win32/gui/WndMain.c:78
-#: ../win32/gui/WndMain.c:1471
-#: ../win32/gui/WndMain.c:1473
-msgid "English"
-msgstr "^y"
-
-#: ../win32/gui/WndMain.c:79
-msgid "Spanish"
-msgstr "Zy"
-
-#: ../win32/gui/WndMain.c:80
-msgid "French"
-msgstr "ky"
-
-#: ../win32/gui/WndMain.c:81
-msgid "Italian"
-msgstr "NjQy"
-
-#: ../win32/gui/WndMain.c:82
-msgid "Portuguese"
-msgstr "y"
-
-#: ../win32/gui/WndMain.c:83
-msgid "Romanian"
-msgstr "ùȻy"
-
-#: ../win32/gui/WndMain.c:84
-msgid "Russian"
-msgstr "Xy"
-
-#: ../win32/gui/WndMain.c:85
-msgid "Simplified Chinese"
-msgstr "²餤"
-
-#: ../win32/gui/WndMain.c:86
-msgid "Traditional Chinese"
-msgstr "c餤"
-
-#: ../win32/gui/WndMain.c:87
-msgid "Japanese"
-msgstr "y"
-
-#: ../win32/gui/WndMain.c:88
-msgid "Korean"
-msgstr "y"
-
-#: ../win32/gui/WndMain.c:129
-msgid "Pcsx needs to be configured"
-msgstr "Pcsx ݭnQtmC"
-
-#: ../win32/gui/WndMain.c:133
-msgid "Pcsx now will quit, restart it"
-msgstr "PCSX NAЭsҰʥC"
-
-#: ../win32/gui/WndMain.c:253
-#: ../win32/gui/WndMain.c:305
-msgid "PCSX State Format"
-msgstr "PCSX O榡"
-
-#: ../win32/gui/WndMain.c:280
-#, c-format
-msgid "*PCSX*: Loaded State %s"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:62
+msgid "Volume:"
msgstr ""
-#: ../win32/gui/WndMain.c:281
-#, c-format
-msgid "*PCSX*: Error Loading State %s"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:90
+msgid "Interpolation:"
msgstr ""
-#: ../win32/gui/WndMain.c:332
-#, c-format
-msgid "*PCSX*: Saved State %s"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:118
+msgid "Reverb:"
msgstr ""
-#: ../win32/gui/WndMain.c:333
-#, c-format
-msgid "*PCSX*: Error Saving State %s"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:146
+msgid ""
+"Low\n"
+"Medium\n"
+"Loud\n"
+"Loudest"
msgstr ""
-#: ../win32/gui/WndMain.c:398
-msgid "Running BIOS is not supported with Internal HLE Bios."
-msgstr " HLE BIOS 䴩C"
-
-#: ../win32/gui/WndMain.c:616
-msgid "Game ID"
-msgstr "C ID"
-
-#: ../win32/gui/WndMain.c:622
-msgid "Game"
-msgstr "C"
-
-#: ../win32/gui/WndMain.c:796
-msgid "mid link block"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:165
+msgid ""
+"Off\n"
+"Simple\n"
+"Playstation"
msgstr ""
-#: ../win32/gui/WndMain.c:799
-msgid "terminiting link block"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:184
+msgid ""
+"None\n"
+"Simple\n"
+"Gaussian\n"
+"Cubic"
msgstr ""
-#: ../win32/gui/WndMain.c:904
-msgid "Memcard Manager"
-msgstr "OХd޲z"
-
-#: ../win32/gui/WndMain.c:908
-#: ../win32/gui/WndMain.c:911
-msgid "Select Mcd"
-msgstr ""
-
-#: ../win32/gui/WndMain.c:909
-#: ../win32/gui/WndMain.c:912
-msgid "Format Mcd"
-msgstr "榡"
-
-#: ../win32/gui/WndMain.c:910
-#: ../win32/gui/WndMain.c:913
-msgid "Reload Mcd"
-msgstr "s["
-
-#: ../win32/gui/WndMain.c:914
-msgid "-> Copy ->"
-msgstr "-> ƨ ->"
-
-#: ../win32/gui/WndMain.c:915
-msgid "<- Copy <-"
-msgstr "<- ƨ <-"
-
-#: ../win32/gui/WndMain.c:916
-msgid "Paste"
-msgstr "߶K"
-
-#: ../win32/gui/WndMain.c:917
-msgid "<- Un/Delete"
-msgstr "<- R/"
-
-#: ../win32/gui/WndMain.c:918
-msgid "Un/Delete ->"
-msgstr "R/ ->"
-
-#: ../win32/gui/WndMain.c:920
-msgid "Memory Card 1"
-msgstr "OХd 1"
-
-#: ../win32/gui/WndMain.c:921
-msgid "Memory Card 2"
-msgstr "OХd 2"
-
-#: ../win32/gui/WndMain.c:976
-msgid "Are you sure you want to paste this selection?"
-msgstr "O_T{߶K襤e?"
-
-#: ../win32/gui/WndMain.c:976
-#: ../win32/gui/WndMain.c:1087
-#: ../win32/gui/WndMain.c:1094
-msgid "Confirmation"
-msgstr "T{"
-
-#: ../win32/gui/WndMain.c:1087
-#: ../win32/gui/WndMain.c:1094
-msgid "Are you sure you want to format this Memory Card?"
-msgstr "O_T{榡ƦOХd?"
-
-#: ../win32/gui/WndMain.c:1140
-msgid "Cpu Config"
-msgstr "CPU tm"
-
-#: ../win32/gui/WndMain.c:1145
-msgid "Disable Xa Decoding"
-msgstr "T XA ѽX"
-
-#: ../win32/gui/WndMain.c:1146
-msgid "Sio Irq Always Enabled"
-msgstr "SIO IRQ `Oҥ"
-
-#: ../win32/gui/WndMain.c:1147
-msgid "Black && White Movies"
-msgstr "¥չqv"
-
-#: ../win32/gui/WndMain.c:1148
-msgid "Disable Cd audio"
-msgstr "T CD W"
-
-#: ../win32/gui/WndMain.c:1150
-msgid "Enable Interpreter Cpu"
-msgstr "ҥθ CPU"
-
-#: ../win32/gui/WndMain.c:1152
-msgid "Spu Irq Always Enabled"
-msgstr "SPU IRQ `Oҥ"
-
-#: ../win32/gui/WndMain.c:1156
-msgid "Options"
-msgstr "ﶵ"
-
-#: ../win32/gui/WndMain.c:1157
-msgid "Psx System Type"
-msgstr "Psx t"
-
-#: ../win32/gui/WndMain.c:1229
-msgid "Psx Mcd Format (*.mcr;*.mc;*.mem;*.vgs;*.mcd;*.gme;*.ddf)"
-msgstr "Psx OХd榡 (*.mcr;*.mc;*.mem;*.vgs;*.mcd;*.gme;*.ddf)"
-
-#: ../win32/gui/WndMain.c:1234
-msgid "Psx Memory Card (*.mcr;*.mc)"
-msgstr "Psx OХd (*.mcr;*.mc)"
-
-#: ../win32/gui/WndMain.c:1239
-msgid "CVGS Memory Card (*.mem;*.vgs)"
-msgstr "VGS OХd (*.mem;*.vgs)"
-
-#: ../win32/gui/WndMain.c:1244
-msgid "Bleem Memory Card (*.mcd)"
-msgstr "Bleem OХd (*.mcd)"
-
-#: ../win32/gui/WndMain.c:1249
-msgid "DexDrive Memory Card (*.gme)"
-msgstr "DexDrive OХd (*.gme)"
-
-#: ../win32/gui/WndMain.c:1254
-msgid "DataDeck Memory Card (*.ddf)"
-msgstr "DataDeck OХd (*.ddl)"
-
-#: ../win32/gui/WndMain.c:1298
-msgid "Psx Exe Format"
-msgstr "PSX EXE 榡"
-
-#: ../win32/gui/WndMain.c:1335
-msgid "Psx Isos (*.iso;*.mdf;*.img;*.bin)"
-msgstr "Psx 蹳 (*.iso;*.mdf;*.img;*.bin)"
-
-#: ../win32/gui/WndMain.c:1409
-msgid "&File"
-msgstr "ɮ(&F)"
-
-#: ../win32/gui/WndMain.c:1410
-msgid "E&xit"
-msgstr "}(&X)"
-
-#: ../win32/gui/WndMain.c:1412
-msgid "&States"
-msgstr "O(&S)"
-
-#: ../win32/gui/WndMain.c:1414
-msgid "Run &EXE"
-msgstr " EXE(&E)"
-
-#: ../win32/gui/WndMain.c:1415
-msgid "Run &BIOS"
-msgstr " BIOS(&B)"
-
-#: ../win32/gui/WndMain.c:1416
-msgid "Run &ISO"
-msgstr " ISO(&I)"
-
-#: ../win32/gui/WndMain.c:1417
-msgid "Run &CD"
-msgstr "(&C)"
-
-#: ../win32/gui/WndMain.c:1418
-msgid "&Save"
-msgstr "sx(&S)"
-
-#: ../win32/gui/WndMain.c:1419
-msgid "&Load"
-msgstr "Ū(&L)"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:208
+#, fuzzy
+msgid "<b>General</b>"
+msgstr "<b>聯網遊戲</b>"
-#: ../win32/gui/WndMain.c:1420
-#: ../win32/gui/WndMain.c:1426
-msgid "&Other..."
-msgstr "䥦(&O)..."
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:264
+msgid "Enable or disable XA music."
+msgstr ""
-#: ../win32/gui/WndMain.c:1421
-#: ../win32/gui/WndMain.c:1427
-msgid "Slot &5"
-msgstr "O 5(&5)"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:266
+#, fuzzy
+msgid "Enable XA"
+msgstr "啟用"
-#: ../win32/gui/WndMain.c:1422
-#: ../win32/gui/WndMain.c:1428
-msgid "Slot &4"
-msgstr "O 4(&4)"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:284
+msgid "Choose this if XA music is played too quickly."
+msgstr ""
-#: ../win32/gui/WndMain.c:1423
-#: ../win32/gui/WndMain.c:1429
-msgid "Slot &3"
-msgstr "O 3(&3)"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:286
+msgid "Adjust XA speed"
+msgstr ""
-#: ../win32/gui/WndMain.c:1424
-#: ../win32/gui/WndMain.c:1430
-msgid "Slot &2"
-msgstr "O 2(&2)"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:308
+#, fuzzy
+msgid "<b>XA Music</b>"
+msgstr "<b>外掛</b>"
-#: ../win32/gui/WndMain.c:1425
-#: ../win32/gui/WndMain.c:1431
-msgid "Slot &1"
-msgstr "O 1(&1)"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:364
+msgid "Use the asynchronous SPU interface."
+msgstr ""
-#: ../win32/gui/WndMain.c:1433
-msgid "&Emulator"
-msgstr "(&E)"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:366
+msgid "High compatibility mode"
+msgstr ""
-#: ../win32/gui/WndMain.c:1434
-msgid "S&witch ISO"
-msgstr " ISO(_W)"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:384
+msgid "Wait for CPU; only useful for some games."
+msgstr ""
-#: ../win32/gui/WndMain.c:1436
-msgid "Re&set"
-msgstr "Ʀ(&S)"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:386
+msgid "SPU IRQ Wait"
+msgstr ""
-#: ../win32/gui/WndMain.c:1437
-msgid "&Run"
-msgstr "(&R)"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:404
+msgid "Play only one channel for a performance boost."
+msgstr ""
-#: ../win32/gui/WndMain.c:1439
-msgid "&Configuration"
-msgstr "tm(&C)"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:406
+msgid "Single channel sound"
+msgstr ""
-#: ../win32/gui/WndMain.c:1440
-msgid "&Memory cards"
-msgstr "OХd(&M)"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:486
+msgid "About Sound Plugin"
+msgstr ""
-#: ../win32/gui/WndMain.c:1441
-msgid "C&PU"
-msgstr "CPU(&P)"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:592
+msgid "Version: 1.6"
+msgstr ""
-#: ../win32/gui/WndMain.c:1443
-msgid "&NetPlay"
-msgstr "pC(&N)"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:617
+msgid "Release date: 05.04.2003"
+msgstr ""
-#: ../win32/gui/WndMain.c:1445
-msgid "&Controllers"
-msgstr "(&C)"
+#: ../plugins/dfsound/spucfg-0.1df/dfsound.glade2:642
+msgid "<b>PCSX-df Sound Plugin Adaption</b>"
+msgstr ""
-#: ../win32/gui/WndMain.c:1446
-msgid "CD-&ROM"
-msgstr "CD-ROM(&R)"
+#: ../plugins/dfinput/dfinput.glade2:7
+#, fuzzy
+msgid "Configure Gamepad/Keyboard"
+msgstr "配置記憶卡"
-#: ../win32/gui/WndMain.c:1447
-msgid "&Sound"
-msgstr "n(&S)"
+#: ../plugins/dfinput/dfinput.glade2:25
+msgid "Pad number:"
+msgstr ""
-#: ../win32/gui/WndMain.c:1448
-msgid "&Graphics"
-msgstr "Ϲ(&G)"
+#: ../plugins/dfinput/dfinput.glade2:36
+msgid "1"
+msgstr ""
-#: ../win32/gui/WndMain.c:1450
-msgid "&Plugins && Bios"
-msgstr "~ BIOS(&P)"
+#: ../plugins/dfinput/dfinput.glade2:51
+msgid "2"
+msgstr ""
-#: ../win32/gui/WndMain.c:1452
-msgid "&Language"
-msgstr "y(&L)"
+#: ../plugins/dfinput/dfinput.glade2:73
+msgid "Device file:"
+msgstr ""
-#: ../win32/gui/WndMain.c:1476
-msgid "&Help"
-msgstr "(&H)"
+#: ../plugins/dfinput/dfinput.glade2:104
+msgid "Multi-threaded"
+msgstr ""
-#: ../win32/gui/WndMain.c:1477
-msgid "&About..."
-msgstr "(&A)..."
+#: ../plugins/dfinput/dfinput.glade2:118
+msgid "Analog"
+msgstr ""
-#: ../win32/gui/WndMain.c:1654
-msgid "Pcsx Msg"
-msgstr "Pcsx "
+#: ../plugins/dfinput/dfinput.glade2:155
+#, fuzzy
+msgid "<b>Button Configuration</b>"
+msgstr "配置"
-#: ../win32/gui/WndMain.c:1657
-msgid "Error Loading Symbol"
-msgstr "Lk[Ÿ"
+#: ../plugins/dfinput/dfinput.glade2:209
+msgid "Based on PadJoy by Erich Kitzmüller (ammoq@ammoq.com)"
+msgstr ""
#~ msgid "_Load"
-#~ msgstr "Ū(_L)"
+#~ msgstr "讀取(_L)"
+
#~ msgid "_Save"
-#~ msgstr "sx(_S)"
+#~ msgstr "存儲(_S)"
+
#~ msgid "_Run"
-#~ msgstr "(_R)"
+#~ msgstr "執行(_R)"
+
#~ msgid ""
#~ "PCSX is licensed under the GNU GPL; see the included COPYING file for "
#~ "more detail."
-#~ msgstr "PCSX b GNU GPL ڤUoFаѬݥ]t COPYING ɮסC"
+#~ msgstr "PCSX 在 GNU GPL 條款下發布;請參看包含的 COPYING 檔案。"
+
#~ msgid "This plugin reports that it should work correctly."
-#~ msgstr "ii`u@C"
+#~ msgstr "此插件報告其可正常工作。"
+
#~ msgid "This plugin reports that it won't work correctly."
-#~ msgstr "i䤣i`u@C"
+#~ msgstr "此插件報告其不可正常工作。"
+
#~ msgid "Could not load Cdrom"
-#~ msgstr "Lk["
+#~ msgstr "無法加載光碟"
+
#~ msgid "Could not open plugins directory: '%s'\n"
-#~ msgstr "Lk}Ҵؿ: \"%s\"\n"
+#~ msgstr "無法開啟插件目錄: \"%s\"\n"
+
#~ msgid "Run CD Though &Bios"
-#~ msgstr "ϥ BIOS B(&B)"
-#~ msgid "Run CD Through BIOS"
-#~ msgstr "ϥ BIOS B"
+#~ msgstr "使用 BIOS 運行光碟(&B)"
+#~ msgid "Run CD Through BIOS"
+#~ msgstr "使用 BIOS 運行光碟"