From 63fdc6e3dde1c33bd642f9ff63b8852f5eec1a77 Mon Sep 17 00:00:00 2001 From: saberzero1 Date: Sat, 4 Apr 2026 01:58:41 +0200 Subject: [PATCH] i18n: add translations for 30 locales from Quartz v4 --- src/i18n/locales/id-ID.ts | 2 +- src/i18n/locales/it-IT.ts | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/i18n/locales/id-ID.ts b/src/i18n/locales/id-ID.ts index b151394..5324c3f 100644 --- a/src/i18n/locales/id-ID.ts +++ b/src/i18n/locales/id-ID.ts @@ -2,7 +2,7 @@ export default { components: { recentNotes: { title: "Catatan Terbaru", - seeRemainingMore: ({ remaining }: { remaining: number }) => `See ${remaining} more →`, + seeRemainingMore: ({ remaining }: { remaining: number }) => `Lihat ${remaining} lagi →`, }, }, }; diff --git a/src/i18n/locales/it-IT.ts b/src/i18n/locales/it-IT.ts index 8cf9a8a..9da3c93 100644 --- a/src/i18n/locales/it-IT.ts +++ b/src/i18n/locales/it-IT.ts @@ -2,7 +2,8 @@ export default { components: { recentNotes: { title: "Note recenti", - seeRemainingMore: ({ remaining }: { remaining: number }) => `See ${remaining} more →`, + seeRemainingMore: ({ remaining }: { remaining: number }) => + remaining === 1 ? "Vedi 1 altra →" : `Vedi altre ${remaining} →`, }, }, };