Recover specific content in a table json

I want to recover description in all languages I wrote it and I need recover the content of description according with location

this is a capture of my content-type on strapi:

I have 4 fields, I need description and location. this is my request in nuxtjs:

async asyncData({ app, i18n, $md }: any) {  
       const data = await app.$strapi.find('legal-notices', {
      _locale: i18n.localeProperties.iso })

Actually I have the content of description in english and french but it is not linked with location, this is my problem.

thanks for your attention and your help.