comdlg32: Use a ComboBoxEx control for the filename if the structure size is not the nt40 version size.

This commit is contained in:
Huw Davies 2012-09-25 12:40:19 +01:00 committed by Alexandre Julliard
parent 01a084383c
commit 7a2d68abc8
47 changed files with 434 additions and 411 deletions

View file

@ -461,6 +461,7 @@ FONT 8, "MS Shell Dlg"
LTEXT "File &name:",IDC_FILENAMESTATIC,5,112,56,16, SS_NOTIFY LTEXT "File &name:",IDC_FILENAMESTATIC,5,112,56,16, SS_NOTIFY
EDITTEXT IDC_FILENAME,63,110,150,12,ES_AUTOHSCROLL EDITTEXT IDC_FILENAME,63,110,150,12,ES_AUTOHSCROLL
CONTROL "", cmb13, "ComboBoxEx32", CBS_DROPDOWN | CBS_AUTOHSCROLL | WS_VSCROLL | WS_TABSTOP, 63,110,150,150
LTEXT "Files of &type:",IDC_FILETYPESTATIC,5,130,56,16, SS_NOTIFY LTEXT "Files of &type:",IDC_FILETYPESTATIC,5,130,56,16, SS_NOTIFY
COMBOBOX IDC_FILETYPE,63,128,150,53,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP COMBOBOX IDC_FILETYPE,63,128,150,53,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP

View file

@ -1151,8 +1151,9 @@ static LRESULT FILEDLG95_OnWMSize(HWND hwnd, WPARAM wParam)
* move to bottom */ * move to bottom */
switch( ctrlid) switch( ctrlid)
{ {
/* file name box and file types combo change also width */ /* file name (edit or comboboxex) and file types combo change also width */
case edt1: case edt1:
case cmb13:
case cmb1: case cmb1:
DeferWindowPos( hdwp, ctrl, NULL, rc.left, rc.top + chgy, DeferWindowPos( hdwp, ctrl, NULL, rc.left, rc.top + chgy,
rc.right - rc.left + chgx, rc.bottom - rc.top, rc.right - rc.left + chgx, rc.bottom - rc.top,
@ -1406,6 +1407,12 @@ INT_PTR CALLBACK FileOpenDlgProc95(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM l
} }
} }
static inline BOOL filename_is_edit( const FileOpenDlgInfos *info )
{
return (info->ofnInfos->lStructSize == OPENFILENAME_SIZE_VERSION_400W) &&
(info->ofnInfos->Flags & (OFN_ENABLEHOOK | OFN_ENABLETEMPLATE | OFN_ENABLETEMPLATEHANDLE));
}
/*********************************************************************** /***********************************************************************
* FILEDLG95_InitControls * FILEDLG95_InitControls
* *
@ -1456,8 +1463,20 @@ static LRESULT FILEDLG95_InitControls(HWND hwnd)
} }
TRACE("Running on 2000+ %d, 98+ %d\n", win2000plus, win98plus); TRACE("Running on 2000+ %d, 98+ %d\n", win2000plus, win98plus);
/* Use either the edit or the comboboxex for the filename control */
if (filename_is_edit( fodInfos ))
{
DestroyWindow( GetDlgItem( hwnd, cmb13 ) );
fodInfos->DlgInfos.hwndFileName = GetDlgItem( hwnd, edt1 );
}
else
{
DestroyWindow( GetDlgItem( hwnd, edt1 ) );
fodInfos->DlgInfos.hwndFileName = GetDlgItem( hwnd, cmb13 );
}
/* Get the hwnd of the controls */ /* Get the hwnd of the controls */
fodInfos->DlgInfos.hwndFileName = GetDlgItem(hwnd,IDC_FILENAME);
fodInfos->DlgInfos.hwndFileTypeCB = GetDlgItem(hwnd,IDC_FILETYPE); fodInfos->DlgInfos.hwndFileTypeCB = GetDlgItem(hwnd,IDC_FILETYPE);
fodInfos->DlgInfos.hwndLookInCB = GetDlgItem(hwnd,IDC_LOOKIN); fodInfos->DlgInfos.hwndLookInCB = GetDlgItem(hwnd,IDC_LOOKIN);
@ -1903,7 +1922,8 @@ static LRESULT FILEDLG95_OnWMCommand(HWND hwnd, WPARAM wParam)
FILEDLG95_SHELL_BrowseToDesktop(hwnd); FILEDLG95_SHELL_BrowseToDesktop(hwnd);
break; break;
case IDC_FILENAME: case edt1:
case cmb13:
break; break;
} }
@ -2525,7 +2545,8 @@ BOOL FILEDLG95_OnOpen(HWND hwnd)
IShellView_Refresh(fodInfos->Shell.FOIShellView); IShellView_Refresh(fodInfos->Shell.FOIShellView);
} }
COMDLG32_SHFree(pidlCurrent); COMDLG32_SHFree(pidlCurrent);
SendMessageW(fodInfos->DlgInfos.hwndFileName, EM_SETSEL, 0, -1); if (filename_is_edit( fodInfos ))
SendMessageW(fodInfos->DlgInfos.hwndFileName, EM_SETSEL, 0, -1);
} }
} }
ret = FALSE; ret = FALSE;
@ -3688,8 +3709,9 @@ void FILEDLG95_FILENAME_FillFromSelection (HWND hwnd)
} }
SetWindowTextW( fodInfos->DlgInfos.hwndFileName, lpstrAllFile ); SetWindowTextW( fodInfos->DlgInfos.hwndFileName, lpstrAllFile );
/* Select the file name like Windows does */ /* Select the file name like Windows does */
SendMessageW(fodInfos->DlgInfos.hwndFileName, EM_SETSEL, 0, -1); if (filename_is_edit( fodInfos ))
SendMessageW(fodInfos->DlgInfos.hwndFileName, EM_SETSEL, 0, -1);
} }
HeapFree(GetProcessHeap(),0, lpstrAllFile ); HeapFree(GetProcessHeap(),0, lpstrAllFile );
} }

View file

@ -133,7 +133,7 @@ msgstr ""
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -331,8 +331,8 @@ msgid "R&eset"
msgstr "" msgstr ""
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -387,7 +387,7 @@ msgstr ""
msgid "Go to today" msgid "Go to today"
msgstr "" msgstr ""
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
#, fuzzy #, fuzzy
msgid "Open" msgid "Open"
@ -793,25 +793,25 @@ msgstr ""
msgid "File &name:" msgid "File &name:"
msgstr "&مساعدة" msgstr "&مساعدة"
#: comdlg32.rc:465 #: comdlg32.rc:466
#, fuzzy #, fuzzy
msgid "Files of &type:" msgid "Files of &type:"
msgstr "&مساعدة" msgstr "&مساعدة"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "" msgstr ""
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "" msgstr ""
#: comdlg32.rc:481 #: comdlg32.rc:482
#, fuzzy #, fuzzy
msgid "File name:" msgid "File name:"
msgstr "&مساعدة" msgstr "&مساعدة"
#: comdlg32.rc:484 #: comdlg32.rc:485
#, fuzzy #, fuzzy
msgid "Files of type:" msgid "Files of type:"
msgstr "&مساعدة" msgstr "&مساعدة"

View file

