Skip to content

Commit

Permalink
chore: adds en-US locale
Browse files Browse the repository at this point in the history
  • Loading branch information
langz committed Nov 18, 2024
1 parent 1cafd1e commit 630c5dd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/dnb-eufemia/src/shared/locales/index.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
// import default locales
import nbNO from './nb-NO'
import enUS from './en-US'
import enGB from './en-GB'

const locales = { ...nbNO, ...enGB }
const locales = { ...nbNO, ...enGB, ...enUS }

export type TranslationsNbNO = (typeof locales)['nb-NO']
export type TranslationsEnUS = (typeof locales)['en-US']
export type TranslationsEnGB = (typeof locales)['en-GB']

export default locales

0 comments on commit 630c5dd

Please sign in to comment.