diff --git a/src/i18n/locales/ar-SA.ts b/src/i18n/locales/ar-SA.ts new file mode 100644 index 0000000..3def457 --- /dev/null +++ b/src/i18n/locales/ar-SA.ts @@ -0,0 +1,8 @@ +export default { + components: { + recentNotes: { + title: "آخر الملاحظات", + seeRemainingMore: ({ remaining }: { remaining: number }) => `See ${remaining} more →`, + }, + }, +}; diff --git a/src/i18n/locales/ca-ES.ts b/src/i18n/locales/ca-ES.ts new file mode 100644 index 0000000..602b68f --- /dev/null +++ b/src/i18n/locales/ca-ES.ts @@ -0,0 +1,8 @@ +export default { + components: { + recentNotes: { + title: "Notes Recents", + seeRemainingMore: ({ remaining }: { remaining: number }) => `See ${remaining} more →`, + }, + }, +};