Skip to content

Commit 658b9df

Browse files
authored
fix: add missing translations export from the SDK (#3148)
1 parent 3267fda commit 658b9df

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
@@ -20,13 +20,17 @@ export * from './utils/queryUsers';
2020
export * from './utils/utils';
2121

2222
export { default as enTranslations } from './i18n/en.json';
23+
export { default as esTranslations } from './i18n/es.json';
2324
export { default as frTranslations } from './i18n/fr.json';
25+
export { default as heTranslations } from './i18n/he.json';
2426
export { default as hiTranslations } from './i18n/hi.json';
2527
export { default as itTranslations } from './i18n/it.json';
28+
export { default as jaTranslations } from './i18n/ja.json';
29+
export { default as koTranslations } from './i18n/ko.json';
2630
export { default as nlTranslations } from './i18n/nl.json';
31+
export { default as ptBRTranslations } from './i18n/pt-br.json';
2732
export { default as ruTranslations } from './i18n/ru.json';
2833
export { default as trTranslations } from './i18n/tr.json';
29-
export { default as heTranslations } from './i18n/he.json';
3034

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

0 commit comments

Comments
 (0)