.yml` file of that language and override same configurations in the default `_config.yml`. For more information on how to set up multiple language support, please refer to the [Guide to Multiple Language Support in Minos](/).
**Example: localize navigation menus**
{% codeblock lang:yaml _config.zh-cn.yml %}
menu:
归档: /archives
文档: /categories/Documentation
关于: /about
{% endcodeblock %}
{% img /gallery/docs/configuration/language.png '"Localize navigation menus" "Localize navigation menus"' %}
## Page configurations
Apart from the above two types of configuration, Minos also lets you customize any page or post with page configurations. For instance, you may wish to disable the comment function in some posts, or show an additional link in the navigation bar. All of these can be achieved with page configuration where you override the theme configurations in the post's front-matter.
**Example: override default navigation bar links**
{% codeblock lang:markdown about.md %}
title: Minos - A Hexo theme
date: 2018-05-14 18:15:58
navbar_links:
Download:
icon: fab fa-github
url: https://github.com/ppoffice/hexo-theme-minos
Buy:
icon: fas fa-shopping-cart
url: https://github.com/ppoffice/hexo-theme-minos
Help: https://github.com/ppoffice/hexo-theme-minos
---
# This is the post content...
{% endcodeblock %}
{% img /gallery/docs/configuration/page.png '"Override default navigation bar links" "Override default navigation bar links"' %}
## Configuration hierarchy
When looking up the value of a specific configuration, Minos will first look at the post/page's front-matter to find if the configuration exists. If true, the value from the front-matter is taken. Otherwise, Minos will move on to the language variant of the theme configuration file `_config..yml` if the current page is set to use a non-primary language, and look up for the required configuration value. If the value is still not found in the above places, Minos will fallback to the default theme configuration file `_config.yml`.
{% img /gallery/docs/configuration/hierarchy.svg '"Configuration overriding process" "Configuration overriding process"' %}