Translated html comment (#23868)

* Translated html comment

Translated following " Your browser is lower then IE9" , "Your browser is IE9" , "Your browser is greater then IE9" to his "Si tu navegador es mas bajo de IE9" , "Si tu navegador es IE9", "Si tu navegador es mas major de IE9".

* Fix proposed translation for clearer text
This commit is contained in:
E.T
2019-07-02 20:14:03 -05:00
committed by Randell Dawson
parent 1cee27b04c
commit b1f147ff37

View File

@ -58,9 +58,9 @@ Estos comentarios solo están disponibles en Internet Explorer y pueden usarse h
```html
<!--[if lt IE 9]> <p>Your browser is lower then IE9</p> <![endif]-->
<!--[if IE 9]> <p>Your browser is IE9</p> <![endif]-->
<!--[if gt IE 9]> <p>Your browser is greater then IE9</p> <![endif]-->
<!--[if lt IE 9]> <p>Si tu navegador es menor IE9</p> <![endif]-->
<!--[if IE 9]> <p>Si tu navegador es IE9</p> <![endif]-->
<!--[if gt IE 9]> <p>Si tu navegador es mayor a IE9</p> <![endif]-->
```
[Sobre los comentarios condicionales.](https://msdn.microsoft.com/en-us/library/ms537512(v=vs.85).aspx)