Skip to content

Commit f526037

Browse files
authored
fix: add missing translations export from the SDK (#3146)
1 parent 59a32ee commit f526037

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

package/src/index.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,17 @@ export * from './utils/setupCommandUIMiddlewares';
1919
export * from './utils/utils';
2020

2121
export { default as enTranslations } from './i18n/en.json';
22+
export { default as esTranslations } from './i18n/es.json';
2223
export { default as frTranslations } from './i18n/fr.json';
24+
export { default as heTranslations } from './i18n/he.json';
2325
export { default as hiTranslations } from './i18n/hi.json';
2426
export { default as itTranslations } from './i18n/it.json';
27+
export { default as jaTranslations } from './i18n/ja.json';
28+
export { default as koTranslations } from './i18n/ko.json';
2529
export { default as nlTranslations } from './i18n/nl.json';
30+
export { default as ptBRTranslations } from './i18n/pt-br.json';
2631
export { default as ruTranslations } from './i18n/ru.json';
2732
export { default as trTranslations } from './i18n/tr.json';
28-
export { default as heTranslations } from './i18n/he.json';
2933

3034
export { SqliteClient } from './store/SqliteClient';
3135
export { OfflineDB } from './store/OfflineDB';

0 commit comments

Comments
 (0)