create-vitnode-app 0.1.5 → 1.2.0-canary.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (81) hide show
  1. package/{templates → copy-of-vitnode-app}/eslint/.prettierrc.mjs +1 -1
  2. package/{templates/eslint/apps/frontend → copy-of-vitnode-app/eslint}/eslint.config.mjs +1 -2
  3. package/copy-of-vitnode-app/root/next.config.ts +11 -0
  4. package/copy-of-vitnode-app/root/src/vitnode.api.config.ts +5 -0
  5. package/dist/src/create/create-vitnode.js +26 -0
  6. package/dist/src/helpers/get-available-package-managers.js +24 -0
  7. package/dist/src/helpers/get-package-json.js +2 -0
  8. package/dist/src/helpers/is-folder-empty.js +49 -0
  9. package/dist/src/helpers/is-writeable.js +11 -0
  10. package/dist/src/helpers/packages-json.js +1 -0
  11. package/dist/src/helpers/validate-pkg.js +14 -0
  12. package/dist/src/index.js +65 -0
  13. package/dist/src/plugin/index.js +18 -0
  14. package/dist/src/prepare/prepare.js +16 -0
  15. package/dist/src/questions.js +46 -0
  16. package/dist/src/validation.js +40 -0
  17. package/dist/tsconfig.tsbuildinfo +1 -0
  18. package/package.json +17 -27
  19. package/README.md +0 -40
  20. package/dist/index.cjs +0 -49
  21. package/templates/basic/.env.template +0 -16
  22. package/templates/basic/.gitignore_template +0 -58
  23. package/templates/basic/README.md +0 -44
  24. package/templates/basic/apps/backend/drizzle.config.ts +0 -9
  25. package/templates/basic/apps/backend/nest-cli.json +0 -15
  26. package/templates/basic/apps/backend/src/app.module.ts +0 -24
  27. package/templates/basic/apps/backend/src/database/config.ts +0 -16
  28. package/templates/basic/apps/backend/src/database/database.module.ts +0 -17
  29. package/templates/basic/apps/backend/src/database/database.service.ts +0 -9
  30. package/templates/basic/apps/backend/src/main.ts +0 -13
  31. package/templates/basic/apps/backend/src/plugins/plugins.module.ts +0 -8
  32. package/templates/basic/apps/backend/src/plugins/welcome/admin/admin.module.ts +0 -4
  33. package/templates/basic/apps/backend/src/plugins/welcome/admin/database/index.ts +0 -1
  34. package/templates/basic/apps/backend/src/plugins/welcome/config.json +0 -12
  35. package/templates/basic/apps/backend/src/plugins/welcome/welcome.module.ts +0 -8
  36. package/templates/basic/apps/backend/tsconfig.build.json +0 -4
  37. package/templates/basic/apps/backend/tsconfig.json +0 -15
  38. package/templates/basic/apps/backend/uploads/index.html +0 -0
  39. package/templates/basic/apps/backend/uploads/private/index.html +0 -0
  40. package/templates/basic/apps/backend/uploads/public/index.html +0 -0
  41. package/templates/basic/apps/backend/uploads/temp/index.html +0 -0
  42. package/templates/basic/apps/frontend/global.d.ts +0 -11
  43. package/templates/basic/apps/frontend/next.config.ts +0 -6
  44. package/templates/basic/apps/frontend/postcss.config.mjs +0 -9
  45. package/templates/basic/apps/frontend/public/favicon.ico +0 -0
  46. package/templates/basic/apps/frontend/public/sw.js +0 -3
  47. package/templates/basic/apps/frontend/src/app/[locale]/(main)/[...slug]/page.tsx +0 -10
  48. package/templates/basic/apps/frontend/src/app/[locale]/(main)/footer.tsx +0 -18
  49. package/templates/basic/apps/frontend/src/app/[locale]/(main)/layout.tsx +0 -12
  50. package/templates/basic/apps/frontend/src/app/[locale]/(main)/not-found.tsx +0 -5
  51. package/templates/basic/apps/frontend/src/app/[locale]/(main)/page.tsx +0 -9
  52. package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/[...slug]/page.tsx +0 -12
  53. package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/error.tsx +0 -9
  54. package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/layout.tsx +0 -13
  55. package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/not-found.tsx +0 -5
  56. package/templates/basic/apps/frontend/src/app/[locale]/admin/page.tsx +0 -5
  57. package/templates/basic/apps/frontend/src/app/[locale]/layout.tsx +0 -13
  58. package/templates/basic/apps/frontend/src/app/global.css +0 -94
  59. package/templates/basic/apps/frontend/src/app/layout.tsx +0 -9
  60. package/templates/basic/apps/frontend/src/app/not-found.tsx +0 -8
  61. package/templates/basic/apps/frontend/src/app/robots.ts +0 -9
  62. package/templates/basic/apps/frontend/src/app/sitemap.ts +0 -9
  63. package/templates/basic/apps/frontend/src/i18n.ts +0 -13
  64. package/templates/basic/apps/frontend/src/middleware.ts +0 -8
  65. package/templates/basic/apps/frontend/src/plugins/admin/langs/en.json +0 -710
  66. package/templates/basic/apps/frontend/src/plugins/core/langs/en.json +0 -408
  67. package/templates/basic/apps/frontend/src/plugins/welcome/langs/en.json +0 -15
  68. package/templates/basic/apps/frontend/src/plugins/welcome/templates/default-page.tsx +0 -40
  69. package/templates/basic/apps/frontend/tailwind.config.ts +0 -16
  70. package/templates/basic/apps/frontend/tsconfig.json +0 -33
  71. package/templates/basic/apps/shared/plugins/welcome/example.dto.ts +0 -0
  72. package/templates/basic/apps/shared/tsconfig.json +0 -15
  73. package/templates/basic/turbo.json +0 -34
  74. package/templates/docker/apps/backend/DockerFile +0 -31
  75. package/templates/docker/apps/frontend/DockerFile +0 -38
  76. package/templates/docker/deploy.sh +0 -213
  77. package/templates/docker/docker-compose-dev.yml +0 -35
  78. package/templates/docker/docker-compose.yml +0 -56
  79. package/templates/eslint/apps/backend/eslint.config.mjs +0 -4
  80. package/templates/eslint/apps/shared/eslint.config.mjs +0 -4
  81. package/templates/pnpm/pnpm-workspace.yaml +0 -2
