Add taskbar tooltips to the resources for localization

This commit is contained in:
David Hrdlička
2022-01-12 23:15:33 +01:00
parent cd616b407c
commit 8d0c1dec81
20 changed files with 138 additions and 5 deletions

View File

@@ -44,23 +44,23 @@ ToolBarProcedure(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
switch (idButton) {
case IDM_ACTION_PAUSE:
lpttt->lpszText = L"Pause execution";
lpttt->lpszText = MAKEINTRESOURCE(IDS_2155);
break;
case IDM_ACTION_RESET_CAD:
lpttt->lpszText = L"Press Ctrl+Alt+Delete";
lpttt->lpszText = MAKEINTRESOURCE(IDS_2156);
break;
case IDM_ACTION_CTRL_ALT_ESC:
lpttt->lpszText = L"Press Ctrl+Alt+Esc";
lpttt->lpszText = MAKEINTRESOURCE(IDS_2157);
break;
case IDM_ACTION_HRESET:
lpttt->lpszText = L"Hard reset";
lpttt->lpszText = MAKEINTRESOURCE(IDS_2158);
break;
case IDM_CONFIG:
lpttt->lpszText = L"Settings";
lpttt->lpszText = MAKEINTRESOURCE(IDS_2160);
break;
}