Mats Fangohr
2024-02-04 dff4b063135297aaa2f0605fd3267a874baaa90d
fix(i18n): backlinks naming in mapping (#800)

3 files modified
6 ■■■■ changed files
quartz/components/Backlinks.tsx 2 ●●● patch | view | raw | blame | history
quartz/i18n/locales/en.json 2 ●●● patch | view | raw | blame | history
quartz/i18n/locales/fr.json 2 ●●● patch | view | raw | blame | history
quartz/components/Backlinks.tsx
@@ -20,7 +20,7 @@
            </li>
          ))
        ) : (
          <li>{i18n(cfg.locale, "backlinks.noBlacklinksFound")}</li>
          <li>{i18n(cfg.locale, "backlinks.noBacklinksFound")}</li>
        )}
      </ul>
    </div>
quartz/i18n/locales/en.json
@@ -2,7 +2,7 @@
  "404": "Either this page is private or doesn't exist.",
  "backlinks": {
    "backlinks": "Backlinks",
    "noBlacklinksFound": "No backlinks found"
    "noBacklinksFound": "No backlinks found"
  },
  "common": {
    "item": "item"
quartz/i18n/locales/fr.json
@@ -2,7 +2,7 @@
  "404": "Soit cette page est privée, soit elle n'existe pas.",
  "backlinks": {
    "backlinks": "Rétroliens",
    "noBlacklinksFound": "Aucun rétrolien trouvé"
    "noBacklinksFound": "Aucun rétrolien trouvé"
  },
  "common": {
    "item": "fichier"