@ -144,7 +144,7 @@ msgstr "Инсталирай"
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -352,8 +352,8 @@ msgid "R&eset"
msgstr "&Възстанови" msgstr "&Възстанови"
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -408,7 +408,7 @@ msgstr "Днес:"
msgid "Go to today" msgid "Go to today"
msgstr "Иди на днес" msgstr "Иди на днес"
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "Отвори" msgstr "Отвори"
@ -791,24 +791,24 @@ msgstr "М&ясто:"
msgid "File &name:" msgid "File &name:"
msgstr "&Име на файл:" msgstr "&Име на файл:"
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "&Тип файлове:" msgstr "&Тип файлове:"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "Само за &четене" msgstr "Само за &четене"
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "&Отвори" msgstr "&Отвори"
#: comdlg32.rc:481 #: comdlg32.rc:482
#, fuzzy #, fuzzy
msgid "File name:" msgid "File name:"
msgstr "&Файл" msgstr "&Файл"
#: comdlg32.rc:484 #: comdlg32.rc:485
#, fuzzy #, fuzzy
msgid "Files of type:" msgid "Files of type:"
msgstr "&Тип файлове:" msgstr "&Тип файлове:"

View file

@ -146,7 +146,7 @@ msgstr "&Instal·la"
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -365,8 +365,8 @@ msgid "R&eset"
msgstr "R&einicia" msgstr "R&einicia"
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -420,7 +420,7 @@ msgstr "Avui:"
msgid "Go to today" msgid "Go to today"
msgstr "Anar a avui" msgstr "Anar a avui"
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "Obre" msgstr "Obre"
@ -801,23 +801,23 @@ msgstr "Cerca &en:"
msgid "File &name:" msgid "File &name:"
msgstr "&Nom de fitxer:" msgstr "&Nom de fitxer:"
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "Fitxers de &tipus:" msgstr "Fitxers de &tipus:"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "Obre per només &lectura" msgstr "Obre per només &lectura"
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "&Obre" msgstr "&Obre"
#: comdlg32.rc:481 #: comdlg32.rc:482
msgid "File name:" msgid "File name:"
msgstr "Nom de fitxer:" msgstr "Nom de fitxer:"
#: comdlg32.rc:484 #: comdlg32.rc:485
msgid "Files of type:" msgid "Files of type:"
msgstr "Fitxers de tipus:" msgstr "Fitxers de tipus:"

View file

@ -140,7 +140,7 @@ msgstr "&Instalovat"
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -366,8 +366,8 @@ msgid "R&eset"
msgstr "&Výchozí" msgstr "&Výchozí"
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -426,7 +426,7 @@ msgstr "Dnes:"
msgid "Go to today" msgid "Go to today"
msgstr "Jdi na dnešek" msgstr "Jdi na dnešek"
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "Otevřít" msgstr "Otevřít"
@ -809,24 +809,24 @@ msgstr "Náh&led:"
msgid "File &name:" msgid "File &name:"
msgstr "&Název souboru:" msgstr "&Název souboru:"
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "Soubory &typu:" msgstr "Soubory &typu:"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "Otevřít jen ke čt&ení" msgstr "Otevřít jen ke čt&ení"
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "&Otevřít" msgstr "&Otevřít"
#: comdlg32.rc:481 #: comdlg32.rc:482
#, fuzzy #, fuzzy
msgid "File name:" msgid "File name:"
msgstr "&Název souboru:" msgstr "&Název souboru:"
#: comdlg32.rc:484 #: comdlg32.rc:485
#, fuzzy #, fuzzy
msgid "Files of type:" msgid "Files of type:"
msgstr "Soubory &typu:" msgstr "Soubory &typu:"

View file

@ -139,7 +139,7 @@ msgstr "&Installer"
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -356,8 +356,8 @@ msgid "R&eset"
msgstr "N&ulstil" msgstr "N&ulstil"
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -411,7 +411,7 @@ msgstr "Idag:"
msgid "Go to today" msgid "Go to today"
msgstr "Gå til i dag" msgstr "Gå til i dag"
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "Åbn" msgstr "Åbn"
@ -792,23 +792,23 @@ msgstr "Kig &i:"
msgid "File &name:" msgid "File &name:"
msgstr "&Filnavn:" msgstr "&Filnavn:"
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "Fil&type:" msgstr "Fil&type:"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "Åbn som &skrivebeskyttet" msgstr "Åbn som &skrivebeskyttet"
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "&Åbn" msgstr "&Åbn"
#: comdlg32.rc:481 #: comdlg32.rc:482
msgid "File name:" msgid "File name:"
msgstr "&Filnavn:" msgstr "&Filnavn:"
#: comdlg32.rc:484 #: comdlg32.rc:485
msgid "Files of type:" msgid "Files of type:"
msgstr "Filer af type:" msgstr "Filer af type:"

View file

@ -142,7 +142,7 @@ msgstr "&Installieren"
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -348,8 +348,8 @@ msgid "R&eset"
msgstr "&Zurücksetzen" msgstr "&Zurücksetzen"
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -403,7 +403,7 @@ msgstr "Heute:"
msgid "Go to today" msgid "Go to today"
msgstr "Gehe zu Heute" msgstr "Gehe zu Heute"
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "Öffnen" msgstr "Öffnen"
@ -784,23 +784,23 @@ msgstr "&Suche in:"
msgid "File &name:" msgid "File &name:"
msgstr "Datei&name:" msgstr "Datei&name:"
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "Datei&typen:" msgstr "Datei&typen:"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "Schreibgeschüt&zt" msgstr "Schreibgeschüt&zt"
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "&Öffnen" msgstr "&Öffnen"
#: comdlg32.rc:481 #: comdlg32.rc:482
msgid "File name:" msgid "File name:"
msgstr "Dateiname:" msgstr "Dateiname:"
#: comdlg32.rc:484 #: comdlg32.rc:485
msgid "Files of type:" msgid "Files of type:"
msgstr "Dateien vom Typ:" msgstr "Dateien vom Typ:"

View file

@ -133,7 +133,7 @@ msgstr ""
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -331,8 +331,8 @@ msgid "R&eset"
msgstr "Ε&παναφορά" msgstr "Ε&παναφορά"
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -387,7 +387,7 @@ msgstr "Σήμερα:"
msgid "Go to today" msgid "Go to today"
msgstr "Μετάβαση στα σημερινά" msgstr "Μετάβαση στα σημερινά"
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "Άνοιγμα" msgstr "Άνοιγμα"
@ -769,24 +769,24 @@ msgstr ""
msgid "File &name:" msgid "File &name:"
msgstr "Όνομα &αρχείου:" msgstr "Όνομα &αρχείου:"
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "Αρχεία του &τύπου:" msgstr "Αρχεία του &τύπου:"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "Άνοιγμα ως &μόνο-για-ανάγνωση" msgstr "Άνοιγμα ως &μόνο-για-ανάγνωση"
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "&Άνοιγμα" msgstr "&Άνοιγμα"
#: comdlg32.rc:481 #: comdlg32.rc:482
#, fuzzy #, fuzzy
msgid "File name:" msgid "File name:"
msgstr "&Περιεχόμενα" msgstr "&Περιεχόμενα"
#: comdlg32.rc:484 #: comdlg32.rc:485
#, fuzzy #, fuzzy
msgid "Files of type:" msgid "Files of type:"
msgstr "Αρχεία του &τύπου:" msgstr "Αρχεία του &τύπου:"

View file

@ -140,7 +140,7 @@ msgstr "&Install"
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -347,8 +347,8 @@ msgid "R&eset"
msgstr "R&eset" msgstr "R&eset"
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -402,7 +402,7 @@ msgstr "Today:"
msgid "Go to today" msgid "Go to today"
msgstr "Go to today" msgstr "Go to today"
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "Open" msgstr "Open"
@ -783,23 +783,23 @@ msgstr "Look &in:"
msgid "File &name:" msgid "File &name:"
msgstr "File &name:" msgstr "File &name:"
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "Files of &type:" msgstr "Files of &type:"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "Open as &read-only" msgstr "Open as &read-only"
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "&Open" msgstr "&Open"
#: comdlg32.rc:481 #: comdlg32.rc:482
msgid "File name:" msgid "File name:"
msgstr "File name:" msgstr "File name:"
#: comdlg32.rc:484 #: comdlg32.rc:485
msgid "Files of type:" msgid "Files of type:"
msgstr "Files of type:" msgstr "Files of type:"

