mireado

korean translation

...@@ -280,19 +280,19 @@ LRESULT CALLBACK EditCmdProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lPar ...@@ -280,19 +280,19 @@ LRESULT CALLBACK EditCmdProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lPar
280 280
281 void CreateButtons(HWND hWnd) 281 void CreateButtons(HWND hWnd)
282 { 282 {
283 - hwndProcess = CreateWindow(L"Button", L"Process", WS_CHILD | WS_VISIBLE, 283 + hwndProcess = CreateWindow(L"Button", L"프로세스", WS_CHILD | WS_VISIBLE,
284 0, 0, 0, 0, hWnd, 0, hIns, NULL); 284 0, 0, 0, 0, hWnd, 0, hIns, NULL);
285 - hwndOption = CreateWindow(L"Button", L"Option", WS_CHILD | WS_VISIBLE, 285 + hwndOption = CreateWindow(L"Button", L"옵션", WS_CHILD | WS_VISIBLE,
286 0, 0, 0, 0, hWnd, 0, hIns, NULL); 286 0, 0, 0, 0, hWnd, 0, hIns, NULL);
287 - hwndClear = CreateWindow(L"Button", L"Clear", WS_CHILD | WS_VISIBLE, 287 + hwndClear = CreateWindow(L"Button", L"지우기", WS_CHILD | WS_VISIBLE,
288 0, 0, 0, 0, hWnd, 0, hIns, NULL); 288 0, 0, 0, 0, hWnd, 0, hIns, NULL);
289 - hwndSave = CreateWindow(L"Button", L"Save", WS_CHILD | WS_VISIBLE, 289 + hwndSave = CreateWindow(L"Button", L"저장", WS_CHILD | WS_VISIBLE,
290 0, 0, 0, 0, hWnd, 0, hIns, NULL); 290 0, 0, 0, 0, hWnd, 0, hIns, NULL);
291 - hwndRemoveLink = CreateWindow(L"Button", L"Unlink", WS_CHILD | WS_VISIBLE, 291 + hwndRemoveLink = CreateWindow(L"Button", L"링크해제", WS_CHILD | WS_VISIBLE,
292 0, 0, 0, 0, hWnd, 0, hIns, NULL); 292 0, 0, 0, 0, hWnd, 0, hIns, NULL);
293 - hwndRemoveHook = CreateWindow(L"Button", L"Unhook", WS_CHILD | WS_VISIBLE, 293 + hwndRemoveHook = CreateWindow(L"Button", L"후킹해제", WS_CHILD | WS_VISIBLE,
294 0, 0, 0, 0, hWnd, 0, hIns, NULL); 294 0, 0, 0, 0, hWnd, 0, hIns, NULL);
295 - hwndTop = CreateWindow(L"Button", L"Top", WS_CHILD | WS_VISIBLE | BS_PUSHLIKE | BS_CHECKBOX, 295 + hwndTop = CreateWindow(L"Button", L"항상위", WS_CHILD | WS_VISIBLE | BS_PUSHLIKE | BS_CHECKBOX,
296 0, 0, 0, 0, hWnd, 0, hIns, NULL); 296 0, 0, 0, 0, hWnd, 0, hIns, NULL);
297 hwndProcessComboBox = CreateWindow(L"ComboBox", NULL, 297 hwndProcessComboBox = CreateWindow(L"ComboBox", NULL,
298 WS_CHILD | WS_VISIBLE | CBS_DROPDOWNLIST | 298 WS_CHILD | WS_VISIBLE | CBS_DROPDOWNLIST |
......