diff --git a/frontend/lang/de.json b/frontend/lang/de.json index 66b558a..892d4e6 100644 --- a/frontend/lang/de.json +++ b/frontend/lang/de.json @@ -40,6 +40,10 @@ "VideoList.Search.Placeholder": { "defaultMessage": "Gib hier etwas zum Suchen ein…" }, + "VideoListPage.updatedLastAgo": { + "defaultMessage": "Zuletzt aktualisiert {time}", + "description": "Text below the video list on the video list page that says in relative time when the list was last updated" + }, "VideoPlayerPage.cutFrom": { "defaultMessage": "Geschnitten von {url}", "description": "Text below video that describes where a video was cut from" diff --git a/frontend/lang/en.json b/frontend/lang/en.json index 9450458..deb86b1 100644 --- a/frontend/lang/en.json +++ b/frontend/lang/en.json @@ -40,6 +40,10 @@ "VideoList.Search.Placeholder": { "defaultMessage": "Type something to search here…" }, + "VideoListPage.updatedLastAgo": { + "defaultMessage": "Last updated {time}", + "description": "Text below the video list on the video list page that says in relative time when the list was last updated" + }, "VideoPlayerPage.watchOnTwitch": { "defaultMessage": "Watch on Twitch", "description": "Button below video that links to the exact position in the archived stream to watch it there." diff --git a/frontend/pages/[id].tsx b/frontend/pages/[id].tsx index e2901fb..dd8bd06 100644 --- a/frontend/pages/[id].tsx +++ b/frontend/pages/[id].tsx @@ -129,9 +129,18 @@ export default function VideoListPage({ lastUpdatedDate ? ( ) : ''