From 6e20af5dac66b2cdcfc9e852bcf2c74ac6222ba8 Mon Sep 17 00:00:00 2001 From: YunSong Hwang Date: Mon, 14 Nov 2005 11:27:36 +0000 Subject: [PATCH] Add Korean translations. --- dlls/avifil32/avifile_Ko.rc | 51 +++ dlls/avifil32/rsrc.rc | 1 + dlls/mpr/mpr.rc | 1 + dlls/mpr/mpr_Ko.rc | 47 +++ dlls/mshtml/Ko.rc | 244 ++++++++++++ dlls/mshtml/rsrc.rc | 1 + dlls/msi/msi.rc | 1 + dlls/msi/msi_Ko.rc | 33 ++ dlls/oledlg/oledlg_Ko.rc | 55 +++ dlls/oledlg/rsrc.rc | 1 + dlls/serialui/Ko.rc | 41 ++ dlls/serialui/serialui_rc.rc | 1 + dlls/shdocvw/Ko.rc | 36 ++ dlls/shdocvw/shdocvw.rc | 1 + dlls/winspool/Ko.rc | 39 ++ dlls/winspool/winspool.rc | 1 + dlls/wldap32/wldap32.rc | 1 + dlls/wldap32/wldap32_Ko.rc | 123 ++++++ programs/notepad/Ko.rc | 128 ++++++ programs/notepad/rsrc.rc | 1 + programs/regedit/Ko.rc | 34 +- programs/start/Ko.rc | 64 +++ programs/start/rsrc.rc | 1 + programs/taskmgr/Ko.rc | 500 ++++++++++++++++++++++++ programs/taskmgr/taskmgr.rc | 1 + programs/uninstaller/Ko.rc | 45 +++ programs/uninstaller/rsrc.rc | 1 + programs/view/Ko.rc | 77 ++++ programs/view/viewrc.rc | 1 + programs/wcmd/Ko.rc | 227 +++++++++++ programs/wcmd/wcmdrc.rc | 1 + programs/winecfg/Ko.rc | 202 ++++++++++ programs/winecfg/winecfg.rc | 1 + programs/wineconsole/wineconsole_Ko.rc | 121 ++++++ programs/wineconsole/wineconsole_res.rc | 1 + programs/winefile/Ko.rc | 265 +++++++++++++ programs/winefile/rsrc.rc | 1 + programs/winemine/Ko.rc | 104 +++++ programs/winemine/rsrc.rc | 1 + 39 files changed, 2447 insertions(+), 8 deletions(-) create mode 100644 dlls/avifil32/avifile_Ko.rc create mode 100644 dlls/mpr/mpr_Ko.rc create mode 100644 dlls/mshtml/Ko.rc create mode 100644 dlls/msi/msi_Ko.rc create mode 100644 dlls/oledlg/oledlg_Ko.rc create mode 100644 dlls/serialui/Ko.rc create mode 100644 dlls/shdocvw/Ko.rc create mode 100644 dlls/winspool/Ko.rc create mode 100644 dlls/wldap32/wldap32_Ko.rc create mode 100644 programs/notepad/Ko.rc create mode 100644 programs/start/Ko.rc create mode 100644 programs/taskmgr/Ko.rc create mode 100644 programs/uninstaller/Ko.rc create mode 100644 programs/view/Ko.rc create mode 100644 programs/wcmd/Ko.rc create mode 100644 programs/winecfg/Ko.rc create mode 100644 programs/wineconsole/wineconsole_Ko.rc create mode 100644 programs/winefile/Ko.rc create mode 100644 programs/winemine/Ko.rc diff --git a/dlls/avifil32/avifile_Ko.rc b/dlls/avifil32/avifile_Ko.rc new file mode 100644 index 00000000000..71b3e9cefe3 --- /dev/null +++ b/dlls/avifil32/avifile_Ko.rc @@ -0,0 +1,51 @@ +/* + * Copyright 2002 Michael Günnewig + * Copyright 2005 YunSong Hwang + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT + +IDD_SAVEOPTIONS DIALOG FIXED IMPURE 43, 37, 196, 82 +STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU +CAPTION "¾ÐÃà ¿É¼Ç" +FONT 8, "MS Shell Dlg" +BEGIN + LTEXT "½ºÆ®¸² ¼±ÅÃ(&C):",-1,2,5,114,10 + COMBOBOX IDC_STREAM,2,18,134,61,CBS_DROPDOWNLIST | WS_VSCROLL | + WS_TABSTOP + PUSHBUTTON "¿É¼Ç(&O)...",IDC_OPTIONS,145,17,45,14 + AUTOCHECKBOX "&Interleave every",IDC_INTERLEAVE,3,42,60,11,WS_TABSTOP + EDITTEXT IDC_INTERLEAVEEVERY,66,41,32,12,ES_AUTOHSCROLL + LTEXT "ÇÁ·¹ÀÓ",-1,104,43,36,9 + LTEXT "ÇöÀç Æ÷¸Ë:",-1,3,56,53,9 + LTEXT "This space for rent",IDC_FORMATTEXT,55,56,90,26 + DEFPUSHBUTTON "È®ÀÎ",IDOK,145,42,45,14 + PUSHBUTTON "Ãë¼Ò",IDCANCEL,145,61,45,14 +END + +STRINGTABLE DISCARDABLE +{ + IDS_WAVESTREAMFORMAT "Waveform: %s" + IDS_WAVEFILETYPE "Waveform" + IDS_ALLMULTIMEDIA "¸ðµç ¸ÖƼ¹Ìµð¾î ÆÄÀÏ" + IDS_ALLFILES "¸ðµç ÆÄÀÏ (*.*)@*.*" + IDS_VIDEO "ºñµð¿À" + IDS_AUDIO "¿Àµð¿À" + IDS_AVISTREAMFORMAT "%s %s #%d" + IDS_AVIFILETYPE "Wine AVI-default-filehandler" + IDS_UNCOMPRESSED "uncompressed" +} diff --git a/dlls/avifil32/rsrc.rc b/dlls/avifil32/rsrc.rc index 5f74b33c387..0821ae52800 100644 --- a/dlls/avifil32/rsrc.rc +++ b/dlls/avifil32/rsrc.rc @@ -45,6 +45,7 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL #include "avifile_Fr.rc" #include "avifile_It.rc" #include "avifile_Ja.rc" +#include "avifile_Ko.rc" #include "avifile_Nl.rc" #include "avifile_No.rc" #include "avifile_Pl.rc" diff --git a/dlls/mpr/mpr.rc b/dlls/mpr/mpr.rc index b5b7f6d5449..c0c77f17b1c 100644 --- a/dlls/mpr/mpr.rc +++ b/dlls/mpr/mpr.rc @@ -32,6 +32,7 @@ #include "mpr_Fr.rc" #include "mpr_It.rc" #include "mpr_Ja.rc" +#include "mpr_Ko.rc" #include "mpr_Nl.rc" #include "mpr_No.rc" #include "mpr_Pt.rc" diff --git a/dlls/mpr/mpr_Ko.rc b/dlls/mpr/mpr_Ko.rc new file mode 100644 index 00000000000..d4481220da3 --- /dev/null +++ b/dlls/mpr/mpr_Ko.rc @@ -0,0 +1,47 @@ +/* + * MPR dll resources + * + * Copyright (C) 2004 Juan Lang + * Copyright 2005 YunSong Hwang + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT + +STRINGTABLE DISCARDABLE +{ + IDS_ENTIRENETWORK "Àüü ³×Æ®¿öÅ©" +} + +IDD_PROXYDLG DIALOG LOADONCALL MOVEABLE DISCARDABLE 36, 24, 250, 154 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "³×Æ®¿öÅ© ¾ÏÈ£ ÀÔ·Â" +FONT 8, "MS Shell Dlg" +{ + LTEXT "´ç½ÅÀÇ »ç¿ëÀÚÀ̸§°ú ¾ÏÈ£¸¦ ÀÔ·ÂÇϽÿÀ:", IDC_EXPLAIN, 40, 6, 150, 15 + LTEXT "ÇÁ·Ï½Ã", -1, 40, 26, 50, 10 +/* LTEXT "Realm", -1, 40, 46, 50, 10 */ + LTEXT "»ç¿ëÀÚ", -1, 40, 66, 50, 10 + LTEXT "¾ÏÈ£", -1, 40, 86, 50, 10 + LTEXT "" IDC_PROXY, 80, 26, 150, 14, 0 + LTEXT "" IDC_REALM, 80, 46, 150, 14, 0 + EDITTEXT IDC_USERNAME, 80, 66, 150, 14, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP + EDITTEXT IDC_PASSWORD, 80, 86, 150, 14, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP | ES_PASSWORD + CHECKBOX "¾ÏÈ£ ÀúÀå(&S) (Insecure)", IDC_SAVEPASSWORD, + 80, 106, 150, 12, BS_AUTOCHECKBOX | WS_GROUP | WS_TABSTOP + PUSHBUTTON "È®ÀÎ", IDOK, 98, 126, 56, 14, WS_GROUP | WS_TABSTOP | BS_DEFPUSHBUTTON + PUSHBUTTON "Ãë¼Ò", IDCANCEL, 158, 126, 56, 14, WS_GROUP | WS_TABSTOP +} diff --git a/dlls/mshtml/Ko.rc b/dlls/mshtml/Ko.rc new file mode 100644 index 00000000000..340a9b18425 --- /dev/null +++ b/dlls/mshtml/Ko.rc @@ -0,0 +1,244 @@ +/* + * Copyright 2005 YunSong Hwang + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + + +LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT + +STRINGTABLE DISCARDABLE +{ + IDS_HTMLDISABLED "HTML ·»´õ¸µÀº ÇöÀç °¡´ÉÇÏÁö ¾ÊÀ½." + IDS_HTMLDOCUMENT "HTML ¹®¼­" +} + +/* FIXME: This should be in shdoclc.dll */ + +IDR_BROWSE_CONTEXT_MENU MENU +{ + POPUP "±âº»" + { + MENUITEM "µÚ·Î(&B)", IDM_BACK + MENUITEM "¾ÕÀ¸·Î(&o)", IDM_FORWARD + MENUITEM SEPARATOR + MENUITEM "¹è°æÀ¸·Î ÀúÀå(&S)...", IDM_SAVEBACKGROUNDAS + MENUITEM "¹è°æÀ¸·Î ¼³Á¤(&g)", IDM_SETASBACKGROUND + MENUITEM "&Copy Background", IDM_COPYBACKGROUND + MENUITEM "Set as &Desktop Item", IDM_SETASDESKTOPITEM + MENUITEM SEPARATOR + MENUITEM "¸ðµÎ ¼±ÅÃ(&A)", IDM_SELECTALL + MENUITEM "&Paste", IDM_PASTE + MENUITEM SEPARATOR + MENUITEM "Create Shor&tcut", IDM_CREATESHORTCUT + MENUITEM "Add to &Favourites", IDM_ADDTOFAVOURITES + MENUITEM "&View Source", IDM_VIEWSOURCE + MENUITEM SEPARATOR + MENUITEM "&Encoding", IDM_ENCODING + MENUITEM SEPARATOR + MENUITEM "Pr&int", IDM_PRINT + MENUITEM "&Refresh", IDM_REFRESH + MENUITEM SEPARATOR + MENUITEM SEPARATOR + MENUITEM "&Properties", IDM_PROPERTIES + } + + POPUP "À̹ÌÁö" + { + MENUITEM "&Open Link", IDM_OPENLINK + MENUITEM "Open Link in &New Window", IDM_OPENINNEWWINDOW + MENUITEM "Save Target &As...", IDM_SAVETARGETAS + MENUITEM "&Print Target", IDM_PRINTTARGET + MENUITEM SEPARATOR + MENUITEM "S&how Picture", IDM_SHOWPICTURE + MENUITEM "&Save Picture As...", IDM_SAVEPICTUREAS + MENUITEM "&E-mail Picture...", IDM_EMAILPICTURE + MENUITEM "Pr&int Picture...", IDM_PRINTPICTURE + MENUITEM "&Go to My Pictures", IDM_GOTOMYPICTURES + MENUITEM "Set as Back&ground", IDM_SETASBACKGROUND + MENUITEM "Set as &Desktop Item...", IDM_SETASDESKTOPITEM + MENUITEM SEPARATOR + MENUITEM "Cu&t", IDM_CUT + MENUITEM "&Copy", IDM_COPY + MENUITEM "Copy Shor&tcut", IDM_COPYSHORTCUT + MENUITEM "&Paste", IDM_PASTE + MENUITEM SEPARATOR + MENUITEM "Add to &Favorites...", IDM_ADDTOFAVOURITES + MENUITEM SEPARATOR + MENUITEM SEPARATOR + MENUITEM "P&roperties", IDM_PROPERTIES + } + + POPUP "Control" + { + MENUITEM "µÇµ¹¸®±â(&U)", IDM_UNDO + MENUITEM SEPARATOR + MENUITEM "Cu&t", IDM_CUT + MENUITEM "º¹»ç(&C)", IDM_COPY + MENUITEM "ºÙ¿©³Ö±â(&P)", IDM_PASTE + MENUITEM "Áö¿ì±â(&D)", IDM_DELETE + MENUITEM SEPARATOR + MENUITEM SEPARATOR + MENUITEM "¸ðµÎ ¼±ÅÃ(&A)", IDM_SELECTALL + } + + POPUP "Table" + { + POPUP "&Select" + { + MENUITEM "&Cell", IDM_CELL + MENUITEM "&Row", IDM_ROW + MENUITEM "&Column", IDM_COLUMN + MENUITEM "&Table", IDM_TABLE + } + MENUITEM SEPARATOR + MENUITEM SEPARATOR + MENUITEM "&Cell Properties", IDM_CELLPROPERTIES + MENUITEM "&Table Properties", IDM_TABLEPROPERTIES + } + + POPUP "1DSite Select" + { + MENUITEM "Cu&t", IDM_CUT + MENUITEM "&Copy", IDM_COPY + MENUITEM "Paste", IDM_PASTE + MENUITEM "Select &All", IDM_SELECTALL + MENUITEM "&Print", IDM_PRINT + MENUITEM SEPARATOR + } + + POPUP "Anchor" + { + MENUITEM "&Open", IDM_OPENLINK + MENUITEM "Open in &New Window", IDM_OPENINNEWWINDOW + MENUITEM "Save Target &As...", IDM_SAVETARGETAS + MENUITEM "&Print Target", IDM_PRINTTARGET + MENUITEM SEPARATOR + MENUITEM "Cut", IDM_CUT + MENUITEM "&Copy", IDM_COPY + MENUITEM "Copy Shor&tcut", IDM_COPYSHORTCUT + MENUITEM "&Paste", IDM_PASTE + MENUITEM SEPARATOR + MENUITEM "Add to &Favorites...", IDM_ADDTOFAVOURITES + MENUITEM SEPARATOR + MENUITEM SEPARATOR + MENUITEM "P&roperties", IDM_PROPERTIES + } + + POPUP "Context Unknown" + { + MENUITEM SEPARATOR + } + + POPUP "DYNSRC Image" + { + MENUITEM "&Open Link", IDM_OPENLINK + MENUITEM "Open Link in &New Window", IDM_OPENINNEWWINDOW + MENUITEM "Save Target &As...", IDM_SAVETARGETAS + MENUITEM "&Print Target", IDM_PRINTTARGET + MENUITEM SEPARATOR + MENUITEM "S&how Picture", IDM_SHOWPICTURE + MENUITEM "&Save Video As...", IDM_SAVEPICTUREAS + MENUITEM "Set as Back&ground", IDM_SETASBACKGROUND + MENUITEM "Set as &Desktop Item...", IDM_SETASDESKTOPITEM + MENUITEM SEPARATOR + MENUITEM "Cu&t", IDM_CUT + MENUITEM "&Copy", IDM_COPY + MENUITEM "Copy Shor&tcut", IDM_COPYSHORTCUT + MENUITEM "&Paste", IDM_PASTE + MENUITEM SEPARATOR + MENUITEM "Add to &Favorites...", IDM_ADDTOFAVOURITES + MENUITEM SEPARATOR + MENUITEM SEPARATOR + MENUITEM "Play", IDM_PLAY + MENUITEM "Stop", IDM_STOP + MENUITEM "P&roperties", IDM_PROPERTIES + } + + POPUP "ART Image" + { + MENUITEM "&Open Link", IDM_OPENLINK + MENUITEM "Open Link in &New Window", IDM_OPENINNEWWINDOW + MENUITEM "Save Target &As...", IDM_SAVETARGETAS + MENUITEM "&Print Target", IDM_PRINTTARGET + MENUITEM SEPARATOR + MENUITEM "S&how Picture", IDM_SHOWPICTURE + MENUITEM "&Save Picture As...", IDM_SAVEPICTUREAS + MENUITEM "Set as Back&ground", IDM_SETASBACKGROUND + MENUITEM "Set as &Desktop Item...", IDM_SETASDESKTOPITEM + MENUITEM SEPARATOR + MENUITEM "Cu&t", IDM_CUT + MENUITEM "&Copy", IDM_COPY + MENUITEM "Copy Shor&tcut", IDM_COPYSHORTCUT + MENUITEM "&Paste", IDM_PASTE + MENUITEM SEPARATOR + MENUITEM "Add to &Favorites...", IDM_ADDTOFAVOURITES + MENUITEM SEPARATOR + MENUITEM "Play", IDM_PLAY + MENUITEM "Stop", IDM_STOP + MENUITEM "Rewind", IDM_REWIND + MENUITEM SEPARATOR + MENUITEM SEPARATOR + MENUITEM "P&roperties", IDM_PROPERTIES + } + + POPUP "Debug" + { + MENUITEM "Trace Tags", IDM_TRACETAGS + MENUITEM "Resource Failures", IDM_RESOURCEFAILURES + MENUITEM "Dump Tracking Info", IDM_DUMPTRACKINGINFO + MENUITEM "Debug Break", IDM_DEBUGBREAK + MENUITEM "Debug View", IDM_DEBUGVIEW + MENUITEM "Dump Tree", IDM_DUMPTREE + MENUITEM "Dump Lines", IDM_DUMPLINES + MENUITEM "Dump DisplayTree", IDM_DUMPDISPLAYTREE + MENUITEM "Dump FormatCaches", IDM_DUMPFORMATCACHES + MENUITEM "Dump LayoutRects", IDM_DUMPLAYOUTRECTS + MENUITEM "Memory Monitor", IDM_MEMORYMONITOR + MENUITEM "Performance Meters", IDM_PERFORMANCEMETERS + MENUITEM "Save HTML", IDM_SAVEHTML + MENUITEM SEPARATOR + MENUITEM "&Browse View", IDM_BROWSEVIEW + MENUITEM "&Edit View", IDM_EDITVIEW + } + + POPUP "Vertical Scrollbar" + { + MENUITEM "Scroll Here", IDM_SCROLLHERE + MENUITEM SEPARATOR + MENUITEM "Top", IDM_TOP + MENUITEM "Bottom", IDM_BOTTOM + MENUITEM SEPARATOR + MENUITEM "Page Up", IDM_PAGEUP + MENUITEM "Page Down", IDM_PAGEDOWN + MENUITEM SEPARATOR + MENUITEM "Scroll Up", IDM_SCROLLUP + MENUITEM "Scroll Down", IDM_SCROLLDOWN + } + + POPUP "Horizontal Scrollbar" + { + MENUITEM "Scroll Here", IDM_SCROLLHERE + MENUITEM SEPARATOR + MENUITEM "Left Edge", IDM_LEFTEDGE + MENUITEM "Right Edge", IDM_RIGHTEDGE + MENUITEM SEPARATOR + MENUITEM "Page Left", IDM_PAGELEFT + MENUITEM "Page Right", IDM_PAGERIGHT + MENUITEM SEPARATOR + MENUITEM "Scroll Left", IDM_SCROLLLEFT + MENUITEM "Scroll Right", IDM_SCROLLRIGHT + } +} diff --git a/dlls/mshtml/rsrc.rc b/dlls/mshtml/rsrc.rc index 5819fb531c2..3e9adb38276 100644 --- a/dlls/mshtml/rsrc.rc +++ b/dlls/mshtml/rsrc.rc @@ -26,6 +26,7 @@ #include "En.rc" #include "Fi.rc" #include "Fr.rc" +#include "Ko.rc" #include "No.rc" REGINST REGINST mshtml.inf diff --git a/dlls/msi/msi.rc b/dlls/msi/msi.rc index 33ca2c7e77b..718a99a41de 100644 --- a/dlls/msi/msi.rc +++ b/dlls/msi/msi.rc @@ -33,6 +33,7 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL #include "msi_Es.rc" #include "msi_Fi.rc" #include "msi_Fr.rc" +#include "msi_Ko.rc" #include "msi_Nl.rc" #include "msi_No.rc" #include "msi_Pt.rc" diff --git a/dlls/msi/msi_Ko.rc b/dlls/msi/msi_Ko.rc new file mode 100644 index 00000000000..0eabd0453b2 --- /dev/null +++ b/dlls/msi/msi_Ko.rc @@ -0,0 +1,33 @@ +/* + * Korean resources for MSI + * + * Copyright 2005 YunSong Hwang + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT + +STRINGTABLE DISCARDABLE +{ + 5 "path %s not found" + 9 "µð½ºÅ© %s »ðÀÔ" + 10 "Àý¸øµÈ ¸Å°³º¯¼ö" + 11 "enter which folder contains %s" + 12 "install source for feature missing" + 13 "network drive for feature missing" + 14 "feature from:" + 15 "choose which folder contains %s" +} diff --git a/dlls/oledlg/oledlg_Ko.rc b/dlls/oledlg/oledlg_Ko.rc new file mode 100644 index 00000000000..b4cc8729387 --- /dev/null +++ b/dlls/oledlg/oledlg_Ko.rc @@ -0,0 +1,55 @@ +/* + * Copyright 2005 YunSong Hwang + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT + +UIINSERTOBJECT DIALOG DISCARDABLE 0, 0, 294, 151 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "°´Ã¼ »ðÀÔ" +FONT 8, "MS Shell Dlg" +BEGIN + LISTBOX IDC_OBJTYPELIST,82,19,131,66,LBS_SORT | + LBS_NOINTEGRALHEIGHT | WS_VISIBLE | WS_VSCROLL | + WS_TABSTOP + LTEXT "Object Type:",IDC_OBJTYPELBL,82,7,53,8,WS_VISIBLE + DEFPUSHBUTTON "È®ÀÎ",IDOK,221,7,66,14 + PUSHBUTTON "Ãë¼Ò",IDCANCEL,221,24,66,14 + GROUPBOX "°á°ú",IDC_RESULT,7,103,208,41 + CONTROL "»õ·Î ¸¸µé±â",IDC_CREATENEW,"Button",BS_AUTORADIOBUTTON | + WS_GROUP,7,20,62,10 + CONTROL "Create Control",IDC_CREATECONTROL,"Button", + BS_AUTORADIOBUTTON | NOT WS_VISIBLE,7,54,62,10 + CONTROL "Create From File",IDC_CREATEFROMFILE,"Button", + BS_AUTORADIOBUTTON,7,37,67,10 + LTEXT "",IDC_RESULTDESC,49,112,159,23 + PUSHBUTTON "&Add Control...",IDC_ADDCONTROL,81,88,63,14,NOT WS_VISIBLE + CONTROL "Display As Icon",IDC_ASICON,"Button",BS_AUTOCHECKBOX | + WS_TABSTOP | NOT WS_VISIBLE,223,58,64,10 + PUSHBUTTON "Browse...",IDC_BROWSE,83,53,50,14,NOT WS_VISIBLE + LTEXT "File:",IDC_FILELBL,83,27,20,8, NOT WS_VISIBLE + EDITTEXT IDC_FILE,83,37,132,13,ES_AUTOHSCROLL | NOT WS_VISIBLE +END + +STRINGTABLE DISCARDABLE +{ + IDS_RESULTOBJDESC "Insert a new %s object into your document" + IDS_RESULTFILEOBJDESC "Insert the contents of the file as an object into your document so that you may activate it using the program which created it." + IDS_BROWSE "Browse" + IDS_NOTOLEMOD "File does not appear to be a valid OLE module. Unable to register OLE control." + IDS_NOTOLEMODCAPTION "Add Control" +} diff --git a/dlls/oledlg/rsrc.rc b/dlls/oledlg/rsrc.rc index 98eaee78a8a..c10a1786f22 100644 --- a/dlls/oledlg/rsrc.rc +++ b/dlls/oledlg/rsrc.rc @@ -38,6 +38,7 @@ #include "oledlg_Fr.rc" #include "oledlg_It.rc" #include "oledlg_Ja.rc" +#include "oledlg_Ko.rc" #include "oledlg_Nl.rc" #include "oledlg_No.rc" #include "oledlg_Pt.rc" diff --git a/dlls/serialui/Ko.rc b/dlls/serialui/Ko.rc new file mode 100644 index 00000000000..bf013380780 --- /dev/null +++ b/dlls/serialui/Ko.rc @@ -0,0 +1,41 @@ +/* + * Copyright 2005 YunSong Hwang + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT + +IDD_SERIALUICONFIG DIALOG DISCARDABLE 0, 0, 160, 159 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_VISIBLE +CAPTION "Properties for " +FONT 8, "MS Shell Dlg" +BEGIN + LTEXT "Baud Rate", 0,5,20,55,10 + COMBOBOX IDC_BAUD, 60, 20, 90, 36, CBS_DROPDOWNLIST|CBS_AUTOHSCROLL|WS_BORDER | WS_VSCROLL | WS_TABSTOP + LTEXT "Parity", 0,5,40,55,10 + COMBOBOX IDC_PARITY, 60, 40, 90, 36, CBS_DROPDOWNLIST|CBS_AUTOHSCROLL|WS_BORDER | WS_VSCROLL | WS_TABSTOP + LTEXT "Flow Control", 0,5,60,55,10 + COMBOBOX IDC_FLOW, 60, 60, 90, 36, CBS_DROPDOWNLIST|CBS_AUTOHSCROLL|WS_BORDER | WS_VSCROLL | WS_TABSTOP + LTEXT "Data Bits", 0,5,80,55,10 + COMBOBOX IDC_DATA, 60, 80, 90, 36, CBS_DROPDOWNLIST|CBS_AUTOHSCROLL|WS_BORDER | WS_VSCROLL | WS_TABSTOP + LTEXT "Stop Bits", 0,5,100,55,10 + COMBOBOX IDC_STOP, 60, 100, 90, 36, CBS_DROPDOWNLIST|CBS_AUTOHSCROLL|WS_BORDER | WS_VSCROLL | WS_TABSTOP + DEFPUSHBUTTON "È®ÀÎ", IDOK,30,138,50,14 + PUSHBUTTON "Ãë¼Ò", IDCANCEL,85,138,50,14 + /* these two buttons are for testing Get/SetDefaultCommConfig */ + /* PUSHBUTTON "GetDefault", ID_GETDEFAULT,30,115,50,14 */ + /* PUSHBUTTON "SetDefault", ID_SETDEFAULT,85,115,50,14 */ +END diff --git a/dlls/serialui/serialui_rc.rc b/dlls/serialui/serialui_rc.rc index f07ecb52d58..f4ae7e1969a 100644 --- a/dlls/serialui/serialui_rc.rc +++ b/dlls/serialui/serialui_rc.rc @@ -30,6 +30,7 @@ #include "Fr.rc" #include "It.rc" #include "Ja.rc" +#include "Ko.rc" #include "Nl.rc" #include "No.rc" #include "Pt.rc" diff --git a/dlls/shdocvw/Ko.rc b/dlls/shdocvw/Ko.rc new file mode 100644 index 00000000000..4929bc10037 --- /dev/null +++ b/dlls/shdocvw/Ko.rc @@ -0,0 +1,36 @@ +/* + * Copyright 2005 YunSong Hwang + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT + +100 DIALOG LOADONCALL MOVEABLE DISCARDABLE 0, 0, 220, 62 +STYLE DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU +CAPTION "¸ðÁú¶ó ¾×Ƽºê ¿¢½º ÄÁÆ®·Ñ ´Ù¿î·ÎµåÁß" +FONT 8, "MS Shell Dlg" +{ + CONTROL "Progress1",1000,"msctls_progress32",WS_BORDER|PBS_SMOOTH,10,10,200,12 + LTEXT "", 104, 10, 30, 200, 10, SS_CENTER + PUSHBUTTON "Ãë¼Ò", IDCANCEL, 85, 44, 50, 15, WS_GROUP | WS_TABSTOP +} + +STRINGTABLE +BEGIN + 1001 "This application is requesting an ActiveX browser object\n" \ + "but the Mozilla Active X control is currently not installed." \ + "Do you wish to download and install it?" +END diff --git a/dlls/shdocvw/shdocvw.rc b/dlls/shdocvw/shdocvw.rc index 7f8dd075e92..8d80a87379f 100644 --- a/dlls/shdocvw/shdocvw.rc +++ b/dlls/shdocvw/shdocvw.rc @@ -29,6 +29,7 @@ #include "Es.rc" #include "Fi.rc" #include "Fr.rc" +#include "Ko.rc" #include "Nl.rc" #include "No.rc" #include "Pt.rc" diff --git a/dlls/winspool/Ko.rc b/dlls/winspool/Ko.rc new file mode 100644 index 00000000000..0d696b4fcf9 --- /dev/null +++ b/dlls/winspool/Ko.rc @@ -0,0 +1,39 @@ +/* + * Korean resources for winspool + * + * Copyright 2005 YunSong Hwang + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT + +FILENAME_DIALOG DIALOG LOADONCALL MOVEABLE DISCARDABLE 6, 18, 245, 47 +STYLE DS_CONTEXTHELP | DS_MODALFRAME | DS_SETFONT | DS_SETFOREGROUND | WS_POPUPWINDOW | WS_VISIBLE | WS_CAPTION +CAPTION "ÆÄÀÏ·Î Àμâ" +FONT 8, "MS Shell Dlg" +BEGIN + LTEXT "Ãâ·Â ÆÄÀÏ À̸§(&O):", -1, 7, 13, 194, 13, WS_VISIBLE + EDITTEXT EDITBOX, 6, 28, 174, 12, WS_VISIBLE | ES_AUTOHSCROLL + DEFPUSHBUTTON "È®ÀÎ", IDOK, 199, 10, 40, 14, WS_VISIBLE + PUSHBUTTON "Ãë¼Ò", IDCANCEL, 199, 27, 40, 14, WS_VISIBLE +END + +STRINGTABLE DISCARDABLE +{ + IDS_CAPTION "Áö¿ª Æ÷Æ®" + IDS_FILE_EXISTS "Ãâ·Â ÆÄÀÏÀº Á¸ÀçÇÕ´Ï´Ù. 'È®ÀÎ'À» ´©¸£¸é µ¤¾î¾²¿©Áú°Ì´Ï´Ù." + IDS_CANNOT_OPEN "Ãâ·Â ÆÄÀÏÀ» ¸¸µé¼ö ¾ø½À´Ï´Ù." +} diff --git a/dlls/winspool/winspool.rc b/dlls/winspool/winspool.rc index b0beff2fbd9..2fa2a2786e5 100644 --- a/dlls/winspool/winspool.rc +++ b/dlls/winspool/winspool.rc @@ -27,4 +27,5 @@ #include "De.rc" #include "En.rc" #include "Fi.rc" +#include "Ko.rc" #include "Ru.rc" diff --git a/dlls/wldap32/wldap32.rc b/dlls/wldap32/wldap32.rc index b5497fd3e88..d3d5e60e839 100644 --- a/dlls/wldap32/wldap32.rc +++ b/dlls/wldap32/wldap32.rc @@ -25,6 +25,7 @@ #include "wldap32_De.rc" #include "wldap32_En.rc" #include "wldap32_Fr.rc" +#include "wldap32_Ko.rc" #include "wldap32_Nl.rc" #include "wldap32_No.rc" #include "wldap32_Ru.rc" diff --git a/dlls/wldap32/wldap32_Ko.rc b/dlls/wldap32/wldap32_Ko.rc new file mode 100644 index 00000000000..988f7698a2b --- /dev/null +++ b/dlls/wldap32/wldap32_Ko.rc @@ -0,0 +1,123 @@ +/* + * Korean resources for WLDAP32 + * + * Copyright 2005 YunSong Hwang + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT + +STRINGTABLE DISCARDABLE +{ + 0 "¼º°ø" + 1 "Operations Error" + 2 "ÇÁ·ÎÅäÄÝ ¿¡·¯" + 3 "Time Limit Exceeded" + 4 "Size Limit Exceeded" + 5 "Compare False" + 6 "Compare True" + 7 "Authentication Method Not Supported" + 8 "Strong Authentication Required" + 9 "Referral (v2)" + 10 "Referral" + 11 "Administration Limit Exceeded" + 12 "Unavailable Critical Extension" + 13 "Confidentiality Required" + 14 "" + 15 "" + 16 "No Such Attribute" + 17 "Undefined Type" + 18 "Inappropriate Matching" + 19 "Constraint Violation" + 20 "Attribute Or Value Exists" + 21 "Invalid Syntax" + 22 "" + 23 "" + 24 "" + 25 "" + 26 "" + 27 "" + 28 "" + 29 "" + 30 "" + 31 "" + 32 "No Such Object" + 33 "Alias Problem" + 34 "Invalid DN Syntax" + 35 "Is Leaf" + 36 "Alias Dereference Problem" + 37 "" + 38 "" + 39 "" + 40 "" + 41 "" + 42 "" + 43 "" + 44 "" + 45 "" + 46 "" + 47 "" + 48 "Inappropriate Authentication" + 49 "Invalid Credentials" + 50 "Insufficient Rights" + 51 "Busy" + 52 "Unavailable" + 53 "Unwilling To Perform" + 54 "Loop Detected" + 55 "" + 56 "" + 57 "" + 58 "" + 59 "" + 60 "Sort Control Missing" + 61 "Index range error" + 62 "" + 63 "" + 64 "Naming Violation" + 65 "Object Class Violation" + 66 "Not allowed on Non-leaf" + 67 "Not allowed on RDN" + 68 "Already Exists" + 69 "No Object Class Mods" + 70 "Results Too Large" + 71 "Affects Multiple DSAs" + 72 "" + 73 "" + 74 "" + 75 "" + 76 "" + 77 "" + 78 "" + 79 "" + 80 "´Ù¸¥ ¹®Á¦" + 81 "¼­¹Ù ´Ù¿î" + 82 "·ÎÄà ¿¡·¯" + 83 "ÀÎÄÚµù ¿¡·¯" + 84 "µðÄÚµù ¿¡·¯" + 85 "½Ã°£ ÃÊ°ú" + 86 "Auth Unknown" + 87 "ÇÊÅÍ ¿¡·¯" + 88 "»ç¿ëÀÚ°¡ Ãë¼ÒÇÔ" + 89 "Parameter Error" + 90 "¸Þ¸ð¸® ¾øÀ½" + 91 "Can't connect to the LDAP server" + 92 "Operation not supported by this version of the LDAP protocol" + 93 "Specified control was not found in message" + 94 "No result present in message" + 95 "More results returned" + 96 "Loop while handling referrals" + 97 "Referral hop limit exceeded" +} diff --git a/programs/notepad/Ko.rc b/programs/notepad/Ko.rc new file mode 100644 index 00000000000..131a0d98939 --- /dev/null +++ b/programs/notepad/Ko.rc @@ -0,0 +1,128 @@ +/* + * Notepad (Korean resources) + * + * Copyright 1997,98 Marcel Baur + * Proofread 1998 by David Lee Lambert + * Copyright 2002 Sylvain Petreolle + * Copyright 2005 YunSong Hwang + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT + +MAIN_MENU MENU +{ + POPUP "ÆÄÀÏ(&F)" { + MENUITEM "»õ ÆÄÀÏ(&N)...\tCtrl+N", CMD_NEW + MENUITEM "¿­±â(&O)\tCtrl+O", CMD_OPEN + MENUITEM " ÀúÀå(&S)\tCtrl+S", CMD_SAVE + MENUITEM "´Ù¸¥ À̸§À¸·Î ÀúÀå(&A)...", CMD_SAVE_AS + MENUITEM SEPARATOR + MENUITEM "ÇÁ¸°Æ®(&P)\tCtrl+P", CMD_PRINT + MENUITEM "ÆäÀÌÁö ¼³Á¤(&T)...", CMD_PAGE_SETUP + MENUITEM "ÇÁ¸°Æ® ¼³Á¤(&R)...", CMD_PRINTER_SETUP + MENUITEM SEPARATOR + MENUITEM "³ª°¡±â(&X)", CMD_EXIT + } +POPUP "ÆíÁý(&E)" { + MENUITEM "µÇµ¹¸®±â(&U)\tCtrl+Z", CMD_UNDO + MENUITEM SEPARATOR + MENUITEM "À߶󳻱â(&T)\tCtrl+X", CMD_CUT + MENUITEM "º¹»ç(&C)\tCtrl+C", CMD_COPY + MENUITEM "Áö¿ì±â(&D)\tDel", CMD_DELETE + MENUITEM SEPARATOR + MENUITEM "¸ðµÎ ¼±ÅÃ(&A)\tCtrl+A", CMD_SELECT_ALL + MENUITEM "½Ã°£/³¯Â¥(&T)\tF5", CMD_TIME_DATE + MENUITEM SEPARATOR + MENUITEM "±ä ÁÙ ³Ñ±â±â(&W)", CMD_WRAP + MENUITEM "±Û²Ã(&F)...", CMD_FONT + } +POPUP "ã±â(&S)" { + MENUITEM "ã±â(&S)\tCtrl+F", CMD_SEARCH + MENUITEM "´Ù½Ã ã±â(&S)\tF3", CMD_SEARCH_NEXT + } +POPUP "µµ¿ò¸»(&H)" { + MENUITEM "¸ñ·Ï(&C)", CMD_HELP_CONTENTS + MENUITEM "ã±â(&S)...", CMD_HELP_SEARCH + MENUITEM "µµ¿ò¸»ÀÇ µµ¿ò¸»(&H)", CMD_HELP_ON_HELP + MENUITEM SEPARATOR + POPUP "Á¤º¸(&O)..." { + MENUITEM "ÀúÀÛ±Ç(&L)", CMD_LICENSE + MENUITEM "º¸Áõ ¾øÀ½(&N)", CMD_NO_WARRANTY + MENUITEM "Wine Á¤º¸(&A)", CMD_ABOUT_WINE + } + } +} + +/* Dialog `Page setup' */ + +DIALOG_PAGESETUP DIALOG 0, 0, 225, 95 +STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU +FONT 8, "MS Shell Dlg" +CAPTION "ÆäÀÌÁö ¼³Á¤" +{ +LTEXT "¸Ó¸´¸»(&H):", 0x140, 10, 07, 40, 15 +EDITTEXT 0x141, 60, 05,110, 12, WS_BORDER | WS_TABSTOP +LTEXT "²¿¸´¸»(&F):", 0x142, 10, 24, 40, 15 +EDITTEXT 0x143, 60, 22,110, 12, WS_BORDER | WS_TABSTOP + +GROUPBOX "¿©¹é(&M):", 0x144, 10, 43,160, 45 +LTEXT "¿ÞÂÊ(&L):", 0x145, 20, 55, 30, 10, WS_CHILD +EDITTEXT /*STRING_PAGESETUP_LEFTVALUE,*/ 0x147, 50, 55, 35, 11, WS_CHILD | WS_BORDER | WS_TABSTOP +LTEXT "À§(&T):", 0x148, 20, 73, 30, 10, WS_CHILD +EDITTEXT /*STRING_PAGESETUP_TOPVALUE,*/ 0x14A, 50, 73, 35, 11, WS_CHILD | WS_BORDER | WS_TABSTOP +LTEXT "¿À¸¥ÂÊ(&R):", 0x14B, 100, 55, 30, 10, WS_CHILD +EDITTEXT /*STRING_PAGESETUP_RIGHTVALUE,*/ 0x14D, 130, 55, 35, 11, WS_CHILD | WS_BORDER | WS_TABSTOP +LTEXT "¾Æ·¡ÂÊ(&B):", 0x14E,100, 73, 30, 10, WS_CHILD +EDITTEXT /*STRING_PAGESETUP_BOTTOMVALUE,*/ 0x150, 130, 73, 35, 11, WS_CHILD | WS_BORDER | WS_TABSTOP + +DEFPUSHBUTTON "È®ÀÎ", IDOK, 180, 3, 40, 15, WS_TABSTOP +PUSHBUTTON "Ãë¼Ò", IDCANCEL, 180, 21, 40, 15, WS_TABSTOP +PUSHBUTTON "µµ¿ò¸»(&H)", IDHELP, 180, 39, 40, 15, WS_TABSTOP +} + +STRINGTABLE DISCARDABLE +{ +STRING_PAGESETUP_HEADERVALUE, "&n" /* FIXME */ +STRING_PAGESETUP_FOOTERVALUE, "Page &s" /* FIXME */ +STRING_PAGESETUP_LEFTVALUE, "20 mm" /* FIXME */ +STRING_PAGESETUP_RIGHTVALUE, "20 mm" /* FIXME */ +STRING_PAGESETUP_TOPVALUE, "25 mm" /* FIXME */ +STRING_PAGESETUP_BOTTOMVALUE, "25 mm" /* FIXME */ + +STRING_NOTEPAD, "¸Þ¸ðÀå" +STRING_ERROR, "¿¡·¯" +STRING_WARNING, "°æ°í" +STRING_INFO, "Á¤º¸" + +STRING_UNTITLED, "(Á¦¸ñ¾øÀ½)" + +STRING_ALL_FILES, "¸ðµç ÆÄÀÏ (*.*)" +STRING_TEXT_FILES_TXT, "ÅؽºÆ® ÆÄÀÏ (*.txt)" + +STRING_TOOLARGE, "ÆÄÀÏ '%s' ´Â ¸Þ¸ðÀåÀ¸·Î ¿­±â¿¡´Â ³Ê¹« Å®´Ï´Ù.\n \ +´Ù¸¥ ÆíÁý±â¸¦ »ç¿ëÇϽʽÿÀ." +STRING_NOTEXT, "´ç½ÅÀº ¾î¶² ±ÛÀÚµµ ÀÔ·ÂÇÏÁö ¾Ê¾Ò½À´Ï´Ù. \ +\n¾Æ¹«°Å³ª ÀÔ·ÂÇÏ°í ´Ù½Ã ½ÃµµÇϽʽÿÀ" +STRING_DOESNOTEXIST, "ÆÄÀÏ '%s'\n´Â Á¸ÀçÇÏÁö ¾Ê½À´Ï´Ù.\n\n \ +´ç½ÅÀº »õ ÆÄÀÏÀ» ¸¸µé°Ú½À´Ï±î?" +STRING_NOTSAVED, "ÆÄÀÏ'%s'\n´Â °íÃÄÁ³½À´Ï´Ù.\n\n \ +´ç½ÅÀº ¹Ù²ï °É ÀúÀåÇÏ°Ú½À´Ï±î?" +STRING_NOTFOUND, "'%s' could not be found." +STRING_OUT_OF_MEMORY, "ÀÌ ÀÛ¾÷À» ³¡¸¶Ä¡±â¿¡´Â ¸Þ¸ð¸®°¡ ºÎÁ·ÇÕ´Ï´Ù. \ +\n Çϳª³ª ´õ ¸¹Àº Ç®±×¸²À» ´Ý¾Æ¼­ »ç¿ë °¡´ÉÇÑ ¸Þ¸ð¸®·®À» ´Ã·ÁÁֽʽÿÀ." + +} diff --git a/programs/notepad/rsrc.rc b/programs/notepad/rsrc.rc index 68a018f949f..108e58d720e 100644 --- a/programs/notepad/rsrc.rc +++ b/programs/notepad/rsrc.rc @@ -55,6 +55,7 @@ ID_ACCEL ACCELERATORS #include "Hu.rc" #include "It.rc" #include "Ja.rc" +#include "Ko.rc" #include "Nl.rc" #include "No.rc" #include "Pl.rc" diff --git a/programs/regedit/Ko.rc b/programs/regedit/Ko.rc index 716e367d9a7..21c8805206a 100644 --- a/programs/regedit/Ko.rc +++ b/programs/regedit/Ko.rc @@ -78,7 +78,7 @@ BEGIN BEGIN MENUITEM "»óÅ ǥ±âÁÙ(&B)", ID_VIEW_STATUSBAR MENUITEM SEPARATOR - MENUITEM "ºÐ±â(&L)", ID_VIEW_SPLIT + MENUITEM "³ª´©±â(&L)", ID_VIEW_SPLIT MENUITEM SEPARATOR MENUITEM "»õ·Î °íħ(&R)\tF5", ID_VIEW_REFRESH END @@ -87,9 +87,9 @@ BEGIN MENUITEM "Áñ°Ü ã±â Ãß°¡(&A)", ID_FAVORITES_ADDTOFAVORITES MENUITEM "Áñ°Ü ã±â Á¦°Å(&R)", ID_FAVORITES_REMOVEFAVORITE END - POPUP "µµ¿ò(&H)" + POPUP "µµ¿ò¸»(&H)" BEGIN - MENUITEM "µµ¿ò Ç׸ñ(&H)\tF1", ID_HELP_HELPTOPICS + MENUITEM "µµ¿ò¸» Ç׸ñ(&H)\tF1", ID_HELP_HELPTOPICS MENUITEM SEPARATOR MENUITEM "·¹Áö½ºÆ®¸® ÆíÁý±â Á¤º¸(&A)", ID_HELP_ABOUT END @@ -206,6 +206,24 @@ BEGIN PUSHBUTTON "Ãë¼Ò",IDCANCEL,175,80,30,11,WS_GROUP END +IDD_FIND DIALOG DISCARDABLE 22, 17, 210, 85 +STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU +CAPTION "ã±â" +FONT 8, "MS Shell Dlg" +BEGIN + LTEXT "ã±â:",IDC_STATIC,5,7,119,8 + EDITTEXT IDC_VALUE_NAME,40,5,125,12, WS_BORDER | WS_TABSTOP | ES_AUTOHSCROLL + LTEXT "ã±â ¿É¼Ç:",IDC_STATIC,5, 22, 119, 8 + CHECKBOX "Å°", IDC_FIND_KEYS, 5, 34, 90, 10, WS_TABSTOP | WS_GROUP | BS_AUTOCHECKBOX + CHECKBOX "°ª À̸§", IDC_FIND_VALUES, 5, 46, 90, 10, WS_TABSTOP | BS_AUTOCHECKBOX + CHECKBOX "°ª ³»¿ë", IDC_FIND_CONTENT, 5, 58, 90, 10, WS_TABSTOP | BS_AUTOCHECKBOX + CHECKBOX "¿ÏÀüÇÑ ´Ü¾î¸¸ ã±â", IDC_FIND_WHOLE, 5, 70, 90, 10, WS_TABSTOP | BS_AUTOCHECKBOX + DEFPUSHBUTTON "ã±â",IDOK,175,5,30,11,WS_GROUP + PUSHBUTTON "´Ý±â",IDCANCEL,175,22,30,11, WS_GROUP +END + + + /* * String Table */ @@ -270,15 +288,15 @@ END STRINGTABLE DISCARDABLE BEGIN - IDS_ERROR "Error" + IDS_ERROR "¿¡·¯" IDS_BAD_KEY "Can't query key '%s'" IDS_BAD_VALUE "Can't query value '%s'" IDS_UNSUPPORTED_TYPE "Can't edit keys of this type (%ld)" IDS_TOO_BIG_VALUE "Value is too big (%ld)" IDS_DELETE_BOX_TITLE "Confirm Value Delete" IDS_DELETE_BOX_TEXT "Are you sure you want to delete value '%s'?" - IDS_NEWKEY "New Key #%d" - IDS_NEWVALUE "New Value #%d" + IDS_NEWKEY "»õ Å° #%d" + IDS_NEWVALUE "»õ °ª #%d" END /*****************************************************************/ @@ -297,7 +315,7 @@ END IDD_DIALOG2 DIALOG DISCARDABLE 0, 0, 187, 95 STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU -CAPTION "Dialog" +CAPTION "´ëÈ­»óÀÚ" FONT 8, "MS Shell Dlg" BEGIN DEFPUSHBUTTON "È®ÀÎ",IDOK,130,7,50,14 @@ -323,7 +341,7 @@ END /* *STRINGTABLE DISCARDABLE *BEGIN - * ID_HELP_HELPTOPICS "Opens Registry Editor Help." + * ID_HELP_HELPTOPICS "·¹Áö½ºÆ®¸® ÆíÁý±â µµ¿ò¸» ¿­±â." * ID_HELP_ABOUT "Displays program information, version number, and copyright." *END */ diff --git a/programs/start/Ko.rc b/programs/start/Ko.rc new file mode 100644 index 00000000000..a1cd0a23e23 --- /dev/null +++ b/programs/start/Ko.rc @@ -0,0 +1,64 @@ +/* + * Start + * Korean Language Support + * + * Copyright 2003 Dan Kegel + * Copyright 2005 YunSong Hwang + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT + +STRINGTABLE DISCARDABLE LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT +{ +STRING_USAGE, "Start a program, or open a document in the program normally used for files with that suffix. \n\ +Usage: \n\ +start [¿É¼Ç] Ç®±×¸²À̳ª ÆÄÀÏ À̸§ [...] \n\ +start [¿É¼Ç] ¹®¼­ ÆÄÀÏ À̸§ \n\ + \n\ +Options: \n\ +/M[inimized] Ç®±×¸² ÃÖ¼ÒÈ­ »óÅ·Π½ÇÇà. \n\ +/MAX[imized] Ç®±×¸² ÃÖ´ëÈ­ »óÅ·Π½ÇÇà. \n\ +/R[estored] Start the program normally (neither minimized nor maximized). \n\ +/W[ait] Wait for started program to finish, then exit with its exit code. \n\ +/L Show end-user license. \n\ + \n\ +start.exe version 0.2 Copyright (C) 2003, Dan Kegel \n\ +Start comes with ABSOLUTELY NO WARRANTY; for details run with /L option. \n\ +This is free software, and you are welcome to redistribute it \n\ +under certain conditions; run 'start /L' for details. \n\ +" + +STRING_LICENSE, "start.exe version 0.2 Copyright (C) 2003, Dan Kegel \n\ +This program is free software; you can redistribute it and/or \n\ +modify it under the terms of the GNU Lesser Public License \n\ +as published by the Free Software Foundation; either version 2.1 \n\ +of the License, or (at your option) any later version. \n\ + \n\ +This program is distributed in the hope that it will be useful, \n\ +but WITHOUT ANY WARRANTY; without even the implied warranty of \n\ +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the \n\ +GNU Lesser Public License for more details. \n\ + \n\ +You should have received a copy of the GNU Lesser Public License \n\ +along with this program; if not, write to the Free Software \n\ +Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. \n\ + \n\ +See the COPYING.LIB file for license information. \n\ +" + +STRING_EXECFAIL "Application could not be started, or no application associated with the specified file.\nShellExecuteEx failed" +} diff --git a/programs/start/rsrc.rc b/programs/start/rsrc.rc index e6220620a7f..6844ab164a2 100644 --- a/programs/start/rsrc.rc +++ b/programs/start/rsrc.rc @@ -27,6 +27,7 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL #include "Es.rc" #include "Fr.rc" #include "It.rc" +#include "Ko.rc" #include "Nl.rc" #include "No.rc" #include "Pt.rc" diff --git a/programs/taskmgr/Ko.rc b/programs/taskmgr/Ko.rc new file mode 100644 index 00000000000..5127b088977 --- /dev/null +++ b/programs/taskmgr/Ko.rc @@ -0,0 +1,500 @@ +/* + * Task Manager + * + * Copyright 1999-2001 Brian Palmer + * Copyright 2005 YunSong Hwang + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT + +/* + Menu +*/ + +IDR_TASKMANAGER MENU DISCARDABLE +BEGIN + POPUP " ÆÄÀÏ(&F)" + BEGIN + MENUITEM "»õ ÀÛ¾÷(&N)( ½ÇÇà...)", ID_FILE_NEW + MENUITEM SEPARATOR + MENUITEM "ÀÛ¾÷ °ü¸®ÀÚ ³ª°¡±â(&x)", ID_FILE_EXIT + END + POPUP "¿É¼Ç(&O)" + BEGIN + MENUITEM "Ç×»ó À§¿¡(&A)", ID_OPTIONS_ALWAYSONTOP + , CHECKED + MENUITEM "ÃÖ¼ÒÈ­ »óÅ·Π»ç¿ë(&M)", ID_OPTIONS_MINIMIZEONUSE + , CHECKED + MENUITEM "ÃÖ¼ÒÈ­ »óÅÂÀÏ ¶§ ¼û±â±â(&H)", ID_OPTIONS_HIDEWHENMINIMIZED + , CHECKED + MENUITEM "16-bit ÀÛ¾÷ º¸¿©ÁÖ±â(&S)", ID_OPTIONS_SHOW16BITTASKS + , CHECKED + END + POPUP "º¸±âl(&V)" + BEGIN + MENUITEM "Áö±Ý »õ·Î Àбâ(&R)", ID_VIEW_REFRESH + POPUP "¼Óµµ ¾÷´ëÀÌÆ®(&U)" + BEGIN + MENUITEM "³ôÀ½(&H)", ID_VIEW_UPDATESPEED_HIGH + MENUITEM "Á¤»ó(&N)", ID_VIEW_UPDATESPEED_NORMAL + , CHECKED + MENUITEM "³·À½(&L)", ID_VIEW_UPDATESPEED_LOW + MENUITEM "Á¤Áö(&P)", ID_VIEW_UPDATESPEED_PAUSED + + END + MENUITEM SEPARATOR + MENUITEM "Å« ¾ÆÀÌÄÜ(&g)", ID_VIEW_LARGE + MENUITEM "ÀÛÀº ¾ÆÀÌÄÜ(&m)", ID_VIEW_SMALL + MENUITEM "&Details", ID_VIEW_DETAILS, CHECKED + MENUITEM "&Select Columns...", ID_VIEW_SELECTCOLUMNS + POPUP "&CPU ±â·Ï" + BEGIN + MENUITEM "&One Graph, All CPUs", ID_VIEW_CPUHISTORY_ONEGRAPHALL + + MENUITEM "One Graph &Per CPU", ID_VIEW_CPUHISTORY_ONEGRAPHPERCPU + , CHECKED + END + MENUITEM "&Show Kernel Times", ID_VIEW_SHOWKERNELTIMES + END + POPUP "â(&W)" + BEGIN + MENUITEM "Tile &Horizontally", ID_WINDOWS_TILEHORIZONTALLY + MENUITEM "Tile &Vertically", ID_WINDOWS_TILEVERTICALLY + MENUITEM "ÃÖ¼ÒÈ­(&M)", ID_WINDOWS_MINIMIZE + MENUITEM "ÃÖ´ëÈ­(&x)", ID_WINDOWS_MAXIMIZE + MENUITEM "&Cascade", ID_WINDOWS_CASCADE + MENUITEM "&Bring To Front", ID_WINDOWS_BRINGTOFRONT + END + POPUP "µµ¿ò¸»(&H)" + BEGIN + MENUITEM "Task Manager &Help Topics", ID_HELP_TOPICS + MENUITEM SEPARATOR + MENUITEM "ÀÛ¾÷°ü¸®ÀÚ Á¤º¸(&A)", ID_HELP_ABOUT + END +END + +IDR_WINDOWSMENU MENU DISCARDABLE +BEGIN + MENUITEM "Tile &Horizontally", ID_WINDOWS_TILEHORIZONTALLY + MENUITEM "Tile &Vertically", ID_WINDOWS_TILEVERTICALLY + MENUITEM "ÃÖ¼ÒÈ­(&M)", ID_WINDOWS_MINIMIZE +/* MENUITEM "ÃÖ´ëÈ­("&x)", ID_WINDOWS_MAXIMIZE */ + MENUITEM "Á¤·Ä(&C)", ID_WINDOWS_CASCADE + MENUITEM "&Bring To Front", ID_WINDOWS_BRINGTOFRONT +END + +IDR_APPLICATION_PAGE_CONTEXT1 MENU DISCARDABLE +BEGIN + POPUP "DUMMY" + BEGIN + MENUITEM "»õ ÀÛ¾÷(&N) (½ÇÇà...)", ID_FILE_NEW + MENUITEM SEPARATOR + MENUITEM "Å« ¾ÆÀÌÄÜ(&g)", ID_VIEW_LARGE + MENUITEM "ÀÛÀº ¾ÆÀÌÄÜ(&m)", ID_VIEW_SMALL + MENUITEM "&Details", ID_VIEW_DETAILS, CHECKED + END +END + +IDR_APPLICATION_PAGE_CONTEXT2 MENU DISCARDABLE +BEGIN + POPUP "DUMMY" + BEGIN + MENUITEM "&Switch To", ID_APPLICATION_PAGE_SWITCHTO + MENUITEM "&Bring To Front", ID_WINDOWS_BRINGTOFRONT + MENUITEM SEPARATOR + MENUITEM "Tile &Horizontally", ID_WINDOWS_TILEHORIZONTALLY + MENUITEM "Tile &Vertically", ID_WINDOWS_TILEVERTICALLY + MENUITEM "ÃÖ¼ÒÈ­(&M)", ID_WINDOWS_MINIMIZE + MENUITEM "ÃÖ´ëÈ­(&x)", ID_WINDOWS_MAXIMIZE + MENUITEM "&Cascade", ID_WINDOWS_CASCADE + MENUITEM SEPARATOR + MENUITEM "&End Task", ID_APPLICATION_PAGE_ENDTASK + MENUITEM "&Go To Process", ID_APPLICATION_PAGE_GOTOPROCESS + END +END + +IDR_TRAY_POPUP MENU DISCARDABLE +BEGIN + POPUP "DUMMY" + BEGIN + MENUITEM "&Restore", ID_RESTORE + MENUITEM "´Ý±â(&C)", ID_FILE_EXIT + MENUITEM SEPARATOR + MENUITEM "Ç×»ó À§¿¡(&A)", ID_OPTIONS_ALWAYSONTOP + END +END + +IDR_PROCESS_PAGE_CONTEXT MENU DISCARDABLE +BEGIN + POPUP "DUMMY" + BEGIN + MENUITEM "&End Process", ID_PROCESS_PAGE_ENDPROCESS + MENUITEM "End Process &Tree", ID_PROCESS_PAGE_ENDPROCESSTREE + + MENUITEM "&Debug", ID_PROCESS_PAGE_DEBUG + MENUITEM SEPARATOR + POPUP "Set &Priority" + BEGIN + MENUITEM "&Realtime", ID_PROCESS_PAGE_SETPRIORITY_REALTIME + + MENUITEM "&High", ID_PROCESS_PAGE_SETPRIORITY_HIGH + + MENUITEM "&AboveNormal", ID_PROCESS_PAGE_SETPRIORITY_ABOVENORMAL + + MENUITEM "&Normal", ID_PROCESS_PAGE_SETPRIORITY_NORMAL + + MENUITEM "&BelowNormal", ID_PROCESS_PAGE_SETPRIORITY_BELOWNORMAL + + MENUITEM "&Low", ID_PROCESS_PAGE_SETPRIORITY_LOW + + END + MENUITEM "Set &Affinity...", ID_PROCESS_PAGE_SETAFFINITY + MENUITEM "Edit Debug &Channels...", ID_PROCESS_PAGE_DEBUGCHANNELS + END +END + +/* + Dialog +*/ + +IDD_ABOUTBOX DIALOG DISCARDABLE 22, 17, 259, 210 +STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU +CAPTION "About Task Manager" +FONT 8, "MS Shell Dlg" +BEGIN + CONTROL "Task Manager v1.0\nCopyright (C) 1999 - 2001\nby Brian Palmer (brianp@reactos.org)", + IDC_STATIC,"Static",SS_LEFTNOWORDWRAP | WS_GROUP,53,28, + 122,26 + DEFPUSHBUTTON "OK",IDOK,183,189,44,14,WS_GROUP + ICON IDI_TASKMANAGER,IDC_STATIC,19,30,20,20 + EDITTEXT IDC_LICENSE_EDIT,53,63,174,107,ES_MULTILINE | + ES_READONLY | WS_VSCROLL +END + +IDD_TASKMGR_DIALOG DIALOG DISCARDABLE 0, 0, 264, 246 +STYLE DS_CENTER | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_POPUP | + WS_CLIPSIBLINGS | WS_CLIPCHILDREN | WS_CAPTION | WS_SYSMENU | + WS_THICKFRAME +CAPTION "Task Manager" +MENU IDR_TASKMANAGER +FONT 8, "MS Shell Dlg" +BEGIN + CONTROL "Tab1",IDC_TAB,"SysTabControl32",WS_TABSTOP,3,3,257,228 +END + +IDD_APPLICATION_PAGE DIALOG DISCARDABLE 0, 0, 247, 210 +STYLE DS_CONTROL | WS_CHILD | WS_CLIPCHILDREN +FONT 8, "MS Shell Dlg" +BEGIN + CONTROL "List2",IDC_APPLIST,"SysListView32",LVS_REPORT | + LVS_SHOWSELALWAYS | WS_BORDER | WS_TABSTOP,7,7,233,177 + PUSHBUTTON "&New Task...",IDC_NEWTASK,187,189,53,14 + PUSHBUTTON "&Switch To",IDC_SWITCHTO,131,189,53,14,WS_DISABLED + PUSHBUTTON "&End Task",IDC_ENDTASK,75,189,53,14,WS_DISABLED +END + +IDD_PROCESS_PAGE DIALOG DISCARDABLE 0, 0, 247, 210 +STYLE DS_CONTROL | WS_CHILD | WS_CLIPCHILDREN +FONT 8, "MS Shell Dlg" +BEGIN + CONTROL "List2",IDC_PROCESSLIST,"SysListView32",LVS_REPORT | + LVS_SINGLESEL | LVS_SHOWSELALWAYS | LVS_OWNERDATA | + WS_BORDER | WS_TABSTOP,7,7,233,177 + PUSHBUTTON "&End Process",IDC_ENDPROCESS,171,189,69,14 + CONTROL "&Show processes from all users",IDC_SHOWALLPROCESSES, + "Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,191,111,10 +END + +/*IDD_PERFORMANCE_PAGE DIALOGEX 0, 0, 247, 210*/ +IDD_PERFORMANCE_PAGE DIALOGEX DISCARDABLE 0, 0, 247, 210 +STYLE DS_CONTROL | WS_CHILD | WS_CLIPCHILDREN +FONT 8, "MS Shell Dlg" +BEGIN + GROUPBOX "CPU »ç¿ë",IDC_CPU_USAGE_FRAME,5,5,60,54,WS_TABSTOP, WS_EX_TRANSPARENT + GROUPBOX "MEM »ç¿ë",IDC_MEM_USAGE_FRAME,5,63,60,54,BS_LEFTTEXT, WS_EX_TRANSPARENT + GROUPBOX "Totals",IDC_TOTALS_FRAME,5,122,111,39,0,WS_EX_TRANSPARENT + GROUPBOX "Commit Charge (K)",IDC_COMMIT_CHARGE_FRAME,5,166,111,39,0,WS_EX_TRANSPARENT + GROUPBOX "Physical Memory (K)",IDC_PHYSICAL_MEMORY_FRAME,131,122,111,39,0,WS_EX_TRANSPARENT + GROUPBOX "Kernel Memory (K)",IDC_KERNEL_MEMORY_FRAME,131,166,111,39,0,WS_EX_TRANSPARENT + LTEXT "Handles",IDS_TOTALS_HANDLE_COUNT,12,131,27,8 + LTEXT "Threads",IDS_TOTALS_THREAD_COUNT,12,140,27,8 + LTEXT "Processes",IDS_TOTALS_PROCESS_COUNT,12,149,34,8 + EDITTEXT IDC_TOTALS_HANDLE_COUNT,65,131,45,8,ES_RIGHT | + ES_READONLY | ES_NUMBER | NOT WS_BORDER + EDITTEXT IDC_TOTALS_THREAD_COUNT,65,140,45,8,ES_RIGHT | + ES_READONLY | ES_NUMBER | NOT WS_BORDER + EDITTEXT IDC_TOTALS_PROCESS_COUNT,65,149,45,8,ES_RIGHT | + ES_READONLY | ES_NUMBER | NOT WS_BORDER + LTEXT "Total",IDS_COMMIT_CHARGE_TOTAL,12,175,27,8 + LTEXT "Limit",IDS_COMMIT_CHARGE_LIMIT,12,184,15,8 + LTEXT "Peak",IDS_COMMIT_CHARGE_PEAK,12,193,34,8 + EDITTEXT IDC_COMMIT_CHARGE_TOTAL,65,174,45,8,ES_RIGHT | + ES_READONLY | ES_NUMBER | NOT WS_BORDER + EDITTEXT IDC_COMMIT_CHARGE_LIMIT,65,184,45,8,ES_RIGHT | + ES_READONLY | ES_NUMBER | NOT WS_BORDER + EDITTEXT IDC_COMMIT_CHARGE_PEAK,65,193,45,8,ES_RIGHT | + ES_READONLY | ES_NUMBER | NOT WS_BORDER + LTEXT "Total",IDS_PHYSICAL_MEMORY_TOTAL,137,131,27,8 + LTEXT "Available",IDS_PHYSICAL_MEMORY_AVAILABLE,137,140,30,8 + LTEXT "System Cache",IDS_PHYSICAL_MEMORY_SYSTEM_CACHE,137,149,46,8 + EDITTEXT IDC_PHYSICAL_MEMORY_TOTAL,185,131,48,8,ES_RIGHT | + ES_READONLY | ES_NUMBER | NOT WS_BORDER + EDITTEXT IDC_PHYSICAL_MEMORY_AVAILABLE,185,140,48,8,ES_RIGHT | + ES_READONLY | ES_NUMBER | NOT WS_BORDER + EDITTEXT IDC_PHYSICAL_MEMORY_SYSTEM_CACHE,185,149,48,8,ES_RIGHT | + ES_READONLY | ES_NUMBER | NOT WS_BORDER + LTEXT "Total",IDS_KERNEL_MEMORY_TOTAL,137,174,27,8 + LTEXT "Paged",IDS_KERNEL_MEMORY_PAGED,137,184,21,8 + LTEXT "Nonpaged",IDS_KERNEL_MEMORY_NONPAGED,137,193,34,8 + EDITTEXT IDC_KERNEL_MEMORY_TOTAL,185,174,48,8,ES_RIGHT | + ES_READONLY | ES_NUMBER | NOT WS_BORDER + EDITTEXT IDC_KERNEL_MEMORY_PAGED,185,184,48,8,ES_RIGHT | + ES_READONLY | ES_NUMBER | NOT WS_BORDER + EDITTEXT IDC_KERNEL_MEMORY_NONPAGED,185,193,48,8,ES_RIGHT | + ES_READONLY | ES_NUMBER | NOT WS_BORDER + GROUPBOX "CPU Usage History",IDC_CPU_USAGE_HISTORY_FRAME,74,5,168,54,0,WS_EX_TRANSPARENT + GROUPBOX "Memory Usage History",IDC_MEMORY_USAGE_HISTORY_FRAME,74,63,168,54,0,WS_EX_TRANSPARENT + PUSHBUTTON "CPU Usage Display",IDC_CPU_USAGE_GRAPH,12,17,47,37,0, + WS_EX_CLIENTEDGE + PUSHBUTTON "MEM Usage Display",IDC_MEM_USAGE_GRAPH,12,75,47,37,0, + WS_EX_CLIENTEDGE + PUSHBUTTON "CPU Usage History",IDC_CPU_USAGE_HISTORY_GRAPH,81,17, + 153,37,0,WS_EX_CLIENTEDGE + PUSHBUTTON "MEM Usage History",IDC_MEM_USAGE_HISTORY_GRAPH,81,75, + 153,37,0,WS_EX_CLIENTEDGE +END + +IDD_DEBUG_CHANNELS_DIALOG DIALOG DISCARDABLE 0, 0, 247, 210 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Debug Channels" +FONT 8, "MS Shell Dlg" +BEGIN + CONTROL "List2",IDC_DEBUG_CHANNELS_LIST,"SysListView32",LVS_REPORT | + LVS_SINGLESEL | LVS_SHOWSELALWAYS | WS_BORDER | WS_TABSTOP | + LVS_SORTASCENDING,7,7,233,177 + PUSHBUTTON "Close",IDOK,171,189,69,14 +END + +IDD_AFFINITY_DIALOG DIALOG DISCARDABLE 0, 0, 231, 154 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Processor Affinity" +FONT 8, "MS Shell Dlg" +BEGIN + DEFPUSHBUTTON "OK",IDOK,120,133,50,14 + PUSHBUTTON "Cancel",IDCANCEL,174,133,50,14 + LTEXT "The Processor Affinity setting controls which CPUs the process will be allowed to execute on.", + IDC_STATIC,5,5,220,16 + CONTROL "CPU 0",IDC_CPU0,"Button",BS_AUTOCHECKBOX | WS_TABSTOP, + 11,28,37,10 + CONTROL "CPU 1",IDC_CPU1,"Button",BS_AUTOCHECKBOX | WS_DISABLED | + WS_TABSTOP,11,41,37,10 + CONTROL "CPU 2",IDC_CPU2,"Button",BS_AUTOCHECKBOX | WS_DISABLED | + WS_TABSTOP,11,54,37,10 + CONTROL "CPU 3",IDC_CPU3,"Button",BS_AUTOCHECKBOX | WS_DISABLED | + WS_TABSTOP,11,67,37,10 + CONTROL "CPU 4",IDC_CPU4,"Button",BS_AUTOCHECKBOX | WS_DISABLED | + WS_TABSTOP,11,80,37,10 + CONTROL "CPU 5",IDC_CPU5,"Button",BS_AUTOCHECKBOX | WS_DISABLED | + WS_TABSTOP,11,93,37,10 + CONTROL "CPU 6",IDC_CPU6,"Button",BS_AUTOCHECKBOX | WS_DISABLED | + WS_TABSTOP,11,106,37,10 + CONTROL "CPU 7",IDC_CPU7,"Button",BS_AUTOCHECKBOX | WS_DISABLED | + WS_TABSTOP,11,119,37,10 + CONTROL "CPU 8",IDC_CPU8,"Button",BS_AUTOCHECKBOX | WS_DISABLED | + WS_TABSTOP,61,28,37,10 + CONTROL "CPU 9",IDC_CPU9,"Button",BS_AUTOCHECKBOX | WS_DISABLED | + WS_TABSTOP,61,41,37,10 + CONTROL "CPU 10",IDC_CPU10,"Button",BS_AUTOCHECKBOX | + WS_DISABLED | WS_TABSTOP,61,54,41,10 + CONTROL "CPU 11",IDC_CPU11,"Button",BS_AUTOCHECKBOX | + WS_DISABLED | WS_TABSTOP,61,67,41,10 + CONTROL "CPU 12",IDC_CPU12,"Button",BS_AUTOCHECKBOX | + WS_DISABLED | WS_TABSTOP,61,80,41,10 + CONTROL "CPU 13",IDC_CPU13,"Button",BS_AUTOCHECKBOX | + WS_DISABLED | WS_TABSTOP,61,93,41,10 + CONTROL "CPU 14",IDC_CPU14,"Button",BS_AUTOCHECKBOX | + WS_DISABLED | WS_TABSTOP,61,106,41,10 + CONTROL "CPU 15",IDC_CPU15,"Button",BS_AUTOCHECKBOX | + WS_DISABLED | WS_TABSTOP,61,119,41,10 + CONTROL "CPU 16",IDC_CPU16,"Button",BS_AUTOCHECKBOX | + WS_DISABLED | WS_TABSTOP,116,28,41,10 + CONTROL "CPU 17",IDC_CPU17,"Button",BS_AUTOCHECKBOX | + WS_DISABLED | WS_TABSTOP,116,41,41,10 + CONTROL "CPU 18",IDC_CPU18,"Button",BS_AUTOCHECKBOX | + WS_DISABLED | WS_TABSTOP,116,54,41,10 + CONTROL "CPU 19",IDC_CPU19,"Button",BS_AUTOCHECKBOX | + WS_DISABLED | WS_TABSTOP,116,67,41,10 + CONTROL "CPU 20",IDC_CPU20,"Button",BS_AUTOCHECKBOX | + WS_DISABLED | WS_TABSTOP,116,80,41,10 + CONTROL "CPU 21",IDC_CPU21,"Button",BS_AUTOCHECKBOX | + WS_DISABLED | WS_TABSTOP,116,93,41,10 + CONTROL "CPU 22",IDC_CPU22,"Button",BS_AUTOCHECKBOX | + WS_DISABLED | WS_TABSTOP,116,106,41,10 + CONTROL "CPU 23",IDC_CPU23,"Button",BS_AUTOCHECKBOX | + WS_DISABLED | WS_TABSTOP,116,119,41,10 + CONTROL "CPU 24",IDC_CPU24,"Button",BS_AUTOCHECKBOX | + WS_DISABLED | WS_TABSTOP,175,28,41,10 + CONTROL "CPU 25",IDC_CPU25,"Button",BS_AUTOCHECKBOX | + WS_DISABLED | WS_TABSTOP,175,41,41,10 + CONTROL "CPU 26",IDC_CPU26,"Button",BS_AUTOCHECKBOX | + WS_DISABLED | WS_TABSTOP,175,54,41,10 + CONTROL "CPU 27",IDC_CPU27,"Button",BS_AUTOCHECKBOX | + WS_DISABLED | WS_TABSTOP,175,67,41,10 + CONTROL "CPU 28",IDC_CPU28,"Button",BS_AUTOCHECKBOX | + WS_DISABLED | WS_TABSTOP,175,80,41,10 + CONTROL "CPU 29",IDC_CPU29,"Button",BS_AUTOCHECKBOX | + WS_DISABLED | WS_TABSTOP,175,93,41,10 + CONTROL "CPU 30",IDC_CPU30,"Button",BS_AUTOCHECKBOX | + WS_DISABLED | WS_TABSTOP,175,106,41,10 + CONTROL "CPU 31",IDC_CPU31,"Button",BS_AUTOCHECKBOX | + WS_DISABLED | WS_TABSTOP,175,119,41,10 +END + +IDD_COLUMNS_DIALOG DIALOG DISCARDABLE 0, 0, 195, 199 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Select Columns" +FONT 8, "MS Shell Dlg" +BEGIN + DEFPUSHBUTTON "OK",IDOK,84,178,50,14 + PUSHBUTTON "Cancel",IDCANCEL,138,178,50,14 + LTEXT "Select the columns that will appear on the Process page of the Task Manager.", + IDC_STATIC,7,7,181,17 + CONTROL "&Image Name",IDC_IMAGENAME,"Button",BS_AUTOCHECKBOX | + WS_DISABLED | WS_TABSTOP,7,28,56,10 + CONTROL "&PID (Process Identifier)",IDC_PID,"Button", + BS_AUTOCHECKBOX | WS_TABSTOP,7,39,88,10 + CONTROL "&CPU Usage",IDC_CPUUSAGE,"Button",BS_AUTOCHECKBOX | + WS_TABSTOP,7,50,53,10 + CONTROL "CPU Tim&e",IDC_CPUTIME,"Button",BS_AUTOCHECKBOX | + WS_TABSTOP,7,61,48,10 + CONTROL "&Memory Usage",IDC_MEMORYUSAGE,"Button",BS_AUTOCHECKBOX | + WS_TABSTOP,7,72,63,10 + CONTROL "Memory Usage &Delta",IDC_MEMORYUSAGEDELTA,"Button", + BS_AUTOCHECKBOX | WS_TABSTOP,7,83,82,10 + CONTROL "Pea&k Memory Usage",IDC_PEAKMEMORYUSAGE,"Button", + BS_AUTOCHECKBOX | WS_TABSTOP,7,94,82,10 + CONTROL "Page &Faults",IDC_PAGEFAULTS,"Button",BS_AUTOCHECKBOX | + WS_TABSTOP,7,105,53,10 + CONTROL "&USER Objects",IDC_USEROBJECTS,"Button",BS_AUTOCHECKBOX | + WS_TABSTOP,7,116,62,10 + CONTROL "I/O Reads",IDC_IOREADS,"Button",BS_AUTOCHECKBOX | + WS_TABSTOP,7,127,49,10 + CONTROL "I/O Read Bytes",IDC_IOREADBYTES,"Button", + BS_AUTOCHECKBOX | WS_TABSTOP,7,138,65,10 + CONTROL "&Session ID",IDC_SESSIONID,"Button",BS_AUTOCHECKBOX | + WS_TABSTOP,7,149,50,10 + CONTROL "User &Name",IDC_USERNAME,"Button",BS_AUTOCHECKBOX | + WS_TABSTOP,7,160,51,10 + CONTROL "Page F&aults Delta",IDC_PAGEFAULTSDELTA,"Button", + BS_AUTOCHECKBOX | WS_TABSTOP,107,28,72,10 + CONTROL "&Virtual Memory Size",IDC_VIRTUALMEMORYSIZE,"Button", + BS_AUTOCHECKBOX | WS_TABSTOP,107,39,77,10 + CONTROL "Pa&ged Pool",IDC_PAGEDPOOL,"Button",BS_AUTOCHECKBOX | + WS_TABSTOP,107,50,53,10 + CONTROL "N&on-paged Pool",IDC_NONPAGEDPOOL,"Button", + BS_AUTOCHECKBOX | WS_TABSTOP,107,61,67,10 + CONTROL "Base P&riority",IDC_BASEPRIORITY,"Button", + BS_AUTOCHECKBOX | WS_TABSTOP,107,72,55,10 + CONTROL "&Handle Count",IDC_HANDLECOUNT,"Button",BS_AUTOCHECKBOX | + WS_TABSTOP,107,83,59,10 + CONTROL "&Thread Count",IDC_THREADCOUNT,"Button",BS_AUTOCHECKBOX | + WS_TABSTOP,107,94,59,10 + CONTROL "GDI Objects",IDC_GDIOBJECTS,"Button",BS_AUTOCHECKBOX | + WS_TABSTOP,107,105,55,10 + CONTROL "I/O Writes",IDC_IOWRITES,"Button",BS_AUTOCHECKBOX | + WS_TABSTOP,107,116,49,10 + CONTROL "I/O Write Bytes",IDC_IOWRITEBYTES,"Button", + BS_AUTOCHECKBOX | WS_TABSTOP,107,127,65,10 + CONTROL "I/O Other",IDC_IOOTHER,"Button",BS_AUTOCHECKBOX | + WS_TABSTOP,107,138,46,10 + CONTROL "I/O Other Bytes",IDC_IOOTHERBYTES,"Button", + BS_AUTOCHECKBOX | WS_TABSTOP,107,149,65,10 +END + +/* + String Table +*/ + +STRINGTABLE DISCARDABLE +BEGIN + IDS_APP_TITLE "Task Manager" + IDC_TASKMGR "Task Manager" +END + +STRINGTABLE DISCARDABLE +BEGIN + ID_FILE_NEW "Runs a new program" + ID_OPTIONS_ALWAYSONTOP "Task Manager remains in front of all other windows unless minimized" + ID_OPTIONS_MINIMIZEONUSE + "Task Manager is minimized when a SwitchTo operation is performed" + ID_OPTIONS_HIDEWHENMINIMIZED "Hide the Task Manager when it is minimized" + ID_VIEW_REFRESH "Force Task Manager to update now, regardless of Update Speed setting" + ID_VIEW_LARGE "Displays tasks by using large icons" + ID_VIEW_SMALL "Displays tasks by using small icons" + ID_VIEW_DETAILS "Displays information about each task" + ID_VIEW_UPDATESPEED_HIGH "Updates the display twice per second" + ID_VIEW_UPDATESPEED_NORMAL "Updates the display every two seconds" + ID_VIEW_UPDATESPEED_LOW "Updates the display every four seconds" +END + +STRINGTABLE DISCARDABLE +BEGIN + ID_VIEW_UPDATESPEED_PAUSED "Does not automatically update" + ID_WINDOWS_TILEHORIZONTALLY + "Tiles the windows horizontally on the desktop" + ID_WINDOWS_TILEVERTICALLY "Tiles the windows vertically on the desktop" + ID_WINDOWS_MINIMIZE "Minimizes the windows" + ID_WINDOWS_MAXIMIZE "Maximizes the windows" + ID_WINDOWS_CASCADE "Cascades the windows diagonally on the desktop" + ID_WINDOWS_BRINGTOFRONT "Brings the window front, but does not switch to it" + ID_HELP_TOPICS "Displays Task Manager help topics" + ID_HELP_ABOUT "Displays program information, version number, and copyright" + ID_FILE_EXIT "Exits the Task Manager application" + ID_OPTIONS_SHOW16BITTASKS + "Shows 16-bit tasks under the associated ntvdm.exe" + ID_VIEW_SELECTCOLUMNS "Select which columns will be visible on the Process page" + ID_VIEW_SHOWKERNELTIMES "Displays kernel time in the performance graphs" + ID_VIEW_CPUHISTORY_ONEGRAPHALL + "A single history graph shows total CPU usage" + ID_VIEW_CPUHISTORY_ONEGRAPHPERCPU "Each CPU has its own history graph" + ID_APPLICATION_PAGE_SWITCHTO + "Brings a task to the foreground, switch focus to that task" +END + +STRINGTABLE DISCARDABLE +BEGIN + ID_ENDTASK "Tells the selected tasks to close" + ID_GOTOPROCESS "Switches the focus to the process of the selected task" + ID_RESTORE "Restores the Task Manager from its hidden state" + ID_PROCESS_PAGE_ENDPROCESS "Removes the process from the system" + ID_PROCESS_PAGE_ENDPROCESSTREE + "Removes this process and all descendants from the system" + ID_PROCESS_PAGE_DEBUG "Attaches the debugger to this process" + ID_PROCESS_PAGE_SETAFFINITY + "Controls which processors the process will be allowed to run on" + ID_PROCESS_PAGE_SETPRIORITY_REALTIME + "Sets process to the REALTIME priority class" + ID_PROCESS_PAGE_SETPRIORITY_HIGH "Sets process to the HIGH priority class" + ID_PROCESS_PAGE_SETPRIORITY_ABOVENORMAL + "Sets process to the ABOVE NORMAL priority class" + ID_PROCESS_PAGE_SETPRIORITY_NORMAL + "Sets process to the NORMAL priority class" + ID_PROCESS_PAGE_SETPRIORITY_BELOWNORMAL + "Sets process to the BELOW NORMAL priority class" + ID_PROCESS_PAGE_SETPRIORITY_LOW "Sets process to the LOW priority class" + IDS_LICENSE "This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.\r\n\r\nThis program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\r\n\r\nYou should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA." +END diff --git a/programs/taskmgr/taskmgr.rc b/programs/taskmgr/taskmgr.rc index 8c02824ebfc..7a81c327656 100644 --- a/programs/taskmgr/taskmgr.rc +++ b/programs/taskmgr/taskmgr.rc @@ -27,6 +27,7 @@ #include "De.rc" #include "En.rc" #include "Fr.rc" +#include "Ko.rc" #include "No.rc" LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL diff --git a/programs/uninstaller/Ko.rc b/programs/uninstaller/Ko.rc new file mode 100644 index 00000000000..4e797327279 --- /dev/null +++ b/programs/uninstaller/Ko.rc @@ -0,0 +1,45 @@ +/* + * Uninstaller (Korean Resources) + * + * Copyright 2005 Jonathan Ernst + * Copyright 2005 YunSong Hwang + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT + +IDD_UNINSTALLER DIALOG DISCARDABLE 0, 0, 330, 160 +STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU +CAPTION "Wine Ç®±×¸² Á¦°ÅÇϱâ" +FONT 10, "MS Sans Serif" +BEGIN + LTEXT "Please select the application you wish to uninstall:",IDC_PLEASESELECT,10,10,250,14 + EDITTEXT IDC_FILTER,10,25,250,14,ES_AUTOHSCROLL + LISTBOX IDC_LIST,10,43,250,106,LBS_NOINTEGRALHEIGHT | + LBS_EXTENDEDSEL | WS_VSCROLL | WS_TABSTOP + PUSHBUTTON "Á¦°Å(&U)",IDC_UNINSTALL,270,48,50,14 + PUSHBUTTON "Á¤º¸(&A)",IDC_ABOUT,270,65,50,14 + PUSHBUTTON "³ª°¡±â(&E)",IDC_EXIT,270,81,50,14 +END + + +STRINGTABLE DISCARDABLE { + IDS_APPNAME, "Wine Application Á¦°ÅÇϱâ" + IDS_ABOUT, "Wine Application Uninstaller (C) 2005 by Andreas Mohr, Hannu Valtonen and Jonathan Ernst." + IDS_ABOUTTITLE, " Uninstaller Á¤º¸" + IDS_REGISTRYKEYNOTAVAILABLE, "Uninstall registry key not available (yet), nothing to do !" + IDS_UNINSTALLFAILED, "Execution of uninstall command '%s' failed, perhaps due to missing executable.\r\nDo you want to remove the uninstall entry from the registry ?" +} diff --git a/programs/uninstaller/rsrc.rc b/programs/uninstaller/rsrc.rc index 515689f1e1b..2ab31e3db4b 100644 --- a/programs/uninstaller/rsrc.rc +++ b/programs/uninstaller/rsrc.rc @@ -32,6 +32,7 @@ #include "Fi.rc" #include "Fr.rc" #include "It.rc" +#include "Ko.rc" #include "No.rc" #include "Pt.rc" diff --git a/programs/view/Ko.rc b/programs/view/Ko.rc new file mode 100644 index 00000000000..d12473ca02a --- /dev/null +++ b/programs/view/Ko.rc @@ -0,0 +1,77 @@ +/* + * View + * Korean Language Support + * + * Copyright 1998 Douglas Ridgway + * Copyright 2003 Marcelo Duarte + * Copyright 2005 YunSong Hwang + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT + +/* + * + * Menu + * + */ + +VIEW MENU +BEGIN + POPUP "ÆÄÀÏ(&F)" + BEGIN + MENUITEM "¿­±â(&O)", IDM_OPEN + MENUITEM "³ª°¡±â(&x)", IDM_EXIT + END + POPUP "&Pan" + BEGIN + MENUITEM "&Scale to Window", IDM_SET_EXT_TO_WIN + MENUITEM SEPARATOR + MENUITEM "¿ÞÂÊ(&L)", IDM_LEFT + MENUITEM "¿À¸¥ÂÊ(&R)", IDM_RIGHT + MENUITEM "À§(&U)", IDM_UP + MENUITEM "¾Æ·¡(&D)", IDM_DOWN + END + POPUP "Á¤º¸(&I)" + BEGIN + MENUITEM "&Hello", IDM_HELLO + END +END + + +/* + * + * Accelerator + * + */ + +VIEW ACCELERATORS +BEGIN + "Q", IDM_EXIT, VIRTKEY, CONTROL +END + + +/* + * + * String Table + * + */ + +STRINGTABLE DISCARDABLE +BEGIN + IDS_APPNAME "º¸±â" + IDS_DESCRIPTION "Regular ¸ÞŸÆÄÀÏ º¸±â" +END diff --git a/programs/view/viewrc.rc b/programs/view/viewrc.rc index a3834bad2d7..bc6642a91f6 100644 --- a/programs/view/viewrc.rc +++ b/programs/view/viewrc.rc @@ -25,6 +25,7 @@ #include "Es.rc" #include "Fr.rc" #include "It.rc" +#include "Ko.rc" #include "Nl.rc" #include "No.rc" #include "Pt.rc" diff --git a/programs/wcmd/Ko.rc b/programs/wcmd/Ko.rc new file mode 100644 index 00000000000..e69962333ee --- /dev/null +++ b/programs/wcmd/Ko.rc @@ -0,0 +1,227 @@ +/* + * Wine command prompt + * Korean Language Support + * + * Copyright (C) 1999 D A Pickles + * Copyright 2005 YunSong Hwang + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT + +STRINGTABLE +{ + WCMD_ATTRIB, "ATTRIB µµ¿ò¸»\n" + WCMD_CALL, +"<¹èÄ¡ÆÄÀÏ À̸§>À» È£Ãâ(CALL)ÇÏ´Â °ÍÀº ¹èÄ¡ ÆÄÀϾȿ¡¼­ ´Ù¸¥ ¹èÄ¡ ÆÄÀÏ ¾ÈÀÇ \n\ +¸í·ÉÀ» »ç¿ëÇÏ´Â °ÍÀÔ´Ï´Ù. ¹èÄ¡ ÆÄÀÏÀÌ Á¾·áÇϸé , Á¦¾î±ÇÀº ±×°ÍÀ» È£ÃâÇÑ \n\ +ÆÄÀÏÇÑÅ× µ¹¾Æ°©´Ï´Ù. CALL ¸í·ÉÀº È£ÃâÇÏ´Â °úÁ¤¿¡¼­ ¸Å°³º¯¼ö¸¦ °¡Áý´Ï´Ù.\n\ +\n\ +±âº» µð·ºÅ丮³ª ȯ°æº¯¼ö³ª ±âŸ¸¦ ¹Ù²Ù´Â °ÍÀº È£ÃâÀÚ¿¡ ÀÇÇØ »ó¼ÓµÇ¾î¼­ È£ÃâµÈ \n\ +°úÁ¤¿¡¸¸ Àû¿ëµË´Ï´Ù.\n" + + WCMD_CD, " CD µµ¿ò¸»\n" + WCMD_CHDIR, " CHDIR µµ¿ò¸»\n" + + WCMD_CLS, "CLS clears the console screen\n" + + WCMD_COPY, "COPY µµ¿ò¸»\n" + WCMD_CTTY, "CTTY µµ¿ò¸»\n" + WCMD_DATE, "DATE µµ¿ò¸»\n" + WCMD_DEL, "DEL \n" + WCMD_DIR, "DIR µµ¿ò¸» \n" + + WCMD_ECHO, +"ECHO <¹®ÀÚ¿­>Àº <¹®ÀÚ¿­>À» ÇöÀç Å͹̳ο¡ º¸¿©ÁÝ´Ï´Ù.\n\ +\n\ +ECHO ON´Â “lÄ¡ÆÄÀÏ¿¡¼­ ´ÙÀ½¿¡ ¿À´Â ¸ðµç ¸í·ÉÀ» ½ÇÇ౫±â Àü¿¡ Å͹̳ο¡ º¸¿©ÁÝ´Ï´Ù\n\ +\n\ +ECHO OFF ´Â ECHO ON°ú ¹Ý´ëÀÇ ÀÏÀ» ÇÕ´Ï´Ù. (ECHO is OFF°¡ ±âº»)\n\ +ECHO OFF ¸í·ÉÀº ½ÅÈ£°¡ ÁøÇàµÇ´Â °É º¸¿©ÁÖ´Â°É ¸·½À´Ï´Ù.\n" + + WCMD_ERASE, "ERASE µµ¿ò¸»\n" + + WCMD_FOR, +"FOR ¸í·ÉÀº ÆÄÀÏ ÇÑ ¼ÂÆ®¿¡¼­ °¢°¢ÀÇ ¸í·ÉÀ» ½ÇÇà½Ãų ¶§ »ç¿ë.\n\ +\n\ +¹®¹ý: FOR %variable IN (set) DO command\n\ +\n\ +The requirement to double the % sign when using FOR in a batch file does\n\ +not exist in wcmd.\n" + + WCMD_GOTO, +"The GOTO command transfers execution to another statement within a\n\ +batch file.\n\ +\n\ +The label which is the target of a GOTO may be up to 255 characters\n\ +long but may not include spaces (this is different from other operating\n\ +systems). If two or more identical labels exist in a batch file the\n\ +first one will always be executed. Attempting to GOTO a nonexistent\n\ +label terminates the batch file execution.\n\ +\n\ +GOTO has no effect when used interactively.\n" + + WCMD_HELP, "HELP µµ¿ò¸»\n" + + WCMD_IF, +"IF is used to conditionally execute a command.\n\ +\n\ +Syntax: IF [NOT] EXIST filename command\n\ + IF [NOT] string1==string2 command\n\ + IF [NOT] ERRORLEVEL number command\n\ +\n\ +In the second form of the command, string1 and string2 must be in double\n\ +quotes. The comparison is not case-sensitive.\n" + + WCMD_LABEL, "LABEL is used to set a disk volume label. \n\ +\n\ +Syntax: LABEL [drive:]\n\ +The command will prompt you for the new volume label for the given drive.\n\ +You can display the disk volume label with the VOL command.\n" + + WCMD_MD, "MD µµ¿ò¸»\n" + WCMD_MKDIR, "MKDIR µµ¿ò¸»\n" + WCMD_MOVE, +"MOVE relocates a file or directory to a new point within the file system.\n\ +\n\ +If the item being moved is a directory then all the files and subdirectories\n\ +below the item are moved as well.\n\ +\n\ +MOVE fails if the old and new locations are on different DOS drive letters.\n" + + WCMD_PATH, +"PATH displays or changes the wcmd search path.\n\ +\n\ +Entering PATH will display the current PATH setting (initially this is\n\ +the value given in your wine.conf file). To change the setting follow the\n\ +PATH command with the new value.\n\ +\n\ +It is also possible to modify the PATH by using the PATH environment\n\ +variable, for example:\n\ + PATH %PATH%;c:\\temp \n" + + WCMD_PAUSE, +"PAUSE displays a message on the screen 'Press Return key to continue'\n\ +and waits for the user to press the Return key. It is mainly useful in\n\ +batch files to allow the user to read the output of a previous command\n\ +before it scrolls off the screen.\n" + + WCMD_PROMPT, +"PROMPT sets the command-line prompt.\n\ +\n\ +The string following the PROMPT command (and the space immediately after)\n\ +appears at the beginning of the line when wcmd is waiting for input.\n\ +\n\ +The following character strings have the special meaning shown:\n\ +\n\ +$$ Dollar sign $_ Linefeed $b Pipe sign (|)\n\ +$d Current date $e Escape $g > sign\n\ +$l < sign $n Current drive $p Current path\n\ +$q Equal sign $t Current time $v wcmd version\n\ +\n\ +Note that entering the PROMPT command without a prompt-string resets the\n\ +prompt to the default, which is the current directory (which includes the\n\ +current drive letter) followed by a greater-than (>) sign.\n\ +(like a command PROMPT $p$g).\n\ +\n\ +The prompt can also be changed by altering the PROMPT environment variable,\n\ +so the command 'SET PROMPT=text' has the same effect as 'PROMPT text'\n" + + WCMD_REM, +"A command line beginning REM (followed by a space) performs no\n\ +action, and can therefore be used as a comment in a batch file.\n" + + WCMD_REN, "REN µµ¿ò¸» \n" + WCMD_RENAME, "RENAME µµ¿ò¸»\n" + WCMD_RD, "RD µµ¿ò¸»\n" + WCMD_RMDIR, "RMDIR µµ¿ò¸»\n" + + WCMD_SET, +"SET displays or changes the wcmd environment variables.\n\ +\n\ +SET without parameters shows all of the current environment.\n\ +\n\ +To create or modify an environment variable the syntax is:\n\ +\n\ + SET =\n\ +\n\ +where and are character strings. There must be no\n\ +spaces before the equals sign, nor can the variable name\n\ +have embedded spaces.\n\ +\n\ +Under Wine, the environment of the underlying operating system is\n\ +included into the Win32 environment, there will generally therefore be\n\ +many more values than in a native Win32 implementation. Note that it is\n\ +not possible to affect the operating system environment from within wcmd.\n" + + WCMD_SHIFT, +"SHIFT is used in a batch file to remove one parameter from the head of\n\ +the list, so parameter 2 becomes parameter 1 and so on. It has no effect\n\ +if called from the command line.\n" + + WCMD_TIME, "TIME µµ¿ò¸»\n" + + WCMD_TITLE, "Sets the window title for the wcmd window, syntax TITLE [string]\n" + + WCMD_TYPE, +"TYPE copies to the console device (or elsewhere\n\ +if redirected). No check is made that the file is readable text.\n" + + WCMD_VERIFY, +"VERIFY is used to set, clear or test the verify flag. Valid forms are:\n\ +\n\ +VERIFY ON Set the flag\n\ +VERIFY OFF Clear the flag\n\ +VERIFY Displays ON or OFF as appropriate.\n\ +\n\ +The verify flag has no function in Wine.\n" + + WCMD_VER, +"VER displays the version of wcmd you are running\n" + + WCMD_VOL, "VOL µµ¿ò¸»\n" + + WCMD_EXIT, +"EXIT terminates the current command session and returns\n\ +to the operating system or shell from which you invoked wcmd.\n" + + 1000, "WCMD ³»ºÎ ¸í·Éµé:\n\ +ATTRIB\t\tµµ½º ÆÄÀÏ ¼Ó º¸¿©Áְųª ¹Ù²Ù±â\n\ +CALL\t\tI¹èÄ¡ ÆÄÀÏ ¾È¿¡¼­ ´Ù¸¥ ÆÄÀÏ ºÒ·¯¿À±â\n\ +CD (CHDIR)\tÇöÁ¦ ±âº» µð·ºÅ丮 ¹Ù²Ù±â\n\ +CLS\t\tÄÜ¼Ö È­¸é ±ú²ýÇÏ°Ô\n\ +COPY\t\tÆÄÀÏ º¹»ç\n\ +CTTY\t\tÀÔÃâ·Â ÀåÄ¡ ¹Ù²Ù±â\n\ +DATE\t\t½Ã½ºÅÛ ³¯Â¥ º¸¿©Áְųª ¹Ù²Ù±â\n\ +DEL (ERASE)\tÇϳªÀÇ ÆÄÀÏÀ̳ª ¿©·¯ ÆÄÀÏÀ» Áö¿ì±â\n\ +DIR\t\tµð·ºÅ丮 ³»¿ë º¸¿©ÁÖ±â\n\ +ECHO\t\t¹®ÀÚ¸¦ ¹Ù·Î È­¸é Ãâ·ÂÀ¸·Î º¹»ç\n\ +HELP\t\tShow brief help details on a topic\n\ +MD (MKDIR)\tÇÏÀ§ µð·ºÅ丮 ¸¸µé±â\n\ +MOVE\t\tÆÄÀÏ À̳ª ¿©·¯ ÆÄÀÏ,±×¸®°í µð·ºÅ丮 ±¸Á¶ À̵¿\n\ +PATH\t\tŽ»ö °æ·Î º¸¿©Áְųª ¼³Á¤Çϱâ\n\ +PROMPT\t\t¸í·É ÇÁ·ÒÇÁÆ® ¹Ù²Ù±â\n\ +REN (RENAME)\tÆÄÀÏ À̸§ ¹Ù²Ù±â\n\ +RD (RMDIR)\tÇÏÀ§ µð·ºÅ丮 Áö¿ì±â\n\ +SET\t\tȯ°æ º¯¼ö º¸¿©Áְųª ¹Ù²Ù±â\n\ +TIME\t\t½Ã½ºÅÛ ³¯Â¥ ¹Ù²Ù°Å³ª º¸¿©ÁÖ±â\n\ +TITLE\t\tWCMD ¼¼¼ÇÀÇ Ã¢ Á¦¸ñ ¼³Á¤ \n\ +TYPE\t\tÅؽºÆ® ÆÄÀÏÀÇ ³»¿ë º¸¿©ÁÖ±â\n\ +VER\t\tWCMD ÇöÀç ¹öÁ¯ º¸¿©ÁÖ±â\n\ +VOL\t\tµð½ºÅ© ÀåÄ¡ÀÇ ºÒ·ý ¶óº§ º¸¿©ÁÖ±â\n\ +EXIT\t\tWCMD ´Ý±â\n\n\ +Enter HELP for further information on any of the above commands\n" +} diff --git a/programs/wcmd/wcmdrc.rc b/programs/wcmd/wcmdrc.rc index 8d193cfc3a1..44ff6cfabec 100644 --- a/programs/wcmd/wcmdrc.rc +++ b/programs/wcmd/wcmdrc.rc @@ -24,6 +24,7 @@ #include "Es.rc" #include "Fr.rc" #include "Ja.rc" +#include "Ko.rc" #include "Nl.rc" #include "No.rc" #include "Pl.rc" diff --git a/programs/winecfg/Ko.rc b/programs/winecfg/Ko.rc new file mode 100644 index 00000000000..fb7ae4720d1 --- /dev/null +++ b/programs/winecfg/Ko.rc @@ -0,0 +1,202 @@ +/* + * WineCfg resources + * Korean Language Support + * + * Copyright 2002 Jaco Greeff + * Copyright 2003 Dimitrie O. Paun + * Copyright 2003-2004 Mike Hearn + * Copyright 2005 YunSong Hwang + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + */ + +LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT + +IDD_ABOUTCFG DIALOGEX 0, 0, 260, 270 +STYLE WS_CHILD +FONT 8, "MS Shell Dlg" +BEGIN + LTEXT PACKAGE_STRING,IDC_STATIC,119,17,120,8 + CONTROL IDB_WINE,IDC_STATIC,"Static",SS_BITMAP ,15,17,157,111 + LTEXT "http://www.winehq.org/",IDC_STATIC,119,31,106,8 + LTEXT "This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.", + IDC_STATIC,119,44,124,72 +END + +IDD_APPCFG DIALOG DISCARDABLE 0, 0, 260, 250 +STYLE WS_CHILD | WS_DISABLED +FONT 8, "MS Shell Dlg" +BEGIN + GROUPBOX "Ç®±×¸² ¼³Á¤ ",IDC_STATIC, 8,4,244,240 + LTEXT "Wine can mimic different Windows versions for each application. This tab is linked to the Libraries and Graphics tabs to allow you to change systemwide or per-application settings in those tabs as well.", + IDC_STATIC,15,20,227,30 + CONTROL "Ç®±×¸²",IDC_APP_LISTVIEW,"SysListView32",WS_BORDER | WS_TABSTOP | LVS_LIST | LVS_SINGLESEL | LVS_SHOWSELALWAYS, + 15,50,230,150 + PUSHBUTTON "Ç®±×¸² ´õÇϱâ(&A)...",IDC_APP_ADDAPP, 90,204,75,14 + PUSHBUTTON "Ç®±×¸² Á¦°ÅÇϱâ(&R)",IDC_APP_REMOVEAPP, 170,204,75,14 + //LTEXT "À©µµ¿ìÁî ¹öÁ¯(&W):",IDC_STATIC,16,227,58,8 + LTEXT "À©µµ¿ìÁî ¹öÁ¯(&W):",IDC_STATIC,16,227,58,8 + COMBOBOX IDC_WINVER,83,224,163,56,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP +END + +IDD_GRAPHCFG DIALOG DISCARDABLE 0, 0, 260, 250 +STYLE WS_CHILD | WS_DISABLED +FONT 8, "MS Shell Dlg" +BEGIN + LTEXT "È­¸é ÇØ»óµµ: ",IDC_STATIC,8,10,70,30 + COMBOBOX IDC_SCREEN_DEPTH,80,8,170,70,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP + + GROUPBOX " â ¼³Á¤ ",IDC_STATIC,8,25,244,110 + + CONTROL "Allow DirectX apps to stop the mouse leaving their window",IDC_DX_MOUSE_GRAB,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,15,35,230,8 + CONTROL "Enable desktop double buffering",IDC_DOUBLE_BUFFER,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,15,45,230,8 + + /* FIXME: the wording of this explanation could be a lot better */ + LTEXT "You can choose to emulate a windows desktop, where all the windows are confined to one 'virtual screen', or you can have the windows placed on your standard desktop.", + IDC_STATIC,15,73,228,28 + LTEXT "µ¥½ºÅ©Å¾ Å©±â:",IDC_DESKTOP_SIZE,15,115,44,8,WS_DISABLED + LTEXT "X",IDC_DESKTOP_BY,108,115,8,8,WS_DISABLED + CONTROL "°¡»ó µ¥½ºÅ©Å¾ Èä³»³»±â",IDC_ENABLE_DESKTOP,"Button", + BS_AUTOCHECKBOX | WS_TABSTOP,15,100,230,10 + + EDITTEXT IDC_DESKTOP_WIDTH,64,115,40,12,ES_AUTOHSCROLL | ES_NUMBER | WS_DISABLED + EDITTEXT IDC_DESKTOP_HEIGHT,117,115,40,12,ES_AUTOHSCROLL | ES_NUMBER | WS_DISABLED + + GROUPBOX " Direct3D ",IDC_STATIC,8,140,244,120 + + LTEXT "Vertex Shader Support: ",IDC_STATIC,15,150,80,30 + COMBOBOX IDC_D3D_VSHADER_MODE,100,148,150,70,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP + + CONTROL "Allow Pixel Shader (if supported by hardware)",IDC_D3D_PSHADER_MODE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,15,165,230,10 +END + +IDD_DLLCFG DIALOG DISCARDABLE 0, 0, 260, 250 +STYLE WS_CHILD | WS_DISABLED +FONT 8, "MS Shell Dlg" +BEGIN + GROUPBOX " DLL Overrides ",IDC_STATIC,8,4,244,240 + LTEXT "Dynamic Link Libraries can be specified individually to be either builtin (provided by Wine) or native (taken from Windows or provided by the application)." + ,IDC_STATIC,16,16,220,32 + LTEXT "New override for library:",IDC_STATIC,16,58,100,8 + COMBOBOX IDC_DLLCOMBO,16,68,140,14,CBS_DROPDOWN | WS_VSCROLL | WS_TABSTOP | CBS_SORT | CBS_LOWERCASE + PUSHBUTTON "´õÇϱâ(&A)",IDC_DLLS_ADDDLL, 164,68,82,13,BS_DEFPUSHBUTTON + LTEXT "Existing overrides:",IDC_STATIC,16,86,100,8 + LISTBOX IDC_DLLS_LIST,16,96,140,140,WS_BORDER | WS_TABSTOP | WS_VSCROLL + PUSHBUTTON "°íÄ¡±â(&E)",IDC_DLLS_EDITDLL,164,96,82,14 + PUSHBUTTON "Áö¿ì±â(&R)",IDC_DLLS_REMOVEDLL,164,114,82,14 +END + +IDD_LOADORDER DIALOG DISCARDABLE 80, 90, 110, 92 +STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU +CAPTION "Edit Override" +FONT 8, "MS Shell Dlg" +BEGIN + GROUPBOX " Load Order ",IDC_STATIC,8,4,94,66 + CONTROL "³»Àå(&B)(Wine)",IDC_RAD_BUILTIN,"Button", BS_AUTORADIOBUTTON | WS_GROUP,16,14,75,10 + CONTROL "³×ÀÌƼºê(&N) (Windows)",IDC_RAD_NATIVE,"Button", BS_AUTORADIOBUTTON,16,24,75,10 + CONTROL "Bui<in then Native",IDC_RAD_BUILTIN_NATIVE,"Button", BS_AUTORADIOBUTTON,16,34,75,10 + CONTROL "Nati&ve then Builtin",IDC_RAD_NATIVE_BUILTIN,"Button", BS_AUTORADIOBUTTON,16,44,75,10 + CONTROL "&Disable",IDC_RAD_DISABLE,"Button", BS_AUTORADIOBUTTON,16,54,75,10 + DEFPUSHBUTTON "È®ÀÎ",IDOK,8,74,45,14,WS_GROUP + PUSHBUTTON "Ãë¼Ò",IDCANCEL,57,74,45,14,WS_GROUP +END + +IDD_DRIVECFG DIALOG DISCARDABLE 0, 0, 260, 250 +STYLE WS_CHILD | WS_DISABLED +FONT 8, "MS Shell Dlg" +BEGIN + GROUPBOX " Drive mappings ",IDC_STATIC,8,4,244,240 + CONTROL "Listview",IDC_LIST_DRIVES,"SysListView32",LVS_REPORT | LVS_AUTOARRANGE | LVS_ALIGNLEFT | + LVS_SINGLESEL | WS_BORDER | WS_TABSTOP, 15,18,232,76 + PUSHBUTTON "´õÇϱâ(&A)...",IDC_BUTTON_ADD,15,98,37,14 + PUSHBUTTON "Áö¿ì±â(&R)",IDC_BUTTON_REMOVE,56,98,37,14 + PUSHBUTTON "ÀÚµ¿¼±ÅÃ(&D)...",IDC_BUTTON_AUTODETECT,197,98,49,14 + + /* editing drive details */ + LTEXT "°æ·Î(&P):",IDC_STATIC,15,123,20,9 + EDITTEXT IDC_EDIT_PATH,41,120,160,13,ES_AUTOHSCROLL | WS_TABSTOP + PUSHBUTTON "ã±â(&B)...",IDC_BUTTON_BROWSE_PATH,206,120,40,13 + + LTEXT "ŸÀÔ(&T):",IDC_STATIC_TYPE,15,138,21,10 + COMBOBOX IDC_COMBO_TYPE,41,135,77,60,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP + + LTEXT "Label and serial number",IDC_LABELSERIAL_STATIC,15,155,95,10 + + PUSHBUTTON "&Show Advanced",IDC_BUTTON_SHOW_HIDE_ADVANCED,186,136,60,13 + CONTROL "Autodetect &from Device:",IDC_RADIO_AUTODETECT,"Button", + BS_AUTORADIOBUTTON,15,166,93,10 + EDITTEXT IDC_EDIT_DEVICE,27,176,174,13,ES_AUTOHSCROLL + PUSHBUTTON "Bro&wse...",IDC_BUTTON_BROWSE_DEVICE,206,176,40,13 + CONTROL "&Manually Assign:",IDC_RADIO_ASSIGN,"Button", + BS_AUTORADIOBUTTON,15,195,69,10 + + LTEXT "&Label:",IDC_STATIC_LABEL,33,208,29,12 + EDITTEXT IDC_EDIT_LABEL,63,205,78,13,ES_AUTOHSCROLL | WS_TABSTOP + LTEXT "S&erial:",IDC_STATIC_SERIAL,33,225,29,12 + EDITTEXT IDC_EDIT_SERIAL,63,221,78,13,ES_AUTOHSCROLL | WS_TABSTOP + + CONTROL "¼ûÀº ÆÄÀÏ(.ÆÄÀÏ) º¸¿©ÁÖ±â",IDC_SHOW_DOT_FILES,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,8,260,230,8 +END + +IDD_AUDIOCFG DIALOG DISCARDABLE 0, 0, 260, 250 +STYLE WS_CHILD | WS_DISABLED +FONT 8, "MS Shell Dlg" +BEGIN + LTEXT "¿Àµð¿À µå¶óÀ̹ö: ",IDC_STATIC,10,20,60,8 + COMBOBOX IDC_AUDIO_DRIVER,70,18,85,85,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP + PUSHBUTTON "ÀÚµ¿°Ë»ö",IDC_AUDIO_AUTODETECT,170,20,49,14 + PUSHBUTTON "¼³Á¤",IDC_AUDIO_CONFIGURE,170,40,49,14 + PUSHBUTTON "Á¦¾îÆÇ",IDC_AUDIO_CONTROL_PANEL,170,60,49,14 + + GROUPBOX " DirectSound ",IDC_STATIC,8,75,244,120 + + LTEXT "Çϵå¿þ¾î °¡¼Ó: ",IDC_STATIC,15,85,90,10 + COMBOBOX IDC_DSOUND_HW_ACCEL,100,83,150,70,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP + CONTROL "µå¶óÀ̹ö ¾Ö¹Ä",IDC_DSOUND_DRV_EMUL,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,15,100,230,10 + +END + +IDD_APPEARANCE DIALOG DISCARDABLE 0, 0, 260, 250 +STYLE WS_CHILD | WS_DISABLED +FONT 8, "MS Shell Dlg" +BEGIN + LTEXT "Å׸¶:",IDC_STATIC,8,10,244,8 + COMBOBOX IDC_THEME_THEMECOMBO,8,18,244,14,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP + PUSHBUTTON "Å׸¶ ¼³Ä¡...",IDC_THEME_INSTALL,152,32,100,14 + LTEXT "»ö»ó:",IDC_THEME_COLORTEXT,8,48,244,8 + COMBOBOX IDC_THEME_COLORCOMBO,8,56,244,14,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP + LTEXT "Å©±â:",IDC_THEME_SIZETEXT,8,74,244,8 + COMBOBOX IDC_THEME_SIZECOMBO,8,82,244,14,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP +END + +STRINGTABLE DISCARDABLE +BEGIN + IDS_WINE_VERSION "CVS" + IDS_TAB_APPLICATIONS "Ç®±×¸²" + IDS_TAB_DLLS "¶óÀ̺귯¸®" + IDS_TAB_DRIVES "µå¶óÀ̺ê" + IDS_CHOOSE_PATH "Select the unix directory to be mapped, please." + IDS_HIDE_ADVANCED "Hide Advanced" + IDS_SHOW_ADVANCED "Show Advanced" + IDS_NOTHEME "(Å׸¶ ¾øÀ½)" + IDS_TAB_GRAPHICS "±×·¡ÇÈ" + IDS_TAB_APPEARANCE "¿Ü¾ç" + IDS_TAB_AUDIO "¿Àµð¿À" + IDS_TAB_ABOUT "Á¤º¸" + IDS_WINECFG_TITLE "Wine ¼³Á¤" + IDS_THEMEFILE "Theme files" + IDS_THEMEFILE_SELECT "Select a theme file" +END diff --git a/programs/winecfg/winecfg.rc b/programs/winecfg/winecfg.rc index 018ad0570d3..441a26e34ee 100644 --- a/programs/winecfg/winecfg.rc +++ b/programs/winecfg/winecfg.rc @@ -37,6 +37,7 @@ #include "Fr.rc" /* #include "It.rc" */ #include "Ja.rc" +#include "Ko.rc" #include "Nl.rc" #include "No.rc" /* #include "Pt.rc" */ diff --git a/programs/wineconsole/wineconsole_Ko.rc b/programs/wineconsole/wineconsole_Ko.rc new file mode 100644 index 00000000000..a09b5188daf --- /dev/null +++ b/programs/wineconsole/wineconsole_Ko.rc @@ -0,0 +1,121 @@ +/* + * Copyright 2001 Eric Pouech + * Copyright 2005 YunSong Hwang + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT + +STRINGTABLE +BEGIN +IDS_EDIT, "ÆíÁý(&E)" +IDS_DEFAULT, "Set &Defaults" +IDS_PROPERTIES, "&Properties" +IDS_MARK, "&Mark" +IDS_COPY, "º¹»ç(&C)" +IDS_PASTE, "ºÙ¿©³Ö±â(&P)" +IDS_SELECTALL, "¸ðµÎ ¼±ÅÃ(&S)" +IDS_SCROLL, "Sc&roll" +IDS_SEARCH, "ã±â(&e)" +IDS_FNT_DISPLAY, "Each character is %ld pixels wide on %ld pixels high" +IDS_FNT_PREVIEW_1, "This is a test" +IDS_FNT_PREVIEW_2, "" +IDS_DLG_TIT_DEFAULT, "Setup - Default settings" +IDS_DLG_TIT_CURRENT, "Setup - Current settings" +IDS_DLG_TIT_ERROR, "Configuration error" +IDS_DLG_ERR_SBWINSIZE, "Screen buffer size must be greater or equal to the window's one" +END + +IDD_OPTION DIALOG LOADONCALL MOVEABLE DISCARDABLE 36, 24, 140, 105 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION " ¿É¼Ç " +FONT 8, "MS Shell Dlg" +{ + GROUPBOX "Ä¿¼­ Å©±â", -1, 10, 11, 60, 44, BS_GROUPBOX + AUTORADIOBUTTON "ÀÛ°Ô(&S)", IDC_OPT_CURSOR_SMALL, 14, 23, 44, 10, WS_TABSTOP + AUTORADIOBUTTON "Áß°£(&M)", IDC_OPT_CURSOR_MEDIUM, 14, 33, 44, 10, WS_TABSTOP + AUTORADIOBUTTON "Å©°Ô(&L)", IDC_OPT_CURSOR_LARGE, 14, 43, 44, 10, WS_TABSTOP + + GROUPBOX "Control", -1, 75, 11, 125, 44, BS_GROUPBOX + LTEXT "Popup menu", -1, 79, 23, 40, 10 + AUTOCHECKBOX "&Control", IDC_OPT_CONF_CTRL, 129, 23, 60, 10, WS_TABSTOP + AUTOCHECKBOX "S&hift", IDC_OPT_CONF_SHIFT, 129, 33, 60, 10, WS_TABSTOP + LTEXT "Quick edit", -1, 79, 43, 50, 10 + AUTOCHECKBOX "&enable", IDC_OPT_QUICK_EDIT, 129, 43, 60, 10, WS_TABSTOP + + GROUPBOX "Command history", -1, 10, 57, 190, 35, BS_GROUPBOX + LTEXT "&Number of recalled commands :", -1, 14, 67, 78, 18 + EDITTEXT IDC_OPT_HIST_SIZE, 92, 69, 31, 12, WS_TABSTOP|WS_BORDER|ES_NUMBER + CONTROL "", IDC_OPT_HIST_SIZE_UD, "msctls_updown32", UDS_SETBUDDYINT|UDS_ALIGNRIGHT|UDS_AUTOBUDDY|UDS_ARROWKEYS|UDS_NOTHOUSANDS, 0, 0, 0, 0 + AUTOCHECKBOX "&Remove doubles", IDC_OPT_HIST_NODOUBLE, 130, 67, 50, 18, WS_TABSTOP|BS_MULTILINE +} + +IDD_FONT DIALOG LOADONCALL MOVEABLE DISCARDABLE 36, 24, 140, 105 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION " Font " +FONT 8, "MS Shell Dlg" +{ + LTEXT "&Font", -1, 5, 5, 24, 8 + LISTBOX IDC_FNT_LIST_FONT, 5, 18, 90, 42, LBS_SORT|WS_VSCROLL + LTEXT "&Color", -1, 100, 5, 50, 8 + CONTROL "", IDC_FNT_COLOR_FG, "WineConColorPreview", 0L, 100, 18, 48, 16 + CONTROL "", IDC_FNT_COLOR_BK, "WineConColorPreview", 0L, 100, 40, 48, 16 + LTEXT "&Size", -1, 158, 5, 40, 8 + LISTBOX IDC_FNT_LIST_SIZE, 158, 18, 40, 60, WS_VSCROLL + CONTROL "", IDC_FNT_PREVIEW, "WineConFontPreview", 0L, 5, 60, 109, 40 + LTEXT "", IDC_FNT_FONT_INFO, 128, 76, 80, 18 +} + +IDD_CONFIG DIALOG LOADONCALL MOVEABLE DISCARDABLE 36, 24, 140, 105 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION " Configuration " +FONT 8, "MS Shell Dlg" +{ + GROUPBOX "Buffer zone", -1, 10, 11, 100, 42, BS_GROUPBOX + LTEXT "&Width :", -1, 14, 25, 54, 9 + EDITTEXT IDC_CNF_SB_WIDTH, 68, 23, 36, 12, WS_TABSTOP|WS_BORDER|ES_NUMBER + CONTROL "", IDC_CNF_SB_WIDTH_UD, "msctls_updown32", UDS_SETBUDDYINT|UDS_ALIGNRIGHT|UDS_AUTOBUDDY|UDS_ARROWKEYS|UDS_NOTHOUSANDS, 0, 0, 0, 0 + LTEXT "&Height :", -1, 14, 39, 54, 9 + EDITTEXT IDC_CNF_SB_HEIGHT, 68, 37, 36, 12, WS_TABSTOP|WS_BORDER|ES_NUMBER + CONTROL "", IDC_CNF_SB_HEIGHT_UD, "msctls_updown32", UDS_SETBUDDYINT|UDS_ALIGNRIGHT|UDS_AUTOBUDDY|UDS_ARROWKEYS|UDS_NOTHOUSANDS, 0, 0, 0, 0 + + GROUPBOX "Window size", -1, 10, 55, 100, 42 + LTEXT "W&idth :", -1, 14, 69, 54, 9 + EDITTEXT IDC_CNF_WIN_WIDTH, 68, 67, 36, 12, WS_TABSTOP|WS_BORDER|ES_NUMBER + CONTROL "", IDC_CNF_WIN_WIDTH_UD, "msctls_updown32", UDS_SETBUDDYINT|UDS_ALIGNRIGHT|UDS_AUTOBUDDY|UDS_ARROWKEYS|UDS_NOTHOUSANDS, 0, 0, 0, 0 + LTEXT "H&eight :", -1, 14, 83, 54, 9 + EDITTEXT IDC_CNF_WIN_HEIGHT, 68, 81, 36, 12, WS_TABSTOP|WS_BORDER|ES_NUMBER + CONTROL "", IDC_CNF_WIN_HEIGHT_UD, "msctls_updown32", UDS_SETBUDDYINT|UDS_ALIGNRIGHT|UDS_AUTOBUDDY|UDS_ARROWKEYS|UDS_NOTHOUSANDS, 0, 0, 0, 0 + + GROUPBOX "End of program", -1, 115, 11, 80, 42, BS_GROUPBOX + AUTOCHECKBOX "&Close console", IDC_CNF_CLOSE_EXIT, 119, 25, 75, 20, WS_TABSTOP + + GROUPBOX "Edition", -1, 115, 55, 80, 42 + COMBOBOX IDC_CNF_EDITION_MODE, 119, 69, 75, 20, CBS_DROPDOWNLIST|WS_VSCROLL|WS_TABSTOP +} + +IDD_SAVE_SETTINGS DIALOG LOADONCALL MOVEABLE DISCARDABLE 20, 20, 140, 60 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION +CAPTION "Console parameters" +FONT 8, "MS Shell Dlg" +{ + GROUPBOX "", -1, 10, 10, 120, 31, BS_GROUPBOX + AUTORADIOBUTTON "Retain these settings for later sessions", IDC_SAV_SAVE, 14, 15, 110, 10, WS_TABSTOP + AUTORADIOBUTTON "Modify only current session", IDC_SAV_SESSION, 14, 27, 110, 10, WS_TABSTOP + + PUSHBUTTON "È®ÀÎ", IDOK, 20, 45, 35, 12 + PUSHBUTTON "Ãë¼Ò", IDCANCEL, 65, 45, 35, 12 +} diff --git a/programs/wineconsole/wineconsole_res.rc b/programs/wineconsole/wineconsole_res.rc index 15729cc7370..f74b930c5db 100644 --- a/programs/wineconsole/wineconsole_res.rc +++ b/programs/wineconsole/wineconsole_res.rc @@ -30,6 +30,7 @@ #include "wineconsole_De.rc" #include "wineconsole_Es.rc" #include "wineconsole_Hu.rc" +#include "wineconsole_Ko.rc" #include "wineconsole_Nl.rc" #include "wineconsole_No.rc" #include "wineconsole_Pl.rc" diff --git a/programs/winefile/Ko.rc b/programs/winefile/Ko.rc new file mode 100644 index 00000000000..a792748f5b2 --- /dev/null +++ b/programs/winefile/Ko.rc @@ -0,0 +1,265 @@ +/* + * WineFile + * Korean Language Support + * + * Copyright 2000 Martin Fuchs + * Copyright 2002 Steven Edwards + * Copyright 2002 Alexandre Julliard + * Copyright 2005 YunSong Hwang + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT + +/* Menu */ + +IDM_WINEFILE MENU FIXED IMPURE +{ + POPUP "ÆÄÀÏ(&F)" { + MENUITEM "¿­±â(&O)\OCtEnter", ID_ACTIVATE + MENUITEM "À̵¿(&M)...\tF7", ID_FILE_MOVE + MENUITEM "º¹»ç(&C)...\tF8", ID_FILE_COPY + MENUITEM "Ŭ¸³º¸µå·Î(&I)...\tF9", 118 + MENUITEM "Áö¿ì±â(&D)\tDel", ID_FILE_DELETE + MENUITEM "Re&name...", 109 + MENUITEM "Propert&ies...\tAlt+Enter", ID_EDIT_PROPERTIES + MENUITEM SEPARATOR + MENUITEM "¾ÐÃà(&o)...", 119 + MENUITEM "¾ÐÃà Ç®±â(&o)...", 120 + MENUITEM SEPARATOR + MENUITEM "&Run...", ID_EXECUTE + MENUITEM "&Print...", 102 + MENUITEM "Associate...", 103 + MENUITEM SEPARATOR + MENUITEM "Cr&eate Directory...", 111 + MENUITEM "Searc&h...", 104 + MENUITEM "&Select Files...", 116 + MENUITEM SEPARATOR +#ifndef _NO_EXTENSIONS + MENUITEM "E&xit\tAlt+X", ID_FILE_EXIT +#else + MENUITEM "E&xit", ID_FILE_EXIT +#endif + } + + POPUP "µð½ºÅ©(&D)" { + MENUITEM "&Copy Disk...", 201 + MENUITEM "&Label Disk...", 202 + MENUITEM SEPARATOR + MENUITEM "&Format Disk...", ID_FORMAT_DISK +#ifdef _WIN95 + MENUITEM "&Make System Disk...", -1 /*TODO*/ +#endif + MENUITEM SEPARATOR + MENUITEM "Connect &Network Drive", ID_CONNECT_NETWORK_DRIVE + MENUITEM "&Disconnect Network Drive", ID_DISCONNECT_NETWORK_DRIVE + MENUITEM SEPARATOR + MENUITEM "Share as...", 254 + MENUITEM "&Remove Share...", 255 + MENUITEM SEPARATOR + MENUITEM "&Select Drive...", 251 + } + + POPUP "Di&rectories" { + MENUITEM "&Next Level\t+", 301 + MENUITEM "Expand &Tree\t*", 302 + MENUITEM "Expand &all\tStrg+*", 303 + MENUITEM "Collapse &Tree\t-", 304 + MENUITEM SEPARATOR + MENUITEM "&Mark Children", 505 + } + + POPUP "&View" { + MENUITEM "T&ree and Directory", 413 + MENUITEM "Tr&ee Only", 411 + MENUITEM "Directory &Only", 412 + MENUITEM SEPARATOR + MENUITEM "Sp&lit", ID_VIEW_SPLIT + MENUITEM SEPARATOR + MENUITEM "&Name", ID_VIEW_NAME + MENUITEM "&All File Details", ID_VIEW_ALL_ATTRIBUTES, CHECKED + MENUITEM "&Partial Details...", ID_VIEW_SELECTED_ATTRIBUTES + MENUITEM SEPARATOR + MENUITEM "&Sort by Name", ID_VIEW_SORT_NAME + MENUITEM "Sort &by Type", ID_VIEW_SORT_TYPE + MENUITEM "Sort by Si&ze", ID_VIEW_SORT_SIZE + MENUITEM "Sort by &Date", ID_VIEW_SORT_DATE + MENUITEM SEPARATOR + MENUITEM "Filter by &...", ID_VIEW_FILTER + } + + POPUP "&Options" { + MENUITEM "&Confirmation...", 501 + MENUITEM "&Font...", ID_SELECT_FONT + MENUITEM "Customize Tool&bar...", 512 + MENUITEM SEPARATOR + MENUITEM "&Toolbar", ID_VIEW_TOOL_BAR, CHECKED + MENUITEM "&Drivebar", ID_VIEW_DRIVE_BAR, CHECKED + MENUITEM "&Status Bar", ID_VIEW_STATUSBAR, CHECKED +#ifndef _NO_EXTENSIONS + MENUITEM "F&ull Screen\tCtrl+Shift+S", ID_VIEW_FULLSCREEN +#endif + MENUITEM SEPARATOR + MENUITEM "&Minimize on run", 504 + MENUITEM "&Save settings on exit", 511 + } + + + POPUP "&Security" { + MENUITEM "&Access...", 605 + MENUITEM "&Logging...", 606 + MENUITEM "&Owner...", 607 + } + + POPUP "&Window" { + MENUITEM "New &Window", ID_WINDOW_NEW + MENUITEM "Cascading\tCtrl+F5", ID_WINDOW_CASCADE + MENUITEM "Tile &Horizontally", ID_WINDOW_TILE_HORZ + MENUITEM "Tile &Vertically\tCtrl+F4", ID_WINDOW_TILE_VERT +#ifndef _NO_EXTENSIONS + MENUITEM "Arrange Automatically", ID_WINDOW_AUTOSORT +#endif + MENUITEM "Arrange &Symbols", ID_WINDOW_ARRANGE + MENUITEM "&Refresh\tF5", ID_REFRESH + } + + POPUP "&Help" { + MENUITEM "&Help Topics\tF1", ID_HELP + MENUITEM "Help &Search...\tF1", ID_HELP + MENUITEM "&Using Help\tF1", ID_HELP_USING + MENUITEM SEPARATOR + MENUITEM "&Info about Winefile...", ID_ABOUT +#ifdef __WINE__ + MENUITEM "Info about &Wine...", ID_ABOUT_WINE +#endif + } +} + + +IDD_EXECUTE DIALOG FIXED IMPURE 15, 13, 210, 63 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Execute" +FONT 8, "MS Shell Dlg" +{ + CONTROL "", 101, "Static", SS_SIMPLE|SS_NOPREFIX, 3, 6, 162, 10 + CONTROL "&Command:", -1, "Static", SS_LEFTNOWORDWRAP|WS_GROUP, 3, 18, 60, 10 + EDITTEXT 201, 3, 29, 134, 12, ES_AUTOHSCROLL + CONTROL "As &Symbol", 214, "Button", BS_AUTOCHECKBOX|WS_TABSTOP,3, 45, 71, 12 + DEFPUSHBUTTON "OK", 1, 158, 6, 47, 14 + PUSHBUTTON "Cancel", 2, 158, 23, 47, 14 + PUSHBUTTON "&Help", 254, 158, 43, 47, 14 +} + +IDD_SELECT_DESTINATION DIALOG FIXED IMPURE 15, 13, 210, 63 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Select destination" +FONT 8, "MS Shell Dlg" +{ + CONTROL "", 101, "Static", SS_SIMPLE|SS_NOPREFIX, 3, 6, 162, 10 + CONTROL "&Path:", -1, "Static", SS_LEFTNOWORDWRAP|WS_GROUP, 3, 18, 60, 10 + EDITTEXT 201, 3, 29, 134, 12, ES_AUTOHSCROLL + DEFPUSHBUTTON "OK", 1, 158, 6, 47, 14 + PUSHBUTTON "Cancel", 2, 158, 23, 47, 14 + PUSHBUTTON "&Browse", 254, 158, 43, 47, 14 +} + +IDD_DIALOG_VIEW_TYPE DIALOG DISCARDABLE 15, 13, 161, 97 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "By File Type" +FONT 8, "MS Sans Serif" +BEGIN + LTEXT "&Name:",-1,7,8,22,10 + EDITTEXT IDC_VIEW_PATTERN,31,7,63,12,ES_AUTOHSCROLL + GROUPBOX "File Type",-1,7,23,87,56 + CONTROL "&Directories",IDC_VIEW_TYPE_DIRECTORIES,"Button", + BS_AUTOCHECKBOX | WS_TABSTOP,13,32,70,10 + CONTROL "&Programs",IDC_VIEW_TYPE_PROGRAMS,"Button", + BS_AUTOCHECKBOX | WS_TABSTOP,13,43,70,10 + CONTROL "Docu&ments",IDC_VIEW_TYPE_DOCUMENTS,"Button", + BS_AUTOCHECKBOX | WS_TABSTOP,13,54,70,10 + CONTROL "&Other files",IDC_VIEW_TYPE_OTHERS,"Button", + BS_AUTOCHECKBOX | WS_TABSTOP,13,65,70,10 + CONTROL "Show Hidden/&System Files",IDC_VIEW_TYPE_HIDDEN, + "Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,81,106,9 + DEFPUSHBUTTON "OK",IDOK,104,7,50,14 + PUSHBUTTON "Cancel",IDCANCEL,104,24,50,14 +END + +IDD_DIALOG_PROPERTIES DIALOG DISCARDABLE 0, 0, 248, 215 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Properties for %s" +FONT 8, "MS Sans Serif" +BEGIN + DEFPUSHBUTTON "OK",IDOK,191,7,50,14 + PUSHBUTTON "Cancel",IDCANCEL,191,29,50,14 + LTEXT "&File Name:",-1,7,7,59,9 + EDITTEXT IDC_STATIC_PROP_FILENAME,71,7,120,9,ES_READONLY | NOT WS_BORDER | WS_TABSTOP + LTEXT "Full &Path:",-1,7,18,59,9 + EDITTEXT IDC_STATIC_PROP_PATH,71,18,120,9, ES_READONLY | NOT WS_BORDER | WS_TABSTOP + LTEXT "Last Change:",-1,7,29,59,9 + EDITTEXT IDC_STATIC_PROP_LASTCHANGE,71,29,120,9,ES_READONLY | NOT WS_BORDER | WS_TABSTOP + LTEXT "Version:",-1,7,40,59,9 + EDITTEXT IDC_STATIC_PROP_VERSION,71,40,120,9,ES_READONLY | NOT WS_BORDER | WS_TABSTOP + LTEXT "Cop&yright:",-1,7,51,59,9 + EDITTEXT IDC_STATIC_PROP_COPYRIGHT,71,51,120,9,ES_READONLY | NOT WS_BORDER | WS_TABSTOP + LTEXT "Size:",-1,7,62,59,9 + EDITTEXT IDC_STATIC_PROP_SIZE,71,62,120,9,ES_READONLY | NOT WS_BORDER | WS_TABSTOP + GROUPBOX "Attributes",-1,7,79,158,46 + CONTROL "&Read Only",IDC_CHECK_READONLY,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,17,91,68,9 + CONTROL "H&idden",IDC_CHECK_HIDDEN,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,92,91,68,9 + CONTROL "&Archive",IDC_CHECK_ARCHIVE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,17,101,68,9 + CONTROL "&System",IDC_CHECK_SYSTEM,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,92,101,68,9 + CONTROL "&Compressed",IDC_CHECK_COMPRESSED,"Button", BS_AUTOCHECKBOX | WS_TABSTOP,17,111,68,9 + GROUPBOX "&Version Information",-1,7,129,234,79 + LISTBOX IDC_LIST_PROP_VERSION_TYPES,13,139,107,63,LBS_SORT | LBS_NOINTEGRALHEIGHT | WS_VSCROLL | WS_TABSTOP + EDITTEXT IDC_LIST_PROP_VERSION_VALUES,123,139,111,63,ES_MULTILINE | ES_READONLY | WS_VSCROLL +END + + +STRINGTABLE +{ + IDS_FONT_SEL_DLG_NAME "Applying font settings" + IDS_FONT_SEL_ERROR "Error while selecting new font." +} + +STRINGTABLE +{ + IDS_WINEFILE "Winefile" + IDS_ERROR "Error" + IDS_ROOT_FS "root fs" + IDS_UNIXFS "unixfs" + IDS_DESKTOP "Desktop" + IDS_SHELL "Shell" + IDS_TITLEFMT "%s - %s" + IDS_NO_IMPL "Not yet implemented" + IDS_WINE "WINE" + IDS_WINE_FILE "Wine File" +} + +STRINGTABLE +{ + IDS_COL_NAME "Name" + IDS_COL_SIZE "Size" + IDS_COL_CDATE "CDate" + IDS_COL_ADATE "ADate" + IDS_COL_MDATE "MDate" + IDS_COL_IDX "Index/Inode" + IDS_COL_LINKS "Links" + IDS_COL_ATTR "Attributes" + IDS_COL_SEC "Security" + + IDS_FREE_SPACE_FMT "%s of %s free" +} diff --git a/programs/winefile/rsrc.rc b/programs/winefile/rsrc.rc index 40cf8ca9ee4..4af570dc5da 100644 --- a/programs/winefile/rsrc.rc +++ b/programs/winefile/rsrc.rc @@ -34,6 +34,7 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL #include "Fr.rc" #include "Hu.rc" #include "It.rc" +#include "Ko.rc" #include "Nl.rc" #include "No.rc" #include "Pl.rc" diff --git a/programs/winemine/Ko.rc b/programs/winemine/Ko.rc new file mode 100644 index 00000000000..3c614d68e83 --- /dev/null +++ b/programs/winemine/Ko.rc @@ -0,0 +1,104 @@ +/* + * WineMine + * Korean Language Support + * + * Copyright 2000 Joshua Thielen + * Copyright 2003 Marcelo Duarte + * Copyright 2005 YunSong Hwang + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT + +STRINGTABLE { + IDS_APPNAME, "WineMine" + IDS_NOBODY, "¾Æ¹«°³" +} + +MENU_WINEMINE MENU DISCARDABLE +{ + POPUP "¿É¼Ç(&O)" { + MENUITEM "»õ °ÔÀÓ(&N)\tF2", IDM_NEW + MENUITEM SEPARATOR + MENUITEM "¹°À½Ç¥ Ç¥½Ã(&M)", IDM_MARKQ + MENUITEM SEPARATOR + MENUITEM "Ãʺ¸ÀÚ(&B)", IDM_BEGINNER + MENUITEM "Áß±ÞÀÚ(&A)", IDM_ADVANCED + MENUITEM "Àü¹®°¡(&E)", IDM_EXPERT + MENUITEM "»ç¿ëÀÚ Á¤ÀÇ(&C)", IDM_CUSTOM + MENUITEM SEPARATOR + MENUITEM "³ª°¡±â(&X)\tAlt+X", IDM_EXIT + } + POPUP "µµ¿ò¸»(&I)" { + MENUITEM "ÃÖ´Ü ½Ã°£(&F)", IDM_TIMES + MENUITEM "Á¤º¸(&A)", IDM_ABOUT + } +} + +DLG_TIMES DIALOG DISCARDABLE 0, 0, 160, 80 +STYLE DS_MODALFRAME | DS_3DLOOK | + WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP +CAPTION "ÃÖ´Ü ½Ã°£" +{ + GROUPBOX "ÃÖ´Ü ½Ã°£", IDIGNORE, 10, 10, 140, 45 + LTEXT "Ãʺ¸ÀÚ", IDIGNORE, 20, 20, 40, 8 + LTEXT "Áß±ÞÀÚ", IDIGNORE, 20, 30, 40, 8 + LTEXT "Àü¹®°¡", IDIGNORE, 20, 40, 40, 8 + LTEXT "999", IDC_TIME1, 70, 20, 15, 8 + LTEXT "999", IDC_TIME2, 70, 30, 15, 8 + LTEXT "999", IDC_TIME3, 70, 40, 15, 8 + LTEXT "", IDC_NAME1, 90, 20, 55, 8 + LTEXT "", IDC_NAME2, 90, 30, 55, 8 + LTEXT "", IDC_NAME3, 90, 40, 55, 8 + DEFPUSHBUTTON "È®ÀÎ", IDOK, 55, 60, 50, 15 +} + +DLG_CONGRATS DIALOG DISCARDABLE 0, 0, 160, 60 +STYLE DS_MODALFRAME | DS_3DLOOK | + WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP +CAPTION "ÃàÇÏÇÕ´Ï´Ù!" +{ + LTEXT "´ç½ÅÀÇ À̸§À» Àû¾îÁÖ¼¼¿ä", IDIGNORE, 10, 10, 150, 10 + EDITTEXT IDC_EDITNAME, 25, 20, 110, 12 + DEFPUSHBUTTON "È®ÀÎ", IDOK, 60, 40, 40, 15 +} + +DLG_CUSTOM DIALOG DISCARDABLE 0, 0, 100, 100 +STYLE DS_MODALFRAME | DS_3DLOOK | + WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP +CAPTION "»ç¿ëÀÚ Á¤ÀÇ °ÔÀÓ" +{ + LTEXT "°¡·ÎÁÙ", IDIGNORE, 5, 5, 30, 10 + LTEXT "»õ·ÎÁÙ", IDIGNORE, 5, 35, 30, 10 + LTEXT "Áö·Úµé", IDIGNORE, 5, 65, 30, 10 + EDITTEXT IDC_EDITROWS, 5, 15, 20, 12, ES_NUMBER + EDITTEXT IDC_EDITCOLS, 5, 45, 20, 12, ES_NUMBER + EDITTEXT IDC_EDITMINES, 5, 75, 20, 12, ES_NUMBER + DEFPUSHBUTTON "È®ÀÎ", IDOK, 40, 30, 50, 15 + PUSHBUTTON "Ãë¼Ò", IDCANCEL, 40, 50, 50, 15 +} + +DLG_ABOUT DIALOG DISCARDABLE 0, 0, 160, 80 +STYLE DS_MODALFRAME | DS_3DLOOK | + WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_POPUP +CAPTION "Á¤º¸" +{ + LTEXT "Winemine", IDIGNORE, 10, 10, 50, 10 + LTEXT "Copyright 2000, Joshua Thielen", IDIGNORE, 35, 25, 115, 10 + LTEXT "LGPL ¶óÀ̼¾½º¸¦ µû¸¨´Ï´Ù", IDIGNORE, 35, 35, 115, 10 + ICON "WINEMINE", IDIGNORE, 10, 25, 20, 20 + DEFPUSHBUTTON "È®ÀÎ", IDOK, 50, 60, 60, 15 +} diff --git a/programs/winemine/rsrc.rc b/programs/winemine/rsrc.rc index 7178b04459d..6d3c2751d5c 100644 --- a/programs/winemine/rsrc.rc +++ b/programs/winemine/rsrc.rc @@ -29,6 +29,7 @@ #include "Fi.rc" #include "Fr.rc" #include "It.rc" +#include "Ko.rc" #include "Nl.rc" #include "No.rc" #include "Pl.rc"