diff --git a/harbour/ChangeLog b/harbour/ChangeLog index c5a7321d37..5ee83513b7 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,19 @@ past entries belonging to these authors: Viktor Szakats. */ +2009-05-18 09:57 UTC+0200 Viktor Szakats (harbour.01 syenar hu) + * contrib/rddsql/sddmy/mysqldd.c + * contrib/rddsql/sddpg/pgsqldd.c + * contrib/rddsql/sddfb/fbirddd.c + * contrib/rddsql/sddodbc/odbcdd.c + % Minor opt. + + * utils/hbmk2/hbmk2.hu_HU.po + * Updated. + + * utils/hbmk2/hbmk2.prg + * Minor updates (help text). + 2009-05-18 08:38 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * utils/hbmk2/hbmk2.prg + Added -map support for djgpp. (untested) diff --git a/harbour/contrib/rddsql/sddfb/fbirddd.c b/harbour/contrib/rddsql/sddfb/fbirddd.c index b336795b37..8943d75ce9 100644 --- a/harbour/contrib/rddsql/sddfb/fbirddd.c +++ b/harbour/contrib/rddsql/sddfb/fbirddd.c @@ -356,7 +356,7 @@ static HB_ERRCODE fbOpen( SQLBASEAREAP pArea ) } case HB_FT_MEMO: - pItem = hb_itemPutC( NULL, "" ); + pItem = hb_itemPutC( NULL, NULL ); break; case HB_FT_INTEGER: @@ -376,7 +376,7 @@ static HB_ERRCODE fbOpen( SQLBASEAREAP pArea ) break; case HB_FT_DATE: - pItem = hb_itemPutDS( NULL, "" ); + pItem = hb_itemPutDS( NULL, NULL ); break; default: @@ -443,8 +443,8 @@ static HB_ERRCODE fbClose( SQLBASEAREAP pArea ) { isc_stmt_handle stmt = ( isc_stmt_handle ) pArea->pStmt; - /* We can not pass here ( isc_stmt_handle* ) &pArea->pStmt. - It will not work on 64bit big-endian system, since on 64bit + /* We can not pass here ( isc_stmt_handle* ) &pArea->pStmt. + It will not work on 64bit big-endian system, since on 64bit handle is unsigned int */ isc_dsql_free_statement( status, &stmt, DSQL_drop ); pArea->pStmt = NULL; diff --git a/harbour/contrib/rddsql/sddmy/mysqldd.c b/harbour/contrib/rddsql/sddmy/mysqldd.c index 1064e7cec8..76dbf8a61a 100644 --- a/harbour/contrib/rddsql/sddmy/mysqldd.c +++ b/harbour/contrib/rddsql/sddmy/mysqldd.c @@ -367,7 +367,7 @@ static HB_ERRCODE mysqlOpen( SQLBASEAREAP pArea ) } case HB_FT_MEMO: - pItem = hb_itemPutC( NULL, "" ); + pItem = hb_itemPutC( NULL, NULL ); break; case HB_FT_INTEGER: @@ -383,7 +383,7 @@ static HB_ERRCODE mysqlOpen( SQLBASEAREAP pArea ) break; case HB_FT_DATE: - pItem = hb_itemPutDS( NULL, "" ); + pItem = hb_itemPutDS( NULL, NULL ); break; default: diff --git a/harbour/contrib/rddsql/sddodbc/odbcdd.c b/harbour/contrib/rddsql/sddodbc/odbcdd.c index 528bfab828..403e370a7f 100644 --- a/harbour/contrib/rddsql/sddodbc/odbcdd.c +++ b/harbour/contrib/rddsql/sddodbc/odbcdd.c @@ -158,7 +158,7 @@ static HB_ERRCODE odbcConnect( SQLDDCONNECTION* pConnection, PHB_ITEM pItem ) { cBuffer[ 0 ] ='\0'; - if( SQL_SUCCEEDED( SQLDriverConnect( hConnect, NULL, ( SQLCHAR* ) hb_arrayGetCPtr( pItem, 2 ), hb_arrayGetCLen( pItem, 2 ), + if( SQL_SUCCEEDED( SQLDriverConnect( hConnect, NULL, ( SQLCHAR* ) hb_arrayGetCPtr( pItem, 2 ), hb_arrayGetCLen( pItem, 2 ), cBuffer, 1024, &iLen, SQL_DRIVER_NOPROMPT ) ) ) { pConnection->hConnection = ( void* ) hConnect; @@ -244,7 +244,7 @@ static HB_ERRCODE odbcOpen( SQLBASEAREAP pArea ) return HB_FAILURE; } - uiFields = ( USHORT ) iNameLen; + uiFields = ( USHORT ) iNameLen; SELF_SETFIELDEXTENT( (AREAP) pArea, uiFields ); pItemEof = hb_itemArrayNew( uiFields ); @@ -342,7 +342,7 @@ static HB_ERRCODE odbcOpen( SQLBASEAREAP pArea ) } case HB_FT_MEMO: - pItem = hb_itemPutC( NULL, "" ); + pItem = hb_itemPutC( NULL, NULL ); break; case HB_FT_INTEGER: @@ -541,7 +541,7 @@ static HB_ERRCODE odbcGoTo( SQLBASEAREAP pArea, ULONG ulRecNo ) TIMESTAMP_STRUCT val = {0,0,0,0,0,0,0}; if( SQL_SUCCEEDED( res = SQLGetData( hStmt, ui, SQL_C_TIMESTAMP, &val, sizeof( val ), &iLen ) ) ) { - pItem = hb_itemPutTDT( NULL, hb_dateEncode( val.year, val.month, val.day ), + pItem = hb_itemPutTDT( NULL, hb_dateEncode( val.year, val.month, val.day ), hb_timeEncode( val.hour, val.minute, val.second, val.fraction / 1000000 ) ); } break; diff --git a/harbour/contrib/rddsql/sddpg/pgsqldd.c b/harbour/contrib/rddsql/sddpg/pgsqldd.c index 29589b6a2e..ab80b4ec5d 100644 --- a/harbour/contrib/rddsql/sddpg/pgsqldd.c +++ b/harbour/contrib/rddsql/sddpg/pgsqldd.c @@ -419,7 +419,7 @@ static HB_ERRCODE pgsqlOpen( SQLBASEAREAP pArea ) break; case HB_FT_DATE: - pItem = hb_itemPutDS( NULL, "" ); + pItem = hb_itemPutDS( NULL, NULL ); break; default: @@ -559,4 +559,3 @@ static HB_ERRCODE pgsqlGetValue( SQLBASEAREAP pArea, USHORT uiIndex, PHB_ITEM pI } return HB_SUCCESS; } - diff --git a/harbour/utils/hbmk2/hbmk2.hu_HU.po b/harbour/utils/hbmk2/hbmk2.hu_HU.po index 68dd826915..9e3281063d 100644 --- a/harbour/utils/hbmk2/hbmk2.hu_HU.po +++ b/harbour/utils/hbmk2/hbmk2.hu_HU.po @@ -1,768 +1,838 @@ # -# This file is generated by Harbour 1.1.0dev (Rev. 10962) +# This file is generated by Harbour 1.1.0dev (Rev. 11063) # -#: hbmk2.prg:1206 +#: hbmk2.prg:1206 hbmk2.prg:1255 #, c-format msgid "Warning: Invalid -gt value ignored: %1$s" msgstr "Figyelem: Hibs -gt rtk figyelmen kvl hagyva: %1$s" -#: hbmk2.prg:3011 +#: hbmk2.prg:3011 hbmk2.prg:3130 #, c-format msgid "Warning: C compiler script couldn't be created, continuing in command line." msgstr "Figyelem: C fordt parancsllomnya ne hozhat ltre, folytats parancssorban." -#: hbmk2.prg:214 +#: hbmk2.prg:214 hbmk2.prg:260 #, c-format msgid "Press any key to continue..." msgstr "Folytatshoz ssn le egy billentyt..." -#: hbmk2.prg:1198 +#: hbmk2.prg:1198 hbmk2.prg:1247 #, c-format msgid "Warning: Invalid -main value ignored: %1$s" msgstr "Figyelem: Hibs -main rtk figyelmen kvl hagyva: %1$s" -#: hbmk2.prg:5138 +#: hbmk2.prg:5138 hbmk2.prg:5210 #, c-format msgid "Created .po file '%1$s' for language(s): %2$s" msgstr "'%1$s' .po fjl ltrehozva a kvetkez nyelv(ek)hez: %2$s" -#: hbmk2.prg:428 +#: hbmk2.prg:428 hbmk2.prg:5563 #, c-format msgid "cdp=EN" msgstr "cdp=HU852" -#: hbmk2.prg:2615 +#: hbmk2.prg:2615 hbmk2.prg:2713 #, c-format msgid "Harbour compiler command (internal):" msgstr "Habour fordtsi parancs (bels):" -#: hbmk2.prg:2627 hbmk2.prg:2642 +#: hbmk2.prg:2627 hbmk2.prg:2642 hbmk2.prg:2725 hbmk2.prg:2743 #, c-format msgid "Error: Running Harbour compiler. %1$s" msgstr "Hiba: Harbour fordt futtatsakor. %1$s" -#: hbmk2.prg:744 +#: hbmk2.prg:744 hbmk2.prg:802 #, c-format msgid "Error: Architecture value unknown: %1$s" msgstr "Hiba: Ismeretlen architektra: %1$s" -#: hbmk2.prg:3027 +#: hbmk2.prg:3027 hbmk2.prg:3146 #, c-format msgid "C compiler script:" msgstr "C fordt parancsllomny:" -#: hbmk2.prg:5556 +#: hbmk2.prg:5556 hbmk2.prg:5704 #, c-format msgid "list of languages to be replaced in ${lng} macros in .pot/.po filenames and output .hbl/.po filenames. Comma separared list:\\n-lng=en-EN,hu-HU,de" msgstr "nyelvek listja, amelyek a .pot/.po s .hbl/.po llomnyokban lev ${lng} makrkba kerlnek behelyettestsre. Vesszvel elvlasztott lista:\\n-lng=en-EN,hu-HU,de" -#: hbmk2.prg:5556 +#: hbmk2.prg:5556 hbmk2.prg:5704 #, c-format msgid "rebuild all (in incremental build mode)" msgstr "mindent jrapt (lpcszetes zemmdban)" -#: hbmk2.prg:868 +#: hbmk2.prg:868 hbmk2.prg:919 #, c-format msgid "Error: Compiler value unknown: %1$s" msgstr "Hiba: Ismeretlen fordt: %1$s" -#: hbmk2.prg:913 +#: hbmk2.prg:913 hbmk2.prg:978 #, c-format msgid "Using Harbour: %1$s %2$s %3$s %4$s" msgstr "Detektlt Harbour: %1$s %2$s %3$s %4$s" -#: hbmk2.prg:856 +#: hbmk2.prg:856 hbmk2.prg:907 #, c-format msgid "Autodetected compiler: %1$s" msgstr "Detektlt fordt: %1$s" -#: hbmk2.prg:633 +#: hbmk2.prg:633 hbmk2.prg:689 #, c-format msgid "Autodetected architecture: %1$s" msgstr "Detektlt architektra: %1$s" -#: hbmk2.prg:3363 +#: hbmk2.prg:3363 hbmk2.prg:3482 #, c-format msgid "Compression command:" msgstr "Tmrtsi parancs:" -#: hbmk2.prg:1394 hbmk2.prg:4239 +#: hbmk2.prg:1394 hbmk2.prg:4239 hbmk2.prg:1459 hbmk2.prg:4355 #, c-format msgid "Processing: %1$s" msgstr "Feldolgozs alatt: %1$s" -#: hbmk2.prg:2843 +#: hbmk2.prg:2843 hbmk2.prg:2962 #, c-format msgid "Compiling resources..." msgstr "Erforrsok fordtsa..." -#: hbmk2.prg:797 +#: hbmk2.prg:797 hbmk2.prg:855 #, c-format msgid "Error: Harbour locations couldn't be determined." msgstr "Hiba: Harbour knyvtrakat nem sikerlt meghatrozni." -#: hbmk2.prg:2670 +#: hbmk2.prg:2670 hbmk2.prg:2774 #, c-format msgid "Error: Running Harbour compiler. %1$s:" msgstr "Hiba: Harbour fordt futtatsakor. %1$s:" -#: hbmk2.prg:1503 +#: hbmk2.prg:1503 hbmk2.prg:1543 #, c-format msgid "Error: No source files were specified." msgstr "Hiba: Nincs megadva forrs fjl." -#: hbmk2.prg:5556 +#: hbmk2.prg:5556 hbmk2.prg:5704 #, c-format msgid "pass flag to linker (static library)" msgstr "kapcsol tovbbtsa (statikus fggvnyknyvtr) szerkesztnek" -#: hbmk2.prg:2777 +#: hbmk2.prg:2777 hbmk2.prg:2887 #, c-format msgid "Warning: Stub helper .c program couldn't be created." msgstr "Figyelem: .c segdllomnyt nem sikerlt ltrehozni." -#: hbmk2.prg:5556 +#: hbmk2.prg:5556 hbmk2.prg:5704 #, c-format msgid "add/exclude C compiler debug info" msgstr "C fordt debug informci hozzadsa (vagy sem)" -#: hbmk2.prg:5556 +#: hbmk2.prg:5556 hbmk2.prg:5704 #, c-format msgid "pass flag to linker (dynamic library)" msgstr "kapcsol tovbbtsa (dinamikus fggvnyknyvtr) szerkesztnek" -#: hbmk2.prg:862 +#: hbmk2.prg:862 hbmk2.prg:913 #, c-format msgid "Couldn't detect any supported C compiler in your PATH.\\nPlease setup one or set -comp= option or envvar HB_COMPILER to one of these values: %1$s" msgstr "Nem sikerlt automatikusan detektlni egyetlen C fordtt sem a PATH-ban.\\nKrem, teleptsen egyet vagy lltsa a -comp= kapcsolt vagy a HB_COMPILER krnyezeti vltozt a kvetkez rtkek valamelyikre: %1$s" -#: hbmk2.prg:777 +#: hbmk2.prg:777 hbmk2.prg:835 #, c-format msgid "Error: HB_INSTALL_PREFIX not set, failed to autodetect." msgstr "Hiba: HB_INSTALL_PREFIX nincs megadva, automata detektls nem jrt sikerrel." -#: hbmk2.prg:860 +#: hbmk2.prg:860 hbmk2.prg:911 #, c-format msgid "Please choose a C compiler by using -comp= option or envvar HB_COMPILER.\\nYou have the following choices on your platform: %1$s" msgstr "Krem, vlasszon C fordtt a -comp= kapcsol vagy a HB_COMPILER krnyezeti vltoz segtsgvel.\\nA kvetkez lehetsgek kzl vlaszthat: %1$s" -#: hbmk2.prg:3334 +#: hbmk2.prg:3334 hbmk2.prg:3453 #, c-format msgid "Post processor command:" msgstr "Utfeldolgoz parancs:" -#: hbmk2.prg:1514 +#: hbmk2.prg:1514 hbmk2.prg:1572 #, c-format msgid "Error: Working directory cannot be created: %1$s" msgstr "Hiba: Munkaknyvtr nem hozhat ltre: %1$s" -#: hbmk2.prg:3037 hbmk2.prg:3430 +#: hbmk2.prg:3037 hbmk2.prg:3430 hbmk2.prg:3156 hbmk2.prg:3594 #, c-format msgid "Error: Running C compiler. %1$s:" msgstr "Hiba: C fordt futtatsakor: %1$s:" -#: hbmk2.prg:5556 +#: hbmk2.prg:5556 hbmk2.prg:5704 #, c-format msgid "additional path to autodetect .c header locations" msgstr "tovbbi keressi tvonal a .c fejlcek automatikus detektlshoz" -#: hbmk2.prg:3428 +#: hbmk2.prg:3428 hbmk2.prg:3592 #, c-format msgid "Error: Running C compiler job #%1$s. %2$s:" msgstr "Hiba: C fordt futtatsa. %1$s. szl. %2$s:" -#: hbmk2.prg:5556 +#: hbmk2.prg:5556 hbmk2.prg:5704 #, c-format msgid "link with nulrdd" msgstr "nulrdd hasznlata" -#: hbmk2.prg:5556 +#: hbmk2.prg:5556 hbmk2.prg:5704 #, c-format msgid "show commands to be executed, but don't execute them" msgstr "mutassa a vgrehajtand parancsokat, anlkl hogy vgrehajtan ket" -#: hbmk2.prg:5057 +#: hbmk2.prg:5057 hbmk2.prg:5131 #, c-format msgid "Error: Cannot open file: %1$s" msgstr "Hiba: Fjl nem nyithat meg: %1$s" -#: hbmk2.prg:5567 +#: hbmk2.prg:5567 hbmk2.prg:5715 #, c-format msgid "Platform filters are accepted in each .hbp line and with several options.\\nFilter format: {[!][||]}. Filters can be combined using '&', '|' operators and grouped by parantheses. Ex.: {win}, {gcc}, {linux|darwin}, {win&!pocc}, {(win|linux)&!owatcom}, {unix&mt&gui}, -cflag={win}-DMYDEF, -stop{dos}, -stop{!allwin}, {allpocc|allgcc|allmingw|unix}, {allmsvc}, {x86|x86_64|ia64|arm}, {debug|nodebug|gui|std|mt|st|xhb}" msgstr "A szrk az egyes .hbp sorokban hasznlhatk s szmos opci esetn tmogatottak.\\nSzr formtum: {[!][||]}. Szrk kombinlhatk '&', '|' opertorokkal s zrjelekkel csoportosthatk. Pl.: {win}, {gcc}, {linux|darwin}, {win&!pocc}, {(win|linux)&!owatcom}, {unix&mt&gui}, -cflag={win}-DMYDEF, -stop{dos}, -stop{!allwin}, {allpocc|allgcc|allmingw|unix}, {allmsvc}, {x86|x86_64|ia64|arm}, {debug|nodebug|gui|std|mt|st|xhb}" -#: hbmk2.prg:5556 +#: hbmk2.prg:5556 hbmk2.prg:5704 #, c-format msgid "output .hbl filename. ${lng} macro is accepted in filename" msgstr "kimeneti .hbl fjlnv. ${lng} makr hasznlhat a fjlnvben" -#: hbmk2.prg:5194 +#: hbmk2.prg:5194 hbmk2.prg:5291 #, c-format msgid "Created .hbl file '%1$s' for language(s): %2$s" msgstr "'%1$s' .hbl fjl ltrehozva a kvetkez nyelv(ek)hez: %2$s" -#: hbmk2.prg:5254 +#: hbmk2.prg:5254 hbmk2.prg:5344 #, c-format msgid "Warning: %1$s" msgstr "Figyelem: %1$s" -#: hbmk2.prg:5278 +#: hbmk2.prg:5278 hbmk2.prg:5368 #, c-format msgid "Error: %1$s" msgstr "Hiba: %1$s" -#: hbmk2.prg:5295 +#: hbmk2.prg:5295 hbmk2.prg:5385 #, c-format msgid "Error: Cannot create file: %1$s" msgstr "Hiba: Fjl nem hozhat ltre: %1$s" -#: hbmk2.prg:5556 +#: hbmk2.prg:5556 hbmk2.prg:5704 #, c-format msgid "do not process .hbp files in current directory" msgstr "aktulis knyvtrban lev .hbp fjlokat ne dolgozza fel" -#: hbmk2.prg:5471 +#: hbmk2.prg:5471 hbmk2.prg:5610 #, c-format msgid "Notes:" msgstr "Megjegyzsek:" -#: hbmk2.prg:5467 +#: hbmk2.prg:5467 hbmk2.prg:5606 #, c-format msgid "Syntax:" msgstr "Hasznlat:" -#: hbmk2.prg:5450 +#: hbmk2.prg:5450 hbmk2.prg:5589 #, c-format msgid "Translation (%1$s): (add your name here)" msgstr "Magyar (%1$s) fordts: Copyright (c) 2009, Szakts Viktor" -#: hbmk2.prg:5556 +#: hbmk2.prg:5556 hbmk2.prg:5704 #, c-format msgid "stop after creating the object files\\ncreate link/copy hbmk to hbcmp/clipper for the same effect" msgstr "lljon meg az object llomnyok ltrehozsa utn\\nA hbmk program hbcmp/clipper nevekre val msolsval/tnevezsvel hasonl hats rhet el" -#: hbmk2.prg:5467 +#: hbmk2.prg:5467 hbmk2.prg:5606 #, c-format msgid "Options:" msgstr "Kapcsolk:" -#: hbmk2.prg:5485 +#: hbmk2.prg:5485 hbmk2.prg:5624 #, c-format msgid "Supported values for each supported value:" msgstr "Az egyes rtkekhez tartoz rtkek a kvetkezk:" -#: hbmk2.prg:5494 +#: hbmk2.prg:5494 hbmk2.prg:5633 #, c-format msgid "link with static/shared libs" msgstr "hasznljon a szerkesztskor statikus/dinamikus fggvnyknyvtrakat" -#: hbmk2.prg:5494 +#: hbmk2.prg:5494 hbmk2.prg:5633 #, c-format msgid "link with library" msgstr "szerkessze be fggvnyknyvtrat" -#: hbmk2.prg:5497 +#: hbmk2.prg:5497 hbmk2.prg:5636 #, c-format msgid "long help" msgstr "teljes sg" -#: hbmk2.prg:5556 +#: hbmk2.prg:5556 hbmk2.prg:5704 #, c-format msgid "link with all static libs" msgstr "csak statikus fggvnyknyvtrak hasznlata" -#: hbmk2.prg:5556 +#: hbmk2.prg:5556 hbmk2.prg:5704 #, c-format msgid "create (or not) a map file" msgstr "ksztsen (vagy ne) trkp (map) fjlt" -#: hbmk2.prg:5017 +#: hbmk2.prg:5017 hbmk2.prg:5091 #, c-format msgid "Blinker ECHO: %1$s" msgstr "Blinker ECHO: %1$s" -#: hbmk2.prg:5567 +#: hbmk2.prg:5567 hbmk2.prg:5715 #, c-format msgid ".hbp options (they should come in separate lines): libs=[], gt=[gtname], prgflags=[Harbour flags], cflags=[C compiler flags], resflags=[resource compiler flags], ldflags=[linker flags], libpaths=[paths], pos=[.po files], incpaths=[paths], inctrypaths=[paths], gui|mt|shared|nulrdd|debug|opt|map|strip|run|inc=[yes|no], compr=[yes|no|def|min|max], head=[off|partial|full], echo=\\nLines starting with '#' char are ignored" msgstr ".hbp opcik (kln sorokba randk): libs=[], gt=[gtnv], prgflags=[Harbour opcik], cflags=[C fordt opcik], resflags=[erforrs fordt kapcsolk], ldflags=[szerkeszt kapcsolk], libpaths=[tvonalak], pos=[.po fjlok], incpaths=[tvonalak], inctrypaths=[tvonalak], gui|mt|shared|nulrdd|debug|opt|map|strip|run|inc=[yes|no], compr=[yes|no|def|min|max], head=[off|partial|full], echo=\\n'#' karakterrel kezdd sorokat figyelmen kvl hagyja" -#: hbmk2.prg:5556 +#: hbmk2.prg:5556 hbmk2.prg:5704 #, c-format msgid "strip (no strip) binaries" msgstr "tvoltsa el (vagy ne) a kimenetrl az extra bels informcikat (strip)" -#: hbmk2.prg:5556 +#: hbmk2.prg:5556 hbmk2.prg:5704 #, c-format msgid "run/don't run output executable" msgstr "futtassa/ne az elkszlt alkalmazst" -#: hbmk2.prg:5556 +#: hbmk2.prg:5556 hbmk2.prg:5704 #, c-format msgid "stop without doing anything" msgstr "lljon meg anlkl hogy brmit csinlna" -#: hbmk2.prg:5556 +#: hbmk2.prg:5556 hbmk2.prg:5704 #, c-format msgid "pass flag to resource compiler (Windows only)" msgstr "tovbbtsa a kapcsolt az erforrs fordtnak (csak Windows-on)" -#: hbmk2.prg:5556 +#: hbmk2.prg:5556 hbmk2.prg:5704 #, c-format msgid "enable incremental build mode" msgstr "kapcsolja be a lpcszetes (incremental) zemmdot" -#: hbmk2.prg:5556 +#: hbmk2.prg:5556 hbmk2.prg:5704 #, c-format msgid "pass flag to Harbour" msgstr "kapcsol tovbbtsa Harbour fordtnak" -#: hbmk2.prg:5556 +#: hbmk2.prg:5556 hbmk2.prg:5704 #, c-format msgid "pass flag to C compiler" msgstr "kapcsol tovbbtsa C fordtnak" -#: hbmk2.prg:5556 +#: hbmk2.prg:5556 hbmk2.prg:5704 #, c-format msgid "output Harbour dynamic library directory" msgstr "visszatr a Harbour dinamikus fggvnyknyvtrak knyvtrval" -#: hbmk2.prg:5556 +#: hbmk2.prg:5556 hbmk2.prg:5704 #, c-format msgid "start n compilation threads (MT platforms/builds only)" msgstr "n szlon futtassa a fordtkat (csak tmogatott platformokon)" -#: hbmk2.prg:5567 +#: hbmk2.prg:5567 hbmk2.prg:5715 #, c-format msgid "Multiple -l, -L and