In the future if somebody will be have the same problem with language from SSR you can try with that
export const getServerSideProps: GetServerSideProps = async context => {
if (context.req.url?.includes('/en/')) {
context.locale = 'en'
}
That will works for me, so i will leave that here.