feat: add admin tables for comments and recordings
All checks were successful
Build and Push Backend Image / build (push) Successful in 44s
Build and Push Frontend Image / build (push) Successful in 4m20s

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-07 11:29:48 +01:00
parent dfe49b5882
commit 754a236e51
12 changed files with 720 additions and 12 deletions

View File

@@ -912,6 +912,8 @@ export default {
users: "Users",
videos: "Videos",
articles: "Articles",
comments: "Comments",
recordings: "Recordings",
},
common: {
save_changes: "Save changes",
@@ -1024,6 +1026,34 @@ export default {
delete_success: "Article deleted",
delete_error: "Failed to delete article",
},
comments: {
title: "Comments",
search_placeholder: "Search comments…",
col_user: "User",
col_comment: "Comment",
col_on: "On",
col_date: "Date",
no_results: "No comments found",
delete_title: "Delete comment",
delete_success: "Comment deleted",
delete_error: "Failed to delete comment",
},
recordings: {
title: "Recordings",
search_placeholder: "Search recordings…",
col_title: "Title",
col_status: "Status",
col_duration: "Duration",
col_date: "Date",
no_results: "No recordings found",
published: "Published",
draft: "Draft",
public: "Public",
delete_title: "Delete recording",
delete_description: 'Permanently delete "{title}"? This cannot be undone.',
delete_success: "Recording deleted",
delete_error: "Failed to delete recording",
},
article_form: {
new_title: "New article",
edit_title: "Edit article",