Index: base/applications/cmdutils/reg/lang/pl-PL.rc =================================================================== --- base/applications/cmdutils/reg/lang/pl-PL.rc (revision 68871) +++ base/applications/cmdutils/reg/lang/pl-PL.rc (working copy) @@ -11,7 +11,7 @@ STRING_INVALID_CMDLINE, "Błąd: Niewłaściwe parametry wiersza poleceń\n" STRING_NO_REMOTE, "Błąd: Nie można dodać kluczy do zdalnej maszyny\n" STRING_CANNOT_FIND, "Błąd: System nie mógł znaleźć podanej wartości lub klucza rejestru\n" - STRING_ERROR, "Unexpected error: " - STRING_UNSUPPORTED_TYPE, "Error: Unsupported type\n" - STRING_INVALID_DWORD, "Error: /d must be positive number\n" + STRING_ERROR, "Nieoczekiwany błąd: " + STRING_UNSUPPORTED_TYPE, "Błąd: Nieobsługiwany typ\n" + STRING_INVALID_DWORD, "Błąd: /d musi być liczbą dodatnią\n" } Index: dll/shellext/deskadp/lang/pl-PL.rc =================================================================== --- dll/shellext/deskadp/lang/pl-PL.rc (revision 68871) +++ dll/shellext/deskadp/lang/pl-PL.rc (working copy) @@ -44,7 +44,7 @@ STRINGTABLE BEGIN - IDS_MODEFMT "%d by %d, %s, %s" + IDS_MODEFMT "%d przez %d, %s, %s" IDS_DEFREFRESHRATE "Odświeżanie domyślne" IDES_REFRESHRATEFMT "%d Herców" IDS_4BPP "16 kolorów" Index: lib/3rdparty/libwin-iconv/readme.txt =================================================================== --- lib/3rdparty/libwin-iconv/readme.txt (revision 68871) +++ lib/3rdparty/libwin-iconv/readme.txt (working copy) @@ -13,8 +13,8 @@ (only available when USE_LIBICONV_DLL is defined at compile time) Win32 API does not support strict encoding conversion for some codepage. -And MLang function drop or replace invalid bytes and does not return -useful error status as iconv. This implementation cannot be used for +And MLang function drops or replaces invalid bytes and does not return +useful error status as iconv does. This implementation cannot be used for encoding validation purpose. Yukihiro Nakadaira Index: lib/3rdparty/libwin-iconv/win_iconv.c =================================================================== --- lib/3rdparty/libwin-iconv/win_iconv.c (revision 68871) +++ lib/3rdparty/libwin-iconv/win_iconv.c (working copy) @@ -129,7 +129,7 @@ #if defined(USE_LIBICONV_DLL) static int libiconv_iconv_open(rec_iconv_t *cd, const char *tocode, const char *fromcode); static PVOID MyImageDirectoryEntryToData(LPVOID Base, BOOLEAN MappedAsImage, USHORT DirectoryEntry, PULONG Size); -static HMODULE find_imported_module_by_funcname(HMODULE hModule, const char *funcname); +static FARPROC find_imported_function(HMODULE hModule, const char *funcname); static HMODULE hwiniconv; #endif @@ -1093,7 +1093,7 @@ /* * Check if codepage is one those for which the lpUsedDefaultChar * parameter to WideCharToMultiByte() must be NULL. The docs in - * Platform SDK for for Windows Server 2003 R2 claims that this is the + * Platform SDK for Windows Server 2003 R2 claims that this is the * list below, while the MSDN docs for MSVS2008 claim that it is only * for 65000 (UTF-7) and 65001 (UTF-8). This time the earlier Platform * SDK seems to be correct, at least for XP. @@ -1147,7 +1147,6 @@ libiconv_iconv_open(rec_iconv_t *cd, const char *tocode, const char *fromcode) { HMODULE hlibiconv = NULL; - HMODULE hmsvcrt = NULL; char *dllname; const char *p; const char *e; @@ -1189,10 +1188,6 @@ if (hlibiconv == NULL) goto failed; - hmsvcrt = find_imported_module_by_funcname(hlibiconv, "_errno"); - if (hmsvcrt == NULL) - goto failed; - _iconv_open = (f_iconv_open)GetProcAddressA(hlibiconv, "libiconv_open"); if (_iconv_open == NULL) _iconv_open = (f_iconv_open)GetProcAddressA(hlibiconv, "iconv_open"); @@ -1202,7 +1197,7 @@ cd->iconv = (f_iconv)GetProcAddressA(hlibiconv, "libiconv"); if (cd->iconv == NULL) cd->iconv = (f_iconv)GetProcAddressA(hlibiconv, "iconv"); - cd->_errno = (f_errno)GetProcAddressA(hmsvcrt, "_errno"); + cd->_errno = (f_errno)find_imported_function(hlibiconv, "_errno"); if (_iconv_open == NULL || cd->iconv_close == NULL || cd->iconv == NULL || cd->_errno == NULL) goto failed; @@ -1217,7 +1212,6 @@ failed: if (hlibiconv != NULL) FreeLibrary(hlibiconv); - /* do not free hmsvcrt which is obtained by GetModuleHandle() */ return FALSE; } @@ -1247,12 +1241,13 @@ return (PVOID)((LPBYTE)Base + p->VirtualAddress); } -static HMODULE -find_imported_module_by_funcname(HMODULE hModule, const char *funcname) +static FARPROC +find_imported_function(HMODULE hModule, const char *funcname) { DWORD_PTR Base; ULONG Size; PIMAGE_IMPORT_DESCRIPTOR Imp; + PIMAGE_THUNK_DATA Address; /* Import Address Table */ PIMAGE_THUNK_DATA Name; /* Import Name Table */ PIMAGE_IMPORT_BY_NAME ImpName; @@ -1266,8 +1261,9 @@ return NULL; for ( ; Imp->OriginalFirstThunk != 0; ++Imp) { + Address = (PIMAGE_THUNK_DATA)(Base + Imp->FirstThunk); Name = (PIMAGE_THUNK_DATA)(Base + Imp->OriginalFirstThunk); - for ( ; Name->u1.Ordinal != 0; ++Name) + for ( ; Name->u1.Ordinal != 0; ++Name, ++Address) { if (!IMAGE_SNAP_BY_ORDINAL(Name->u1.Ordinal)) { @@ -1274,7 +1270,7 @@ ImpName = (PIMAGE_IMPORT_BY_NAME) (Base + (DWORD_PTR)Name->u1.AddressOfData); if (strcmp((char *)ImpName->Name, funcname) == 0) - return GetModuleHandleA((char *)(Base + Imp->Name)); + return (FARPROC)Address->u1.Function; } } } Index: media/doc/3rd Party Files.txt =================================================================== --- media/doc/3rd Party Files.txt (revision 68871) +++ media/doc/3rd Party Files.txt (working copy) @@ -8,7 +8,7 @@ Title: DejaVu Fonts Used Version: 2.35 -Website: http://dejavu.sourceforge.net +Website: http://dejavu-fonts.org/ Title: Ubuntu Fonts Used Version: 0.80 @@ -71,8 +71,8 @@ Website: http://stlport.sourceforge.net/ Title: win-iconv -Used Version: r44 -Website: https://code.google.com/p/win-iconv/ +Used Version: 2015-08-05 +Website: https://github.com/win-iconv/win-iconv Title: libjpeg Used Version: 9a