diff --git a/src/i18n/locales/cs-CZ.ts b/src/i18n/locales/cs-CZ.ts new file mode 100644 index 0000000..1b5aa25 --- /dev/null +++ b/src/i18n/locales/cs-CZ.ts @@ -0,0 +1,8 @@ +export default { + components: { + recentNotes: { + title: "Nejnovější poznámky", + seeRemainingMore: ({ remaining }: { remaining: number }) => `See ${remaining} more →`, + }, + }, +}; diff --git a/src/i18n/locales/de-DE.ts b/src/i18n/locales/de-DE.ts new file mode 100644 index 0000000..a926703 --- /dev/null +++ b/src/i18n/locales/de-DE.ts @@ -0,0 +1,8 @@ +export default { + components: { + recentNotes: { + title: "Zuletzt bearbeitete Seiten", + seeRemainingMore: ({ remaining }: { remaining: number }) => `See ${remaining} more →`, + }, + }, +};