View file

@ -140,7 +140,7 @@ msgstr "&Install"
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -347,8 +347,8 @@ msgid "R&eset"
msgstr "R&eset" msgstr "R&eset"
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -402,7 +402,7 @@ msgstr "Today:"
msgid "Go to today" msgid "Go to today"
msgstr "Go to today" msgstr "Go to today"
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "Open" msgstr "Open"
@ -783,23 +783,23 @@ msgstr "Look &in:"
msgid "File &name:" msgid "File &name:"
msgstr "File &name:" msgstr "File &name:"
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "Files of &type:" msgstr "Files of &type:"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "Open as &read-only" msgstr "Open as &read-only"
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "&Open" msgstr "&Open"
#: comdlg32.rc:481 #: comdlg32.rc:482
msgid "File name:" msgid "File name:"
msgstr "File name:" msgstr "File name:"
#: comdlg32.rc:484 #: comdlg32.rc:485
msgid "Files of type:" msgid "Files of type:"
msgstr "Files of type:" msgstr "Files of type:"

View file

@ -138,7 +138,7 @@ msgstr "&Instali"
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -338,8 +338,8 @@ msgid "R&eset"
msgstr "R&estarigi" msgstr "R&estarigi"
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -393,7 +393,7 @@ msgstr "Hodiaŭ:"
msgid "Go to today" msgid "Go to today"
msgstr "Iri a la hodiaŭa" msgstr "Iri a la hodiaŭa"
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "Malfermi" msgstr "Malfermi"
@ -774,23 +774,23 @@ msgstr "Serĉi &en:"
msgid "File &name:" msgid "File &name:"
msgstr "Dosier&nomo:" msgstr "Dosier&nomo:"
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "Dosier&speco:" msgstr "Dosier&speco:"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "Nur &legebla" msgstr "Nur &legebla"
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "&Malfermi" msgstr "&Malfermi"
#: comdlg32.rc:481 #: comdlg32.rc:482
msgid "File name:" msgid "File name:"
msgstr "Dosiernomo:" msgstr "Dosiernomo:"
#: comdlg32.rc:484 #: comdlg32.rc:485
msgid "Files of type:" msgid "Files of type:"
msgstr "Dosier&speco:" msgstr "Dosier&speco:"

View file

@ -141,7 +141,7 @@ msgstr "&Instalar"
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -359,8 +359,8 @@ msgid "R&eset"
msgstr "R&estaurar" msgstr "R&estaurar"
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -414,7 +414,7 @@ msgstr "Hoy:"
msgid "Go to today" msgid "Go to today"
msgstr "Ir a fecha de hoy" msgstr "Ir a fecha de hoy"
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "Abrir" msgstr "Abrir"
@ -795,23 +795,23 @@ msgstr "Mirar &en:"
msgid "File &name:" msgid "File &name:"
msgstr "Nombre de &archivo:" msgstr "Nombre de &archivo:"
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "&Tipo de archivo:" msgstr "&Tipo de archivo:"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "Abrir como &sólo-lectura" msgstr "Abrir como &sólo-lectura"
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "&Abrir" msgstr "&Abrir"
#: comdlg32.rc:481 #: comdlg32.rc:482
msgid "File name:" msgid "File name:"
msgstr "Nombre de archivo:" msgstr "Nombre de archivo:"
#: comdlg32.rc:484 #: comdlg32.rc:485
msgid "Files of type:" msgid "Files of type:"
msgstr "Tipo de archivo:" msgstr "Tipo de archivo:"

View file

@ -133,7 +133,7 @@ msgstr ""
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -331,8 +331,8 @@ msgid "R&eset"
msgstr "" msgstr ""
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -387,7 +387,7 @@ msgstr ""
msgid "Go to today" msgid "Go to today"
msgstr "" msgstr ""
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
#, fuzzy #, fuzzy
msgid "Open" msgid "Open"
@ -793,25 +793,25 @@ msgstr ""
msgid "File &name:" msgid "File &name:"
msgstr "&پرونده" msgstr "&پرونده"
#: comdlg32.rc:465 #: comdlg32.rc:466
#, fuzzy #, fuzzy
msgid "Files of &type:" msgid "Files of &type:"
msgstr "&پرونده" msgstr "&پرونده"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "" msgstr ""
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "" msgstr ""
#: comdlg32.rc:481 #: comdlg32.rc:482
#, fuzzy #, fuzzy
msgid "File name:" msgid "File name:"
msgstr "&پرونده" msgstr "&پرونده"
#: comdlg32.rc:484 #: comdlg32.rc:485
#, fuzzy #, fuzzy
msgid "Files of type:" msgid "Files of type:"
msgstr "&پرونده" msgstr "&پرونده"

View file

@ -138,7 +138,7 @@ msgstr "&Asenna"
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -343,8 +343,8 @@ msgid "R&eset"
msgstr "&Nollaa" msgstr "&Nollaa"
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -398,7 +398,7 @@ msgstr "Tänään:"
msgid "Go to today" msgid "Go to today"
msgstr "Mene tähän päivään" msgstr "Mene tähän päivään"
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "Avaa" msgstr "Avaa"
@ -779,23 +779,23 @@ msgstr "&Kansiosta:"
msgid "File &name:" msgid "File &name:"
msgstr "&Nimi:" msgstr "&Nimi:"
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "&Tyyppi:" msgstr "&Tyyppi:"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "Avaa vain &lukuoikeuksilla" msgstr "Avaa vain &lukuoikeuksilla"
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "&Avaa" msgstr "&Avaa"
#: comdlg32.rc:481 #: comdlg32.rc:482
msgid "File name:" msgid "File name:"
msgstr "Tiedosto:" msgstr "Tiedosto:"
#: comdlg32.rc:484 #: comdlg32.rc:485
msgid "Files of type:" msgid "Files of type:"
msgstr "Tyyppi:" msgstr "Tyyppi:"

View file

@ -142,7 +142,7 @@ msgstr "&Installer"
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -351,8 +351,8 @@ msgid "R&eset"
msgstr "&Réinitialiser" msgstr "&Réinitialiser"
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -406,7 +406,7 @@ msgstr "Aujourd'hui :"
msgid "Go to today" msgid "Go to today"
msgstr "Aller à aujourd'hui" msgstr "Aller à aujourd'hui"
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "Ouvrir" msgstr "Ouvrir"
@ -787,23 +787,23 @@ msgstr "&Rechercher dans :"
msgid "File &name:" msgid "File &name:"
msgstr "&Nom du fichier :" msgstr "&Nom du fichier :"
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "Fichiers du &type :" msgstr "Fichiers du &type :"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "&Lecture seule" msgstr "&Lecture seule"
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "&Ouvrir" msgstr "&Ouvrir"
#: comdlg32.rc:481 #: comdlg32.rc:482
msgid "File name:" msgid "File name:"
msgstr "Nom du fichier :" msgstr "Nom du fichier :"
#: comdlg32.rc:484 #: comdlg32.rc:485
msgid "Files of type:" msgid "Files of type:"
msgstr "Fichiers du type :" msgstr "Fichiers du type :"

View file

