How to display dates in Hungarian format on my website?

Hi there,

We would need the dates in a Hungarian format and in hungarian instead of english, and an author text before the author name (e.g: Author: Triad). And before the date we would need a text e.g: Posted at 16:30 on may 5th

Thanks.

  1. Replace the content of the file with the following JSON code, which contains the Hungarian translations and date formats:
{
  "address": {
    "errors": {
      "valid": "Helytelen adatok."
    }
  },
  "article": {
    "comments": {
      "title": "Hozzászólások",
      "note": "Egyetlen hozzászólást sem találtunk.",
      "single": "Egy hozzászólás",
      "plural": "{{ count }} hozzászólás"
    },
    "meta": {
      "date_created": "Létrehozva: {{ date }}"
    },
    "more": "További részletek",
    "file": {
      "size": "{{ size_bytes }} b"
    }
  },
  "blog": {
    "title": "Blog",
    "file": {
      "size": "{{ size_bytes }} b"
    }
  },
  "cart": {
    "general": {
      "note": "Különleges kérése van a rendelésével kapcsolatban? Írja meg nekünk!"
    },
    "quantity": {
      "decrease": "Csökkentés",
      "increase": "Növelés"
    },
    "subtotal": "Részösszeg",
    "total": "Végösszeg",
    "remove": "Eltávolítás",
    "undo": "Visszavonás",
    "note": "Rendelés megjegyzése",
    "update": "Frissítés",
    "checkout": "Fizetés",
    "empty": "A kosár üres.",
    "note_placeholder": "Itt adhat hozzá megjegyzést a rendeléshez.",
    "success": "A termék sikeresen hozzáadva a kosárhoz."
  },
  "collection": {
    "general": {
      "view_all": "Összes megnézése"
    }
  },
  "contact": {
    "form": {
      "name": "Név",
      "email": "Email",
      "phone": "Telefonszám",
      "message": "Üzenet",
      "submit": "Küldés",
      "success": "Az üzenetet sikeresen elküldtük.",
      "error": "Hiba történt az üzenet küldése során."
    }
  },
  "customer": {
    "account": {
      "title": "Fiók",
      "details": "Fiók részletei",
      "view_addresses": "Címek megtekintése",
      "return":

Could you describe in more detail what needs to be done?