Hugo with multiple languages keep blog posts in english

Hello,
I’m building a Hugo website and I added the following to the config.toml file:

[languages]
  [languages.en]
  title  = "New Hugo Site"
  weight = 1

    [[languages.en.menu.main]]
      name   = "Home"
      url    = "/"
      weight = 1
    
    [[languages.en.menu.main]]
      name   = "Blog"
      url    = "/posts"
      weight = 2

[languages.hu]
  title  = "Új Hugo Weboldal"
  weight = 2
  
    [[languages.hu.menu.main]]
      name   = "Címlap"
      url    = "/"
      weight = 1

    [[languages.hu.menu.main]]
      name   = "Blog"
      url    = "/post"
      weight = 2

I’m not sure if I did it correctly but it works. I would like to keep the “blog” in English that will be the only untranslated part of the website, I see no reason to translate each post, but when I switch to the Hungarian version http://localhost:1313/hu/ and click on “Blog” it goes to http://localhost:1313/hu/posts.

Is it possible to make the Blog posts only in English?