You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| Firefox |latest and extended support release\(ESR\)|
96
-
| Edge | 2 most recent major versions|
97
-
| Safari | 2 most recent major versions|
98
-
| iOS | 2 most recent major versions|
99
-
| Android | 2 most recent major versions|
94
+
| Chrome | 2 versiones más recientes|
95
+
| Firefox |última y versión de soporte extendido\(ESR\)|
96
+
| Edge | 2 versiones principales más recientes|
97
+
| Safari | 2 versiones principales más recientes|
98
+
| iOS | 2 versiones principales más recientes|
99
+
| Android | 2 versiones principales más recientes|
100
100
101
101
## Polyfills
102
102
103
-
Angular is built on the latest standards of the web platform.
104
-
Targeting such a wide range of browsers is challenging because they do not support all features of modern browsers.
105
-
You compensate by loading polyfill scripts \("polyfills"\) for the browsers that you must support.
106
-
See instructions on how to include polyfills into your project below.
103
+
Angular está construido sobre los estándares más recientes de la plataforma web.
104
+
Apuntar a una gama tan amplia de navegadores es un desafío porque no todos soportan todas las características de los navegadores modernos.
105
+
Puedes compensar esto cargando scripts polyfill ("polyfills") para los navegadores que debes soportar.
106
+
A continuación, encontrarás instrucciones sobre cómo incluir polyfills en tu proyecto.
107
107
108
-
IMPORTANT: The suggested polyfills are the ones that run full Angular applications.
109
-
You might need additional polyfills to support features not covered by this list.
108
+
IMPORTANTE: Los polyfills sugeridos son los que ejecutan aplicaciones Angular completas.
109
+
Es posible que necesites polyfills adicionales para soportar características no cubiertas por esta lista.
110
110
111
-
HELPFUL: Polyfills cannot magically transform an old, slow browser into a modern, fast one.
111
+
ÚTIL: Los polyfills no pueden transformar mágicamente un navegador antiguo y lento en uno moderno y rápido.
112
112
113
-
## Enabling polyfills with CLI projects
113
+
## Habilitando polyfills en proyectos CLI
114
114
115
-
The[Angular CLI](tools/cli)provides support for polyfills.
116
-
If you are not using the CLI to create your projects, see [Polyfill instructions for non-CLI users](#polyfills-for-non-cli-users).
115
+
El[Angular CLI](tools/cli)proporciona soporte para polyfills.
116
+
Si no estás usando el CLI para crear tus proyectos, consulta las [Instrucciones de polyfills para usuarios sin CLI](#polyfills-for-non-cli-users).
117
117
118
-
The `polyfills`options of the [browser and test builder](tools/cli/cli-builder)can be a full path for a file\(Example: `src/polyfills.ts`\)or,
119
-
relative to the current workspace or module specifier \(Example: `zone.js`\).
118
+
La opción `polyfills`del [builder de navegador y pruebas](tools/cli/cli-builder)puede ser una ruta completa de un archivo\(Ejemplo: `src/polyfills.ts`\)o,
119
+
relativa al espacio de trabajo actual o especificador de módulo \(Ejemplo: `zone.js`\).
120
120
121
-
If you create a TypeScript file, make sure to include it in the `files`property of your`tsconfig` file.
121
+
Si creas un archivo TypeScript, asegúrate de incluirlo en la propiedad `files`de tu archivo`tsconfig`.
122
122
123
123
```json
124
124
@@ -135,31 +135,31 @@ If you create a TypeScript file, make sure to include it in the `files` property
135
135
}
136
136
```
137
137
138
-
## Polyfills for non-CLI users
138
+
## Polyfills para usuarios sin CLI
139
139
140
-
If you are not using the CLI, add your polyfill scripts directly to the host web page\(`index.html`\).
140
+
Si no estás usando el CLI, agrega tus scripts polyfill directamente a la página web host\(`index.html`\).
0 commit comments