How to translate the word tags in bread crumbs into Russian

I created bread crumbs following the example

<div id="breadcrumbs">
    <a href="/">Home</a>
    {{ range (split .URL "/") }}
        {{ if gt (len . ) 0 }}
            / <a href="/{{ . }}">{{ humanize (replace . "posts" "blog") }}</a>
        {{ end }}
    {{ end }}
</div>

my names in breadcrumbs in English catch up, how can I translate them into Russian?

image