71 lines
2.1 KiB
Plaintext
71 lines
2.1 KiB
Plaintext
/*
|
|
* Help Viewer
|
|
*
|
|
* Copyright 1996 Ulrich Schmid
|
|
* Copyright 2002 Sylvain Petreolle <spetreolle@yahoo.fr>
|
|
*
|
|
* 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
|
|
*/
|
|
|
|
/* Menu */
|
|
|
|
MAIN_MENU MENU LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT
|
|
{
|
|
POPUP "파일(&F)" {
|
|
MENUITEM "열기(&O)...", MNID_FILE_OPEN
|
|
MENUITEM SEPARATOR
|
|
MENUITEM "인쇄(&P)", MNID_FILE_PRINT
|
|
MENUITEM "프린터 설정(&S)...", MNID_FILE_SETUP
|
|
MENUITEM SEPARATOR
|
|
MENUITEM "종료(&E)", MNID_FILE_EXIT
|
|
}
|
|
POPUP "편집(&E)" {
|
|
MENUITEM "복사(&C)...", MNID_EDIT_COPYDLG
|
|
MENUITEM SEPARATOR
|
|
MENUITEM "주석(&A)...", MNID_EDIT_ANNOTATE
|
|
}
|
|
POPUP "책갈피(&B)" {
|
|
MENUITEM "정의(&D)...", MNID_BKMK_DEFINE
|
|
}
|
|
POPUP "도움말(&H)" {
|
|
MENUITEM "도움말 사용법(&O)", MNID_HELP_HELPON
|
|
MENUITEM "항상 위(&T)", MNID_HELP_HELPTOP
|
|
MENUITEM SEPARATOR
|
|
MENUITEM "정보(&I)...", MNID_HELP_ABOUT
|
|
#ifdef WINELIB
|
|
MENUITEM "와인에 관하여(&A)", MNID_HELP_WINE
|
|
#endif
|
|
}
|
|
}
|
|
|
|
/* Strings */
|
|
|
|
STRINGTABLE DISCARDABLE LANGUAGE LANG_KOREAN, SUBLANG_DEFAULT
|
|
{
|
|
STID_WINE_HELP, "와인 도움말"
|
|
STID_WHERROR, "오류"
|
|
STID_WARNING, "경고"
|
|
STID_INFO, "정보"
|
|
STID_NOT_IMPLEMENTED, "구현되지 않았음"
|
|
STID_HLPFILE_ERROR_s, "도움말 파일 `%s'를 읽는 도중 오류 발생"
|
|
STID_CONTENTS, "목차(&C)"
|
|
STID_SEARCH, "찾기(&S)"
|
|
STID_BACK, "뒤로(&B)"
|
|
STID_HISTORY, "히스토리(&H)"
|
|
STID_TOPICS, "&Topics"
|
|
STID_ALL_FILES, "모든 파일 (*.*)"
|
|
STID_HELP_FILES_HLP, "도움말 파일 (*.hlp)"
|
|
}
|