
This is the least-worst solution of a conflict that I didn't see coming until it was too late. So here we are, and this is how I'm handling it: - After discussion with the Ursula designer I am reincarnating Ursula as Uma under my own name as per their request. - After discussion with the Uma designer, I am removing Uma. Let the message be clear: **If you can't play nice with others, I will take away your toys.**
8 lines
354 B
JavaScript
8 lines
354 B
JavaScript
import en from './en.json' assert { type: 'json' }
|
|
import de from './de.json' assert { type: 'json' }
|
|
import es from './es.json' assert { type: 'json' }
|
|
import fr from './fr.json' assert { type: 'json' }
|
|
import nl from './nl.json' assert { type: 'json' }
|
|
import uk from './uk.json' assert { type: 'json' }
|
|
|
|
export const i18n = { en, de, es, fr, nl, uk }
|