comdlg32: Implement open dropdown menu.
This commit is contained in:
parent
c9ce47c6a9
commit
c5c5163e61
|
@ -491,6 +491,11 @@ FONT 8, "MS Shell Dlg"
|
|||
WS_CLIPSIBLINGS | CBS_HASSTRINGS | CBS_DROPDOWNLIST
|
||||
|
||||
DEFPUSHBUTTON "&Open", IDOK, 350, 240, 40, 14, WS_GROUP | WS_CLIPSIBLINGS
|
||||
|
||||
/* drop-down menu for open button */
|
||||
CONTROL "#msgctxt#do not translate#6", psh1, "Button", WS_CHILD | WS_CLIPSIBLINGS | WS_GROUP | WS_TABSTOP |
|
||||
BS_CHECKBOX | BS_PUSHLIKE, 342, 240, 8, 14
|
||||
|
||||
PUSHBUTTON "Cancel", IDCANCEL, 395, 240, 40, 14, WS_CLIPSIBLINGS
|
||||
PUSHBUTTON "&Help", pshHelp, 350, 272, 40, 14, WS_CLIPSIBLINGS
|
||||
}
|
||||
|
|
|
@ -142,6 +142,9 @@ typedef struct FileDialogImpl {
|
|||
|
||||
HMENU hmenu_opendropdown;
|
||||
customctrl cctrl_opendropdown;
|
||||
HFONT hfont_opendropdown;
|
||||
BOOL opendropdown_has_selection;
|
||||
DWORD opendropdown_selection;
|
||||
|
||||
GUID client_guid;
|
||||
} FileDialogImpl;
|
||||
|
@ -293,7 +296,7 @@ static HRESULT cctrl_event_OnButtonClicked(FileDialogImpl *This, DWORD ctl_id)
|
|||
static HRESULT cctrl_event_OnItemSelected(FileDialogImpl *This, DWORD ctl_id, DWORD item_id)
|
||||
{
|
||||
events_client *cursor;
|
||||
TRACE("%p\n", This);
|
||||
TRACE("%p %i %i\n", This, ctl_id, item_id);
|
||||
|
||||
LIST_FOR_EACH_ENTRY(cursor, &This->events_clients, events_client, entry)
|
||||
{
|
||||
|
@ -703,6 +706,35 @@ static HRESULT on_default_action(FileDialogImpl *This)
|
|||
return ret;
|
||||
}
|
||||
|
||||
static void show_opendropdown(FileDialogImpl *This)
|
||||
{
|
||||
HWND open_hwnd;
|
||||
RECT open_rc;
|
||||
MSG msg;
|
||||
|
||||
open_hwnd = GetDlgItem(This->dlg_hwnd, IDOK);
|
||||
|
||||
GetWindowRect(open_hwnd, &open_rc);
|
||||
|
||||
if (TrackPopupMenu(This->hmenu_opendropdown, 0, open_rc.left, open_rc.bottom, 0, This->dlg_hwnd, NULL) &&
|
||||
PeekMessageW(&msg, This->dlg_hwnd, WM_MENUCOMMAND, WM_MENUCOMMAND, PM_REMOVE))
|
||||
{
|
||||
MENUITEMINFOW mii;
|
||||
|
||||
This->opendropdown_has_selection = TRUE;
|
||||
|
||||
mii.cbSize = sizeof(mii);
|
||||
mii.fMask = MIIM_ID;
|
||||
GetMenuItemInfoW((HMENU)msg.lParam, msg.wParam, TRUE, &mii);
|
||||
This->opendropdown_selection = mii.wID;
|
||||
|
||||
if(SUCCEEDED(on_default_action(This)))
|
||||
EndDialog(This->dlg_hwnd, S_OK);
|
||||
else
|
||||
This->opendropdown_has_selection = FALSE;
|
||||
}
|
||||
}
|
||||
|
||||
/**************************************************************************
|
||||
* Control item functions.
|
||||
*/
|
||||
|
@ -734,6 +766,19 @@ static cctrl_item* get_item(customctrl* parent, DWORD itemid, CDCONTROLSTATEF vi
|
|||
return NULL;
|
||||
}
|
||||
|
||||
static cctrl_item* get_first_item(customctrl* parent)
|
||||
{
|
||||
cctrl_item* item;
|
||||
|
||||
LIST_FOR_EACH_ENTRY(item, &parent->sub_items, cctrl_item, entry)
|
||||
{
|
||||
if ((item->cdcstate & (CDCS_VISIBLE|CDCS_ENABLED)) == (CDCS_VISIBLE|CDCS_ENABLED))
|
||||
return item;
|
||||
}
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
static HRESULT add_item(customctrl* parent, DWORD itemid, LPCWSTR label, cctrl_item** result)
|
||||
{
|
||||
cctrl_item* item;
|
||||
|
@ -1395,7 +1440,7 @@ static void update_layout(FileDialogImpl *This)
|
|||
HDWP hdwp;
|
||||
HWND hwnd;
|
||||
RECT dialog_rc;
|
||||
RECT cancel_rc, open_rc;
|
||||
RECT cancel_rc, dropdown_rc, open_rc;
|
||||
RECT filetype_rc, filename_rc, filenamelabel_rc;
|
||||
RECT toolbar_rc, ebrowser_rc, customctrls_rc;
|
||||
static const UINT vspacing = 4, hspacing = 4;
|
||||
|
@ -1432,6 +1477,28 @@ static void update_layout(FileDialogImpl *This)
|
|||
cancel_rc.bottom = cancel_rc.top + cancel_height;
|
||||
}
|
||||
|
||||
/* Open/Save dropdown */
|
||||
if(This->hmenu_opendropdown)
|
||||
{
|
||||
int dropdown_width, dropdown_height;
|
||||
hwnd = GetDlgItem(This->dlg_hwnd, psh1);
|
||||
|
||||
GetWindowRect(hwnd, &dropdown_rc);
|
||||
dropdown_width = dropdown_rc.right - dropdown_rc.left;
|
||||
dropdown_height = dropdown_rc.bottom - dropdown_rc.top;
|
||||
|
||||
dropdown_rc.left = cancel_rc.left - dropdown_width - hspacing;
|
||||
dropdown_rc.top = cancel_rc.top;
|
||||
dropdown_rc.right = dropdown_rc.left + dropdown_width;
|
||||
dropdown_rc.bottom = dropdown_rc.top + dropdown_height;
|
||||
}
|
||||
else
|
||||
{
|
||||
dropdown_rc.left = dropdown_rc.right = cancel_rc.left - hspacing;
|
||||
dropdown_rc.top = cancel_rc.top;
|
||||
dropdown_rc.bottom = cancel_rc.bottom;
|
||||
}
|
||||
|
||||
/* Open/Save button */
|
||||
hwnd = GetDlgItem(This->dlg_hwnd, IDOK);
|
||||
if(hwnd)
|
||||
|
@ -1441,8 +1508,8 @@ static void update_layout(FileDialogImpl *This)
|
|||
open_width = open_rc.right - open_rc.left;
|
||||
open_height = open_rc.bottom - open_rc.top;
|
||||
|
||||
open_rc.left = cancel_rc.left - open_width - hspacing;
|
||||
open_rc.top = cancel_rc.top;
|
||||
open_rc.left = dropdown_rc.left - open_width;
|
||||
open_rc.top = dropdown_rc.top;
|
||||
open_rc.right = open_rc.left + open_width;
|
||||
open_rc.bottom = open_rc.top + open_height;
|
||||
}
|
||||
|
@ -1553,6 +1620,10 @@ static void update_layout(FileDialogImpl *This)
|
|||
DeferWindowPos(hdwp, hwnd, NULL, open_rc.left, open_rc.top, 0, 0,
|
||||
SWP_NOZORDER | SWP_NOSIZE | SWP_NOACTIVATE);
|
||||
|
||||
if(hdwp && This->hmenu_opendropdown && (hwnd = GetDlgItem(This->dlg_hwnd, psh1)))
|
||||
DeferWindowPos(hdwp, hwnd, NULL, dropdown_rc.left, dropdown_rc.top, 0, 0,
|
||||
SWP_NOZORDER | SWP_NOSIZE | SWP_NOACTIVATE);
|
||||
|
||||
if(hdwp && (hwnd = GetDlgItem(This->dlg_hwnd, IDCANCEL)) )
|
||||
DeferWindowPos(hdwp, hwnd, NULL, cancel_rc.left, cancel_rc.top, 0, 0,
|
||||
SWP_NOZORDER | SWP_NOSIZE | SWP_NOACTIVATE);
|
||||
|
@ -1737,6 +1808,44 @@ static LRESULT on_wm_initdialog(HWND hwnd, LPARAM lParam)
|
|||
(hitem = GetDlgItem(This->dlg_hwnd, IDC_FILENAME)) )
|
||||
SendMessageW(hitem, WM_SETTEXT, 0, (LPARAM)This->set_filename);
|
||||
|
||||
if(This->hmenu_opendropdown)
|
||||
{
|
||||
RECT open_rc, dropdown_rc;
|
||||
HWND open_hwnd, dropdown_hwnd;
|
||||
LOGFONTW lfw, lfw_marlett;
|
||||
HFONT dialog_font;
|
||||
static const WCHAR marlett[] = {'M','a','r','l','e','t','t',0};
|
||||
|
||||
open_hwnd = GetDlgItem(This->dlg_hwnd, IDOK);
|
||||
dropdown_hwnd = GetDlgItem(This->dlg_hwnd, psh1);
|
||||
|
||||
/* Show dropdown button, and remove its size from the open button */
|
||||
ShowWindow(dropdown_hwnd, SW_SHOW);
|
||||
|
||||
GetWindowRect(open_hwnd, &open_rc);
|
||||
GetWindowRect(dropdown_hwnd, &dropdown_rc);
|
||||
|
||||
SetWindowPos(open_hwnd, NULL, 0, 0,
|
||||
(open_rc.right - open_rc.left) - (dropdown_rc.right - dropdown_rc.left),
|
||||
open_rc.bottom - open_rc.top, SWP_NOZORDER | SWP_NOMOVE | SWP_NOACTIVATE);
|
||||
|
||||
/* Change dropdown button font to Marlett */
|
||||
dialog_font = (HFONT)SendMessageW(dropdown_hwnd, WM_GETFONT, 0, 0);
|
||||
|
||||
GetObjectW(dialog_font, sizeof(lfw), &lfw);
|
||||
|
||||
memset(&lfw_marlett, 0, sizeof(lfw_marlett));
|
||||
lstrcpyW(lfw_marlett.lfFaceName, marlett);
|
||||
lfw_marlett.lfHeight = lfw.lfHeight;
|
||||
lfw_marlett.lfCharSet = SYMBOL_CHARSET;
|
||||
|
||||
This->hfont_opendropdown = CreateFontIndirectW(&lfw_marlett);
|
||||
|
||||
SendMessageW(dropdown_hwnd, WM_SETFONT, (LPARAM)This->hfont_opendropdown, 0);
|
||||
}
|
||||
else
|
||||
ShowWindow(GetDlgItem(This->dlg_hwnd, psh1), SW_HIDE);
|
||||
|
||||
ctrl_container_reparent(This, This->dlg_hwnd);
|
||||
init_explorerbrowser(This);
|
||||
init_toolbar(This, hwnd);
|
||||
|
@ -1781,6 +1890,9 @@ static LRESULT on_wm_destroy(FileDialogImpl *This)
|
|||
ctrl_container_reparent(This, NULL);
|
||||
This->dlg_hwnd = NULL;
|
||||
|
||||
DeleteObject(This->hfont_opendropdown);
|
||||
This->hfont_opendropdown = NULL;
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
@ -1803,6 +1915,19 @@ static LRESULT on_idcancel(FileDialogImpl *This)
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
static LRESULT on_command_opendropdown(FileDialogImpl *This, WPARAM wparam, LPARAM lparam)
|
||||
{
|
||||
if(HIWORD(wparam) == BN_CLICKED)
|
||||
{
|
||||
HWND hwnd = (HWND)lparam;
|
||||
SendMessageW(hwnd, BM_SETCHECK, BST_CHECKED, 0);
|
||||
show_opendropdown(This);
|
||||
SendMessageW(hwnd, BM_SETCHECK, BST_UNCHECKED, 0);
|
||||
}
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
static LRESULT on_browse_back(FileDialogImpl *This)
|
||||
{
|
||||
TRACE("%p\n", This);
|
||||
|
@ -1872,6 +1997,7 @@ static LRESULT on_wm_command(FileDialogImpl *This, WPARAM wparam, LPARAM lparam)
|
|||
{
|
||||
case IDOK: return on_idok(This);
|
||||
case IDCANCEL: return on_idcancel(This);
|
||||
case psh1: return on_command_opendropdown(This, wparam, lparam);
|
||||
case IDC_NAVBACK: return on_browse_back(This);
|
||||
case IDC_NAVFORWARD: return on_browse_forward(This);
|
||||
case IDC_FILETYPE: return on_command_filetype(This, wparam, lparam);
|
||||
|
@ -2021,6 +2147,7 @@ static ULONG WINAPI IFileDialog2_fnRelease(IFileDialog2 *iface)
|
|||
LocalFree(This->custom_filenamelabel);
|
||||
|
||||
DestroyMenu(This->hmenu_opendropdown);
|
||||
DeleteObject(This->hfont_opendropdown);
|
||||
|
||||
HeapFree(GetProcessHeap(), 0, This);
|
||||
}
|
||||
|
@ -2033,6 +2160,8 @@ static HRESULT WINAPI IFileDialog2_fnShow(IFileDialog2 *iface, HWND hwndOwner)
|
|||
FileDialogImpl *This = impl_from_IFileDialog2(iface);
|
||||
TRACE("%p (%p)\n", iface, hwndOwner);
|
||||
|
||||
This->opendropdown_has_selection = FALSE;
|
||||
|
||||
return create_dialog(This, hwndOwner);
|
||||
}
|
||||
|
||||
|
@ -3369,6 +3498,7 @@ static HRESULT WINAPI IFileDialogCustomize_fnEnableOpenDropDown(IFileDialogCusto
|
|||
DWORD dwIDCtl)
|
||||
{
|
||||
FileDialogImpl *This = impl_from_IFileDialogCustomize(iface);
|
||||
MENUINFO mi;
|
||||
FIXME("semi-stub - %p (%d)\n", This, dwIDCtl);
|
||||
|
||||
if (This->hmenu_opendropdown || get_cctrl(This, dwIDCtl))
|
||||
|
@ -3379,6 +3509,11 @@ static HRESULT WINAPI IFileDialogCustomize_fnEnableOpenDropDown(IFileDialogCusto
|
|||
if (!This->hmenu_opendropdown)
|
||||
return E_OUTOFMEMORY;
|
||||
|
||||
mi.cbSize = sizeof(mi);
|
||||
mi.fMask = MIM_STYLE;
|
||||
mi.dwStyle = MNS_NOTIFYBYPOS;
|
||||
SetMenuInfo(This->hmenu_opendropdown, &mi);
|
||||
|
||||
This->cctrl_opendropdown.hwnd = NULL;
|
||||
This->cctrl_opendropdown.wrapper_hwnd = NULL;
|
||||
This->cctrl_opendropdown.id = dwIDCtl;
|
||||
|
@ -3982,6 +4117,26 @@ static HRESULT WINAPI IFileDialogCustomize_fnGetSelectedControlItem(IFileDialogC
|
|||
*pdwIDItem = SendMessageW(ctrl->hwnd, CB_GETITEMDATA, index, 0);
|
||||
return S_OK;
|
||||
}
|
||||
case IDLG_CCTRL_OPENDROPDOWN:
|
||||
if (This->opendropdown_has_selection)
|
||||
{
|
||||
*pdwIDItem = This->opendropdown_selection;
|
||||
return S_OK;
|
||||
}
|
||||
else
|
||||
{
|
||||
/* Return first enabled item. */
|
||||
cctrl_item* item = get_first_item(ctrl);
|
||||
|
||||
if (item)
|
||||
{
|
||||
*pdwIDItem = item->id;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
WARN("no enabled items in open dropdown\n");
|
||||
return E_FAIL;
|
||||
}
|
||||
default:
|
||||
FIXME("Unsupported control type %d\n", ctrl->type);
|
||||
}
|
||||
|
@ -4167,6 +4322,7 @@ static HRESULT FileDialog_constructor(IUnknown *pUnkOuter, REFIID riid, void **p
|
|||
fdimpl->client_guid = GUID_NULL;
|
||||
|
||||
fdimpl->hmenu_opendropdown = NULL;
|
||||
fdimpl->hfont_opendropdown = NULL;
|
||||
|
||||
/* FIXME: The default folder setting should be restored for the
|
||||
* application if it was previously set. */
|
||||
|
|
|
@ -2085,8 +2085,8 @@ static void test_customize(void)
|
|||
}
|
||||
|
||||
hr = IFileDialogCustomize_GetSelectedControlItem(pfdc, i, &selected);
|
||||
todo_wine ok(hr == S_OK, "got 0x%08x.\n", hr);
|
||||
todo_wine ok(selected == 0, "got %d.\n", selected);
|
||||
ok(hr == S_OK, "got 0x%08x.\n", hr);
|
||||
ok(selected == 0, "got %d.\n", selected);
|
||||
|
||||
cdstate = 0xdeadbeef;
|
||||
hr = IFileDialogCustomize_GetControlItemState(pfdc, i, 0, &cdstate);
|
||||
|
|
4
po/ar.po
4
po/ar.po
|
@ -136,7 +136,7 @@ msgstr "&تثبيت"
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -340,7 +340,7 @@ msgstr "إ&عادة الضبط"
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
4
po/bg.po
4
po/bg.po
|
@ -144,7 +144,7 @@ msgstr "Инсталирай"
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -353,7 +353,7 @@ msgstr "&Възстанови"
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
4
po/ca.po
4
po/ca.po
|
@ -143,7 +143,7 @@ msgstr "&Instal·la"
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -352,7 +352,7 @@ msgstr "&Reinicia"
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
4
po/cs.po
4
po/cs.po
|
@ -141,7 +141,7 @@ msgstr "&Instalovat"
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -349,7 +349,7 @@ msgstr "&Výchozí"
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
4
po/da.po
4
po/da.po
|
@ -139,7 +139,7 @@ msgstr "&Installer"
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -357,7 +357,7 @@ msgstr "N&ulstil"
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
4
po/de.po
4
po/de.po
|
@ -142,7 +142,7 @@ msgstr "&Installieren"
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -349,7 +349,7 @@ msgstr "&Zurücksetzen"
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
4
po/el.po
4
po/el.po
|
@ -133,7 +133,7 @@ msgstr ""
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -332,7 +332,7 @@ msgstr "Ε&παναφορά"
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
4
po/en.po
4
po/en.po
|
@ -140,7 +140,7 @@ msgstr "&Install"
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -348,7 +348,7 @@ msgstr "R&eset"
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
|
@ -140,7 +140,7 @@ msgstr "&Install"
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -348,7 +348,7 @@ msgstr "R&eset"
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
4
po/eo.po
4
po/eo.po
|
@ -138,7 +138,7 @@ msgstr "&Instali"
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -339,7 +339,7 @@ msgstr "R&estarigi"
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
4
po/es.po
4
po/es.po
|
@ -141,7 +141,7 @@ msgstr "&Instalar"
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -360,7 +360,7 @@ msgstr "R&estaurar"
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
4
po/fa.po
4
po/fa.po
|
@ -133,7 +133,7 @@ msgstr ""
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -332,7 +332,7 @@ msgstr ""
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
4
po/fi.po
4
po/fi.po
|
@ -138,7 +138,7 @@ msgstr "&Asenna"
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -344,7 +344,7 @@ msgstr "&Nollaa"
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
4
po/fr.po
4
po/fr.po
|
@ -142,7 +142,7 @@ msgstr "&Installer"
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -352,7 +352,7 @@ msgstr "&Réinitialiser"
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
4
po/he.po
4
po/he.po
|
@ -146,7 +146,7 @@ msgstr "ה&תקנה"
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -353,7 +353,7 @@ msgstr "&איפוס"
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
4
po/hi.po
4
po/hi.po
|
@ -130,7 +130,7 @@ msgstr ""
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -328,7 +328,7 @@ msgstr ""
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
4
po/hr.po
4
po/hr.po
|
@ -140,7 +140,7 @@ msgstr "&Instaliraj"
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -347,7 +347,7 @@ msgstr "&Poništi"
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
4
po/hu.po
4
po/hu.po
|
@ -142,7 +142,7 @@ msgstr "&Telepítés"
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -361,7 +361,7 @@ msgstr "Alaph&elyzet"
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
4
po/it.po
4
po/it.po
|
@ -147,7 +147,7 @@ msgstr "&Installa"
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -367,7 +367,7 @@ msgstr "R&eimpostare"
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
4
po/ja.po
4
po/ja.po
|
@ -141,7 +141,7 @@ msgstr "インストール(&I)"
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -350,7 +350,7 @@ msgstr "リセット(R&)"
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
4
po/ko.po
4
po/ko.po
|
@ -139,7 +139,7 @@ msgstr "설치(&I)"
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -348,7 +348,7 @@ msgstr "재설정(&E)"
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
4
po/lt.po
4
po/lt.po
|
@ -142,7 +142,7 @@ msgstr "&Įdiegti"
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -349,7 +349,7 @@ msgstr "A&tstatyti"
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
4
po/ml.po
4
po/ml.po
|
@ -130,7 +130,7 @@ msgstr ""
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -328,7 +328,7 @@ msgstr ""
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
|
@ -141,7 +141,7 @@ msgstr "&Installer"
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -348,7 +348,7 @@ msgstr "Tilbak&estill"
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
4
po/nl.po
4
po/nl.po
|
@ -142,7 +142,7 @@ msgstr "&Installeren"
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -350,7 +350,7 @@ msgstr "&Reset"
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
4
po/or.po
4
po/or.po
|
@ -130,7 +130,7 @@ msgstr ""
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -328,7 +328,7 @@ msgstr ""
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
4
po/pa.po
4
po/pa.po
|
@ -130,7 +130,7 @@ msgstr ""
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -328,7 +328,7 @@ msgstr ""
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
4
po/pl.po
4
po/pl.po
|
@ -146,7 +146,7 @@ msgstr "Za&instaluj"
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -354,7 +354,7 @@ msgstr "Z&resetuj"
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
|
@ -141,7 +141,7 @@ msgstr "&Instalar"
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -350,7 +350,7 @@ msgstr "R&estaurar"
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
|
@ -141,7 +141,7 @@ msgstr "&Instalar"
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -350,7 +350,7 @@ msgstr "R&estaurar"
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
4
po/rm.po
4
po/rm.po
|
@ -135,7 +135,7 @@ msgstr "&Annotaziun..."
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -334,7 +334,7 @@ msgstr ""
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
4
po/ro.po
4
po/ro.po
|
@ -135,7 +135,7 @@ msgstr "&Instalează"
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -334,7 +334,7 @@ msgstr "&Resetează"
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
4
po/ru.po
4
po/ru.po
|
@ -143,7 +143,7 @@ msgstr "&Установить"
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -350,7 +350,7 @@ msgstr "С&бросить"
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
4
po/sk.po
4
po/sk.po
|
@ -147,7 +147,7 @@ msgstr "&Inštalovať"
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -367,7 +367,7 @@ msgstr "Pr&edvolené"
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
4
po/sl.po
4
po/sl.po
|
@ -146,7 +146,7 @@ msgstr "&Namesti"
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -366,7 +366,7 @@ msgstr "Po&nastavi"
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
|
@ -140,7 +140,7 @@ msgstr "&Инсталирај"
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -353,7 +353,7 @@ msgstr "&Поништи"
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
|
@ -140,7 +140,7 @@ msgstr "&Instaliraj"
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -358,7 +358,7 @@ msgstr "&Poništi"
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
4
po/sv.po
4
po/sv.po
|
@ -140,7 +140,7 @@ msgstr "&Installera"
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -347,7 +347,7 @@ msgstr "&Återställ"
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
4
po/te.po
4
po/te.po
|
@ -130,7 +130,7 @@ msgstr ""
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -328,7 +328,7 @@ msgstr ""
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
4
po/th.po
4
po/th.po
|
@ -134,7 +134,7 @@ msgstr ""
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -331,7 +331,7 @@ msgstr "แก้ออก"
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
4
po/tr.po
4
po/tr.po
|
@ -142,7 +142,7 @@ msgstr "&Kur"
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -350,7 +350,7 @@ msgstr "&Sıfırla"
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
4
po/uk.po
4
po/uk.po
|
@ -139,7 +139,7 @@ msgstr "&Встановити"
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -345,7 +345,7 @@ msgstr "&Скинути"
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
4
po/wa.po
4
po/wa.po
|
@ -137,7 +137,7 @@ msgstr "&Sicrîre..."
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -337,7 +337,7 @@ msgstr ""
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
|
@ -125,7 +125,7 @@ msgstr ""
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -321,7 +321,7 @@ msgstr ""
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
|
@ -132,7 +132,7 @@ msgstr "安装(&I)"
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -332,7 +332,7 @@ msgstr "重置(&e)"
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
|
@ -136,7 +136,7 @@ msgstr "安裝(&I)"
|
|||
#: comctl32.rc:71 comdlg32.rc:170 comdlg32.rc:192 comdlg32.rc:210
|
||||
#: comdlg32.rc:232 comdlg32.rc:262 comdlg32.rc:305 comdlg32.rc:327
|
||||
#: comdlg32.rc:347 comdlg32.rc:359 comdlg32.rc:398 comdlg32.rc:452
|
||||
#: comdlg32.rc:477 comdlg32.rc:495 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: comdlg32.rc:477 comdlg32.rc:500 credui.rc:53 cryptui.rc:264 cryptui.rc:276
|
||||
#: cryptui.rc:366 dinput.rc:47 ieframe.rc:97 inetcpl.rc:81 localui.rc:45
|
||||
#: localui.rc:58 mpr.rc:50 msacm32.rc:54 mshtml.rc:48 mshtml.rc:58
|
||||
#: msvfw32.rc:37 oledlg.rc:61 oledlg.rc:93 serialui.rc:42 setupapi.rc:42
|
||||
|
@ -337,7 +337,7 @@ msgstr "重置(&e)"
|
|||
|
||||
#: comctl32.rc:86 comdlg32.rc:171 comdlg32.rc:193 comdlg32.rc:264
|
||||
#: comdlg32.rc:328 comdlg32.rc:348 comdlg32.rc:360 comdlg32.rc:478
|
||||
#: comdlg32.rc:496 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: comdlg32.rc:501 ieframe.rc:58 msacm32.rc:52 oledlg.rc:94 shell32.rc:128
|
||||
#: clock.rc:44 notepad.rc:60 notepad.rc:119 oleview.rc:72 progman.rc:55
|
||||
#: progman.rc:108 progman.rc:126 progman.rc:144 progman.rc:160 progman.rc:184
|
||||
#: progman.rc:202 progman.rc:219 regedit.rc:79 taskmgr.rc:87 winefile.rc:82
|
||||
|
|
Loading…
Reference in New Issue