From fa950fae9c687685ea8ecdd1f52f0393c80b56fa Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sun, 23 Jan 2011 09:24:47 +0000 Subject: [PATCH] 2011-01-23 10:23 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) * utils/hbmk2/hbmk2.prg ! Minor typo in help text. * utils/hbmk2/hbmk2.pt_BR.po * utils/hbmk2/hbmk2.hu_HU.po * utils/hbmk2/hbmk2.es_PE.po + Updated from source. * contrib/hbmxml/tests/rem.xml * contrib/hbmxml/tests/rem_err.xml ! Added missing EOL @ EOF. * contrib/hbunix/hbposix.h + Added generic macro to accept both logical and numeric type for boolean-like input parameters. * contrib/hbunix/tests/testdmn.prg * contrib/hbunix/daemon.c + UNIX_DAEMON(): Changed to accept numeric value for logical parameters. + UNIX_DAEMON(): Changed to return numeric value. ; Patch by Tamas. --- harbour/ChangeLog | 23 + harbour/contrib/hbmxml/tests/rem.xml | 2 +- harbour/contrib/hbmxml/tests/rem_err.xml | 2 +- harbour/contrib/hbunix/daemon.c | 13 +- harbour/contrib/hbunix/hbposix.h | 1 + harbour/contrib/hbunix/tests/testdmn.prg | 4 +- harbour/utils/hbmk2/hbmk2.es_PE.po | 946 +++++++++++++++------- harbour/utils/hbmk2/hbmk2.hu_HU.po | 814 ++++++++++++++----- harbour/utils/hbmk2/hbmk2.prg | 2 +- harbour/utils/hbmk2/hbmk2.pt_BR.po | 948 ++++++++++++++++------- 10 files changed, 1977 insertions(+), 778 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 9e98f0b063..79736ac2a7 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,29 @@ The license applies to all entries newer than 2009-04-28. */ +2011-01-23 10:23 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) + * utils/hbmk2/hbmk2.prg + ! Minor typo in help text. + + * utils/hbmk2/hbmk2.pt_BR.po + * utils/hbmk2/hbmk2.hu_HU.po + * utils/hbmk2/hbmk2.es_PE.po + + Updated from source. + + * contrib/hbmxml/tests/rem.xml + * contrib/hbmxml/tests/rem_err.xml + ! Added missing EOL @ EOF. + + * contrib/hbunix/hbposix.h + + Added generic macro to accept both logical and numeric type for + boolean-like input parameters. + + * contrib/hbunix/tests/testdmn.prg + * contrib/hbunix/daemon.c + + UNIX_DAEMON(): Changed to accept numeric value for logical parameters. + + UNIX_DAEMON(): Changed to return numeric value. + ; Patch by Tamas. + 2011-01-21 16:47 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) * config/hb_c.cfg * Changed to align assignments. diff --git a/harbour/contrib/hbmxml/tests/rem.xml b/harbour/contrib/hbmxml/tests/rem.xml index 75254b68fb..a8b24bcdad 100644 --- a/harbour/contrib/hbmxml/tests/rem.xml +++ b/harbour/contrib/hbmxml/tests/rem.xml @@ -7,4 +7,4 @@ Reminder Don't forget me this weekend! - \ No newline at end of file + diff --git a/harbour/contrib/hbmxml/tests/rem_err.xml b/harbour/contrib/hbmxml/tests/rem_err.xml index afcf812463..e8b4218cec 100644 --- a/harbour/contrib/hbmxml/tests/rem_err.xml +++ b/harbour/contrib/hbmxml/tests/rem_err.xml @@ -7,4 +7,4 @@ Reminder Don't forget me this weekend! - \ No newline at end of file + diff --git a/harbour/contrib/hbunix/daemon.c b/harbour/contrib/hbunix/daemon.c index 4643227947..6270006424 100644 --- a/harbour/contrib/hbunix/daemon.c +++ b/harbour/contrib/hbunix/daemon.c @@ -35,9 +35,6 @@ #include "hbposix.h" #include "hbvm.h" -/* - * unix_daemon( [], [] ) --> - */ HB_FUNC( UNIX_DAEMON ) { int fd; @@ -46,7 +43,7 @@ HB_FUNC( UNIX_DAEMON ) { case -1: hb_posix_save_errno(); - hb_retl( HB_FALSE ); + hb_retni( -1 ); return; case 0: break; @@ -58,14 +55,14 @@ HB_FUNC( UNIX_DAEMON ) if( setsid() == -1 ) { hb_posix_save_errno(); - hb_retl( HB_FALSE ); + hb_retni( -1 ); return; } - if( ! hb_parl( 1 ) ) + if( ! HB_PARLUNIX( 1 ) ) ( void ) chdir( "/" ); - if( ! hb_parl( 2 ) && ( fd = open( "/dev/null", O_RDWR ) ) != -1 ) + if( ! HB_PARLUNIX( 2 ) && ( fd = open( "/dev/null", O_RDWR ) ) != -1 ) { ( void ) dup2( fd, STDIN_FILENO ); ( void ) dup2( fd, STDOUT_FILENO ); @@ -76,5 +73,5 @@ HB_FUNC( UNIX_DAEMON ) hb_posix_set_errno( 0 ); - hb_retl( HB_TRUE ); + hb_retni( 0 ); } diff --git a/harbour/contrib/hbunix/hbposix.h b/harbour/contrib/hbunix/hbposix.h index 3780e9b812..1e6ff80025 100644 --- a/harbour/contrib/hbunix/hbposix.h +++ b/harbour/contrib/hbunix/hbposix.h @@ -64,6 +64,7 @@ #define hb_par_uid( n ) ( ( uid_t ) hb_parnl( n ) ) #define hb_ret_uid( n ) hb_retnint( n ) +#define HB_PARLUNIX( n ) ( HB_ISLOG( n ) ? ( int ) hb_parl( n ) : hb_parni( n ) ) HB_EXTERN_BEGIN diff --git a/harbour/contrib/hbunix/tests/testdmn.prg b/harbour/contrib/hbunix/tests/testdmn.prg index dae0da2913..0610a9c2ec 100644 --- a/harbour/contrib/hbunix/tests/testdmn.prg +++ b/harbour/contrib/hbunix/tests/testdmn.prg @@ -20,8 +20,8 @@ PROCEDURE Main() OutStd( hb_strFormat( "Parent(%d) launching child... ", posix_getpid() ) + hb_eol() ) - IF ! unix_daemon( .F., .F. ) - OutStd( "failed." + hb_eol() ) + IF unix_daemon( 0, 0 ) == -1 + OutStd( hb_strFormat( "failed with errno=%d", posix_errno() ) + hb_eol() ) ErrorLevel( 1 ) QUIT ENDIF diff --git a/harbour/utils/hbmk2/hbmk2.es_PE.po b/harbour/utils/hbmk2/hbmk2.es_PE.po index 504ed56c6a..e45e5779d4 100644 --- a/harbour/utils/hbmk2/hbmk2.es_PE.po +++ b/harbour/utils/hbmk2/hbmk2.es_PE.po @@ -1,20 +1,17 @@ -msgid "" -msgstr "" -"Project-Id-Version: hbmk2\n" -"Last-Translator: Guillermo Varona \n" -"Language-Team: Guillermo Varona \n" -"MIME-Version: 1.0\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Poedit-Language: Spanish\n" -"X-Poedit-Country: PERÚ\n" -"Content-Type: text/plain; charset=UTF-8\n" +# +# This file is generated by Harbour 2.1.0beta3 (Rev. 15966) +# -#: hbmk2.prg:861 +#, c-format +msgid "" +msgstr "Project-Id-Version: hbmk2\nLast-Translator: Guillermo Varona \nLanguage-Team: Guillermo Varona \nMIME-Version: 1.0\nContent-Transfer-Encoding: 8bit\nX-Poedit-Language: Spanish\nX-Poedit-Country: PERÚ\nContent-Type: text/plain; charset=UTF-8\n" + +#: hbmk2.prg:861 hbmk2.prg:1153 #, c-format msgid "Processing environment options: %1$s" msgstr "Processando opciones de ambiente: %1$s" -#: hbmk2.prg:455 +#: hbmk2.prg:455 hbmk2.prg:652 #, c-format msgid "Press any key to continue..." msgstr "Presione cualquier tecla para continuar..." @@ -24,12 +21,12 @@ msgstr "Presione cualquier tecla para continuar..." msgid "Autodetected header dir for %1$s: %2$s" msgstr "Carpeta de cabecera detectada para %1$s: %2$s" -#: hbmk2.prg:7851 +#: hbmk2.prg:7851 hbmk2.prg:11512 #, c-format msgid "additional path to search for headers" msgstr "rutass adicionales para buscar para cabeceras" -#: hbmk2.prg:7575 +#: hbmk2.prg:7575 hbmk2.prg:11183 #, c-format msgid "Loading xbp (xbuild) project file: %1$s" msgstr "Cargando proyecto xbp (xbuild): %1$s" @@ -39,309 +36,287 @@ msgstr "Cargando proyecto xbp (xbuild): %1$s" msgid "Error: No source files were specified." msgstr "Error: archivos fuente no se especificaron." -#: hbmk2.prg:3967 -#: hbmk2.prg:4009 +#: hbmk2.prg:3967 hbmk2.prg:4009 hbmk2.prg:5445 hbmk2.prg:5487 #, c-format msgid "Error: Running resource compiler. %1$s" msgstr "Error: Ejecución de compilador de recursos. %1$s" -#: hbmk2.prg:7942 +#: hbmk2.prg:7942 hbmk2.prg:11633 #, c-format msgid "force C/C++ mode or reset to default" msgstr "fuerza modo C/C++ o restablecimiento de valores" -#: hbmk2.prg:1104 +#: hbmk2.prg:1104 hbmk2.prg:1450 #, c-format msgid "Error: HB_INSTALL_PREFIX not set, failed to autodetect.\\nPlease run this tool from its original location inside the Harbour installation or set HB_INSTALL_PREFIX environment variable to Harbour's root directory." msgstr "Error: HB_INSTALL_PREFIX no definido, fallo autodetección.\\nPor favor, ejecute esta herramienta desde su ubicación original dentro de la carpeta de instalación de Harbour o configure la variable de entorno HB_INSTALL_PREFIX hacia el directorio raíz de Harbour." -#: hbmk2.prg:953 +#: hbmk2.prg:953 hbmk2.prg:1268 #, c-format msgid "Autodetected platform: %1$s" msgstr "Plataforma detectada: %1$s" -#: hbmk2.prg:2095 +#: hbmk2.prg:2095 hbmk2.prg:2938 #, c-format msgid "Error: Working directory cannot be created: %1$s" msgstr "Error: Directorio de trabajo no puede ser creado: %1$s" -#: hbmk2.prg:3576 -#: hbmk2.prg:3610 +#: hbmk2.prg:3576 hbmk2.prg:3610 hbmk2.prg:4886 hbmk2.prg:4923 #, c-format msgid "Error: Running Harbour compiler. %1$s" msgstr "Error: Ejecutando compilador Harbour: %1$s" -#: hbmk2.prg:1075 +#: hbmk2.prg:1075 hbmk2.prg:1421 #, c-format msgid "Error: Platform value unknown: %1$s" msgstr "Error: Valor incorrecto para plataforma: %1$s" -#: hbmk2.prg:1700 +#: hbmk2.prg:1700 hbmk2.prg:2300 #, c-format msgid "Warning: Invalid -gt value ignored: %1$s" msgstr "Advertencia: Opción -gt no válida, se ignora: %1$s" -#: hbmk2.prg:7692 +#: hbmk2.prg:7692 hbmk2.prg:11307 #, c-format msgid "Loading xhp (xMate) project file: %1$s" msgstr "Cargando archivo xhp (proyecto xMate): %1$s" -#: hbmk2.prg:1271 +#: hbmk2.prg:1271 hbmk2.prg:1643 #, c-format msgid "Autodetected C compiler '%1$s' skipped because required Harbour core libraries are not found." msgstr "Compilador C detectado '%1$s' saltado porque requiere librerías del núcleo de Harbour no encontradas." -#: hbmk2.prg:1691 +#: hbmk2.prg:1691 hbmk2.prg:2291 #, c-format msgid "Warning: Invalid -main value ignored: %1$s" msgstr "Advertencia: Opción -main no válida, se ignora: %1$s" -#: hbmk2.prg:1295 +#: hbmk2.prg:1295 hbmk2.prg:1667 #, c-format msgid "Autodetected C compiler: %1$s" msgstr "Compilador C detectado automáticamente: %1$s" -#: hbmk2.prg:1301 +#: hbmk2.prg:1301 hbmk2.prg:1673 #, c-format -msgid "" -"Could not detect any supported C compiler in your PATH.\\n" -"Please setup one or set -compiler= option to one of these values: %1$s" -msgstr "" -"No se pudo detectar ningún compilador C en su PATH.\\n" -"Por favor, utilice la opción -compiler= para especificar uno de estos valores: %1$s" +msgid "Could not detect any supported C compiler in your PATH.\\nPlease setup one or set -compiler= option to one of these values: %1$s" +msgstr "No se pudo detectar ningún compilador C en su PATH.\\nPor favor, utilice la opción -compiler= para especificar uno de estos valores: %1$s" -#: hbmk2.prg:1307 +#: hbmk2.prg:1307 hbmk2.prg:1679 #, c-format msgid "Error: Compiler value unknown: %1$s" msgstr "Error: Compilador no válido o desconocido: %1$s" -#: hbmk2.prg:1378 +#: hbmk2.prg:1378 hbmk2.prg:1853 #, c-format msgid "Using Harbour: %1$s %2$s %3$s %4$s" msgstr "Usando Harbour: %1$s %2$s %3$s %4$s" -#: hbmk2.prg:1299 +#: hbmk2.prg:1299 hbmk2.prg:1671 #, c-format -msgid "" -"Please choose a C compiler by using -compiler= option.\\n" -"You have the following choices on your platform: %1$s" -msgstr "" -"Por favor, elija un compilador C usando la Opción: -compiler=.\\n" -"tiene las siguientes opciones en su plataforma: %1$s" +msgid "Please choose a C compiler by using -compiler= option.\\nYou have the following choices on your platform: %1$s" +msgstr "Por favor, elija un compilador C usando la Opción: -compiler=.\\ntiene las siguientes opciones en su plataforma: %1$s" -#: hbmk2.prg:1380 +#: hbmk2.prg:1380 hbmk2.prg:1855 #, c-format msgid "Using C compiler: %1$s" msgstr "Usando compilador C: %1$s" -#: hbmk2.prg:5020 -#: hbmk2.prg:5028 +#: hbmk2.prg:5020 hbmk2.prg:5028 hbmk2.prg:7074 hbmk2.prg:7082 #, c-format msgid "Error: In %1$s at line %2$s %3$s:" msgstr "Error: En %1$s línea %2$s %3$s:" -#: hbmk2.prg:1448 +#: hbmk2.prg:1448 hbmk2.prg:1960 #, c-format msgid "Processing local make script: %1$s" msgstr "Procesando script local: %1$s" -#: hbmk2.prg:4127 +#: hbmk2.prg:4127 hbmk2.prg:5633 #, c-format msgid "Warning: C/C++ compiler script could not be created, continuing in command line." msgstr "Advertencia: Script para compilador C/C++ no puede ser creado, continuando en la línea de comandos." -#: hbmk2.prg:4457 +#: hbmk2.prg:4457 hbmk2.prg:6002 #, c-format msgid "Error: Running lib command. %1$s" msgstr "Error: Ejecutando comando lib. %1$s" -#: hbmk2.prg:1804 -#: hbmk2.prg:6016 +#: hbmk2.prg:1804 hbmk2.prg:6016 hbmk2.prg:2457 hbmk2.prg:2466 hbmk2.prg:8831 hbmk2.prg:9034 hbmk2.prg:9041 #, c-format msgid "%1$s" msgstr "%1$s" -#: hbmk2.prg:3407 +#: hbmk2.prg:3407 hbmk2.prg:4637 #, c-format msgid "Creating VCS header: %1$s" msgstr "Creando cabecera VCS: %1$s" -#: hbmk2.prg:3921 +#: hbmk2.prg:3921 hbmk2.prg:5396 #, c-format msgid "Warning: Stub helper .rc file could not be created." msgstr "Advertencia: archivo auxiliar .rc no puede ser creado." -#: hbmk2.prg:3961 -#: hbmk2.prg:3999 +#: hbmk2.prg:3961 hbmk2.prg:3999 hbmk2.prg:5439 hbmk2.prg:5477 #, c-format msgid "Resource compiler command:" msgstr "Comando para compilador de Recursos:" -#: hbmk2.prg:7960 +#: hbmk2.prg:7960 hbmk2.prg:11650 #, c-format msgid "Options can also be specified in environment variable %1$s" msgstr "Las opciones también se pueden especificar en la variable de entorno %1$s" -#: hbmk2.prg:4378 +#: hbmk2.prg:4378 hbmk2.prg:5916 #, c-format msgid "Warning: Dynamic lib link script could not be created, continuing in command line." msgstr "Advertencia: Script para enlace de librería dinámica no puede ser creado, continuando en la línea de comandos." -#: hbmk2.prg:4240 +#: hbmk2.prg:4240 hbmk2.prg:5758 #, c-format msgid "Target up to date: %1$s" msgstr "Meta actualizada: %1$s" -#: hbmk2.prg:4308 +#: hbmk2.prg:4308 hbmk2.prg:5837 #, c-format msgid "Error: Running linker. %1$s" msgstr "Error: Ejecutando linkeditor. %1$s" -#: hbmk2.prg:4390 +#: hbmk2.prg:4390 hbmk2.prg:5928 #, c-format msgid "Dynamic lib link script:" msgstr "Script para enlace de librería dinámica:" -#: hbmk2.prg:4290 +#: hbmk2.prg:4290 hbmk2.prg:5819 #, c-format msgid "Warning: Link script could not be created, continuing in command line." msgstr "Advertencia: Script de enlace no puede ser creado, continuando en la línea de comandos." -#: hbmk2.prg:4298 +#: hbmk2.prg:4298 hbmk2.prg:5827 #, c-format msgid "Linker command:" msgstr "Comando de Linkeditor:" -#: hbmk2.prg:4386 +#: hbmk2.prg:4386 hbmk2.prg:5924 #, c-format msgid "Dynamic lib link command:" msgstr "Comando para enlace de Librería dinámica:" -#: hbmk2.prg:4588 +#: hbmk2.prg:4588 hbmk2.prg:6179 #, c-format msgid "Warning: Running compression command. %1$s:" msgstr "Advertencia: Ejecutando comando de compresión. %1$s:" -#: hbmk2.prg:3541 +#: hbmk2.prg:3541 hbmk2.prg:4848 #, c-format msgid "Harbour compiler command (embedded):" msgstr "Línea de comando de compilador Harbour: (interno)" -#: hbmk2.prg:1930 -#: hbmk2.prg:5817 -#: hbmk2.prg:5921 -#: hbmk2.prg:5964 +#: hbmk2.prg:1930 hbmk2.prg:5817 hbmk2.prg:5921 hbmk2.prg:5964 hbmk2.prg:2751 hbmk2.prg:8916 hbmk2.prg:8960 #, c-format msgid "Processing: %1$s" msgstr "Procesando: %1$s" -#: hbmk2.prg:3420 +#: hbmk2.prg:3420 hbmk2.prg:4650 #, c-format msgid "Creating timestamp header: %1$s" msgstr "Creando cabecera con fecha y hora: %1$s" -#: hbmk2.prg:4175 -#: hbmk2.prg:4707 +#: hbmk2.prg:4175 hbmk2.prg:4707 hbmk2.prg:5681 hbmk2.prg:6576 #, c-format msgid "Error: Running C/C++ compiler job #%1$s. %2$s" msgstr "Error: Ejecutando trabajo del compilador C/C++ #%1$s. %2$s" -#: hbmk2.prg:3515 +#: hbmk2.prg:3515 hbmk2.prg:4822 #, c-format msgid "Compiling Harbour sources..." msgstr "Harbour: Compilando módulos..." -#: hbmk2.prg:3604 +#: hbmk2.prg:3604 hbmk2.prg:4917 #, c-format msgid "Harbour compiler command:" msgstr "Línea de comando de Harbour:" -#: hbmk2.prg:3539 +#: hbmk2.prg:3539 hbmk2.prg:4846 #, c-format msgid "Harbour compiler command (embedded) job #%1$s:" msgstr "Trabajo de compilador harbour (interno) #%1$s:" -#: hbmk2.prg:3553 +#: hbmk2.prg:3553 hbmk2.prg:4860 #, c-format msgid "Error: Running Harbour compiler (embedded). %1$s" msgstr "Error: Ejecutando compilador Harbour (interno): %1$s" -#: hbmk2.prg:3574 +#: hbmk2.prg:3574 hbmk2.prg:4884 #, c-format msgid "Error: Running Harbour compiler job #%1$s. %2$s" msgstr "Error: Ejecutando trabajo de Compilador Harbour #%1$s. %2$s" -#: hbmk2.prg:4349 +#: hbmk2.prg:4349 hbmk2.prg:5884 #, c-format msgid "Creating dynamic library... %1$s" msgstr "Creando librería dinámica... %1$s" -#: hbmk2.prg:3991 +#: hbmk2.prg:3991 hbmk2.prg:5469 #, c-format msgid "Warning: Resource compiler script could not be created, continuing in command line." msgstr "Advertencia: Script para compilador de Recursos no puede ser creado, continuando en la línea de comandos." -#: hbmk2.prg:3772 +#: hbmk2.prg:3772 hbmk2.prg:5106 #, c-format msgid "Warning: Stub helper .c program could not be created." msgstr "Advertencia: archivo auxiliar .c no puede ser creado." -#: hbmk2.prg:4060 +#: hbmk2.prg:4060 hbmk2.prg:5550 #, c-format msgid "Compiling..." msgstr "Compilando..." -#: hbmk2.prg:4136 -#: hbmk2.prg:4697 +#: hbmk2.prg:4136 hbmk2.prg:4697 hbmk2.prg:5642 hbmk2.prg:6566 #, c-format msgid "C/C++ compiler command job #%1$s:" msgstr "Trabajo de Compilador C/C++ #%1$s:" -#: hbmk2.prg:4412 +#: hbmk2.prg:4412 hbmk2.prg:5956 #, c-format msgid "Creating static library... %1$s" msgstr "Creando librería estática... %1$s" -#: hbmk2.prg:4243 +#: hbmk2.prg:4243 hbmk2.prg:5768 #, c-format msgid "Warning: Cannot create directory for target '%1$s'." msgstr "Advertencia: No se puede crear directorio de destino '%1$s'." -#: hbmk2.prg:4250 +#: hbmk2.prg:4250 hbmk2.prg:5775 #, c-format msgid "Warning: Cannot delete existing target '%1$s'." msgstr "Advertencia: No se puede eliminar destino existente '%1$s'." -#: hbmk2.prg:7960 +#: hbmk2.prg:7960 hbmk2.prg:11650 #, c-format msgid "Certain .hbc lines (libs=, hbcs=, prgflags=, cflags=, ldflags=, libpaths=, instfiles=, instpaths=, echo=) and corresponding command line parameters will accept macros: ${hb_root}, ${hb_dir}, ${hb_name}, ${hb_plat}, ${hb_comp}, ${hb_build}, ${hb_cpu}, ${hb_bin}, ${hb_lib}, ${hb_dyn}, ${hb_inc}, ${}. libpaths= also accepts %{hb_name} which translates to the name of the .hbc file under search." msgstr "Algunas opciones del archivo .hbc (libs=, hbcs=, prgflags=, cflags=, ldflags=, libpaths=, instfiles=, instpaths=, echo=) y sus correspondientes parámetros de línea de comando aceptan las siguientes macros: ${hb_root}, ${hb_dir}, ${hb_name}, ${hb_plat}, ${hb_comp}, ${hb_build}, ${hb_cpu}, ${hb_bin}, ${hb_lib}, ${hb_dyn}, ${hb_inc}, ${}. libpaths= tambien acepta %{hb_name} que se traduce en el nombre del archivo. hbc bajo búsqueda." -#: hbmk2.prg:4258 +#: hbmk2.prg:4258 hbmk2.prg:5785 #, c-format msgid "Linking... %1$s" msgstr "Enlazando... %1$s" -#: hbmk2.prg:7942 +#: hbmk2.prg:7942 hbmk2.prg:11633 #, c-format -msgid "" -"set C compiler warning level\\n" -" can be: max, yes, low, no, def (default: yes)" -msgstr "" -"Configure nivel de advertencia (warnings) del compilador C\\n" -" puede ser: max, yes, low, no, def (default: yes)" +msgid "set C compiler warning level\\n can be: max, yes, low, no, def (default: yes)" +msgstr "Configure nivel de advertencia (warnings) del compilador C\\n puede ser: max, yes, low, no, def (default: yes)" -#: hbmk2.prg:7942 +#: hbmk2.prg:7942 hbmk2.prg:11633 #, c-format msgid "convert .xhp (xMate) project to .hbp file" msgstr "convierte un proyecto .xhp (xMate) en un archivo .hbp" -#: hbmk2.prg:4451 +#: hbmk2.prg:4451 hbmk2.prg:5996 #, c-format msgid "Lib script:" msgstr "Script para librería:" -#: hbmk2.prg:7851 +#: hbmk2.prg:7851 hbmk2.prg:11512 #, c-format msgid "additional path to search for libraries" msgstr "PATH adicional para buscar librerías" @@ -351,7 +326,7 @@ msgstr "PATH adicional para buscar librerías" msgid "additional path to autodetect .c header locations" msgstr "PATH adicional para detectar automáticamente lugares de archivos de cabeceras .c" -#: hbmk2.prg:7942 +#: hbmk2.prg:7942 hbmk2.prg:11633 #, c-format msgid "generate .ch header file with timestamp information. Generated header will define macros _HBMK_BUILD_DATE_, _HBMK_BUILD_TIME_, _HBMK_BUILD_TIMESTAMP_ with the date/time of build" msgstr "generar archivo de cabecera .ch con información de fecha/hora. Cabecera generado definirá macros _HBMK_BUILD_DATE_, _HBMK_BUILD_TIME_, _HBMK_BUILD_TIMESTAMP_ con fecha/hora de creación de archivo." @@ -361,32 +336,32 @@ msgstr "generar archivo de cabecera .ch con información de fecha/hora. Cabecera msgid "Warning: Cannot create install directory for target %1$s." msgstr "Advertencia: No se puede crear directorio de instalación destino: %1$s." -#: hbmk2.prg:7851 +#: hbmk2.prg:7851 hbmk2.prg:11512 #, c-format msgid "link with multi/single-thread Harbour VM" msgstr "enlazar con soporte multi/single-thread Harbour VM" -#: hbmk2.prg:7825 +#: hbmk2.prg:7825 hbmk2.prg:11479 #, c-format msgid " hbmk2 [options] [] " msgstr " hbmk2 [opciones] [] " -#: hbmk2.prg:7942 +#: hbmk2.prg:7942 hbmk2.prg:11633 #, c-format msgid "inherit .prg/.c/linker flags (or none) from Harbour build" msgstr "heredar todos los flags .prg/.c/linker (o ninguno) desde construcción de Harbour " -#: hbmk2.prg:7787 +#: hbmk2.prg:7787 hbmk2.prg:11440 #, c-format msgid "cdp=EN" msgstr "cdp=PTISO" -#: hbmk2.prg:7946 +#: hbmk2.prg:7946 hbmk2.prg:11637 #, c-format msgid "Notes:" msgstr "Notas:" -#: hbmk2.prg:4003 +#: hbmk2.prg:4003 hbmk2.prg:5481 #, c-format msgid "Resource compiler script:" msgstr "Script de compilador de recursos:" @@ -396,28 +371,27 @@ msgstr "Script de compilador de recursos:" msgid "copy target to . if is a directory, it should end with path separator. can be specified multiple times" msgstr "copiar destino a . Si es un directorio, debe terminar con separador de path. Puede ser especificadas multiples veces." -#: hbmk2.prg:4138 -#: hbmk2.prg:4699 +#: hbmk2.prg:4138 hbmk2.prg:4699 hbmk2.prg:5644 hbmk2.prg:6568 #, c-format msgid "C/C++ compiler command:" msgstr "Comando de compilador C/C++:" -#: hbmk2.prg:7960 +#: hbmk2.prg:7960 hbmk2.prg:11650 #, c-format msgid "%1$s make script in current directory is always processed if it exists." msgstr "%1$s hace script en el directorio actual siempre se procesa, si existe." -#: hbmk2.prg:4439 +#: hbmk2.prg:4439 hbmk2.prg:5984 #, c-format msgid "Warning: Lib script could not be created, continuing in command line." msgstr "Advertencia: Script para creación de librería no puede ser creado, continuando en la línea de comandos." -#: hbmk2.prg:4396 +#: hbmk2.prg:4396 hbmk2.prg:5934 #, c-format msgid "Error: Running dynamic lib link command. %1$s" msgstr "Error: Ejecutando comando de enlace de librería dinámica. %1$s" -#: hbmk2.prg:4447 +#: hbmk2.prg:4447 hbmk2.prg:5992 #, c-format msgid "Lib command:" msgstr "Comando LIB:" @@ -427,85 +401,77 @@ msgstr "Comando LIB:" msgid "Copied target to %1$s" msgstr "Copiar a: %1$s" -#: hbmk2.prg:4656 +#: hbmk2.prg:4656 hbmk2.prg:6237 #, c-format msgid "Running executable:" msgstr "Ejecutando aplicativo:" -#: hbmk2.prg:7942 +#: hbmk2.prg:7942 hbmk2.prg:11633 #, c-format msgid "pass flag to output executable when -run option is used" msgstr "pasar flag a ejecutable de salida cuando opción -run es utilizada" -#: hbmk2.prg:7942 +#: hbmk2.prg:7942 hbmk2.prg:11633 #, c-format msgid "pass flag to linker (executable)" msgstr "pasar flags a linkeditor (ejecutable)" -#: hbmk2.prg:5835 +#: hbmk2.prg:5835 hbmk2.prg:8807 #, c-format msgid "Error: Opening: %1$s" msgstr "Error: Abriendo: %1$s" -#: hbmk2.prg:5857 +#: hbmk2.prg:5857 hbmk2.prg:8835 #, c-format msgid "Skipping from: %1$s" msgstr "Ignorando a partir de: %1$s" -#: hbmk2.prg:7942 +#: hbmk2.prg:7942 hbmk2.prg:11633 #, c-format msgid "add/exclude C compiler debug info. For Harbour level debug, use Harbour option -b as usual" msgstr "adicionar/excluir información de debug de compilador C. Para activar el debug de Harbour utilize la Opción -b como de costumbre." -#: hbmk2.prg:7942 +#: hbmk2.prg:7942 hbmk2.prg:11633 #, c-format msgid "start n compilation threads (multiprocess platforms only)" msgstr "Inicia threads de compilación (solo para plataformas multiproceso)" -#: hbmk2.prg:6945 +#: hbmk2.prg:6945 hbmk2.prg:10209 #, c-format msgid "Rebuilt .po file '%1$s'" msgstr "Reconstruido archivo .po '%1$s'" -#: hbmk2.prg:7124 +#: hbmk2.prg:7124 hbmk2.prg:10391 #, c-format msgid "Error: Cannot create file: %1$s" msgstr "Error: No se puede crear el archivo: %1$s" -#: hbmk2.prg:7851 +#: hbmk2.prg:7851 hbmk2.prg:11512 #, c-format msgid "link with GT GT driver, can be repeated to link with more GTs. First one will be the default at runtime" msgstr "enlazar con driver GT selecionado. se puede repetir para enlazar con más GTs. El primero será el predeterminado en tiempo de ejecución" -#: hbmk2.prg:7942 +#: hbmk2.prg:7942 hbmk2.prg:11633 #, c-format msgid "enable (or disable) single beep on successful exit, double beep on failure" msgstr "activa (o desactiva) beep simple en caso de éxito, doble beep en caso de falla" #: hbmk2.prg:7942 #, c-format -msgid "" -"working directory for incremental build mode\\n" -"(default: %1$s/plat/comp)" -msgstr "" -"directorio de trabajo para el modo de compilación incremental\\n" -"(default: %1$s/plat/comp)" +msgid "working directory for incremental build mode\\n(default: %1$s/plat/comp)" +msgstr "directorio de trabajo para el modo de compilación incremental\\n(default: %1$s/plat/comp)" -#: hbmk2.prg:7942 +#: hbmk2.prg:7942 hbmk2.prg:11633 #, c-format -msgid "" -"compress executable/dynamic lib (needs UPX)\\n" -" can be: min, max, def" -msgstr "" -"comprime executable/librería dinamica (necesita UPX)\\n" -" puede ser: min, max, def" +msgid "compress executable/dynamic lib (needs UPX)\\n can be: min, max, def" +msgstr "comprime executable/librería dinamica (necesita UPX)\\n puede ser: min, max, def" -#: hbmk2.prg:7960 +#: hbmk2.prg:7960 hbmk2.prg:11650 #, c-format msgid "Multiple -l, -L and