@ -146,7 +146,7 @@ msgstr "ה&תקנה"
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -352,8 +352,8 @@ msgid "R&eset"
msgstr "&איפוס" msgstr "&איפוס"
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -407,7 +407,7 @@ msgstr "היום:"
msgid "Go to today" msgid "Go to today"
msgstr "מעבר ליום הנוכחי" msgstr "מעבר ליום הנוכחי"
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "פתיחה" msgstr "פתיחה"
@ -790,24 +790,24 @@ msgstr "&חיפוש תחת:"
msgid "File &name:" msgid "File &name:"
msgstr "&שם הקובץ:" msgstr "&שם הקובץ:"
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "קבצים מ&סוג:" msgstr "קבצים מ&סוג:"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "פתיחה לקריאה &בלבד" msgstr "פתיחה לקריאה &בלבד"
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "&פתיחה" msgstr "&פתיחה"
#: comdlg32.rc:481 #: comdlg32.rc:482
#, fuzzy #, fuzzy
msgid "File name:" msgid "File name:"
msgstr "&שם הקובץ:" msgstr "&שם הקובץ:"
#: comdlg32.rc:484 #: comdlg32.rc:485
#, fuzzy #, fuzzy
msgid "Files of type:" msgid "Files of type:"
msgstr "קבצים מ&סוג:" msgstr "קבצים מ&סוג:"

View file

@ -130,7 +130,7 @@ msgstr ""
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -327,8 +327,8 @@ msgid "R&eset"
msgstr "" msgstr ""
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -382,7 +382,7 @@ msgstr ""
msgid "Go to today" msgid "Go to today"
msgstr "" msgstr ""
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "" msgstr ""
@ -769,23 +769,23 @@ msgstr ""
msgid "File &name:" msgid "File &name:"
msgstr "" msgstr ""
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "" msgstr ""
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "" msgstr ""
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "" msgstr ""
#: comdlg32.rc:481 #: comdlg32.rc:482
msgid "File name:" msgid "File name:"
msgstr "" msgstr ""
#: comdlg32.rc:484 #: comdlg32.rc:485
msgid "Files of type:" msgid "Files of type:"
msgstr "" msgstr ""

View file

@ -142,7 +142,7 @@ msgstr "&Telepítés"
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -360,8 +360,8 @@ msgid "R&eset"
msgstr "Alaph&elyzet" msgstr "Alaph&elyzet"
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -415,7 +415,7 @@ msgstr "Ma:"
msgid "Go to today" msgid "Go to today"
msgstr "Ugrás mára" msgstr "Ugrás mára"
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "Megnyitás" msgstr "Megnyitás"
@ -796,23 +796,23 @@ msgstr "H&ely:"
msgid "File &name:" msgid "File &name:"
msgstr "Fájl&név:" msgstr "Fájl&név:"
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "Fájl&típus:" msgstr "Fájl&típus:"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "Me&gnyitás csak olvashatóként" msgstr "Me&gnyitás csak olvashatóként"
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "&Megnyitás" msgstr "&Megnyitás"
#: comdlg32.rc:481 #: comdlg32.rc:482
msgid "File name:" msgid "File name:"
msgstr "Fájlnév:" msgstr "Fájlnév:"
#: comdlg32.rc:484 #: comdlg32.rc:485
msgid "Files of type:" msgid "Files of type:"
msgstr "Fájl&típus:" msgstr "Fájl&típus:"

View file

@ -147,7 +147,7 @@ msgstr "&Installa"
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -366,8 +366,8 @@ msgid "R&eset"
msgstr "R&eimpostare" msgstr "R&eimpostare"
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -421,7 +421,7 @@ msgstr "Oggi:"
msgid "Go to today" msgid "Go to today"
msgstr "Vai a oggi" msgstr "Vai a oggi"
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "Apri" msgstr "Apri"
@ -802,23 +802,23 @@ msgstr "Cerca &in:"
msgid "File &name:" msgid "File &name:"
msgstr "&Nome del file:" msgstr "&Nome del file:"
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "&Tipo del file:" msgstr "&Tipo del file:"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "Apri in &sola lettura" msgstr "Apri in &sola lettura"
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "&Apri" msgstr "&Apri"
#: comdlg32.rc:481 #: comdlg32.rc:482
msgid "File name:" msgid "File name:"
msgstr "Nome del file:" msgstr "Nome del file:"
#: comdlg32.rc:484 #: comdlg32.rc:485
msgid "Files of type:" msgid "Files of type:"
msgstr "Tipo del file:" msgstr "Tipo del file:"

View file

@ -140,7 +140,7 @@ msgstr "インストール(&I)"
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -348,8 +348,8 @@ msgid "R&eset"
msgstr "リセット(R&)" msgstr "リセット(R&)"
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -403,7 +403,7 @@ msgstr "今日:"
msgid "Go to today" msgid "Go to today"
msgstr "今日へ移動" msgstr "今日へ移動"
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "開く" msgstr "開く"
@ -784,23 +784,23 @@ msgstr "ファイルの場所(&I):"
msgid "File &name:" msgid "File &name:"
msgstr "ファイル名(&N):" msgstr "ファイル名(&N):"
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "ファイルの種類(&T):" msgstr "ファイルの種類(&T):"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "読み取り専用ファイルとして開く(&R)" msgstr "読み取り専用ファイルとして開く(&R)"
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "開く(&O)" msgstr "開く(&O)"
#: comdlg32.rc:481 #: comdlg32.rc:482
msgid "File name:" msgid "File name:"
msgstr "ファイル名:" msgstr "ファイル名:"
#: comdlg32.rc:484 #: comdlg32.rc:485
msgid "Files of type:" msgid "Files of type:"
msgstr "ファイルの種類:" msgstr "ファイルの種類:"

View file

@ -139,7 +139,7 @@ msgstr "설치(&I)"
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -347,8 +347,8 @@ msgid "R&eset"
msgstr "재설정(&E)" msgstr "재설정(&E)"
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -402,7 +402,7 @@ msgstr "오늘:"
msgid "Go to today" msgid "Go to today"
msgstr "오늘로 가기" msgstr "오늘로 가기"
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "열기" msgstr "열기"
@ -783,23 +783,23 @@ msgstr "보기(&I):"
msgid "File &name:" msgid "File &name:"
msgstr "파일 이름(&N):" msgstr "파일 이름(&N):"
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "파일 형식(&T):" msgstr "파일 형식(&T):"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "읽기 전용으로 열기(&R)" msgstr "읽기 전용으로 열기(&R)"
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "열기(&O)" msgstr "열기(&O)"
#: comdlg32.rc:481 #: comdlg32.rc:482
msgid "File name:" msgid "File name:"
msgstr "파일 이름:" msgstr "파일 이름:"
#: comdlg32.rc:484 #: comdlg32.rc:485
msgid "Files of type:" msgid "Files of type:"
msgstr "파일 형식:" msgstr "파일 형식:"

View file

@ -141,7 +141,7 @@ msgstr "&Įdiegti"
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -347,8 +347,8 @@ msgid "R&eset"
msgstr "A&tstatyti" msgstr "A&tstatyti"
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -402,7 +402,7 @@ msgstr "Šiandien:"
msgid "Go to today" msgid "Go to today"
msgstr "Eiti į šiandien" msgstr "Eiti į šiandien"
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "Atverti" msgstr "Atverti"
@ -783,23 +783,23 @@ msgstr "&Vieta:"
msgid "File &name:" msgid "File &name:"
msgstr "&Failo vardas:" msgstr "&Failo vardas:"
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "Failų &tipai:" msgstr "Failų &tipai:"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "Atverti tik &skaitymui" msgstr "Atverti tik &skaitymui"
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "&Atverti" msgstr "&Atverti"
#: comdlg32.rc:481 #: comdlg32.rc:482
msgid "File name:" msgid "File name:"
msgstr "Failo vardas:" msgstr "Failo vardas:"
#: comdlg32.rc:484 #: comdlg32.rc:485
msgid "Files of type:" msgid "Files of type:"
msgstr "Failų tipai:" msgstr "Failų tipai:"

