Is it possible to make a page visible in on language but hidden in others?

I created a new page and made it hidden. I have it in Slovak, hungarian and english. Is it possible to make it visible only on the hungarian part of the website and not visible on the slovak and English part?

Hi @DanubiaFI

Welcome to shopify community.

I think you can hide the link to this page according to the current language.

And you can get current language like below code

{%- if localization.language.iso_code == 'hu' %}
 your link code to the page...
{%- endif -%}

Hope this helps