diff options
author | Ramón M. Gómez <ramongomez@us.es> | 2019-02-04 12:10:37 +0100 |
---|---|---|
committer | Ramón M. Gómez <ramongomez@us.es> | 2019-02-04 12:10:37 +0100 |
commit | a7406f2d0506a289ac28dd7ec92401ba27698c5b (patch) | |
tree | 305216c5ddd8733259e70e851689c67c503d639f /admin/WebConsole/idiomas | |
parent | 62eba32016cce7042539674d7e56f40bc5e102ff (diff) |
#834: Fixing more code cleanup: some file encoding, CSS units, Javascript comparisons, HTML tags, PHP variables.
Diffstat (limited to 'admin/WebConsole/idiomas')
3 files changed, 5 insertions, 5 deletions
diff --git a/admin/WebConsole/idiomas/javascripts/eng/tareascomandos_eng.js b/admin/WebConsole/idiomas/javascripts/eng/tareascomandos_eng.js index 7b9c146a..5e075b18 100644 --- a/admin/WebConsole/idiomas/javascripts/eng/tareascomandos_eng.js +++ b/admin/WebConsole/idiomas/javascripts/eng/tareascomandos_eng.js @@ -1,9 +1,9 @@ //____________________________________________________________________________ // // Fichero de idiomas javascript: tareascomandos_eng.js -// Idioma: Inglés +// Idioma: Inglés //____________________________________________________________________________ -TbMsg=new Array; +TbMsg=[]; TbMsg[0]="WARNING: This command will be excluded from this task. Are you sure?"; TbMsg[1]="WARNING: You must enter a sequence number"; TbMsg[2]="This command has been excluded successfully from this task"; diff --git a/admin/WebConsole/idiomas/php/eng/comandos/configurar_eng.php b/admin/WebConsole/idiomas/php/eng/comandos/configurar_eng.php index 16d1d06a..60085635 100644 --- a/admin/WebConsole/idiomas/php/eng/comandos/configurar_eng.php +++ b/admin/WebConsole/idiomas/php/eng/comandos/configurar_eng.php @@ -22,6 +22,6 @@ $TbMsg[14]='Format'; $TbMsg[15]='Hide'; $TbMsg[16]='Show'; - $TbMsg[17]='¡¡ Free space !!'; + $TbMsg[17]='Free space !!'; $TbMsg["HD"]='Disk'; diff --git a/admin/WebConsole/idiomas/php/eng/comandos/particionaryformatear_eng.php b/admin/WebConsole/idiomas/php/eng/comandos/particionaryformatear_eng.php index 47003e15..d5c979e5 100644 --- a/admin/WebConsole/idiomas/php/eng/comandos/particionaryformatear_eng.php +++ b/admin/WebConsole/idiomas/php/eng/comandos/particionaryformatear_eng.php @@ -4,7 +4,7 @@ // Php language file: particionaryformatear_eng.php (Comandos) // Language: English //________________________________________________________________________________________________________ - $TbMsg=array(); + if(empty($TbMsg)) $TbMsg=array(); $TbMsg[0]='Centers'; $TbMsg[1]='Group of labs'; $TbMsg[2]='Labs'; @@ -22,4 +22,4 @@ $TbMsg[14]='Format'; $TbMsg[15]='Hide'; $TbMsg[16]='Show'; - $TbMsg[17]='¡¡ Free space !!'; + $TbMsg[17]='Free space !!'; |