Skip to content

Commit d626b1c

Browse files
committed
Updated distribution files
1 parent 5788755 commit d626b1c

File tree

3 files changed

+23
-5
lines changed

3 files changed

+23
-5
lines changed

Diff for: material/partials/languages/es.html

+5-2
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,14 @@
2424
"search.result.more.one": "1 más en esta página",
2525
"search.result.more.other": "# más en esta página",
2626
"search.result.term.missing": "Falta",
27+
"select.language.title": "Seleccionar idioma",
28+
"select.version.title": "Seleccionar versión",
2729
"skip.link.title": "Saltar a contenido",
2830
"source.link.title": "Ir al repositorio",
2931
"source.revision.date": "Última actualización",
3032
"source.file.date.updated": "Última actualización",
31-
"source.file.date.created": "Created",
33+
"source.file.date.created": "Creado",
3234
"tabs.title": "Pestañas",
33-
"toc.title": "Tabla de contenidos"
35+
"toc.title": "Tabla de contenidos",
36+
"top.title": "Volver al principio"
3437
}[key] }}{% endmacro %}

Diff for: material/partials/languages/gl.html

+14-2
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,30 @@
88
"edit.link.title": "Editar esta páxina",
99
"footer.previous": "Anterior",
1010
"footer.next": "Seguinte",
11+
"footer.title": "Pé",
12+
"header.title": "Cabeceira",
1113
"meta.comments": "Comentarios",
1214
"meta.source": "Fonte",
15+
"nav.title": "Navegación",
1316
"search.config.lang": "es",
14-
"search.placeholder": "Busca",
17+
"search.placeholder": "Procura",
18+
"search.reset": "Limpar",
19+
"search.result.initializer": "Inicializando procura",
1520
"search.result.placeholder": "Insira un termo",
1621
"search.result.none": "Sen resultados",
1722
"search.result.one": "1 resultado atopado",
1823
"search.result.other": "# resultados atopados",
24+
"search.result.more.one": "1 máis nesta páxina",
25+
"search.result.more.other": "# máis nesta páxina",
26+
"search.result.term.missing": "Falta",
27+
"select.language.title": "Seleccionar idioma",
28+
"select.version.title": "Seleccionar version",
1929
"skip.link.title": "Ir ao contido",
2030
"source.link.title": "Ir ao repositorio",
2131
"source.revision.date": "Última actualización",
2232
"source.file.date.updated": "Última actualización",
2333
"source.file.date.created": "Creada",
24-
"toc.title": "Táboa de contidos"
34+
"tabs.title": "Pestanas",
35+
"toc.title": "Táboa de contidos",
36+
"top.title": "Volver ao principio"
2537
}[key] }}{% endmacro %}

Diff for: tools/build/_/index.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,10 @@ export function resolve(
128128
export function watch(
129129
pattern: string, options: WatchOptions
130130
): Observable<string> {
131-
return fromEvent(chokidar.watch(pattern, options), "change")
131+
return fromEvent(
132+
chokidar.watch(pattern, options),
133+
"change"
134+
) as Observable<string>
132135
}
133136

134137
/* ------------------------------------------------------------------------- */

0 commit comments

Comments
 (0)