From 81a4e202362f42a82baa9df2b6b91a774098740b Mon Sep 17 00:00:00 2001
From: Yohann Bacha <github@cyberendroit.net>
Date: Tue, 21 May 2024 16:50:58 +0000
Subject: [PATCH] feat: ability to hide tags in the recent notes component (#1147)
---
quartz/i18n/locales/es-ES.ts | 22 ++++++++++++++++++++--
1 files changed, 20 insertions(+), 2 deletions(-)
diff --git a/quartz/i18n/locales/es-ES.ts b/quartz/i18n/locales/es-ES.ts
index 4d39542..37a2a79 100644
--- a/quartz/i18n/locales/es-ES.ts
+++ b/quartz/i18n/locales/es-ES.ts
@@ -6,6 +6,21 @@
description: "Sin descripción",
},
components: {
+ callout: {
+ note: "Nota",
+ abstract: "Resumen",
+ info: "Información",
+ todo: "Por hacer",
+ tip: "Consejo",
+ success: "Éxito",
+ question: "Pregunta",
+ warning: "Advertencia",
+ failure: "Fallo",
+ danger: "Peligro",
+ bug: "Error",
+ example: "Ejemplo",
+ quote: "Cita",
+ },
backlinks: {
title: "Enlaces de Retroceso",
noBacklinksFound: "No se han encontrado enlaces traseros",
@@ -38,6 +53,9 @@
tableOfContents: {
title: "Tabla de Contenidos",
},
+ contentMeta: {
+ readingTime: ({ minutes }) => `${minutes} min read`,
+ },
},
pages: {
rss: {
@@ -51,13 +69,13 @@
folderContent: {
folder: "Carpeta",
itemsUnderFolder: ({ count }) =>
- count === 1 ? "1 artículo en esta carpeta" : `${count} artículos en esta carpeta.`,
+ count === 1 ? "1 artículo en esta carpeta." : `${count} artículos en esta carpeta.`,
},
tagContent: {
tag: "Etiqueta",
tagIndex: "Índice de Etiquetas",
itemsUnderTag: ({ count }) =>
- count === 1 ? "1 artículo con esta etiqueta" : `${count} artículos con esta etiqueta.`,
+ count === 1 ? "1 artículo con esta etiqueta." : `${count} artículos con esta etiqueta.`,
showingFirst: ({ count }) => `Mostrando las primeras ${count} etiquetas.`,
totalTags: ({ count }) => `Se encontraron ${count} etiquetas en total.`,
},
--
Gitblit v1.10.0