When merging ore:aggregation, process the license correctly, if different or null, the default is use, if the same, this is the value used
export default {
name: 'i18n',
initialize: function( instance ) {
instance.lookup('service:i18n').set('locale', calculateLocale());
}
};
function calculateLocale() {
// whatever you do to pick a locale for the user:
return navigator.language || navigator.userLanguage || 'fr-FR';
}