create-vitnode-app 0.0.9 → 0.0.10-canary.1
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.
- package/dist/index.cjs +1 -1
- package/package.json +2 -2
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/(layout)/(vitnode)/[...slug]/page.tsx +5 -0
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/(layout)/(vitnode)/legal/[code]/page.tsx +12 -0
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/(layout)/(vitnode)/legal/page.tsx +10 -0
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/(layout)/(vitnode)/login/layout.tsx +9 -0
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/(layout)/(vitnode)/login/page.tsx +10 -0
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/(layout)/(vitnode)/page.tsx +23 -0
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/(layout)/(vitnode)/profile/[id]/page.tsx +5 -0
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/(layout)/(vitnode)/register/confirm-email/page.tsx +12 -0
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/(layout)/(vitnode)/register/layout.tsx +9 -0
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/(layout)/(vitnode)/register/page.tsx +10 -0
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/(layout)/(vitnode)/settings/devices/page.tsx +10 -0
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/(layout)/(vitnode)/settings/files/page.tsx +12 -0
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/(layout)/(vitnode)/settings/layout.tsx +13 -0
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/(layout)/(vitnode)/settings/page.tsx +5 -0
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/(layout)/error.tsx +9 -0
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/(layout)/layout.tsx +9 -0
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/(layout)/not-found.tsx +5 -0
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/global.css +94 -0
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/layout.tsx +12 -0
- package/templates/basic/apps/frontend/src/app/[locale]/(main)/not-found.tsx +5 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/[...slug]/page.tsx +7 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/advanced/files/page.tsx +12 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/dashboard/page.tsx +5 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/diagnostic/page.tsx +10 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/langs/page.tsx +12 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/plugins/[code]/dev/layout.tsx +12 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/plugins/[code]/dev/nav/page.tsx +7 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/plugins/[code]/dev/page.tsx +7 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/plugins/[code]/dev/permissions-admin/page.tsx +7 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/plugins/layout.tsx +9 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/plugins/page.tsx +12 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/settings/ai/page.tsx +10 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/settings/authorization/page.tsx +10 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/settings/email/layout.tsx +9 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/settings/email/logs/page.tsx +12 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/settings/email/page.tsx +10 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/settings/legal/page.tsx +12 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/settings/main/page.tsx +10 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/settings/metadata/page.tsx +10 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/settings/security/page.tsx +10 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/styles/editor/page.tsx +10 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/core/styles/nav/page.tsx +10 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/members/groups/page.tsx +12 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/members/staff/administrators/page.tsx +12 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/members/users/[id]/page.tsx +12 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/members/users/layout.tsx +9 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/(vitnode)/members/users/page.tsx +12 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/error.tsx +9 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/layout.tsx +13 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(auth)/not-found.tsx +5 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(vitnode)/core/styles/theme-editor/page.tsx +10 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(vitnode)/install/page.tsx +11 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/(vitnode)/page.tsx +5 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/global.css +94 -0
- package/templates/basic/apps/frontend/src/app/[locale]/admin/layout.tsx +10 -0
- package/templates/basic/apps/frontend/src/app/[locale]/layout.tsx +13 -0
- package/templates/basic/apps/frontend/src/app/layout.tsx +7 -0
- package/templates/basic/apps/frontend/src/app/not-found.tsx +8 -0
- package/templates/basic/apps/frontend/src/graphql/types.ts +1381 -0
- package/templates/basic/apps/frontend/src/i18n.ts +13 -0
- package/templates/basic/apps/frontend/src/middleware.ts +7 -0
- package/templates/basic/apps/frontend/src/plugins/admin/langs/en.json +654 -0
- package/templates/basic/apps/frontend/src/plugins/core/langs/en.json +372 -0
- package/templates/basic/apps/frontend/src/plugins/welcome/langs/en.json +17 -0
- package/templates/basic/apps/frontend/src/plugins/welcome/templates/default-page.tsx +40 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { getRequestConfig } from 'next-intl/server';
|
|
2
|
+
import { i18nConfigVitNode } from 'vitnode-frontend/i18n';
|
|
3
|
+
|
|
4
|
+
export default getRequestConfig(async ({ requestLocale }) => {
|
|
5
|
+
const config = await i18nConfigVitNode({
|
|
6
|
+
pathsToMessagesFromPlugins: async ({ plugin, locale }) => {
|
|
7
|
+
return await import(`./plugins/${plugin}/langs/${locale}.json`);
|
|
8
|
+
},
|
|
9
|
+
requestLocale,
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
return config;
|
|
13
|
+
});
|
|
@@ -0,0 +1,654 @@
|
|
|
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
|
+
"search": {
|
|
12
|
+
"placeholder": "Search...",
|
|
13
|
+
"no_results": "No results found.",
|
|
14
|
+
"pages": "Pages"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"theme_editor": {
|
|
18
|
+
"title": "Theme Editor",
|
|
19
|
+
"desktop": "Desktop",
|
|
20
|
+
"tablet": "Tablet",
|
|
21
|
+
"mobile": "Mobile",
|
|
22
|
+
"dev_mode_disabled": {
|
|
23
|
+
"title": "Development Mode Disabled",
|
|
24
|
+
"desc": "To unlock some features, you need to enable development mode."
|
|
25
|
+
},
|
|
26
|
+
"colors": {
|
|
27
|
+
"title": "Colors",
|
|
28
|
+
"primary": "Primary",
|
|
29
|
+
"secondary": "Secondary",
|
|
30
|
+
"cover": "Cover",
|
|
31
|
+
"destructive": "Destructive"
|
|
32
|
+
},
|
|
33
|
+
"logos": {
|
|
34
|
+
"title": "Logos",
|
|
35
|
+
"light": "Light",
|
|
36
|
+
"width": "Width",
|
|
37
|
+
"mobile_width": "Mobile Width",
|
|
38
|
+
"dark": "Dark",
|
|
39
|
+
"mobile_light": "Mobile Light",
|
|
40
|
+
"mobile_dark": "Mobile Dark",
|
|
41
|
+
"text": "Logo Text"
|
|
42
|
+
},
|
|
43
|
+
"success": {
|
|
44
|
+
"title": "The theme has been saved successfully!",
|
|
45
|
+
"desc": "The changes will be visible after the app is rebuilt."
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
"core": {
|
|
49
|
+
"diagnostic": {
|
|
50
|
+
"title": "Diagnostic Tools",
|
|
51
|
+
"desc": "Use these tools to diagnose and fix common issues with your website.",
|
|
52
|
+
"clear_cache": {
|
|
53
|
+
"title": "Clear Cache",
|
|
54
|
+
"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.",
|
|
55
|
+
"confirm": "Yes, clear cache",
|
|
56
|
+
"success": "Cache has been cleared."
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
"email": {
|
|
60
|
+
"hello": "Hello",
|
|
61
|
+
"footer": "You're receiving this email because your account activity triggered this email. Please do not reply to this email. If you have any questions, please contact us at:"
|
|
62
|
+
},
|
|
63
|
+
"settings": {
|
|
64
|
+
"main": {
|
|
65
|
+
"title": "Main Settings",
|
|
66
|
+
"desc": "These settings are used to configure the main features of your website.",
|
|
67
|
+
"name": {
|
|
68
|
+
"label": "Name Site"
|
|
69
|
+
},
|
|
70
|
+
"short_name": {
|
|
71
|
+
"label": "Short Name Site"
|
|
72
|
+
},
|
|
73
|
+
"description": {
|
|
74
|
+
"label": "Description Site"
|
|
75
|
+
},
|
|
76
|
+
"copyright": {
|
|
77
|
+
"label": "Copyright Site"
|
|
78
|
+
},
|
|
79
|
+
"contact_email": {
|
|
80
|
+
"label": "Contact Email",
|
|
81
|
+
"desc": "This email address will be applied to the contact form and other contact points on your website."
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
"email": {
|
|
85
|
+
"title": "Email",
|
|
86
|
+
"desc": "Send emails from your website. Unlock more features like password reset, email verification, and more.",
|
|
87
|
+
"logs": {
|
|
88
|
+
"title": "Email Error Logs",
|
|
89
|
+
"id": "ID",
|
|
90
|
+
"to": "To",
|
|
91
|
+
"subject": "Subject",
|
|
92
|
+
"created": "Created",
|
|
93
|
+
"error": "Error",
|
|
94
|
+
"show": {
|
|
95
|
+
"title": "Show log",
|
|
96
|
+
"title_dialog": "Email Log - #{id}",
|
|
97
|
+
"to": "To: <email>{to}</email>",
|
|
98
|
+
"html": "HTML",
|
|
99
|
+
"error": "Error Message",
|
|
100
|
+
"subject": "Subject"
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
"logo": "Logo",
|
|
104
|
+
"resend_key": "Resend Key",
|
|
105
|
+
"smtp_host": "SMTP Host",
|
|
106
|
+
"smtp_user": "SMTP User",
|
|
107
|
+
"smtp_password": "SMTP Password",
|
|
108
|
+
"smtp_port": "SMTP Port",
|
|
109
|
+
"smtp_secure": "SMTP Secure (SSL/TLS)",
|
|
110
|
+
"color_primary": "Primary Color",
|
|
111
|
+
"test": {
|
|
112
|
+
"title": "Test Email Send",
|
|
113
|
+
"to": "To",
|
|
114
|
+
"subject": "Subject",
|
|
115
|
+
"preview_text": "Preview Message",
|
|
116
|
+
"message": "Message",
|
|
117
|
+
"success": {
|
|
118
|
+
"title": "Email has been sent",
|
|
119
|
+
"desc": "Check your email inbox to see if you received the email."
|
|
120
|
+
},
|
|
121
|
+
"test": {
|
|
122
|
+
"subject": "Test Email from AdminCP VitNode",
|
|
123
|
+
"message": "This email confirms that your email settings in your website by VitNode are working correctly.",
|
|
124
|
+
"preview_text": "Preview text test email from AdminCP VitNode"
|
|
125
|
+
},
|
|
126
|
+
"send_testing_email": "Send Testing Email"
|
|
127
|
+
}
|
|
128
|
+
},
|
|
129
|
+
"security": {
|
|
130
|
+
"captcha": {
|
|
131
|
+
"title": "Captcha",
|
|
132
|
+
"desc": "Captcha is a security feature that requires users to complete a challenge to prove they are human. This helps prevent spam and abuse.",
|
|
133
|
+
"type": {
|
|
134
|
+
"title": "Type",
|
|
135
|
+
"none": {
|
|
136
|
+
"title": "None"
|
|
137
|
+
},
|
|
138
|
+
"recaptcha_desc": "Read more on <link>Google reCAPTCHA</link>.",
|
|
139
|
+
"recaptcha_v2_invisible": "reCAPTCHA v2 Invisible",
|
|
140
|
+
"recaptcha_v2_checkbox": "reCAPTCHA v2 Checkbox",
|
|
141
|
+
"recaptcha_v3": "reCAPTCHA v3",
|
|
142
|
+
"cloudflare_turnstile": {
|
|
143
|
+
"title": "Cloudflare Turnstile",
|
|
144
|
+
"desc": "Read more on <link>Cloudflare Turnstile</link>."
|
|
145
|
+
}
|
|
146
|
+
},
|
|
147
|
+
"site_key": "Site Key",
|
|
148
|
+
"secret_key": "Secret Key"
|
|
149
|
+
}
|
|
150
|
+
},
|
|
151
|
+
"authorization": {
|
|
152
|
+
"force_login": {
|
|
153
|
+
"title": "Force Login",
|
|
154
|
+
"desc": "Force users to log in before they can access your website."
|
|
155
|
+
},
|
|
156
|
+
"lock_register": {
|
|
157
|
+
"title": "Lock Register",
|
|
158
|
+
"desc": "Don't allow users to register on your website."
|
|
159
|
+
},
|
|
160
|
+
"require_confirm_email": {
|
|
161
|
+
"title": "Require Confirm Email",
|
|
162
|
+
"desc": "Require users to confirm their email address before they can access your site."
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
"legal": {
|
|
166
|
+
"title": "Legal & Policies",
|
|
167
|
+
"desc": "These settings are used to generate the legal pages on your website.",
|
|
168
|
+
"legal_public": "Public Legal",
|
|
169
|
+
"created": "Created",
|
|
170
|
+
"updated": "Updated",
|
|
171
|
+
"preview": "Preview",
|
|
172
|
+
"create_edit": {
|
|
173
|
+
"create": {
|
|
174
|
+
"title": "Create Policy",
|
|
175
|
+
"desc": "Create a new policy for your website."
|
|
176
|
+
},
|
|
177
|
+
"edit": "Edit Policy",
|
|
178
|
+
"form": {
|
|
179
|
+
"title": "Title",
|
|
180
|
+
"code": {
|
|
181
|
+
"title": "Code",
|
|
182
|
+
"desc": "Code should be unique. This code is used to generate the URL of the policy page.",
|
|
183
|
+
"preview_url": "Preview URL of the policy page: <url></url>",
|
|
184
|
+
"already_exists": "Policy with this code already exists."
|
|
185
|
+
},
|
|
186
|
+
"content": "Content",
|
|
187
|
+
"href": "URL",
|
|
188
|
+
"external_href": "Use external URL"
|
|
189
|
+
},
|
|
190
|
+
"submit": {
|
|
191
|
+
"create": "Create Policy",
|
|
192
|
+
"edit": "Edit Policy"
|
|
193
|
+
},
|
|
194
|
+
"success": {
|
|
195
|
+
"create": "Policy has been created.",
|
|
196
|
+
"edit": "Policy has been updated."
|
|
197
|
+
}
|
|
198
|
+
},
|
|
199
|
+
"delete": {
|
|
200
|
+
"title": "Delete Policy",
|
|
201
|
+
"desc": "This action will delete the policy <name></name>.",
|
|
202
|
+
"confirm": "Yes, delete policy",
|
|
203
|
+
"success": "Policy has been deleted."
|
|
204
|
+
}
|
|
205
|
+
},
|
|
206
|
+
"ai": {
|
|
207
|
+
"title": "Artificial Intelligence (AI)",
|
|
208
|
+
"desc": "Integrate powerful Artificial Intelligence to boost user experience with personalized content, smarter search, SEO optimization and more.",
|
|
209
|
+
"testing": {
|
|
210
|
+
"title": "Test Your AI",
|
|
211
|
+
"desc": "Here you can test your AI to see how it works.",
|
|
212
|
+
"response": "Response",
|
|
213
|
+
"response_success": "If you see the response, your AI is working correctly.",
|
|
214
|
+
"prompt": "Prompt",
|
|
215
|
+
"prompt_placeholder": "Ask a question...",
|
|
216
|
+
"submit": "Ask"
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
},
|
|
220
|
+
"metadata": {
|
|
221
|
+
"manifest": {
|
|
222
|
+
"title": "Manifest",
|
|
223
|
+
"desc": "The web app manifest provides information about an application (such as name, author, icon, and description) in a JSON text file. The manifest is used to install the web application (PWA) to the home screen of a device.",
|
|
224
|
+
"display": {
|
|
225
|
+
"label": "Display",
|
|
226
|
+
"desc": "The display property controls how the app is displayed.",
|
|
227
|
+
"fullscreen": {
|
|
228
|
+
"title": "Fullscreen",
|
|
229
|
+
"desc": "Without any browser UI and any device UI."
|
|
230
|
+
},
|
|
231
|
+
"standalone": {
|
|
232
|
+
"title": "Standalone",
|
|
233
|
+
"desc": "Without any browser UI."
|
|
234
|
+
},
|
|
235
|
+
"minimal-ui": {
|
|
236
|
+
"title": "Minimal UI",
|
|
237
|
+
"desc": "Minimal browser UI."
|
|
238
|
+
},
|
|
239
|
+
"browser": {
|
|
240
|
+
"title": "Browser",
|
|
241
|
+
"desc": "With browser UI."
|
|
242
|
+
}
|
|
243
|
+
},
|
|
244
|
+
"start_url": {
|
|
245
|
+
"label": "Start URL",
|
|
246
|
+
"desc": "When user launches the app, this is the page that will be loaded."
|
|
247
|
+
},
|
|
248
|
+
"theme_color": {
|
|
249
|
+
"label": "Theme Color"
|
|
250
|
+
},
|
|
251
|
+
"background_color": {
|
|
252
|
+
"label": "Background Color"
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
},
|
|
256
|
+
"plugins": {
|
|
257
|
+
"title": "Plugins",
|
|
258
|
+
"upload_new_version": "Upload New Version",
|
|
259
|
+
"set_default": "Set as default",
|
|
260
|
+
"get_help": "Get help",
|
|
261
|
+
"search_placeholder": "Search by name...",
|
|
262
|
+
"dev_tools": "Developer Tools",
|
|
263
|
+
"name": "Name",
|
|
264
|
+
"version": "Version",
|
|
265
|
+
"author": "Author",
|
|
266
|
+
"updated": "Updated",
|
|
267
|
+
"warn_req_restart_server": {
|
|
268
|
+
"title": "Required Restart Server",
|
|
269
|
+
"desc": "We're detected changes in <bold>the plugin system</bold>. To apply these changes, you need to <bold>restart the server</bold>."
|
|
270
|
+
},
|
|
271
|
+
"dev": {
|
|
272
|
+
"overview": {
|
|
273
|
+
"title": "Overview"
|
|
274
|
+
},
|
|
275
|
+
"nav": {
|
|
276
|
+
"title": "Navigation in AdminCP",
|
|
277
|
+
"lang_key": "Lang Key: <key></key>",
|
|
278
|
+
"keywords": "Keywords: <keywords></keywords>",
|
|
279
|
+
"link_url_with_link": "Link URL: <link></link>",
|
|
280
|
+
"create": {
|
|
281
|
+
"title": "Create Navigation",
|
|
282
|
+
"code": {
|
|
283
|
+
"label": "Code",
|
|
284
|
+
"desc": "Should be unique. Min 3-50 characters.",
|
|
285
|
+
"exists": "Navigation with this code already exists."
|
|
286
|
+
},
|
|
287
|
+
"icon": {
|
|
288
|
+
"label": "Icon"
|
|
289
|
+
},
|
|
290
|
+
"parent": {
|
|
291
|
+
"label": "Parent Navigation",
|
|
292
|
+
"null": "No parent"
|
|
293
|
+
},
|
|
294
|
+
"keywords": {
|
|
295
|
+
"label": "Keywords",
|
|
296
|
+
"desc": "Keywords are used to search for this navigation. Separate by comma."
|
|
297
|
+
},
|
|
298
|
+
"success": "Navigation has been created."
|
|
299
|
+
},
|
|
300
|
+
"edit": {
|
|
301
|
+
"title": "Edit Navigation",
|
|
302
|
+
"success": "Navigation has been updated."
|
|
303
|
+
},
|
|
304
|
+
"delete": {
|
|
305
|
+
"submit": "Yes, delete navigation",
|
|
306
|
+
"desc": "This action will delete <code></code> navigation.",
|
|
307
|
+
"success": "Navigation has been deleted."
|
|
308
|
+
}
|
|
309
|
+
},
|
|
310
|
+
"permissions-admin": {
|
|
311
|
+
"title": "Permissions in AdminCP",
|
|
312
|
+
"create_edit": {
|
|
313
|
+
"id": {
|
|
314
|
+
"label": "ID",
|
|
315
|
+
"desc": "Unique ID for this permission.",
|
|
316
|
+
"exists": "Permission with this ID already exists."
|
|
317
|
+
},
|
|
318
|
+
"parent": {
|
|
319
|
+
"label": "Parent Permission",
|
|
320
|
+
"null": "No parent permission"
|
|
321
|
+
},
|
|
322
|
+
"create_success": "Permission has been created."
|
|
323
|
+
},
|
|
324
|
+
"delete": {
|
|
325
|
+
"desc": "This action will delete the permission <id></id>. Remember to delete all conditions associated with this permission.",
|
|
326
|
+
"submit": "Yes, delete permission",
|
|
327
|
+
"success": "Permission has been deleted.",
|
|
328
|
+
"children_warn": {
|
|
329
|
+
"title": "This permission has children",
|
|
330
|
+
"desc": "If you delete this permission, all children will be deleted too."
|
|
331
|
+
}
|
|
332
|
+
}
|
|
333
|
+
}
|
|
334
|
+
},
|
|
335
|
+
"create": {
|
|
336
|
+
"title": "Create Plugin",
|
|
337
|
+
"name": {
|
|
338
|
+
"label": "Name",
|
|
339
|
+
"desc": "Min 3-50 characters."
|
|
340
|
+
},
|
|
341
|
+
"code": {
|
|
342
|
+
"label": "Code",
|
|
343
|
+
"desc": "Must be unique. Min 3-50 characters. Allowed characters: a-z, 0-9, -",
|
|
344
|
+
"invalid": "You can use only a-z, 0-9, -",
|
|
345
|
+
"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."
|
|
346
|
+
},
|
|
347
|
+
"description": {
|
|
348
|
+
"label": "Description"
|
|
349
|
+
},
|
|
350
|
+
"support_url": {
|
|
351
|
+
"label": "Support URL",
|
|
352
|
+
"desc": "URL to the support page for this plugin."
|
|
353
|
+
},
|
|
354
|
+
"author": {
|
|
355
|
+
"label": "Author",
|
|
356
|
+
"desc": "Name of the author."
|
|
357
|
+
},
|
|
358
|
+
"author_url": {
|
|
359
|
+
"label": "Author URL",
|
|
360
|
+
"desc": "URL to the author's website."
|
|
361
|
+
}
|
|
362
|
+
},
|
|
363
|
+
"edit": {
|
|
364
|
+
"title": "Edit Plugin",
|
|
365
|
+
"success": "Plugin has been updated."
|
|
366
|
+
},
|
|
367
|
+
"upload": {
|
|
368
|
+
"title": "Upload Plugin",
|
|
369
|
+
"title_new_version": "Upload New Version Plugin",
|
|
370
|
+
"info": "After uploading the plugin, you need to restart the server to apply the changes.",
|
|
371
|
+
"errors": {
|
|
372
|
+
"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.",
|
|
373
|
+
"PLUGIN_VERSION_IS_LOWER": "The version of the uploaded plugin is lower than the current version."
|
|
374
|
+
},
|
|
375
|
+
"submit": "Upload"
|
|
376
|
+
},
|
|
377
|
+
"delete": {
|
|
378
|
+
"submit": "Yes, delete plugin",
|
|
379
|
+
"desc": "This action will delete <name></name> plugin created by <author></author> and all data associated with it.",
|
|
380
|
+
"info": "You may see the errors while the system is changing files. After the process is complete, you need to restart the server to apply the changes."
|
|
381
|
+
},
|
|
382
|
+
"download": {
|
|
383
|
+
"title": "Download Plugin",
|
|
384
|
+
"type": {
|
|
385
|
+
"rebuild": "Rebuild current version - {version}",
|
|
386
|
+
"new_version": "Create new version"
|
|
387
|
+
},
|
|
388
|
+
"version": {
|
|
389
|
+
"label": "Version"
|
|
390
|
+
},
|
|
391
|
+
"version_code": {
|
|
392
|
+
"label": "Version Code"
|
|
393
|
+
},
|
|
394
|
+
"submit": "Download"
|
|
395
|
+
}
|
|
396
|
+
},
|
|
397
|
+
"styles": {
|
|
398
|
+
"nav": {
|
|
399
|
+
"title": "Navigation",
|
|
400
|
+
"href": "URL: {href}",
|
|
401
|
+
"create": {
|
|
402
|
+
"title": "Create Navigation",
|
|
403
|
+
"success": "Navigation has been created.",
|
|
404
|
+
"name": {
|
|
405
|
+
"label": "Name"
|
|
406
|
+
},
|
|
407
|
+
"description": {
|
|
408
|
+
"label": "Description"
|
|
409
|
+
},
|
|
410
|
+
"href": {
|
|
411
|
+
"label": "URL",
|
|
412
|
+
"desc": "Internal link format: /path/to/page"
|
|
413
|
+
},
|
|
414
|
+
"icon": {
|
|
415
|
+
"label": "Icon"
|
|
416
|
+
},
|
|
417
|
+
"external": {
|
|
418
|
+
"label": "External link?",
|
|
419
|
+
"desc": "The link will open in a new tab."
|
|
420
|
+
}
|
|
421
|
+
},
|
|
422
|
+
"edit": {
|
|
423
|
+
"title": "Edit Navigation",
|
|
424
|
+
"success": "Navigation has been updated."
|
|
425
|
+
},
|
|
426
|
+
"delete": {
|
|
427
|
+
"submit": "Yes, delete navigation",
|
|
428
|
+
"desc": "This action will delete <name></name> navigation.",
|
|
429
|
+
"desc_with_children": "You have sub-navigations. If you delete this navigation, all sub-navigations will be moved to the parent navigation.",
|
|
430
|
+
"success": "Navigation has been deleted."
|
|
431
|
+
}
|
|
432
|
+
},
|
|
433
|
+
"editor": {
|
|
434
|
+
"title": "Editor",
|
|
435
|
+
"sticky": {
|
|
436
|
+
"label": "Sticky Toolbar",
|
|
437
|
+
"desc": "The toolbar will be fixed at the top of the screen."
|
|
438
|
+
},
|
|
439
|
+
"files": {
|
|
440
|
+
"allow_type": {
|
|
441
|
+
"title": "Allow File Type",
|
|
442
|
+
"all": "All",
|
|
443
|
+
"images_videos": "Images & Videos",
|
|
444
|
+
"images": "Images",
|
|
445
|
+
"none": "None"
|
|
446
|
+
}
|
|
447
|
+
}
|
|
448
|
+
}
|
|
449
|
+
},
|
|
450
|
+
"langs": {
|
|
451
|
+
"title": "Languages",
|
|
452
|
+
"search_placeholder": "Search by name...",
|
|
453
|
+
"table": {
|
|
454
|
+
"key": "Key",
|
|
455
|
+
"time_24": "24h Format",
|
|
456
|
+
"locale": "Locale",
|
|
457
|
+
"name": "Name",
|
|
458
|
+
"created": "Created",
|
|
459
|
+
"enabled": "Enabled"
|
|
460
|
+
},
|
|
461
|
+
"actions": {
|
|
462
|
+
"create": {
|
|
463
|
+
"title": "Create Language",
|
|
464
|
+
"name": {
|
|
465
|
+
"label": "Name",
|
|
466
|
+
"placeholder": "English (USA)"
|
|
467
|
+
},
|
|
468
|
+
"code": {
|
|
469
|
+
"label": "Code",
|
|
470
|
+
"placeholder": "en",
|
|
471
|
+
"desc": "This code uses as a language identifier in your URL, like: /en/page"
|
|
472
|
+
},
|
|
473
|
+
"timezone": {
|
|
474
|
+
"label": "Timezone"
|
|
475
|
+
},
|
|
476
|
+
"time_24": {
|
|
477
|
+
"label": "24h Time Format",
|
|
478
|
+
"desc": "Shows 24h time format instead of 12h."
|
|
479
|
+
},
|
|
480
|
+
"locale": {
|
|
481
|
+
"label": "Locale"
|
|
482
|
+
},
|
|
483
|
+
"allow_in_input": {
|
|
484
|
+
"label": "Allow in Input",
|
|
485
|
+
"desc": "Allow users to select this language in the input field."
|
|
486
|
+
},
|
|
487
|
+
"submit": "Create Language",
|
|
488
|
+
"success": "Language has been created."
|
|
489
|
+
},
|
|
490
|
+
"edit": {
|
|
491
|
+
"title": "Edit Language",
|
|
492
|
+
"submit": "Edit Language",
|
|
493
|
+
"default": {
|
|
494
|
+
"label": "Default",
|
|
495
|
+
"desc": "Set this language as the default language for your applications."
|
|
496
|
+
},
|
|
497
|
+
"success": "Language has been updated."
|
|
498
|
+
},
|
|
499
|
+
"delete": {
|
|
500
|
+
"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.",
|
|
501
|
+
"form_confirm_text": "Type the name of the language <text></text> to confirm.",
|
|
502
|
+
"success": "Language has been deleted.",
|
|
503
|
+
"submit": "Yes, delete language"
|
|
504
|
+
}
|
|
505
|
+
}
|
|
506
|
+
},
|
|
507
|
+
"advanced": {
|
|
508
|
+
"files": {
|
|
509
|
+
"title": "Files",
|
|
510
|
+
"delete": {
|
|
511
|
+
"desc": "This action will delete the file <name></name>.",
|
|
512
|
+
"uses_warning": "This file is used in other part of the system.",
|
|
513
|
+
"success": "File has been deleted.",
|
|
514
|
+
"submit": "Yes, delete file"
|
|
515
|
+
}
|
|
516
|
+
}
|
|
517
|
+
}
|
|
518
|
+
},
|
|
519
|
+
"members": {
|
|
520
|
+
"users": {
|
|
521
|
+
"title": "Users List",
|
|
522
|
+
"desc": "Manage users on your website.",
|
|
523
|
+
"search_placeholder": "Search by name or email...",
|
|
524
|
+
"name": "Name",
|
|
525
|
+
"email": "Email",
|
|
526
|
+
"group": "Group",
|
|
527
|
+
"joined": "Joined",
|
|
528
|
+
"filters": {
|
|
529
|
+
"groups": "Groups"
|
|
530
|
+
},
|
|
531
|
+
"create": {
|
|
532
|
+
"title": "Create User",
|
|
533
|
+
"success": "User has been created."
|
|
534
|
+
},
|
|
535
|
+
"item": {
|
|
536
|
+
"user_menu": "User Menu",
|
|
537
|
+
"public_profile": "Public Profile",
|
|
538
|
+
"confirm_email": {
|
|
539
|
+
"title": "Confirm Email",
|
|
540
|
+
"success": "Email has been confirmed."
|
|
541
|
+
},
|
|
542
|
+
"info": {
|
|
543
|
+
"title": "Info User",
|
|
544
|
+
"joined": "Joined",
|
|
545
|
+
"email": "Email",
|
|
546
|
+
"not_email_verified": "This user has not verified their email address."
|
|
547
|
+
},
|
|
548
|
+
"edit": {
|
|
549
|
+
"title": "Edit User",
|
|
550
|
+
"success": "User has been updated."
|
|
551
|
+
},
|
|
552
|
+
"delete": {
|
|
553
|
+
"title": "Delete User",
|
|
554
|
+
"desc": "This action will delete the user <name></name> and all data associated with it permanently.",
|
|
555
|
+
"submit": "Yes, delete user",
|
|
556
|
+
"success": "User has been deleted.",
|
|
557
|
+
"delete_admin": {
|
|
558
|
+
"title": "You cannot delete this admin",
|
|
559
|
+
"desc": "Please remove the admin permissions before deleting this user."
|
|
560
|
+
}
|
|
561
|
+
}
|
|
562
|
+
}
|
|
563
|
+
},
|
|
564
|
+
"groups": {
|
|
565
|
+
"title": "Groups",
|
|
566
|
+
"name": "Name",
|
|
567
|
+
"updated": "Updated",
|
|
568
|
+
"search_placeholder": "Search by name...",
|
|
569
|
+
"default": "Default",
|
|
570
|
+
"root": "Admin Root",
|
|
571
|
+
"table": {
|
|
572
|
+
"users_count": "Users"
|
|
573
|
+
},
|
|
574
|
+
"create_edit": {
|
|
575
|
+
"main": "Main",
|
|
576
|
+
"content": "Content",
|
|
577
|
+
"name": "Name",
|
|
578
|
+
"color": "Color",
|
|
579
|
+
"in_kb": "in kB",
|
|
580
|
+
"files": {
|
|
581
|
+
"title": "Files",
|
|
582
|
+
"allow_upload": "Allow Upload Files",
|
|
583
|
+
"total_max_storage": "Total Max Storage",
|
|
584
|
+
"max_storage_for_submit": {
|
|
585
|
+
"label": "Max Storage for Submit",
|
|
586
|
+
"desc": "If you set 1000, user can upload only 1 file with size 1000kB or 2 files with size 500kB for each submit."
|
|
587
|
+
}
|
|
588
|
+
}
|
|
589
|
+
},
|
|
590
|
+
"create": {
|
|
591
|
+
"title": "Create Group",
|
|
592
|
+
"success": "Group has been created"
|
|
593
|
+
},
|
|
594
|
+
"edit": {
|
|
595
|
+
"title": "Edit Group",
|
|
596
|
+
"success": "Group has been updated"
|
|
597
|
+
},
|
|
598
|
+
"delete": {
|
|
599
|
+
"text": "This action cannot be undone. This will permanently delete this group and all users in it will be moved to the default group.",
|
|
600
|
+
"form_confirm_text": "Type the name of the group <text></text> to confirm.",
|
|
601
|
+
"submit": "Yes, delete group",
|
|
602
|
+
"success": "Group has been deleted"
|
|
603
|
+
}
|
|
604
|
+
},
|
|
605
|
+
"staff": {
|
|
606
|
+
"shared": {
|
|
607
|
+
"type": "Type",
|
|
608
|
+
"updated": "Updated",
|
|
609
|
+
"permissions": "Permissions",
|
|
610
|
+
"restricted": "Restricted",
|
|
611
|
+
"user": "User",
|
|
612
|
+
"group": "Group",
|
|
613
|
+
"already_exists": "This permission is already on the list.",
|
|
614
|
+
"unrestricted": {
|
|
615
|
+
"title": "Unrestricted",
|
|
616
|
+
"desc": "Unrestricted administrators have full access to the admin control panel (AdminCP)."
|
|
617
|
+
}
|
|
618
|
+
},
|
|
619
|
+
"moderators": {
|
|
620
|
+
"title": "Moderators",
|
|
621
|
+
"desc": "Manage access to the moderator panel (ModCP).",
|
|
622
|
+
"moderator": "Moderator",
|
|
623
|
+
"add": {
|
|
624
|
+
"title": "Add Moderator",
|
|
625
|
+
"success": "Moderator has been added"
|
|
626
|
+
},
|
|
627
|
+
"delete": {
|
|
628
|
+
"desc": "This action will deprive the user or users of this group of access to the moderator panel (ModCP).",
|
|
629
|
+
"submit": "Yes, delete permissions",
|
|
630
|
+
"success": "Permissions has been deleted"
|
|
631
|
+
}
|
|
632
|
+
},
|
|
633
|
+
"administrators": {
|
|
634
|
+
"title": "Administrators",
|
|
635
|
+
"desc": "Manage access to the administrator panel (AdminCP).",
|
|
636
|
+
"administrator": "Administrator",
|
|
637
|
+
"add": {
|
|
638
|
+
"title": "Add Administrator",
|
|
639
|
+
"success": "Administrator has been added"
|
|
640
|
+
},
|
|
641
|
+
"edit": {
|
|
642
|
+
"title": "Edit Administrator",
|
|
643
|
+
"success": "Administrator has been updated"
|
|
644
|
+
},
|
|
645
|
+
"delete": {
|
|
646
|
+
"desc": "This action will deprive the user or users of this group of access to the administrator panel (AdminCP).",
|
|
647
|
+
"submit": "Yes, delete permissions",
|
|
648
|
+
"success": "Permissions has been deleted"
|
|
649
|
+
}
|
|
650
|
+
}
|
|
651
|
+
}
|
|
652
|
+
}
|
|
653
|
+
}
|
|
654
|
+
}
|