From 13d03e4a02958a30771b76d262546cd4d0fb5b11 Mon Sep 17 00:00:00 2001 From: fetsorn Date: Sun, 2 Oct 2022 23:05:09 +0400 Subject: [PATCH] update metadir --- metadir.json | 66 +++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 55 insertions(+), 11 deletions(-) diff --git a/metadir.json b/metadir.json index 1c41a38..cce87e0 100644 --- a/metadir.json +++ b/metadir.json @@ -1,57 +1,101 @@ { "datum": { "type": "string", - "label": "DATUM" + "label": "DATUM", + "description": { + "en": "Description of the event", + "ru": "Описание события" + } }, "hostdate": { "parent": "datum", "dir": "date", "type": "date", - "label": "HOST_DATE" + "label": "HOST_DATE", + "description": { + "en": "Date of the event", + "ru": "Дата события" + } }, "hostname": { "parent": "datum", "dir": "name", - "label": "HOST_NAME" + "label": "HOST_NAME", + "description": { + "en": "Name of the person in the event", + "ru": "Имя человека участвовавшего в событии" + } }, "guestdate": { "parent": "datum", "dir": "date", "type": "date", - "label": "GUEST_DATE" + "label": "GUEST_DATE", + "description": { + "en": "Date of entry", + "ru": "Дата записи" + } }, "guestname": { "parent": "datum", "dir": "name", - "label": "GUEST_NAME" + "label": "GUEST_NAME", + "description": { + "en": "Name of the person who made the entry", + "ru": "Имя автора записи" + } }, "tag": { "parent": "datum", - "label": "TAG" + "label": "TAG", + "description": { + "en": "Tag", + "ru": "Тег" + } }, "filepath": { "parent": "datum", "label": "FILE_PATH", - "type": "string" + "type": "string", + "description": { + "en": "Path to a digital asset", + "ru": "Путь к файлу" + } }, "moddate": { "parent": "filepath", "dir": "date", "type": "date", - "label": "MOD_DATE" + "label": "MOD_DATE", + "description": { + "en": "Date of the file", + "ru": "Дата файла" + } }, "filetype": { "parent": "filepath", "label": "FILE_TYPE", - "type": "string" + "type": "string", + "description": { + "en": "Type of the file", + "ru": "Тип файла" + } }, "filesize": { "parent": "filepath", - "label": "FILE_SIZE" + "label": "FILE_SIZE", + "description": { + "en": "Size of the file", + "ru": "Размер файла" + } }, "filehash": { "parent": "filepath", "label": "FILE_HASH", - "type": "hash" + "type": "hash", + "description": { + "en": "Hashsum of the file", + "ru": "Хэш файла" + } } }