View file

@ -130,7 +130,7 @@ msgstr ""
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -327,8 +327,8 @@ msgid "R&eset"
msgstr "" msgstr ""
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -382,7 +382,7 @@ msgstr ""
msgid "Go to today" msgid "Go to today"
msgstr "" msgstr ""
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "" msgstr ""
@ -769,23 +769,23 @@ msgstr ""
msgid "File &name:" msgid "File &name:"
msgstr "" msgstr ""
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "" msgstr ""
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "" msgstr ""
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "" msgstr ""
#: comdlg32.rc:481 #: comdlg32.rc:482
msgid "File name:" msgid "File name:"
msgstr "" msgstr ""
#: comdlg32.rc:484 #: comdlg32.rc:485
msgid "Files of type:" msgid "Files of type:"
msgstr "" msgstr ""

View file

@ -139,7 +139,7 @@ msgstr "&Installer"
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -346,8 +346,8 @@ msgid "R&eset"
msgstr "Tilbak&estill" msgstr "Tilbak&estill"
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -401,7 +401,7 @@ msgstr "Idag:"
msgid "Go to today" msgid "Go to today"
msgstr "Gå til idag" msgstr "Gå til idag"
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "Åpne" msgstr "Åpne"
@ -784,24 +784,24 @@ msgstr "Se &i:"
msgid "File &name:" msgid "File &name:"
msgstr "Fil&navn:" msgstr "Fil&navn:"
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "Fil&type:" msgstr "Fil&type:"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "Åpne som sk&rivebeskyttet" msgstr "Åpne som sk&rivebeskyttet"
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "&Åpne" msgstr "&Åpne"
#: comdlg32.rc:481 #: comdlg32.rc:482
#, fuzzy #, fuzzy
msgid "File name:" msgid "File name:"
msgstr "&Filnavn:" msgstr "&Filnavn:"
#: comdlg32.rc:484 #: comdlg32.rc:485
#, fuzzy #, fuzzy
msgid "Files of type:" msgid "Files of type:"
msgstr "Fil&type:" msgstr "Fil&type:"

View file

@ -143,7 +143,7 @@ msgstr "&Installeren"
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -362,8 +362,8 @@ msgid "R&eset"
msgstr "&Reset" msgstr "&Reset"
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -417,7 +417,7 @@ msgstr "Vandaag:"
msgid "Go to today" msgid "Go to today"
msgstr "Ga naar vandaag" msgstr "Ga naar vandaag"
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "Openen" msgstr "Openen"
@ -800,23 +800,23 @@ msgstr "&Zoeken in:"
msgid "File &name:" msgid "File &name:"
msgstr "Bestands&naam:" msgstr "Bestands&naam:"
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "Bestands&typen:" msgstr "Bestands&typen:"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "Openen met als kenmerk &Alleen-lezen" msgstr "Openen met als kenmerk &Alleen-lezen"
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "&Openen" msgstr "&Openen"
#: comdlg32.rc:481 #: comdlg32.rc:482
msgid "File name:" msgid "File name:"
msgstr "Bestandsnaam:" msgstr "Bestandsnaam:"
#: comdlg32.rc:484 #: comdlg32.rc:485
msgid "Files of type:" msgid "Files of type:"
msgstr "Bestanden van het type:" msgstr "Bestanden van het type:"

View file

@ -130,7 +130,7 @@ msgstr ""
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -327,8 +327,8 @@ msgid "R&eset"
msgstr "" msgstr ""
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -382,7 +382,7 @@ msgstr ""
msgid "Go to today" msgid "Go to today"
msgstr "" msgstr ""
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "" msgstr ""
@ -769,23 +769,23 @@ msgstr ""
msgid "File &name:" msgid "File &name:"
msgstr "" msgstr ""
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "" msgstr ""
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "" msgstr ""
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "" msgstr ""
#: comdlg32.rc:481 #: comdlg32.rc:482
msgid "File name:" msgid "File name:"
msgstr "" msgstr ""
#: comdlg32.rc:484 #: comdlg32.rc:485
msgid "Files of type:" msgid "Files of type:"
msgstr "" msgstr ""

View file

@ -130,7 +130,7 @@ msgstr ""
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -327,8 +327,8 @@ msgid "R&eset"
msgstr "" msgstr ""
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -382,7 +382,7 @@ msgstr ""
msgid "Go to today" msgid "Go to today"
msgstr "" msgstr ""
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "" msgstr ""
@ -769,23 +769,23 @@ msgstr ""
msgid "File &name:" msgid "File &name:"
msgstr "" msgstr ""
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "" msgstr ""
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "" msgstr ""
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "" msgstr ""
#: comdlg32.rc:481 #: comdlg32.rc:482
msgid "File name:" msgid "File name:"
msgstr "" msgstr ""
#: comdlg32.rc:484 #: comdlg32.rc:485
msgid "Files of type:" msgid "Files of type:"
msgstr "" msgstr ""

View file

@ -146,7 +146,7 @@ msgstr "&Zainstaluj"
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -353,8 +353,8 @@ msgid "R&eset"
msgstr "Z&resetuj" msgstr "Z&resetuj"
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -408,7 +408,7 @@ msgstr "Dziś:"
msgid "Go to today" msgid "Go to today"
msgstr "Idź do dziś" msgstr "Idź do dziś"
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "Otwórz" msgstr "Otwórz"
@ -789,23 +789,23 @@ msgstr "&Szukaj w:"
msgid "File &name:" msgid "File &name:"
msgstr "&Nazwa pliku:" msgstr "&Nazwa pliku:"
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "&Pliki typu:" msgstr "&Pliki typu:"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "Otwórz &tylko do odczytu" msgstr "Otwórz &tylko do odczytu"
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "&Otwórz" msgstr "&Otwórz"
#: comdlg32.rc:481 #: comdlg32.rc:482
msgid "File name:" msgid "File name:"
msgstr "Nazwa pliku:" msgstr "Nazwa pliku:"
#: comdlg32.rc:484 #: comdlg32.rc:485
msgid "Files of type:" msgid "Files of type:"
msgstr "Pliki typu:" msgstr "Pliki typu:"

View file

@ -141,7 +141,7 @@ msgstr "&Instalar"
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -349,8 +349,8 @@ msgid "R&eset"
msgstr "R&estaurar" msgstr "R&estaurar"
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -404,7 +404,7 @@ msgstr "Hoje:"
msgid "Go to today" msgid "Go to today"
msgstr "Ir para hoje" msgstr "Ir para hoje"
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "Abrir" msgstr "Abrir"
@ -785,23 +785,23 @@ msgstr "&Examinar:"
msgid "File &name:" msgid "File &name:"
msgstr "&Nome do arquivo:" msgstr "&Nome do arquivo:"
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "Arquivos do &tipo:" msgstr "Arquivos do &tipo:"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "Abrir como &somente-leitura" msgstr "Abrir como &somente-leitura"
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "&Abrir" msgstr "&Abrir"
#: comdlg32.rc:481 #: comdlg32.rc:482
msgid "File name:" msgid "File name:"
msgstr "Nome do arquivo:" msgstr "Nome do arquivo:"
#: comdlg32.rc:484 #: comdlg32.rc:485
msgid "Files of type:" msgid "Files of type:"
msgstr "Arquivos do tipo:" msgstr "Arquivos do tipo:"

