diff --git a/src/i18n/locales/lt-LT.ts b/src/i18n/locales/lt-LT.ts new file mode 100644 index 0000000..244ecc1 --- /dev/null +++ b/src/i18n/locales/lt-LT.ts @@ -0,0 +1,8 @@ +export default { + components: { + recentNotes: { + title: "Naujausi Užrašai", + seeRemainingMore: ({ remaining }: { remaining: number }) => `See ${remaining} more →`, + }, + }, +}; diff --git a/src/i18n/locales/nb-NO.ts b/src/i18n/locales/nb-NO.ts new file mode 100644 index 0000000..e418ccd --- /dev/null +++ b/src/i18n/locales/nb-NO.ts @@ -0,0 +1,8 @@ +export default { + components: { + recentNotes: { + title: "Nylige notater", + seeRemainingMore: ({ remaining }: { remaining: number }) => `See ${remaining} more →`, + }, + }, +};