Translation of Collections

Is there a way to set multiple language variables for my collections’ name?
Or extend the collections with custom properties? Like visibility?

I use this endpoint to get all my collections:
/api/collections/listCollections

I get an array of strings, e.g. ["events", "works"] but would be nice to have something like:

[
  "events": {
   "en": "Events",
   "hu": "Események"
  },
  "works": {
    "en": "Works",
    "hu": "Munkák"
  }
]

The docs about localization is a bit confusing.
Any help would be much appreciated!