@@ -1,710 +0,0 @@
1
- {
2
- "admin": {
3
- "global": {
4
- "dev_mode": "Development Mode",
5
- "title": "Admin Control Panel",
6
- "title_short": "Admin",
7
- "version": "Version: {version}",
8
- "diagnostic_tools": "Diagnostic Tools",
9
- "home_page": "Home Page",
10
- "mobile_not_supported": "Mobile devices are not supported.",
11
- "require_email_service": "The email service is disabled.",
12
- "search": {
13
- "placeholder": "Search...",
14
- "no_results": "No results found.",
15
- "desc": "Search Engine for AdminCP",
16
- "pages": "Pages"
17
- }
18
- },
19
- "dashboard": {
20
- "new_users": {
21
- "title": "New Users",
22
- "users": "Users"
23
- },
24
- "note": {
25
- "title": "Note for Administrators",
26
- "last_updated": "Last Updated: <date></date>",
27
- "submit": "Save Note"
28
- }
29
- },
30
- "theme_editor": {
31
- "title": "Theme Editor",
32
- "desktop": "Desktop",
33
- "tablet": "Tablet",
34
- "mobile": "Mobile",
35
- "dev_mode_disabled": {
36
- "title": "Development Mode Disabled",
37
- "desc": "To unlock some features, you need to enable development mode."
38
- },
39
- "colors": {
40
- "title": "Colors",
41
- "primary": "Primary",
42
- "secondary": "Secondary",
43
- "cover": "Cover",
44
- "destructive": "Destructive"
45
- },
46
- "logos": {
47
- "title": "Logos",
48
- "light": "Light",
49
- "width": "Width",
50
- "mobile_width": "Mobile Width",
51
- "dark": "Dark",
52
- "mobile_light": "Mobile Light",
53
- "mobile_dark": "Mobile Dark",
54
- "text": "Logo Text"
55
- },
56
- "success": {
57
- "title": "The theme has been saved successfully!",
58
- "desc": "The changes will be visible after the app is rebuilt."
59
- }
60
- },
61
- "core": {
62
- "diagnostic": {
63
- "title": "Diagnostic Tools",
64
- "desc": "Use these tools to diagnose and fix common issues with your website.",
65
- "get_support": "Get Support",
66
- "clear_cache": {
67
- "title": "Clear Cache",
68
- "desc": "This action clean up the cache of your website. This can help fix issues with your website but may slow down your website temporarily.",
69
- "confirm": "Yes, clear cache",
70
- "success": "Cache has been cleared."
71
- },
72
- "captcha": {
73
- "title": "Captcha",
74
- "desc": "Protect your website from spam."
75
- },
76
- "email": {
77
- "title": "Email",
78
- "desc": "Access to send emails."
79
- },
80
- "ai": {
81
- "title": "Artificial Intelligence (AI)",
82
- "desc": "Use AI to improve your website."
83
- },
84
- "enable": "Enable",
85
- "disable": "Disable",
86
- "how_to_enable": "How to enable?",
87
- "error_logs": {
88
- "title": "Error Logs",
89
- "desc": "If you have any issues with your website, you can check the error logs here.",
90
- "name": "Name",
91
- "message": "Message",
92
- "created": "Created",
93
- "more_info": "More Info",
94
- "url": "URL",
95
- "headers": "Headers"
96
- }
97
- },
98
- "email": {
99
- "hello": "Hello"
100
- },
101
- "settings": {
102
- "main": {
103
- "title": "Main Settings",
104
- "desc": "These settings are used to configure the main features of your website.",
105
- "name": {
106
- "label": "Name Site",
107
- "seo": "Recommended between 50-60 characters."
108
- },
109
- "short_name": {
110
- "label": "Short Name Site",
111
- "seo": "Recommended max 20 characters."
112
- },
113
- "description": {
114
- "label": "Description Site",
115
- "seo": "Recommended between 120-160 characters."
116
- },
117
- "contact_email": {
118
- "label": "Contact Email",
119
- "desc": "This email address will be applied to the contact form and other contact points on your website."
120
- },
121
- "app_type": {
122
- "label": "App Type"
123
- }
124
- },
125
- "email": {
126
- "title": "Email",
127
- "desc": "Send emails from your website. Unlock more features like password reset, email verification, and more.",
128
- "logs": {
129
- "title": "Email Error Logs",
130
- "id": "ID",
131
- "to": "To",
132
- "subject": "Subject",
133
- "created": "Created",
134
- "error": "Error",
135
- "show": {
136
- "title": "Show log",
137
- "title_dialog": "Email Log - #{id}",
138
- "to": "To: <email>{to}</email>",
139
- "html": "HTML",
140
- "error": "Error Message",
141
- "subject": "Subject"
142
- }
143
- },
144
- "logo": "Logo",
145
- "resend_key": "Resend Key",
146
- "smtp_host": "SMTP Host",
147
- "smtp_user": "SMTP User",
148
- "smtp_password": "SMTP Password",
149
- "smtp_port": "SMTP Port",
150
- "smtp_secure": "SMTP Secure (SSL/TLS)",
151
- "color_primary": "Primary Color",
152
- "test": {
153
- "title": "Test Email Send",
154
- "to": "To",
155
- "subject": "Subject",
156
- "preview_text": "Preview Message",
157
- "message": "Message",
158
- "success": {
159
- "title": "Email has been sent",
160
- "desc": "Check your email inbox to see if you received the email."
161
- },
162
- "test": {
163
- "subject": "Test Email from AdminCP VitNode",
164
- "message": "This email confirms that your email settings in your website by VitNode are working correctly.",
165
- "preview_text": "Preview text test email from AdminCP VitNode"
166
- },
167
- "send_testing_email": "Send Testing Email"
168
- }
169
- },
170
- "authorization": {
171
- "title": "Authorization",
172
- "desc": "Manage authorization settings for your website.",
173
- "settings": {
174
- "title": "Settings",
175
- "force_login": {
176
- "title": "Force Login",
177
- "desc": "Force users to log in before they can access your website."
178
- },
179
- "lock_register": {
180
- "title": "Lock Register",
181
- "desc": "Don't allow users to register on your website."
182
- },
183
- "require_confirm_email": {
184
- "title": "Require Confirm Email",
185
- "desc": "Require users to confirm their email address before they can access your site."
186
- }
187
- },
188
- "methods": {
189
- "title": "Login Methods",
190
- "name": "Name",
191
- "enabled": "Enabled",
192
- "create": {
193
- "title": "Create Method",
194
- "desc": "New login method for your website.",
195
- "provider": "Provider",
196
- "client_id": "Client ID",
197
- "client_secret": "Client Secret",
198
- "success": "Login method has been created.",
199
- "your_callback_url": "Your callback URL"
200
- },
201
- "edit": {
202
- "title": "Edit Method",
203
- "success": "Login method has been updated."
204
- },
205
- "delete": {
206
- "desc": "This action will delete the login method <name></name>.",
207
- "warn": "If you delete this login method, users who use this method to log in will not be able to log in.",
208
- "success": "Login method has been deleted.",
209
- "submit": "Yes, delete login method"
210
- }
211
- }
212
- },
213
- "legal": {
214
- "title": "Legal",
215
- "desc": "These settings are used to generate the legal pages on your website.",
216
- "legal_public": "Public Legal",
217
- "created": "Created",
218
- "updated": "Updated",
219
- "preview": "Preview",
220
- "create_edit": {
221
- "create": {
222
- "title": "Create Policy",
223
- "desc": "Create a new policy for your website."
224
- },
225
- "edit": "Edit Policy",
226
- "form": {
227
- "title": "Title",
228
- "code": {
229
- "title": "Code",
230
- "desc": "Code should be unique. This code is used to generate the URL of the policy page.",
231
- "preview_url": "Preview URL of the policy page: <url></url>",
232
- "already_exists": "Policy with this code already exists."
233
- },
234
- "content": "Content",
235
- "href": "URL",
236
- "external_href": "Use external URL"
237
- },
238
- "submit": {
239
- "create": "Create Policy",
240
- "edit": "Edit Policy"
241
- },
242
- "success": {
243
- "create": "Policy has been created.",
244
- "edit": "Policy has been updated."
245
- }
246
- },
247
- "delete": {
248
- "title": "Delete Policy",
249
- "desc": "This action will delete the policy <name></name>.",
250
- "confirm": "Yes, delete policy",
251
- "success": "Policy has been deleted."
252
- }
253
- },
254
- "ai": {
255
- "title": "Artificial Intelligence (AI)",
256
- "desc": "Integrate powerful Artificial Intelligence to boost user experience with personalized content, smarter search, SEO optimization and more.",
257
- "testing": {
258
- "title": "Test Your AI",
259
- "desc": "Here you can test your AI to see how it works.",
260
- "response": "Response",
261
- "response_success": "If you see the response, your AI is working correctly.",
262
- "prompt": "Prompt",
263
- "prompt_placeholder": "Ask a question...",
264
- "submit": "Ask"
265
- }
266
- },
267
- "metadata": {
268
- "title": "Metadata",
269
- "desc": "Share your website with the world by adding metadata to your website.",
270
- "theme_color": "Theme Color",
271
- "background_color": "Background Color",
272
- "start_url": {
273
- "label": "Start URL",
274
- "desc": "When user launches the app, this is the page that will be loaded."
275
- },
276
- "icon": {
277
- "label": "Icon",
278
- "desc": "Represent your website on devices (PWA). Recommended size: 512x512px."
279
- },
280
- "display": {
281
- "label": "Display",
282
- "desc": "The display property controls how the app is displayed.",
283
- "fullscreen": {
284
- "title": "Fullscreen",
285
- "desc": "Without any browser UI and any device UI."
286
- },
287
- "standalone": {
288
- "title": "Standalone",
289
- "desc": "Without any browser UI."
290
- },
291
- "minimal": {
292
- "title": "Minimal UI",
293
- "desc": "Minimal browser UI."
294
- },
295
- "browser": {
296
- "title": "Browser",
297
- "desc": "With browser UI."
298
- }
299
- }
300
- }
301
- },
302
- "plugins": {
303
- "title": "Plugins",
304
- "desc": "Extend the functionality of your app with plugins.",
305
- "upload_new_version": "Upload New Version",
306
- "set_default": "Set as default",
307
- "get_help": "Get help",
308
- "search_placeholder": "Search by name...",
309
- "dev_tools": "Developer Tools",
310
- "name": "Name",
311
- "version": "Version",
312
- "author": "Author",
313
- "updated": "Updated",
314
- "warn_req_restart_server": {
315
- "title": "Required Restart Server",
316
- "desc": "We're detected changes in <bold>the plugin system</bold>. To apply these changes, you need to <bold>restart the server</bold>."
317
- },
318
- "dev": {
319
- "overview": "Overview",
320
- "nav": {
321
- "title": "Navigation in AdminCP",
322
- "lang_key": "Lang Key: <key></key>",
323
- "keywords": "Keywords: <keywords></keywords>",
324
- "link_url_with_link": "Link URL: <link></link>",
325
- "create": {
326
- "title": "Create Navigation",
327
- "desc": "Create a new navigation for your plugin.",
328
- "code": {
329
- "label": "Code",
330
- "desc": "Should be unique. Min 3-50 characters.",
331
- "exists": "Navigation with this code already exists."
332
- },
333
- "icon": {
334
- "label": "Icon"
335
- },
336
- "parent": {
337
- "label": "Parent Navigation",
338
- "null": "No parent"
339
- },
340
- "keywords": {
341
- "label": "Keywords",
342
- "desc": "Keywords are used to search for this navigation. Separate by comma."
343
- },
344
- "success": "Navigation has been created."
345
- },
346
- "edit": {
347
- "title": "Edit Navigation",
348
- "success": "Navigation has been updated."
349
- },
350
- "delete": {
351
- "submit": "Yes, delete navigation",
352
- "desc": "This action will delete <code></code> navigation.",
353
- "success": "Navigation has been deleted."
354
- }
355
- },
356
- "export": {
357
- "title": "Export Plugin",
358
- "desc": "Choose version to export.",
359
- "type": {
360
- "rebuild": "Rebuild current version - {version}",
361
- "new_version": "Create new version"
362
- },
363
- "version": "Version",
364
- "version_code": "Version Code",
365
- "success": "Plugin has been exported.",
366
- "submit": "Export"
367
- }
368
- },
369
- "create": {
370
- "title": "Create Plugin",
371
- "name": {
372
- "label": "Name",
373
- "desc": "Min 3-50 characters."
374
- },
375
- "code": {
376
- "label": "Code",
377
- "desc": "Must be unique. Min 3-50 characters. Allowed characters: a-z, 0-9, -",
378
- "invalid": "You can use only a-z, 0-9, -",
379
- "exists": "Plugin with this code already exists. If you want to update the plugin, use the upload new version form from the plugin dropdown menu."
380
- },
381
- "description": {
382
- "label": "Description"
383
- },
384
- "support_url": {
385
- "label": "Support URL",
386
- "desc": "URL to the support page for this plugin."
387
- },
388
- "author": {
389
- "label": "Author",
390
- "desc": "Name of the author."
391
- },
392
- "author_url": {
393
- "label": "Author URL",
394
- "desc": "URL to the author's website."
395
- }
396
- },
397
- "edit": {
398
- "title": "Edit Plugin",
399
- "success": "Plugin has been updated."
400
- },
401
- "upload": {
402
- "title": "Upload Plugin",
403
- "desc": "Upload a new plugin to your website.",
404
- "title_new_version": "Upload New Version Plugin",
405
- "info": "After the process will be complete, you need to restart the server to apply the changes.",
406
- "errors": {
407
- "PLUGIN_ALREADY_EXISTS": "Plugin with this code already exists. If you want to update the plugin, use the upload new version form from the plugin dropdown menu.",
408
- "PLUGIN_VERSION_IS_LOWER": "The version of the uploaded plugin is lower than the current version.",
409
- "CONFLICT_PLUGIN_CODE": "Files with the same name already exist your project. Please remove them and try again."
410
- },
411
- "success": {
412
- "upload": "Plugin has been uploaded.",
413
- "new_version": "New version of the plugin has been uploaded."
414
- },
415
- "submit": "Upload"
416
- },
417
- "delete": {
418
- "submit": "Yes, delete plugin",
419
- "desc": "This action will delete <name></name> plugin created by <author></author> and all data associated with it.",
420
- "info": "After the process will be complete, you need to restart the server to apply the changes."
421
- }
422
- },
423
- "styles": {
424
- "theme-editor": {
425
- "save": "Save",
426
- "desktop": "Desktop",
427
- "tablet": "Tablet",
428
- "mobile": "Mobile",
429
- "logos": {
430
- "title": "Logos",
431
- "text": "Logo Text",
432
- "logo_light": "Logo Light",
433
- "logo_dark": "Logo Dark",
434
- "width": "Width",
435
- "title_mobile": "Logos (Mobile)"
436
- }
437
- },
438
- "nav": {
439
- "title": "Navigation",
440
- "href": "URL: {href}",
441
- "create": {
442
- "title": "Create Navigation",
443
- "desc": "Create a new navigation for your website.",
444
- "success": "Navigation has been created.",
445
- "name": {
446
- "label": "Name"
447
- },
448
- "description": {
449
- "label": "Description"
450
- },
451
- "href": {
452
- "label": "URL",
453
- "desc": "Internal link format: /path/to/page"
454
- },
455
- "icon": {
456
- "label": "Icon"
457
- },
458
- "external": {
459
- "label": "External link?",
460
- "desc": "The link will open in a new tab."
461
- }
462
- },
463
- "edit": {
464
- "title": "Edit Navigation",
465
- "success": "Navigation has been updated."
466
- },
467
- "delete": {
468
- "submit": "Yes, delete navigation",
469
- "desc": "This action will delete <name></name> navigation.",
470
- "desc_with_children": "You have sub-navigations. If you delete this navigation, all sub-navigations will be moved to the parent navigation.",
471
- "success": "Navigation has been deleted."
472
- }
473
- }
474
- },
475
- "langs": {
476
- "title": "Languages",
477
- "desc": "Manage languages on your website.",
478
- "search_placeholder": "Search by name...",
479
- "table": {
480
- "key": "Key",
481
- "time_24": "24h Format",
482
- "name": "Name",
483
- "updated": "Updated",
484
- "enabled": "Enabled"
485
- },
486
- "actions": {
487
- "translate-ai": {
488
- "title": "Translate with AI",
489
- "desc": "Choose which plugins you want to translate for <lang></lang> language.",
490
- "all_plugins": {
491
- "label": "All Plugins",
492
- "desc": "This process may take a little longer."
493
- },
494
- "admin": "Admin",
495
- "plugins": {
496
- "label": "Plugins",
497
- "desc": "Select specific plugins to translate."
498
- },
499
- "submit": "Translate",
500
- "success": "The language has been translated."
501
- },
502
- "create": {
503
- "title": "Create Language",
504
- "name": {
505
- "label": "Name",
506
- "placeholder": "English (USA)"
507
- },
508
- "code": {
509
- "label": "Code",
510
- "placeholder": "en",
511
- "desc": "This code uses as a language identifier in your URL, like: /en/page",
512
- "already_exists": "Language with this code already exists."
513
- },
514
- "timezone": {
515
- "label": "Timezone"
516
- },
517
- "time_24": {
518
- "label": "24h Time Format",
519
- "desc": "Shows 24h time format instead of 12h."
520
- },
521
- "allow_in_input": {
522
- "label": "Allow in Input",
523
- "desc": "Allow users to select this language in the input field."
524
- },
525
- "submit": "Create Language",
526
- "success": "Language has been created."
527
- },
528
- "edit": {
529
- "title": "Edit Language",
530
- "submit": "Edit Language",
531
- "default": {
532
- "label": "Default",
533
- "desc": "Set this language as the default language for your applications."
534
- },
535
- "success": "Language has been updated."
536
- },
537
- "delete": {
538
- "text": "This action cannot be undone. This will permanently delete this language and all user content associated with it. This may impact your app's SEO.",
539
- "form_confirm_text": "Type the name of the language <text></text> to confirm.",
540
- "success": "Language has been deleted.",
541
- "submit": "Yes, delete language"
542
- }
543
- }
544
- },
545
- "advanced": {
546
- "files": {
547
- "title": "Files",
548
- "delete": {
549
- "desc": "This action will delete the file <name></name>.",
550
- "uses_warning": "This file is used in other part of the system.",
551
- "success": "File has been deleted.",
552
- "submit": "Yes, delete file"
553
- }
554
- },
555
- "cron": {
556
- "title": "Cron Jobs",
557
- "desc": "Tasks that run automatically at a specific time.",
558
- "name": "Name",
559
- "schedule": "Schedule",
560
- "next_date": "Next Date",
561
- "running": {
562
- "title": "Status",
563
- "enabled": "Enabled",
564
- "disabled": "Disabled"
565
- },
566
- "last_execution": {
567
- "title": "Last Execution",
568
- "never": "Never"
569
- }
570
- }
571
- }
572
- },
573
- "members": {
574
- "users": {
575
- "title": "Users List",
576
- "desc": "Manage users on your website.",
577
- "search_placeholder": "Search by name or email...",
578
- "name": "Name",
579
- "email": "Email",
580
- "group": "Group",
581
- "joined": "Joined",
582
- "filters": {
583
- "groups": "Groups"
584
- },
585
- "create": {
586
- "title": "Create User",
587
- "success": "User has been created."
588
- },
589
- "item": {
590
- "user_menu": "User Menu",
591
- "public_profile": "Public Profile",
592
- "confirm_email": {
593
- "title": "Confirm Email",
594
- "success": "Email has been confirmed."
595
- },
596
- "info": {
597
- "title": "Info User",
598
- "joined": "Joined",
599
- "email": "Email",
600
- "not_email_verified": "This user has not verified their email address."
601
- },
602
- "edit": {
603
- "title": "Edit User",
604
- "group": "Group",
605
- "success": "User has been updated."
606
- },
607
- "delete": {
608
- "title": "Delete User",
609
- "desc": "This action will delete the user <name></name> and all data associated with it permanently.",
610
- "submit": "Yes, delete user",
611
- "success": "User has been deleted.",
612
- "delete_admin": {
613
- "title": "You cannot delete this admin",
614
- "desc": "Please remove the admin permissions before deleting this user."
615
- }
616
- }
617
- }
618
- },
619
- "groups": {
620
- "title": "Groups",
621
- "desc": "Manage groups on your website.",
622
- "name": "Name",
623
- "updated": "Updated",
624
- "search_placeholder": "Search by name...",
625
- "default": "Default",
626
- "root": "Admin Root",
627
- "table": {
628
- "users_count": "Users"
629
- },
630
- "create_edit": {
631
- "main": "Main",
632
- "content": "Content",
633
- "name": "Name",
634
- "color": "Color",
635
- "in_kb": "in kB",
636
- "files": {
637
- "title": "Files",
638
- "allow_upload": "Allow Upload Files",
639
- "total_max_storage": "Total Max Storage",
640
- "max_storage_for_submit": {
641
- "label": "Max Storage for Submit",
642
- "desc": "If you set 1000, user can upload only 1 file with size 1000kB or 2 files with size 500kB for each submit."
643
- }
644
- }
645
- },
646
- "create": {
647
- "title": "Create Group",
648
- "success": "Group has been created"
649
- },
650
- "edit": {
651
- "title": "Edit Group",
652
- "success": "Group has been updated"
653
- },
654
- "delete": {
655
- "text": "This action cannot be undone. This will permanently delete this group and all users in it will be moved to the default group.",
656
- "form_confirm_text": "Type the name of the group <text></text> to confirm.",
657
- "submit": "Yes, delete group",
658
- "success": "Group has been deleted"
659
- }
660
- },
661
- "staff": {
662
- "shared": {
663
- "type": "Type",
664
- "updated": "Updated",
665
- "permissions": "Permissions",
666
- "restricted": "Restricted",
667
- "user": "User",
668
- "group": "Group",
669
- "already_exists": "This permission is already on the list.",
670
- "unrestricted": {
671
- "title": "Unrestricted",
672
- "desc": "Unrestricted administrators have full access to the admin control panel (AdminCP)."
673
- }
674
- },
675
- "moderators": {
676
- "title": "Moderators",
677
- "desc": "Manage access to the moderator panel (ModCP).",
678
- "moderator": "Moderator",
679
- "add": {
680
- "title": "Add Moderator",
681
- "success": "Moderator has been added"
682
- },
683
- "delete": {
684
- "desc": "This action will deprive the user or users of this group of access to the moderator panel (ModCP).",
685
- "submit": "Yes, delete permissions",
686
- "success": "Permissions has been deleted"
687
- }
688
- },
689
- "admin": {
690
- "title": "Administrators",
691
- "desc": "Manage access to the administrator panel (AdminCP).",
692
- "administrator": "Administrator",
693
- "add": {
694
- "title": "Add Administrator",
695
- "success": "Administrator has been added"
696
- },
697
- "edit": {
698
- "title": "Edit Administrator",
699
- "success": "Administrator has been updated"
700
- },
701
- "delete": {
702
- "desc": "This action will deprive the user or users of this group of access to the administrator panel (AdminCP).",
703
- "submit": "Yes, delete permissions",
704
- "success": "Permissions has been deleted"
705
- }
706
- }
707
- }
708
- }
709
- }
710
- }