diff --git a/src/i18n/locales/tr-TR.ts b/src/i18n/locales/tr-TR.ts new file mode 100644 index 0000000..5b562d5 --- /dev/null +++ b/src/i18n/locales/tr-TR.ts @@ -0,0 +1,8 @@ +export default { + components: { + recentNotes: { + title: "Son Notlar", + seeRemainingMore: ({ remaining }: { remaining: number }) => `See ${remaining} more →`, + }, + }, +}; diff --git a/src/i18n/locales/uk-UA.ts b/src/i18n/locales/uk-UA.ts new file mode 100644 index 0000000..b275130 --- /dev/null +++ b/src/i18n/locales/uk-UA.ts @@ -0,0 +1,8 @@ +export default { + components: { + recentNotes: { + title: "Останні нотатки", + seeRemainingMore: ({ remaining }: { remaining: number }) => `See ${remaining} more →`, + }, + }, +};