diff options
8 files changed, 34 insertions, 14 deletions
diff --git a/admin/WebConsole/comandos/CrearImagenBasica.php b/admin/WebConsole/comandos/CrearImagenBasica.php index e879150f..f9937f66 100644 --- a/admin/WebConsole/comandos/CrearImagenBasica.php +++ b/admin/WebConsole/comandos/CrearImagenBasica.php @@ -80,10 +80,10 @@ if (!$resul){ <TH align=center> <?php echo $TbMsg["PARTITION"] ?> </TH> <TH align=center> <?php echo $TbMsg["SO_NAME"] ?> </TH> <TH align=center> <?php echo $TbMsg["IMAGE_REPOSITORY"]?> </TH> - <TH align=center> Método </TH> - <TH align=center> W </TH> - <TH align=center> E </TH> - <TH align=center> C </TH> + <TH align=center> <?php echo $TbMsg["SYNC_METHOD"]?> </TH> + <TH align=center> <dfn title='<?php echo $TbMsg["TITLE_W"]?>'> W </dfn> </TH> + <TH align=center> <dfn title='<?php echo $TbMsg["TITLE_E"]?>'> E </dfn> </TH> + <TH align=center> <dfn title='<?php echo $TbMsg["TITLE_C"]?>'> C </dfn> </TH> </TR> <!------------------------------------------------------------------------------------------ Detalle diff --git a/admin/WebConsole/comandos/CrearSoftIncremental.php b/admin/WebConsole/comandos/CrearSoftIncremental.php index 2121b7f5..69022ed3 100644 --- a/admin/WebConsole/comandos/CrearSoftIncremental.php +++ b/admin/WebConsole/comandos/CrearSoftIncremental.php @@ -81,10 +81,10 @@ if (!$resul){ <TH align=center> <?php echo $TbMsg["PARTITION"] ?> </TH> <TH align=center> <?php echo $TbMsg["SO_NAME"] ?> </TH> <TH align=center> <?php echo $TbMsg["INCREMENTAL_IMAGE_REPOSITORY"]?> </TH> - <TH align=center> Método </TH> - <TH align=center> W </TH> - <TH align=center> E </TH> - <TH align=center> C </TH> + <TH align=center> <?php echo $TbMsg["SYNC_METHOD"]?> </TH> + <TH align=center> <dfn title='<?php echo $TbMsg["TITLE_W"]?>'> W </dfn> </TH> + <TH align=center> <dfn title='<?php echo $TbMsg["TITLE_E"]?>'> E </dfn> </TH> + <TH align=center> <dfn title='<?php echo $TbMsg["TITLE_C"]?>'> C </dfn> </TH> </TR> <!------------------------------------------------------------------------------------------ Detalle diff --git a/admin/WebConsole/idiomas/php/cat/aulas_cat.php b/admin/WebConsole/idiomas/php/cat/aulas_cat.php index c907d304..0813abf4 100644 --- a/admin/WebConsole/idiomas/php/cat/aulas_cat.php +++ b/admin/WebConsole/idiomas/php/cat/aulas_cat.php @@ -54,5 +54,7 @@ $TbMsg[46]='Identificador àmbit'; $TbMsg[47]='"Log històric"'; $TbMsg[48]='"Log en temps real"'; + $TbMsg[49]='"Sincronización"'; + $TbMsg[50]='"Sincronización 2"'; ?> diff --git a/admin/WebConsole/idiomas/php/cat/pintaParticiones_cat.php b/admin/WebConsole/idiomas/php/cat/pintaParticiones_cat.php index f6b8af43..11709d9a 100644 --- a/admin/WebConsole/idiomas/php/cat/pintaParticiones_cat.php +++ b/admin/WebConsole/idiomas/php/cat/pintaParticiones_cat.php @@ -38,6 +38,11 @@ $TbMsg["INCREMENTAL_IMAGE_REPOSITORY"]='Imagen Incremental / Repositorio'; $TbMsg["CONFIG_NOCONFIG"]='Sense configuració: client no connectat al servidor.'; $TbMsg["CONFIG_NODISK1MSDOS"]='Avís: aquest comandament sol tracta el disc 1 amb taula de particions MSDOS.'; +$TbMsg["SYNC_METHOD"]='Método'; +$TbMsg["TITLE_W"]='Opción de rsync: El algoritmo incremental rsync no se usa y se envía todo el archivo. Rsync lo usa por defecto cuando el origen y destino locales. '; +$TbMsg["TITLE_E"]='Opción de rsync: Se compara el destino con el origen y se borran los ficheros que no existen en el primero.'; +$TbMsg["TITLE_C"]='Opción de rsync: Comprime los archivos de datos que se envían a la máquina de destino, lo que reduce la cantidad de datos que se transmiten. '; +$TbMsg["SEND"]='Protocolo'; ?> diff --git a/admin/WebConsole/idiomas/php/eng/aulas_eng.php b/admin/WebConsole/idiomas/php/eng/aulas_eng.php index 07ddf151..5a644688 100644 --- a/admin/WebConsole/idiomas/php/eng/aulas_eng.php +++ b/admin/WebConsole/idiomas/php/eng/aulas_eng.php @@ -54,5 +54,7 @@ $TbMsg[46]='Scope id'; $TbMsg[47]='"Historical log"'; $TbMsg[48]='"Real time log"'; + $TbMsg[49]='"Synchronization'; + $TbMsg[50]='"Synchronization 2'; ?> diff --git a/admin/WebConsole/idiomas/php/eng/pintaParticiones_eng.php b/admin/WebConsole/idiomas/php/eng/pintaParticiones_eng.php index 0b123837..58e9db79 100644 --- a/admin/WebConsole/idiomas/php/eng/pintaParticiones_eng.php +++ b/admin/WebConsole/idiomas/php/eng/pintaParticiones_eng.php @@ -36,7 +36,13 @@ $TbMsg["IMAGE_REPOSITORY"]='Imagen / Repositorio'; $TbMsg["INCREMENTAL_IMAGE_REPOSITORY"]='Imagen Incremental / Repositorio'; $TbMsg["CONFIG_NOCONFIG"]='No configuration: client does not connect to server.'; -TbMsg["CONFIG_NODISK1MSDOS"]='Warning: this command only uses disk 1 with a MSDOS partition table.'; +$TbMsg["CONFIG_NODISK1MSDOS"]='Warning: this command only uses disk 1 with a MSDOS partition table.'; + +$TbMsg["SYNC_METHOD"]='Method'; +$TbMsg["TITLE_W"]='Rsync option: delta-transfer algorithm is not used and the whole file is sent as-is instead. This is the default when both the source and destination are specified as local paths.' +$TbMsg["TITLE_E"]="Rsync option: delete extraneous files from the receiving side (ones that aren't on the sending side)." +$TbMsg["TITLE_C"]='Rsync option: compresses the file data as it is sent to the destination machine, which reduces the amount of data being transmitted.'; +$TbMsg["SEND"]='Protocol'; ?> diff --git a/admin/WebConsole/idiomas/php/esp/pintaParticiones_esp.php b/admin/WebConsole/idiomas/php/esp/pintaParticiones_esp.php index e4a278eb..2d2a2ab5 100644 --- a/admin/WebConsole/idiomas/php/esp/pintaParticiones_esp.php +++ b/admin/WebConsole/idiomas/php/esp/pintaParticiones_esp.php @@ -38,5 +38,10 @@ $TbMsg["INCREMENTAL_IMAGE_REPOSITORY"]='Imagen Incremental / Repositorio'; $TbMsg["CONFIG_NOCONFIG"]='Sin configuración: cliente no conectado al servidor.'; $TbMsg["CONFIG_NODISK1MSDOS"]='Aviso: este comando solo trata el disco 1 con tabla de particiones MSDOS.'; +$TbMsg["SYNC_METHOD"]='Método'; +$TbMsg["TITLE_W"]='Opción de rsync: El algoritmo incremental rsync no se usa y se envía todo el archivo. Rsync lo usa por defecto cuando el origen y destino locales. '; +$TbMsg["TITLE_E"]='Opción de rsync: Se compara el destino con el origen y se borran los ficheros que no existen en el primero.'; +$TbMsg["TITLE_C"]='Opción de rsync: Comprime los archivos de datos que se envían a la máquina de destino, lo que reduce la cantidad de datos que se transmiten. '; +$TbMsg["SEND"]='Protocolo'; ?> diff --git a/admin/WebConsole/includes/pintaParticiones.php b/admin/WebConsole/includes/pintaParticiones.php index 973c9af0..d829448a 100644 --- a/admin/WebConsole/includes/pintaParticiones.php +++ b/admin/WebConsole/includes/pintaParticiones.php @@ -371,11 +371,11 @@ function pintaParticionesRestaurarImagenSincronizacion1($cmd,$configuraciones,$i echo '<th align="center"> '.$TbMsg["SIZE_KB"].' </th>'; // Tamaño echo '<TH align=center> '.$TbMsg[10].' </TH>'; echo '<TH align=center> '.$TbMsg[16].' </TH>'; - echo '<TH align=center> Método </TH>'; - echo '<TH align=center> Envío </TH>'; - echo ' <TH align=center> W </TH>'; - echo ' <TH align=center> E </TH>'; - echo ' <TH align=center> C </TH>'; + echo '<TH align=center> '.$TbMsg["SYNC_METHOD"].' </TH>'; + echo '<TH align=center> '.$TbMsg["SEND"].' </TH>'; + echo ' <TH align=center> <dfn title="'.$TbMsg["TITLE_W"].'">W</dfn> </TH>'; + echo ' <TH align=center> <dfn title="'.$TbMsg["TITLE_E"].'">E</dfn> </TH>'; + echo ' <TH align=center> <dfn title="'.$TbMsg["TITLE_C"].'">C</dfn> </TH>'; echo '</TR>'; |