Get section front matter property from other section

I have multilingual site with two sections - one for each language (main language and secondary language).

Is it possible to get front matter property (path to banner image) in secondary language section from the main language section?
It’s the same image and i would like to avoid repetitive work, when i will change this path in CMS.

Now I access to the path just like this:

{{ $section := .Section }}
<img src="{{ with .Site.GetPage "section" $section }}{{ .Params.banner }}{{ end }}">