diff --git a/src/i18n/locales/nl-NL.ts b/src/i18n/locales/nl-NL.ts new file mode 100644 index 0000000..dd8e7b7 --- /dev/null +++ b/src/i18n/locales/nl-NL.ts @@ -0,0 +1,8 @@ +export default { + components: { + recentNotes: { + title: "Recente notities", + seeRemainingMore: ({ remaining }: { remaining: number }) => `See ${remaining} more →`, + }, + }, +}; diff --git a/src/i18n/locales/pl-PL.ts b/src/i18n/locales/pl-PL.ts new file mode 100644 index 0000000..61470ff --- /dev/null +++ b/src/i18n/locales/pl-PL.ts @@ -0,0 +1,8 @@ +export default { + components: { + recentNotes: { + title: "Najnowsze notatki", + seeRemainingMore: ({ remaining }: { remaining: number }) => `See ${remaining} more →`, + }, + }, +};