File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -316,6 +316,15 @@ export async function initialize({
316316 await handlers . logging ( ) ;
317317 publish ( APP_LOGGING_INITIALIZED ) ;
318318
319+ // Internationalization
320+ configureI18n ( {
321+ messages,
322+ config : getConfig ( ) ,
323+ loggingService : getLoggingService ( ) ,
324+ } ) ;
325+ await handlers . i18n ( ) ;
326+ publish ( APP_I18N_INITIALIZED ) ;
327+
319328 // Authentication
320329 configureAuth ( authServiceImpl , {
321330 loggingService : getLoggingService ( ) ,
@@ -335,15 +344,6 @@ export async function initialize({
335344 await handlers . analytics ( ) ;
336345 publish ( APP_ANALYTICS_INITIALIZED ) ;
337346
338- // Internationalization
339- configureI18n ( {
340- messages,
341- config : getConfig ( ) ,
342- loggingService : getLoggingService ( ) ,
343- } ) ;
344- await handlers . i18n ( ) ;
345- publish ( APP_I18N_INITIALIZED ) ;
346-
347347 // Application Ready
348348 await handlers . ready ( ) ;
349349 publish ( APP_READY ) ;
You can’t perform that action at this time.
0 commit comments