Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/payload/src/exports/i18n/is.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { is } from '@payloadcms/translations/languages/is'
2 changes: 2 additions & 0 deletions packages/translations/src/exports/all.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import { hr } from '../languages/hr.js'
import { hu } from '../languages/hu.js'
import { hy } from '../languages/hy.js'
import { id } from '../languages/id.js'
import { is } from '../languages/is.js'
import { it } from '../languages/it.js'
import { ja } from '../languages/ja.js'
import { ko } from '../languages/ko.js'
Expand Down Expand Up @@ -64,6 +65,7 @@ export const translations = {
hy,

id,
is,
it,
ja,
ko,
Expand Down
6 changes: 6 additions & 0 deletions packages/translations/src/importDateFNSLocale.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,12 @@ export const importDateFNSLocale = async (locale: string): Promise<Locale> => {
result = (await import('date-fns/locale/id')).id

break

case 'is':
result = (await import('date-fns/locale/is')).is

break

case 'it':
result = (await import('date-fns/locale/it')).it

Expand Down
Loading
Loading