how do I fix translation missing error on my logos?

I have these logos on the page, and I can’t name them for some reason. Their names are replaced with this text “t:sections.logo-list.blocks.logo.settings.text.label” and in the boxes where their names would be typed it says “missing translation: t:sections.logo-list.blocks.logo.settings.text.label”.

Hi,

It seems like need to add a translation key in json files (Local files)

An example of an entry needs to be added at the local file

{
  "sections": {
    "logo-list": {
      "blocks": {
        "logo": {
          "settings": {
            "text": {
              "label": "Logo Name"
            }
          }
        }
      }
    }
  }
}

Thank you but I fixed it by rewriting my code, the problem was that there was no actual instruction for the objects i made :skull: