mirror of
https://github.com/reactos/reactos.git
synced 2024-10-30 11:35:58 +00:00
4cbe7697a1
svn path=/trunk/; revision=33144
174 lines
5.3 KiB
Plaintext
174 lines
5.3 KiB
Plaintext
/*
|
|
* WineCalc (id-ID.rc)
|
|
*
|
|
* Copyright 2007 Zaenal Mutaqin (ade999@gmail.com)
|
|
*
|
|
* 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
|
|
*/
|
|
|
|
#include "windows.h"
|
|
#include "resource.h"
|
|
#include "winecalc.h"
|
|
|
|
LANGUAGE LANG_INDONESIAN, SUBLANG_DEFAULT
|
|
|
|
STRINGTABLE DISCARDABLE
|
|
BEGIN
|
|
IDS_APPNAME, "Kalkulator"
|
|
|
|
IDS_COPYRIGHT1, "Kalkulator 5.0. Dilisensi di bawah LGPL 2"
|
|
IDS_COPYRIGHT2 "Hak Cipta 2003, James Briggs"
|
|
IDS_COPYRIGHT3 "San Jose, California, USA"
|
|
IDS_COPYRIGHT4 "james@ActionMessage.com"
|
|
IDS_COPYRIGHT5 "http://www.ActionMessage.com/winecalc/"
|
|
|
|
IDS_BTN_BACKSPACE, "Backspace"
|
|
IDS_BTN_CLEAR_ENTRY, "CE"
|
|
IDS_BTN_CLEAR_ALL, "C"
|
|
IDS_BTN_MEM_CLEAR, "MC"
|
|
IDS_BTN_MEM_RECALL, "MR"
|
|
IDS_BTN_MEM_STORE, "MS"
|
|
IDS_BTN_MEM_PLUS, "M+"
|
|
IDS_BTN_MEM_STATUS_M, "M"
|
|
IDS_BTN_SQRT, "sqrt"
|
|
IDS_BTN_DEGREES, "Degrees"
|
|
IDS_BTN_RADIANS, "Radians"
|
|
IDS_BTN_GRADS, "Grads"
|
|
IDS_BTN_SHRT_HEX "Hex"
|
|
IDS_BTN_SHRT_DEC "Dec"
|
|
IDS_BTN_SHRT_OCT "Oct"
|
|
IDS_BTN_SHRT_BIN "Bin"
|
|
IDS_ERR_INVALID_INPUT, "Input untuk fungsi tidak benar."
|
|
IDS_ERR_DIVIDE_BY_ZERO, "Tidak bisa membagi dengan nol."
|
|
IDS_ERR_UNDEFINED, "Hasil fungsi tidak terdefinisikan."
|
|
END
|
|
|
|
MAIN_MENU MENU DISCARDABLE
|
|
BEGIN
|
|
POPUP "&Edit"
|
|
BEGIN
|
|
MENUITEM "&Copy Ctrl+C", IDM_COPY
|
|
MENUITEM "&Paste Ctrl+V", IDM_PASTE
|
|
END
|
|
POPUP "&Lihat"
|
|
BEGIN
|
|
MENUITEM "Standar", IDM_MODE_STANDARD
|
|
MENUITEM "Sains", IDM_MODE_SCIENTIFIC
|
|
MENUITEM SEPARATOR
|
|
MENUITEM "Pengelompokan Digit", IDM_DIGIT_GROUPING
|
|
END
|
|
POPUP "&Bantuan"
|
|
BEGIN
|
|
MENUITEM "Topik Bantuan", IDM_HELP_TOPICS
|
|
MENUITEM SEPARATOR
|
|
MENUITEM "Tentang Kalkulator", IDM_ABOUT
|
|
END
|
|
END
|
|
|
|
SCIMS_MENU MENU DISCARDABLE
|
|
BEGIN
|
|
POPUP "&Edit"
|
|
BEGIN
|
|
MENUITEM "&Copy Ctrl+C", IDM_COPY
|
|
MENUITEM "&Paste Ctrl+V", IDM_PASTE
|
|
END
|
|
POPUP "&Lihat"
|
|
BEGIN
|
|
MENUITEM "Standar", IDM_MODE_STANDARD
|
|
MENUITEM "Sains", IDM_MODE_SCIENTIFIC
|
|
MENUITEM SEPARATOR
|
|
MENUITEM "Heksa\tF5", ID_CALC_NS_HEX
|
|
MENUITEM "Desimal\tF6", ID_CALC_NS_DEC
|
|
MENUITEM "Oktal\tF7", ID_CALC_NS_OCT
|
|
MENUITEM "Biner\tF8", ID_CALC_NS_BIN
|
|
MENUITEM SEPARATOR
|
|
MENUITEM "Derajat\tF2", ID_CALC_MS_DEGREES
|
|
MENUITEM "Radian\tF3", ID_CALC_MS_RADIANS
|
|
MENUITEM "Grads\tF4", ID_CALC_MS_GRADS
|
|
MENUITEM SEPARATOR
|
|
MENUITEM "Pengelompokan Digit", IDM_DIGIT_GROUPING
|
|
END
|
|
POPUP "&Bantuan"
|
|
BEGIN
|
|
MENUITEM "Topik Bantuan", IDM_HELP_TOPICS
|
|
MENUITEM SEPARATOR
|
|
MENUITEM "Tentang Kalkulator", IDM_ABOUT
|
|
END
|
|
END
|
|
|
|
SCIWS_MENU MENU DISCARDABLE
|
|
BEGIN
|
|
POPUP "&Edit"
|
|
BEGIN
|
|
MENUITEM "&Copy Ctrl+C", IDM_COPY
|
|
MENUITEM "&Paste Ctrl+V", IDM_PASTE
|
|
END
|
|
POPUP "&Lihat"
|
|
BEGIN
|
|
MENUITEM "Standar", IDM_MODE_STANDARD
|
|
MENUITEM "Sains", IDM_MODE_SCIENTIFIC
|
|
MENUITEM SEPARATOR
|
|
MENUITEM "Heksa\tF5", ID_CALC_NS_HEX
|
|
MENUITEM "Desimal\tF6", ID_CALC_NS_DEC
|
|
MENUITEM "Oktal\tF7", ID_CALC_NS_OCT
|
|
MENUITEM "Biner\tF8", ID_CALC_NS_BIN
|
|
MENUITEM SEPARATOR
|
|
MENUITEM "Qword\tF12", ID_CALC_WS_QWORD
|
|
MENUITEM "Dword\tF2", ID_CALC_WS_DWORD
|
|
MENUITEM "Word\tF3", ID_CALC_WS_WORD
|
|
MENUITEM "Byte\tF4", ID_CALC_WS_BYTE
|
|
MENUITEM SEPARATOR
|
|
MENUITEM "Pengelompokan Digit", IDM_DIGIT_GROUPING
|
|
END
|
|
POPUP "&Bantuan"
|
|
BEGIN
|
|
MENUITEM "Topik Bantuan", IDM_HELP_TOPICS
|
|
MENUITEM SEPARATOR
|
|
MENUITEM "Tentang Kalkulator", IDM_ABOUT
|
|
END
|
|
END
|
|
|
|
MAIN_MENU ACCELERATORS
|
|
BEGIN
|
|
VK_F1, IDV_HELP, VIRTKEY
|
|
END
|
|
|
|
DLG_ABOUT DIALOGEX 12,0,175,90
|
|
CAPTION "Tentang GNU WineCalc"
|
|
FONT 8, "MS Shell Dlg"
|
|
STYLE DS_MODALFRAME | DS_SHELLFONT | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
|
BEGIN
|
|
DEFPUSHBUTTON "OK", IDOK, 73, 70, 30, 14, WS_CHILD | WS_VISIBLE | WS_TABSTOP
|
|
END
|
|
|
|
WHATS_THIS_MENU MENU DISCARDABLE
|
|
BEGIN
|
|
POPUP ""
|
|
BEGIN
|
|
MENUITEM "Apa Ini?", IDM_WHATS_THIS
|
|
END
|
|
END
|
|
|
|
DLG_STATS DIALOGEX 12,0,145,85
|
|
CAPTION "Kotak Statistik"
|
|
FONT 8, "MS Shell Dlg"
|
|
STYLE DS_MODALFRAME | DS_SHELLFONT | WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_VISIBLE
|
|
BEGIN
|
|
DEFPUSHBUTTON "&RET", ID_STATS_RET, 4, 52, 30, 13, WS_TABSTOP | WS_GROUP
|
|
PUSHBUTTON "&LOAD", ID_STATS_LOAD, 39, 52, 30, 13, WS_TABSTOP | WS_GROUP
|
|
PUSHBUTTON "&CD" ID_STATS_CD, 74, 52, 30, 13, WS_TABSTOP | WS_GROUP
|
|
PUSHBUTTON "C&AD", ID_STATS_CAD, 109, 52, 30, 13, WS_TABSTOP | WS_GROUP
|
|
END
|