From ae50fd3ff7e34942e5acce4ef225585abc52dc74 Mon Sep 17 00:00:00 2001 From: Divyesh Agrawal Date: Fri, 26 Sep 2025 07:40:34 +0530 Subject: [PATCH 1/2] feat: Add Marathi language support --- src/locale/mr_IN.ts | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/locale/mr_IN.ts diff --git a/src/locale/mr_IN.ts b/src/locale/mr_IN.ts new file mode 100644 index 00000000..693ed217 --- /dev/null +++ b/src/locale/mr_IN.ts @@ -0,0 +1,20 @@ +import type { PaginationLocale } from '../interface'; + +const locale: PaginationLocale = { + // Options + items_per_page: '/ पृष्ठ', + jump_to: 'यावर जा', + jump_to_confirm: 'पुष्टी करा', + page: 'पृष्ठ', + + // Pagination + prev_page: 'मागील पृष्ठ', + next_page: 'पुढचे पृष्ठ', + prev_5: 'मागील ५ पृष्ठे', + next_5: 'पुढची ५ पृष्ठे', + prev_3: 'मागील ३ पृष्ठे', + next_3: 'पुढची ३ पृष्ठे', + page_size: 'पृष्ठ आकार', +}; + +export default locale; From f91ce05c6b7263018b8512d712727adf49356acd Mon Sep 17 00:00:00 2001 From: Divyesh Agrawal Date: Fri, 26 Sep 2025 08:03:03 +0530 Subject: [PATCH 2/2] feat: update translations --- src/locale/mr_IN.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/locale/mr_IN.ts b/src/locale/mr_IN.ts index 693ed217..eec6ec25 100644 --- a/src/locale/mr_IN.ts +++ b/src/locale/mr_IN.ts @@ -3,17 +3,17 @@ import type { PaginationLocale } from '../interface'; const locale: PaginationLocale = { // Options items_per_page: '/ पृष्ठ', - jump_to: 'यावर जा', + jump_to: 'यावर जा ', jump_to_confirm: 'पुष्टी करा', page: 'पृष्ठ', // Pagination prev_page: 'मागील पृष्ठ', - next_page: 'पुढचे पृष्ठ', + next_page: 'पुढील पृष्ठ', prev_5: 'मागील ५ पृष्ठे', - next_5: 'पुढची ५ पृष्ठे', + next_5: 'पुढील ५ पृष्ठे', prev_3: 'मागील ३ पृष्ठे', - next_3: 'पुढची ३ पृष्ठे', + next_3: 'पुढील ३ पृष्ठे', page_size: 'पृष्ठ आकार', };