diff --git a/src/i18n/locales/fr-FR.ts b/src/i18n/locales/fr-FR.ts new file mode 100644 index 0000000..ee0e3d1 --- /dev/null +++ b/src/i18n/locales/fr-FR.ts @@ -0,0 +1,8 @@ +export default { + components: { + recentNotes: { + title: "Notes Récentes", + seeRemainingMore: ({ remaining }: { remaining: number }) => `See ${remaining} more →`, + }, + }, +}; diff --git a/src/i18n/locales/he-IL.ts b/src/i18n/locales/he-IL.ts new file mode 100644 index 0000000..6804148 --- /dev/null +++ b/src/i18n/locales/he-IL.ts @@ -0,0 +1,8 @@ +export default { + components: { + recentNotes: { + title: "הערות אחרונות", + seeRemainingMore: ({ remaining }: { remaining: number }) => `See ${remaining} more →`, + }, + }, +};