Eiko Wagenknecht
2024-02-20 3b266ee7d0d414d2af7d291f249b0153af51aa2e
fix: add space and missing dot for listing pages (#907)

8 files modified
29 ■■■■■ changed files
quartz/components/pages/TagContent.tsx 3 ●●●●● patch | view | raw | blame | history
quartz/i18n/locales/de-DE.ts 4 ●●●● patch | view | raw | blame | history
quartz/i18n/locales/en-US.ts 4 ●●●● patch | view | raw | blame | history
quartz/i18n/locales/es-ES.ts 4 ●●●● patch | view | raw | blame | history
quartz/i18n/locales/fr-FR.ts 4 ●●●● patch | view | raw | blame | history
quartz/i18n/locales/it-IT.ts 4 ●●●● patch | view | raw | blame | history
quartz/i18n/locales/nl-NL.ts 2 ●●● patch | view | raw | blame | history
quartz/i18n/locales/uk-UA.ts 4 ●●●● patch | view | raw | blame | history
quartz/components/pages/TagContent.tsx
@@ -66,9 +66,12 @@
                  <p>
                    {i18n(cfg.locale).pages.tagContent.itemsUnderTag({ count: pages.length })}
                    {pages.length > numPages && (
                      <>
                        {" "}
                      <span>
                        {i18n(cfg.locale).pages.tagContent.showingFirst({ count: numPages })}
                      </span>
                      </>
                    )}
                  </p>
                  <PageList limit={numPages} {...listProps} />
quartz/i18n/locales/de-DE.ts
@@ -69,13 +69,13 @@
    folderContent: {
      folder: "Ordner",
      itemsUnderFolder: ({ count }) =>
        count === 1 ? "1 Datei in diesem Ordner" : `${count} Dateien in diesem Ordner.`,
        count === 1 ? "1 Datei in diesem Ordner." : `${count} Dateien in diesem Ordner.`,
    },
    tagContent: {
      tag: "Tag",
      tagIndex: "Tag-Übersicht",
      itemsUnderTag: ({ count }) =>
        count === 1 ? "1 Datei mit diesem Tag" : `${count} Dateien mit diesem Tag.`,
        count === 1 ? "1 Datei mit diesem Tag." : `${count} Dateien mit diesem Tag.`,
      showingFirst: ({ count }) => `Die ersten ${count} Tags werden angezeigt.`,
      totalTags: ({ count }) => `${count} Tags insgesamt.`,
    },
quartz/i18n/locales/en-US.ts
@@ -69,13 +69,13 @@
    folderContent: {
      folder: "Folder",
      itemsUnderFolder: ({ count }) =>
        count === 1 ? "1 item under this folder" : `${count} items under this folder.`,
        count === 1 ? "1 item under this folder." : `${count} items under this folder.`,
    },
    tagContent: {
      tag: "Tag",
      tagIndex: "Tag Index",
      itemsUnderTag: ({ count }) =>
        count === 1 ? "1 item with this tag" : `${count} items with this tag.`,
        count === 1 ? "1 item with this tag." : `${count} items with this tag.`,
      showingFirst: ({ count }) => `Showing first ${count} tags.`,
      totalTags: ({ count }) => `Found ${count} total tags.`,
    },
quartz/i18n/locales/es-ES.ts
@@ -69,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.`,
    },
quartz/i18n/locales/fr-FR.ts
@@ -69,13 +69,13 @@
    folderContent: {
      folder: "Dossier",
      itemsUnderFolder: ({ count }) =>
        count === 1 ? "1 élément sous ce dossier" : `${count} éléments sous ce dossier.`,
        count === 1 ? "1 élément sous ce dossier." : `${count} éléments sous ce dossier.`,
    },
    tagContent: {
      tag: "Étiquette",
      tagIndex: "Index des étiquettes",
      itemsUnderTag: ({ count }) =>
        count === 1 ? "1 élément avec cette étiquette" : `${count} éléments avec cette étiquette.`,
        count === 1 ? "1 élément avec cette étiquette." : `${count} éléments avec cette étiquette.`,
      showingFirst: ({ count }) => `Affichage des premières ${count} étiquettes.`,
      totalTags: ({ count }) => `Trouvé ${count} étiquettes au total.`,
    },
quartz/i18n/locales/it-IT.ts
@@ -69,13 +69,13 @@
    folderContent: {
      folder: "Cartella",
      itemsUnderFolder: ({ count }) =>
        count === 1 ? "1 oggetto in questa cartella" : `${count} oggetti in questa cartella.`,
        count === 1 ? "1 oggetto in questa cartella." : `${count} oggetti in questa cartella.`,
    },
    tagContent: {
      tag: "Etichetta",
      tagIndex: "Indice etichette",
      itemsUnderTag: ({ count }) =>
        count === 1 ? "1 oggetto con questa etichetta" : `${count} oggetti con questa etichetta.`,
        count === 1 ? "1 oggetto con questa etichetta." : `${count} oggetti con questa etichetta.`,
      showingFirst: ({ count }) => `Prime ${count} etichette.`,
      totalTags: ({ count }) => `Trovate ${count} etichette totali.`,
    },
quartz/i18n/locales/nl-NL.ts
@@ -70,7 +70,7 @@
    folderContent: {
      folder: "Map",
      itemsUnderFolder: ({ count }) =>
        count === 1 ? "1 item in deze map" : `${count} items in deze map.`,
        count === 1 ? "1 item in deze map." : `${count} items in deze map.`,
    },
    tagContent: {
      tag: "Label",
quartz/i18n/locales/uk-UA.ts
@@ -69,13 +69,13 @@
    folderContent: {
      folder: "Папка",
      itemsUnderFolder: ({ count }) =>
        count === 1 ? "У цій папці 1 елемент" : `Елементів у цій папці: ${count}.`,
        count === 1 ? "У цій папці 1 елемент." : `Елементів у цій папці: ${count}.`,
    },
    tagContent: {
      tag: "Тег",
      tagIndex: "Індекс тегу",
      itemsUnderTag: ({ count }) =>
        count === 1 ? "1 елемент з цим тегом" : `Елементів з цим тегом: ${count}.`,
        count === 1 ? "1 елемент з цим тегом." : `Елементів з цим тегом: ${count}.`,
      showingFirst: ({ count }) => `Показ перших ${count} тегів.`,
      totalTags: ({ count }) => `Всього знайдено тегів: ${count}.`,
    },