View file

@ -146,7 +146,7 @@ msgstr "&Instalar"
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -365,8 +365,8 @@ msgid "R&eset"
msgstr "R&estaurar" msgstr "R&estaurar"
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -420,7 +420,7 @@ msgstr "Hoje:"
msgid "Go to today" msgid "Go to today"
msgstr "Ir para hoje" msgstr "Ir para hoje"
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "Abrir" msgstr "Abrir"
@ -801,23 +801,23 @@ msgstr "&Examinar:"
msgid "File &name:" msgid "File &name:"
msgstr "&Nome do ficheiro:" msgstr "&Nome do ficheiro:"
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "Ficheiros do &tipo:" msgstr "Ficheiros do &tipo:"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "Abrir como &apenas-leitura" msgstr "Abrir como &apenas-leitura"
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "&Abrir" msgstr "&Abrir"
#: comdlg32.rc:481 #: comdlg32.rc:482
msgid "File name:" msgid "File name:"
msgstr "Nome do ficheiro:" msgstr "Nome do ficheiro:"
#: comdlg32.rc:484 #: comdlg32.rc:485
msgid "Files of type:" msgid "Files of type:"
msgstr "Ficheiros do tipo:" msgstr "Ficheiros do tipo:"

View file

@ -135,7 +135,7 @@ msgstr "&Annotaziun..."
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -333,8 +333,8 @@ msgid "R&eset"
msgstr "" msgstr ""
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -389,7 +389,7 @@ msgstr ""
msgid "Go to today" msgid "Go to today"
msgstr "" msgstr ""
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
#, fuzzy #, fuzzy
msgid "Open" msgid "Open"
@ -784,25 +784,25 @@ msgstr ""
msgid "File &name:" msgid "File &name:"
msgstr "&Datoteca" msgstr "&Datoteca"
#: comdlg32.rc:465 #: comdlg32.rc:466
#, fuzzy #, fuzzy
msgid "Files of &type:" msgid "Files of &type:"
msgstr "&Datoteca" msgstr "&Datoteca"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "" msgstr ""
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "&Rivir" msgstr "&Rivir"
#: comdlg32.rc:481 #: comdlg32.rc:482
#, fuzzy #, fuzzy
msgid "File name:" msgid "File name:"
msgstr "&Datoteca" msgstr "&Datoteca"
#: comdlg32.rc:484 #: comdlg32.rc:485
#, fuzzy #, fuzzy
msgid "Files of type:" msgid "Files of type:"
msgstr "&Datoteca" msgstr "&Datoteca"

View file

@ -139,7 +139,7 @@ msgstr "&Instalează"
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -339,8 +339,8 @@ msgid "R&eset"
msgstr "&Resetează" msgstr "&Resetează"
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -394,7 +394,7 @@ msgstr "Azi:"
msgid "Go to today" msgid "Go to today"
msgstr "Mergi la Azi" msgstr "Mergi la Azi"
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "Deschide" msgstr "Deschide"
@ -775,23 +775,23 @@ msgstr "Caută &în:"
msgid "File &name:" msgid "File &name:"
msgstr "&Nume fișier:" msgstr "&Nume fișier:"
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "&Tip de fișier:" msgstr "&Tip de fișier:"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "Deschide pentru &numai-citire" msgstr "Deschide pentru &numai-citire"
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "&Deschide" msgstr "&Deschide"
#: comdlg32.rc:481 #: comdlg32.rc:482
msgid "File name:" msgid "File name:"
msgstr "Nume fișier:" msgstr "Nume fișier:"
#: comdlg32.rc:484 #: comdlg32.rc:485
msgid "Files of type:" msgid "Files of type:"
msgstr "Tip de fișier:" msgstr "Tip de fișier:"

View file

@ -142,7 +142,7 @@ msgstr "&Установить"
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -348,8 +348,8 @@ msgid "R&eset"
msgstr "С&бросить" msgstr "С&бросить"
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -403,7 +403,7 @@ msgstr "Сегодня:"
msgid "Go to today" msgid "Go to today"
msgstr "Текущая дата" msgstr "Текущая дата"
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "Открыть" msgstr "Открыть"
@ -784,23 +784,23 @@ msgstr "Искать &в:"
msgid "File &name:" msgid "File &name:"
msgstr "Имя &файла:" msgstr "Имя &файла:"
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "&Тип файлов:" msgstr "&Тип файлов:"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "Только для &чтения" msgstr "Только для &чтения"
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "&Открыть" msgstr "&Открыть"
#: comdlg32.rc:481 #: comdlg32.rc:482
msgid "File name:" msgid "File name:"
msgstr "Имя файла:" msgstr "Имя файла:"
#: comdlg32.rc:484 #: comdlg32.rc:485
msgid "Files of type:" msgid "Files of type:"
msgstr "Файлы типа:" msgstr "Файлы типа:"

View file

@ -147,7 +147,7 @@ msgstr "&Inštalovať"
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -366,8 +366,8 @@ msgid "R&eset"
msgstr "Pr&edvolené" msgstr "Pr&edvolené"
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -421,7 +421,7 @@ msgstr "Dnes:"
msgid "Go to today" msgid "Go to today"
msgstr "Choď na dnešok" msgstr "Choď na dnešok"
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "Otvoriť" msgstr "Otvoriť"
@ -802,23 +802,23 @@ msgstr "Hľadať &v:"
msgid "File &name:" msgid "File &name:"
msgstr "&Názov súboru:" msgstr "&Názov súboru:"
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "&Súbory typu:" msgstr "&Súbory typu:"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "Otvo&riť iba na čítanie" msgstr "Otvo&riť iba na čítanie"
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "&Otvoriť" msgstr "&Otvoriť"
#: comdlg32.rc:481 #: comdlg32.rc:482
msgid "File name:" msgid "File name:"
msgstr "Súbor:" msgstr "Súbor:"
#: comdlg32.rc:484 #: comdlg32.rc:485
msgid "Files of type:" msgid "Files of type:"
msgstr "Súbory typu:" msgstr "Súbory typu:"

View file

@ -146,7 +146,7 @@ msgstr "&Namesti"
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -365,8 +365,8 @@ msgid "R&eset"
msgstr "Po&nastavi" msgstr "Po&nastavi"
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -420,7 +420,7 @@ msgstr "Danes:"
msgid "Go to today" msgid "Go to today"
msgstr "Pojdi na današnji dan" msgstr "Pojdi na današnji dan"
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "Odpri" msgstr "Odpri"
@ -801,23 +801,23 @@ msgstr "&Išči v:"
msgid "File &name:" msgid "File &name:"
msgstr "Ime &datoteke:" msgstr "Ime &datoteke:"
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "Vrsta da&totek:" msgstr "Vrsta da&totek:"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "&Samo za branje" msgstr "&Samo za branje"
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "&Odpri" msgstr "&Odpri"
#: comdlg32.rc:481 #: comdlg32.rc:482
msgid "File name:" msgid "File name:"
msgstr "Ime datoteke:" msgstr "Ime datoteke:"
#: comdlg32.rc:484 #: comdlg32.rc:485
msgid "Files of type:" msgid "Files of type:"
msgstr "Vrsta datoteke:" msgstr "Vrsta datoteke:"

View file

