-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathen.json
More file actions
80 lines (80 loc) · 2.49 KB
/
Copy pathen.json
File metadata and controls
80 lines (80 loc) · 2.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"@vitnode/blog": {
"title": "Blog",
"admin": {
"nav": {
"posts": "Posts",
"categories": "Categories"
},
"categories": {
"desc": "Manage categories for blog posts.",
"table": {
"title": "Title",
"updated_at": "Updated At"
},
"delete": {
"title": "Delete Category",
"desc": "Are you sure you want to delete <title></title> category? This action cannot be undone.",
"confirm": "Yes, delete this category",
"success": "Category has been deleted successfully."
},
"create": {
"title": "Create Category",
"desc": "A new category for your blog posts.",
"form": {
"title": {
"label": "Title",
"already_exists": "This category title already exists."
}
},
"submit": "Create"
},
"edit": {
"title": "Edit Category",
"submit": "Save Changes"
}
},
"posts": {
"desc": "Write and manage your blog posts.",
"table": {
"title": "Title",
"category": "Category",
"updated_at": "Updated At"
},
"create": {
"title": "Create Post",
"desc": "Write a new article for your blog.",
"form": {
"title": {
"label": "Title",
"already_exists": "This post title already exists."
},
"content": "Content",
"category": "Category"
},
"submit": "Create Post"
},
"edit": {
"title": "Edit Post",
"submit": "Save Changes"
},
"delete": {
"title": "Delete Post",
"desc": "Are you sure you want to delete <title></title> post? This action cannot be undone.",
"confirm": "Yes, delete this post",
"success": "Post has been deleted successfully."
}
}
}
},
"@vitnode/blog:posts": "Posts",
"@vitnode/blog:posts:can_view": "View posts list",
"@vitnode/blog:posts:can_create": "Create posts",
"@vitnode/blog:posts:can_edit": "Edit posts",
"@vitnode/blog:posts:can_delete": "Delete posts",
"@vitnode/blog:categories": "Categories",
"@vitnode/blog:categories:can_view": "View categories list",
"@vitnode/blog:categories:can_create": "Create categories",
"@vitnode/blog:categories:can_edit": "Edit categories",
"@vitnode/blog:categories:can_delete": "Delete categories"
}