@ -140,7 +140,7 @@ msgstr "&Инсталирај"
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -352,8 +352,8 @@ msgid "R&eset"
msgstr "&Поништи" msgstr "&Поништи"
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -408,7 +408,7 @@ msgstr "Данас:"
msgid "Go to today" msgid "Go to today"
msgstr "Пређи на данашњи дан" msgstr "Пређи на данашњи дан"
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "Отвори" msgstr "Отвори"
@ -791,24 +791,24 @@ msgstr "Потражи &у:"
msgid "File &name:" msgid "File &name:"
msgstr "Назив &датотеке:" msgstr "Назив &датотеке:"
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "Датотеке &врсте:" msgstr "Датотеке &врсте:"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "Отвори као „&само за читање“" msgstr "Отвори као „&само за читање“"
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "&Отвори" msgstr "&Отвори"
#: comdlg32.rc:481 #: comdlg32.rc:482
#, fuzzy #, fuzzy
msgid "File name:" msgid "File name:"
msgstr "&Датотека" msgstr "&Датотека"
#: comdlg32.rc:484 #: comdlg32.rc:485
#, fuzzy #, fuzzy
msgid "Files of type:" msgid "Files of type:"
msgstr "Датотеке &врсте:" msgstr "Датотеке &врсте:"

View file

@ -140,7 +140,7 @@ msgstr "&Instaliraj"
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -357,8 +357,8 @@ msgid "R&eset"
msgstr "&Poništi" msgstr "&Poništi"
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -417,7 +417,7 @@ msgstr "Danas:"
msgid "Go to today" msgid "Go to today"
msgstr "Pređi na današnji dan" msgstr "Pređi na današnji dan"
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "Otvori" msgstr "Otvori"
@ -854,7 +854,7 @@ msgstr ""
msgid "File &name:" msgid "File &name:"
msgstr "&Datoteka" msgstr "&Datoteka"
#: comdlg32.rc:465 #: comdlg32.rc:466
#, fuzzy #, fuzzy
msgid "Files of &type:" msgid "Files of &type:"
msgstr "" msgstr ""
@ -863,20 +863,20 @@ msgstr ""
"#-#-#-#-# sr_RS@latin.po (Wine) #-#-#-#-#\n" "#-#-#-#-# sr_RS@latin.po (Wine) #-#-#-#-#\n"
"&Fajl" "&Fajl"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "" msgstr ""
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "&Otvori" msgstr "&Otvori"
#: comdlg32.rc:481 #: comdlg32.rc:482
#, fuzzy #, fuzzy
msgid "File name:" msgid "File name:"
msgstr "&Datoteka" msgstr "&Datoteka"
#: comdlg32.rc:484 #: comdlg32.rc:485
#, fuzzy #, fuzzy
msgid "Files of type:" msgid "Files of type:"
msgstr "" msgstr ""

View file

@ -140,7 +140,7 @@ msgstr "&Installera"
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -346,8 +346,8 @@ msgid "R&eset"
msgstr "&Återställ" msgstr "&Återställ"
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -401,7 +401,7 @@ msgstr "Idag:"
msgid "Go to today" msgid "Go to today"
msgstr "Gå till idag" msgstr "Gå till idag"
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "Öppna" msgstr "Öppna"
@ -782,23 +782,23 @@ msgstr "Leta &i:"
msgid "File &name:" msgid "File &name:"
msgstr "Fil&namn:" msgstr "Fil&namn:"
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "&Filformat:" msgstr "&Filformat:"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "Öppna som &skrivskyddad" msgstr "Öppna som &skrivskyddad"
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "&Öppna" msgstr "&Öppna"
#: comdlg32.rc:481 #: comdlg32.rc:482
msgid "File name:" msgid "File name:"
msgstr "Filnamn:" msgstr "Filnamn:"
#: comdlg32.rc:484 #: comdlg32.rc:485
msgid "Files of type:" msgid "Files of type:"
msgstr "Filformat:" msgstr "Filformat:"

View file

@ -130,7 +130,7 @@ msgstr ""
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -327,8 +327,8 @@ msgid "R&eset"
msgstr "" msgstr ""
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -382,7 +382,7 @@ msgstr ""
msgid "Go to today" msgid "Go to today"
msgstr "" msgstr ""
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "" msgstr ""
@ -769,23 +769,23 @@ msgstr ""
msgid "File &name:" msgid "File &name:"
msgstr "" msgstr ""
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "" msgstr ""
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "" msgstr ""
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "" msgstr ""
#: comdlg32.rc:481 #: comdlg32.rc:482
msgid "File name:" msgid "File name:"
msgstr "" msgstr ""
#: comdlg32.rc:484 #: comdlg32.rc:485
msgid "Files of type:" msgid "Files of type:"
msgstr "" msgstr ""

View file

@ -134,7 +134,7 @@ msgstr ""
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -330,8 +330,8 @@ msgid "R&eset"
msgstr "แก้ออก" msgstr "แก้ออก"
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -386,7 +386,7 @@ msgstr "วันนี้:"
msgid "Go to today" msgid "Go to today"
msgstr "ไปถึงวันนี้" msgstr "ไปถึงวันนี้"
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "เปิด" msgstr "เปิด"
@ -769,24 +769,24 @@ msgstr "ดูข้างใน:"
msgid "File &name:" msgid "File &name:"
msgstr "ชื่อแฟ้ม:" msgstr "ชื่อแฟ้ม:"
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "ตัวกรอง:" msgstr "ตัวกรอง:"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "อ่านอย่างเดียว" msgstr "อ่านอย่างเดียว"
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "เปิด" msgstr "เปิด"
#: comdlg32.rc:481 #: comdlg32.rc:482
#, fuzzy #, fuzzy
msgid "File name:" msgid "File name:"
msgstr "แฟ้ม" msgstr "แฟ้ม"
#: comdlg32.rc:484 #: comdlg32.rc:485
#, fuzzy #, fuzzy
msgid "Files of type:" msgid "Files of type:"
msgstr "ตัวกรอง:" msgstr "ตัวกรอง:"

View file

@ -129,7 +129,7 @@ msgstr "&Kur"
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -330,8 +330,8 @@ msgid "R&eset"
msgstr "&Sıfırla" msgstr "&Sıfırla"
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -385,7 +385,7 @@ msgstr "Bugün:"
msgid "Go to today" msgid "Go to today"
msgstr "Bugüne git" msgstr "Bugüne git"
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "Aç" msgstr "Aç"
@ -766,23 +766,23 @@ msgstr "Bak&:"
msgid "File &name:" msgid "File &name:"
msgstr "D&osya adı:" msgstr "D&osya adı:"
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "Dosya &türü:" msgstr "Dosya &türü:"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "Salt-okunu&r aç" msgstr "Salt-okunu&r aç"
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "&Aç" msgstr "&Aç"
#: comdlg32.rc:481 #: comdlg32.rc:482
msgid "File name:" msgid "File name:"
msgstr "Dosya adı:" msgstr "Dosya adı:"
#: comdlg32.rc:484 #: comdlg32.rc:485
msgid "Files of type:" msgid "Files of type:"
msgstr "Dosya türü:" msgstr "Dosya türü:"

View file

@ -139,7 +139,7 @@ msgstr "&Встановити"
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -356,8 +356,8 @@ msgid "R&eset"
msgstr "&Скинути" msgstr "&Скинути"
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -411,7 +411,7 @@ msgstr "Сьогодні:"
msgid "Go to today" msgid "Go to today"
msgstr "Поточна дата" msgstr "Поточна дата"
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "Відкрити" msgstr "Відкрити"
@ -792,23 +792,23 @@ msgstr "Шукати &в:"
msgid "File &name:" msgid "File &name:"
msgstr "Ім'я &файлу:" msgstr "Ім'я &файлу:"
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "Файли &типу:" msgstr "Файли &типу:"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "Лише для &читання" msgstr "Лише для &читання"
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "&Відкрити" msgstr "&Відкрити"
#: comdlg32.rc:481 #: comdlg32.rc:482
msgid "File name:" msgid "File name:"
msgstr "Ім'я файлу:" msgstr "Ім'я файлу:"
#: comdlg32.rc:484 #: comdlg32.rc:485
msgid "Files of type:" msgid "Files of type:"
msgstr "Файли типу:" msgstr "Файли типу:"

View file

@ -137,7 +137,7 @@ msgstr "&Sicrîre..."
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -336,8 +336,8 @@ msgid "R&eset"
msgstr "" msgstr ""
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -393,7 +393,7 @@ msgstr ""
msgid "Go to today" msgid "Go to today"
msgstr "" msgstr ""
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "Drovî" msgstr "Drovî"
@ -788,25 +788,25 @@ msgstr ""
msgid "File &name:" msgid "File &name:"
msgstr "&Fitchî" msgstr "&Fitchî"
#: comdlg32.rc:465 #: comdlg32.rc:466
#, fuzzy #, fuzzy
msgid "Files of &type:" msgid "Files of &type:"
msgstr "Djîveye des fitchîs del sôr&te:" msgstr "Djîveye des fitchîs del sôr&te:"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "" msgstr ""
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "&Drovî" msgstr "&Drovî"
#: comdlg32.rc:481 #: comdlg32.rc:482
#, fuzzy #, fuzzy
msgid "File name:" msgid "File name:"
msgstr "&Fitchî" msgstr "&Fitchî"
#: comdlg32.rc:484 #: comdlg32.rc:485
#, fuzzy #, fuzzy
msgid "Files of type:" msgid "Files of type:"
msgstr "Djîveye des fitchîs del sôr&te:" msgstr "Djîveye des fitchîs del sôr&te:"

View file

@ -125,7 +125,7 @@ msgstr ""
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -320,8 +320,8 @@ msgid "R&eset"
msgstr "" msgstr ""
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -375,7 +375,7 @@ msgstr ""
msgid "Go to today" msgid "Go to today"
msgstr "" msgstr ""
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "" msgstr ""
@ -756,23 +756,23 @@ msgstr ""
msgid "File &name:" msgid "File &name:"
msgstr "" msgstr ""
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "" msgstr ""
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "" msgstr ""
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "" msgstr ""
#: comdlg32.rc:481 #: comdlg32.rc:482
msgid "File name:" msgid "File name:"
msgstr "" msgstr ""
#: comdlg32.rc:484 #: comdlg32.rc:485
msgid "Files of type:" msgid "Files of type:"
msgstr "" msgstr ""

View file

@ -137,7 +137,7 @@ msgstr "安装(&I)"
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -347,8 +347,8 @@ msgid "R&eset"
msgstr "重置(&e)" msgstr "重置(&e)"
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -402,7 +402,7 @@ msgstr "今天:"
msgid "Go to today" msgid "Go to today"
msgstr "转到今天" msgstr "转到今天"
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "打开" msgstr "打开"
@ -783,23 +783,23 @@ msgstr "浏览(&I):"
msgid "File &name:" msgid "File &name:"
msgstr "文件名(&N):" msgstr "文件名(&N):"
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "文件类型(&T):" msgstr "文件类型(&T):"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "以只读方式打开(&R)" msgstr "以只读方式打开(&R)"
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "打开(&O)" msgstr "打开(&O)"
#: comdlg32.rc:481 #: comdlg32.rc:482
msgid "File name:" msgid "File name:"
msgstr "文件名:" msgstr "文件名:"
#: comdlg32.rc:484 #: comdlg32.rc:485
msgid "Files of type:" msgid "Files of type:"
msgstr "文件类型:" msgstr "文件类型:"

View file

@ -136,7 +136,7 @@ msgstr "安裝(&I)"
#: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205 #: comctl32.rc:68 comdlg32.rc:165 comdlg32.rc:187 comdlg32.rc:205
#: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322 #: comdlg32.rc:227 comdlg32.rc:257 comdlg32.rc:300 comdlg32.rc:322
#: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447 #: comdlg32.rc:342 comdlg32.rc:354 comdlg32.rc:393 comdlg32.rc:447
#: comdlg32.rc:471 comdlg32.rc:489 credui.rc:50 cryptui.rc:261 cryptui.rc:273 #: comdlg32.rc:472 comdlg32.rc:490 credui.rc:50 cryptui.rc:261 cryptui.rc:273
#: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42 #: cryptui.rc:363 dinput.rc:44 ieframe.rc:94 inetcpl.rc:78 localui.rc:42
#: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56 #: localui.rc:55 mpr.rc:47 msacm32.rc:51 mshtml.rc:46 mshtml.rc:56
#: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39 #: msvfw32.rc:34 oledlg.rc:56 oledlg.rc:88 serialui.rc:39 setupapi.rc:39
@ -336,8 +336,8 @@ msgid "R&eset"
msgstr "重置(&e)" msgstr "重置(&e)"
#: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259 #: comctl32.rc:83 comdlg32.rc:166 comdlg32.rc:188 comdlg32.rc:259
#: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:472 #: comdlg32.rc:323 comdlg32.rc:343 comdlg32.rc:355 comdlg32.rc:473
#: comdlg32.rc:490 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125 #: comdlg32.rc:491 ieframe.rc:55 msacm32.rc:49 oledlg.rc:89 shell32.rc:125
#: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52 #: clock.rc:41 notepad.rc:57 notepad.rc:116 oleview.rc:69 progman.rc:52
#: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181 #: progman.rc:105 progman.rc:123 progman.rc:141 progman.rc:157 progman.rc:181
#: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79 #: progman.rc:199 progman.rc:216 regedit.rc:76 taskmgr.rc:87 winefile.rc:79
@ -391,7 +391,7 @@ msgstr "今天:"
msgid "Go to today" msgid "Go to today"
msgstr "轉到今天" msgstr "轉到今天"
#: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:478 #: comdlg32.rc:151 comdlg32.rc:164 comdlg32.rc:453 comdlg32.rc:479
#: shell32.rc:164 oleview.rc:99 #: shell32.rc:164 oleview.rc:99
msgid "Open" msgid "Open"
msgstr "開啟" msgstr "開啟"
@ -772,23 +772,23 @@ msgstr "搜尋位置(&I)"
msgid "File &name:" msgid "File &name:"
msgstr "檔案名稱(&N)" msgstr "檔案名稱(&N)"
#: comdlg32.rc:465 #: comdlg32.rc:466
msgid "Files of &type:" msgid "Files of &type:"
msgstr "檔案類型(&T)" msgstr "檔案類型(&T)"
#: comdlg32.rc:468 #: comdlg32.rc:469
msgid "Open as &read-only" msgid "Open as &read-only"
msgstr "開啟成唯讀(&R)" msgstr "開啟成唯讀(&R)"
#: comdlg32.rc:470 comdlg32.rc:488 shdoclc.rc:124 shell32.rc:96 #: comdlg32.rc:471 comdlg32.rc:489 shdoclc.rc:124 shell32.rc:96
msgid "&Open" msgid "&Open"
msgstr "開啟(&O)" msgstr "開啟(&O)"
#: comdlg32.rc:481 #: comdlg32.rc:482
msgid "File name:" msgid "File name:"
msgstr "檔案名稱:" msgstr "檔案名稱:"
#: comdlg32.rc:484 #: comdlg32.rc:485
msgid "Files of type:" msgid "Files of type:"
msgstr "檔案類型:" msgstr "檔案類型:"