@consilioweb/payload-support 0.5.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/LICENSE +21 -0
- package/README.md +525 -0
- package/dist/client.cjs +7 -0
- package/dist/client.d.cts +3 -0
- package/dist/client.d.ts +3 -0
- package/dist/client.js +5 -0
- package/dist/index.cjs +7766 -0
- package/dist/index.d.cts +384 -0
- package/dist/index.d.ts +384 -0
- package/dist/index.js +7730 -0
- package/dist/views.d.cts +30 -0
- package/dist/views.d.ts +30 -0
- package/package.json +131 -0
- package/src/client.ts +1 -0
- package/src/collections/AuthLogs.ts +65 -0
- package/src/collections/CannedResponses.ts +69 -0
- package/src/collections/ChatMessages.ts +98 -0
- package/src/collections/EmailLogs.ts +94 -0
- package/src/collections/KnowledgeBase.ts +99 -0
- package/src/collections/Macros.ts +98 -0
- package/src/collections/PendingEmails.ts +122 -0
- package/src/collections/SatisfactionSurveys.ts +98 -0
- package/src/collections/SlaPolicies.ts +123 -0
- package/src/collections/SupportClients.ts +210 -0
- package/src/collections/TicketActivityLog.ts +81 -0
- package/src/collections/TicketMessages.ts +364 -0
- package/src/collections/TicketStatuses.ts +108 -0
- package/src/collections/Tickets.ts +704 -0
- package/src/collections/TimeEntries.ts +105 -0
- package/src/collections/WebhookEndpoints.ts +96 -0
- package/src/collections/index.ts +16 -0
- package/src/components/TicketConversation/components/AISummaryPanel.tsx +85 -0
- package/src/components/TicketConversation/components/ActionPanels.tsx +140 -0
- package/src/components/TicketConversation/components/ActivityLog.tsx +39 -0
- package/src/components/TicketConversation/components/ClientBar.tsx +37 -0
- package/src/components/TicketConversation/components/ClientHistory.tsx +117 -0
- package/src/components/TicketConversation/components/CodeBlock.tsx +186 -0
- package/src/components/TicketConversation/components/CodeBlockInserter.tsx +166 -0
- package/src/components/TicketConversation/components/QuickActions.tsx +82 -0
- package/src/components/TicketConversation/components/TicketHeader.tsx +91 -0
- package/src/components/TicketConversation/components/TimeTrackingPanel.tsx +161 -0
- package/src/components/TicketConversation/config.ts +82 -0
- package/src/components/TicketConversation/constants.ts +74 -0
- package/src/components/TicketConversation/context.ts +63 -0
- package/src/components/TicketConversation/hooks/useAI.ts +180 -0
- package/src/components/TicketConversation/hooks/useMessageActions.ts +131 -0
- package/src/components/TicketConversation/hooks/useReply.ts +190 -0
- package/src/components/TicketConversation/hooks/useTicketActions.ts +205 -0
- package/src/components/TicketConversation/hooks/useTimeTracking.ts +107 -0
- package/src/components/TicketConversation/hooks/useTranslation.ts +116 -0
- package/src/components/TicketConversation/index.tsx +1110 -0
- package/src/components/TicketConversation/locales/en.json +878 -0
- package/src/components/TicketConversation/locales/fr.json +878 -0
- package/src/components/TicketConversation/types.ts +54 -0
- package/src/components/TicketConversation/utils.ts +25 -0
- package/src/endpoints/admin-chat-stream.ts +238 -0
- package/src/endpoints/admin-chat.ts +263 -0
- package/src/endpoints/admin-stats.ts +200 -0
- package/src/endpoints/ai.ts +199 -0
- package/src/endpoints/apply-macro.ts +144 -0
- package/src/endpoints/auth-2fa.ts +163 -0
- package/src/endpoints/auto-close.ts +175 -0
- package/src/endpoints/billing.ts +167 -0
- package/src/endpoints/bulk-action.ts +103 -0
- package/src/endpoints/chat-stream.ts +127 -0
- package/src/endpoints/chat.ts +188 -0
- package/src/endpoints/chatbot.ts +113 -0
- package/src/endpoints/delete-account.ts +129 -0
- package/src/endpoints/email-stats.ts +109 -0
- package/src/endpoints/export-csv.ts +84 -0
- package/src/endpoints/export-data.ts +104 -0
- package/src/endpoints/import-conversation.ts +307 -0
- package/src/endpoints/index.ts +154 -0
- package/src/endpoints/login.ts +92 -0
- package/src/endpoints/merge-clients.ts +132 -0
- package/src/endpoints/merge-tickets.ts +137 -0
- package/src/endpoints/oauth-google.ts +179 -0
- package/src/endpoints/pending-emails-process.ts +224 -0
- package/src/endpoints/presence.ts +104 -0
- package/src/endpoints/process-scheduled.ts +144 -0
- package/src/endpoints/purge-logs.ts +58 -0
- package/src/endpoints/resend-notification.ts +99 -0
- package/src/endpoints/round-robin-config.ts +92 -0
- package/src/endpoints/satisfaction.ts +93 -0
- package/src/endpoints/search.ts +106 -0
- package/src/endpoints/seed-kb.ts +153 -0
- package/src/endpoints/settings.ts +144 -0
- package/src/endpoints/signature.ts +93 -0
- package/src/endpoints/sla-check.ts +124 -0
- package/src/endpoints/split-ticket.ts +131 -0
- package/src/endpoints/statuses.ts +45 -0
- package/src/endpoints/track-open.ts +154 -0
- package/src/endpoints/typing.ts +101 -0
- package/src/endpoints/user-prefs.ts +125 -0
- package/src/hooks/checkSLA.ts +414 -0
- package/src/hooks/ticketStatusEmail.ts +182 -0
- package/src/index.ts +51 -0
- package/src/plugin.ts +157 -0
- package/src/portal/LiveChat.tsx +1353 -0
- package/src/portal/auth/ChatWidget.tsx +350 -0
- package/src/portal/auth/ChatbotWidget.tsx +285 -0
- package/src/portal/auth/SupportHeader.tsx +409 -0
- package/src/portal/auth/dashboard/DashboardClient.tsx +650 -0
- package/src/portal/auth/dashboard/page.tsx +84 -0
- package/src/portal/auth/faq/FAQSearch.tsx +117 -0
- package/src/portal/auth/faq/page.tsx +199 -0
- package/src/portal/auth/layout.tsx +61 -0
- package/src/portal/auth/profile/page.tsx +705 -0
- package/src/portal/auth/tickets/detail/CloseTicketButton.tsx +74 -0
- package/src/portal/auth/tickets/detail/CollapsibleMessages.tsx +46 -0
- package/src/portal/auth/tickets/detail/MarkSolutionButton.tsx +50 -0
- package/src/portal/auth/tickets/detail/MessageActions.tsx +158 -0
- package/src/portal/auth/tickets/detail/PrintButton.tsx +16 -0
- package/src/portal/auth/tickets/detail/ReadReceipt.tsx +34 -0
- package/src/portal/auth/tickets/detail/ReopenTicketButton.tsx +74 -0
- package/src/portal/auth/tickets/detail/SatisfactionForm.tsx +156 -0
- package/src/portal/auth/tickets/detail/TicketPolling.tsx +57 -0
- package/src/portal/auth/tickets/detail/TicketReplyForm.tsx +294 -0
- package/src/portal/auth/tickets/detail/TypingIndicator.tsx +58 -0
- package/src/portal/auth/tickets/detail/page.tsx +738 -0
- package/src/portal/auth/tickets/new/page.tsx +515 -0
- package/src/portal/forgot-password/page.tsx +114 -0
- package/src/portal/layout.tsx +26 -0
- package/src/portal/locales/en.json +374 -0
- package/src/portal/locales/fr.json +374 -0
- package/src/portal/login/page.tsx +351 -0
- package/src/portal/page.tsx +162 -0
- package/src/portal/register/page.tsx +281 -0
- package/src/portal/reset-password/page.tsx +152 -0
- package/src/styles/BillingView.module.scss +311 -0
- package/src/styles/ChatView.module.scss +438 -0
- package/src/styles/CommandPalette.module.scss +160 -0
- package/src/styles/CrmView.module.scss +554 -0
- package/src/styles/EmailTracking.module.scss +238 -0
- package/src/styles/ImportConversation.module.scss +267 -0
- package/src/styles/Layout.module.scss +55 -0
- package/src/styles/Logs.module.scss +164 -0
- package/src/styles/NewTicket.module.scss +143 -0
- package/src/styles/PendingEmails.module.scss +629 -0
- package/src/styles/SupportDashboard.module.scss +649 -0
- package/src/styles/TicketDetail.module.scss +1043 -0
- package/src/styles/TicketInbox.module.scss +296 -0
- package/src/styles/TicketingSettings.module.scss +358 -0
- package/src/styles/TimeDashboard.module.scss +287 -0
- package/src/styles/_tokens.scss +78 -0
- package/src/styles/theme.css +633 -0
- package/src/types.ts +255 -0
- package/src/utils/adminNotification.ts +38 -0
- package/src/utils/auth.ts +46 -0
- package/src/utils/emailTemplate.ts +343 -0
- package/src/utils/fireWebhooks.ts +84 -0
- package/src/utils/index.ts +22 -0
- package/src/utils/rateLimiter.ts +52 -0
- package/src/utils/readSettings.ts +67 -0
- package/src/utils/slugs.ts +54 -0
- package/src/utils/webhookDispatcher.ts +120 -0
- package/src/views/BillingView/client.tsx +137 -0
- package/src/views/BillingView/index.tsx +33 -0
- package/src/views/ChatView/client.tsx +294 -0
- package/src/views/ChatView/index.tsx +33 -0
- package/src/views/CrmView/client.tsx +206 -0
- package/src/views/CrmView/index.tsx +33 -0
- package/src/views/EmailTrackingView/client.tsx +124 -0
- package/src/views/EmailTrackingView/index.tsx +33 -0
- package/src/views/ImportConversationView/client.tsx +133 -0
- package/src/views/ImportConversationView/index.tsx +33 -0
- package/src/views/LogsView/client.tsx +151 -0
- package/src/views/LogsView/index.tsx +30 -0
- package/src/views/NewTicketView/client.tsx +227 -0
- package/src/views/NewTicketView/index.tsx +30 -0
- package/src/views/PendingEmailsView/client.tsx +177 -0
- package/src/views/PendingEmailsView/index.tsx +33 -0
- package/src/views/SupportDashboardView/client.tsx +424 -0
- package/src/views/SupportDashboardView/index.tsx +33 -0
- package/src/views/TicketDetailView/client.tsx +775 -0
- package/src/views/TicketDetailView/index.tsx +33 -0
- package/src/views/TicketInboxView/client.tsx +313 -0
- package/src/views/TicketInboxView/index.tsx +30 -0
- package/src/views/TicketingSettingsView/client.tsx +866 -0
- package/src/views/TicketingSettingsView/index.tsx +33 -0
- package/src/views/TimeDashboardView/client.tsx +144 -0
- package/src/views/TimeDashboardView/index.tsx +33 -0
- package/src/views/shared/AdminViewHeader.tsx +69 -0
- package/src/views/shared/ErrorBoundary.tsx +68 -0
- package/src/views/shared/Skeleton.tsx +125 -0
- package/src/views/shared/adminTokens.ts +37 -0
- package/src/views/shared/config.ts +82 -0
- package/src/views/shared/index.ts +6 -0
- package/src/views.ts +16 -0
|
@@ -0,0 +1,374 @@
|
|
|
1
|
+
{
|
|
2
|
+
"common": {
|
|
3
|
+
"save": "Save",
|
|
4
|
+
"cancel": "Cancel",
|
|
5
|
+
"delete": "Delete",
|
|
6
|
+
"edit": "Edit",
|
|
7
|
+
"close": "Close",
|
|
8
|
+
"open": "Open",
|
|
9
|
+
"loading": "Loading...",
|
|
10
|
+
"search": "Search",
|
|
11
|
+
"send": "Send",
|
|
12
|
+
"back": "Back",
|
|
13
|
+
"error": "Error",
|
|
14
|
+
"success": "Success",
|
|
15
|
+
"networkError": "Connection error. Please try again.",
|
|
16
|
+
"required": "required",
|
|
17
|
+
"optional": "optional",
|
|
18
|
+
"or": "OR",
|
|
19
|
+
"today": "Today",
|
|
20
|
+
"yesterday": "Yesterday",
|
|
21
|
+
"justNow": "Just now",
|
|
22
|
+
"agoMinutes": "{{count}}m ago",
|
|
23
|
+
"agoHours": "{{count}}h ago",
|
|
24
|
+
"agoDays": "{{count}}d ago"
|
|
25
|
+
},
|
|
26
|
+
"auth": {
|
|
27
|
+
"login": {
|
|
28
|
+
"title": "Sign in to your space",
|
|
29
|
+
"subtitle": "Client portal -- Support and project tracking",
|
|
30
|
+
"emailLabel": "Email",
|
|
31
|
+
"emailPlaceholder": "you@company.com",
|
|
32
|
+
"passwordLabel": "Password",
|
|
33
|
+
"passwordPlaceholder": "........",
|
|
34
|
+
"submitButton": "Sign in",
|
|
35
|
+
"submitting": "Signing in...",
|
|
36
|
+
"forgotPassword": "Forgot password?",
|
|
37
|
+
"noAccount": "Don't have an account?",
|
|
38
|
+
"createAccount": "Create an account",
|
|
39
|
+
"backToSite": "Back to site",
|
|
40
|
+
"continueWithGoogle": "Continue with Google",
|
|
41
|
+
"errorInvalidCredentials": "Invalid email or password.",
|
|
42
|
+
"errorConnection": "Connection error. Please try again.",
|
|
43
|
+
"alreadyHaveAccount": "You already have an account. Sign in to access your support space."
|
|
44
|
+
},
|
|
45
|
+
"register": {
|
|
46
|
+
"title": "Create an account",
|
|
47
|
+
"subtitle": "Join your support space in seconds",
|
|
48
|
+
"firstNameLabel": "First name",
|
|
49
|
+
"lastNameLabel": "Last name",
|
|
50
|
+
"companyLabel": "Company",
|
|
51
|
+
"phoneLabel": "Phone",
|
|
52
|
+
"emailLabel": "Email",
|
|
53
|
+
"passwordLabel": "Password",
|
|
54
|
+
"passwordPlaceholder": "Min. 8 characters",
|
|
55
|
+
"confirmPasswordLabel": "Confirm password",
|
|
56
|
+
"confirmPasswordPlaceholder": "Retype your password",
|
|
57
|
+
"submitButton": "Create my account",
|
|
58
|
+
"submitting": "Creating account...",
|
|
59
|
+
"signUpWithGoogle": "Sign up with Google",
|
|
60
|
+
"alreadyHaveAccount": "Already have an account?",
|
|
61
|
+
"loginLink": "Sign in",
|
|
62
|
+
"errorPasswordLength": "Password must be at least 8 characters.",
|
|
63
|
+
"errorPasswordMismatch": "Passwords do not match.",
|
|
64
|
+
"errorCreation": "Error creating account."
|
|
65
|
+
},
|
|
66
|
+
"twoFactor": {
|
|
67
|
+
"title": "Two-step verification",
|
|
68
|
+
"codeSent": "A code has been sent to",
|
|
69
|
+
"codeLabel": "Verification code",
|
|
70
|
+
"codePlaceholder": "000000",
|
|
71
|
+
"verifyButton": "Verify",
|
|
72
|
+
"verifying": "Verifying...",
|
|
73
|
+
"resendCode": "Resend code",
|
|
74
|
+
"resending": "Sending...",
|
|
75
|
+
"back": "Back",
|
|
76
|
+
"errorSendCode": "Error sending verification code.",
|
|
77
|
+
"errorResendCode": "Error resending code.",
|
|
78
|
+
"errorInvalidCode": "Invalid code.",
|
|
79
|
+
"errorAfterVerify": "Connection error after verification."
|
|
80
|
+
},
|
|
81
|
+
"forgotPassword": {
|
|
82
|
+
"title": "Forgot password",
|
|
83
|
+
"subtitle": "Enter your email to receive a reset link.",
|
|
84
|
+
"emailLabel": "Email",
|
|
85
|
+
"submitButton": "Send reset link",
|
|
86
|
+
"submitting": "Sending...",
|
|
87
|
+
"successMessage": "If an account exists with this email, you will receive a reset link.",
|
|
88
|
+
"backToLogin": "Back to login"
|
|
89
|
+
},
|
|
90
|
+
"resetPassword": {
|
|
91
|
+
"title": "Reset password",
|
|
92
|
+
"newPasswordLabel": "New password",
|
|
93
|
+
"confirmPasswordLabel": "Confirm password",
|
|
94
|
+
"submitButton": "Reset",
|
|
95
|
+
"submitting": "Resetting...",
|
|
96
|
+
"successMessage": "Password reset successfully.",
|
|
97
|
+
"loginLink": "Sign in"
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
"landing": {
|
|
101
|
+
"assistanceAvailable": "Assistance available",
|
|
102
|
+
"heroTitle": "Client Support Space",
|
|
103
|
+
"heroSubtitle": "Track your projects, report an issue or ask a question. Our team responds within 24 hours.",
|
|
104
|
+
"accessSpace": "Access my space",
|
|
105
|
+
"createAccount": "Create an account",
|
|
106
|
+
"howItWorks": "How does it work?",
|
|
107
|
+
"howItWorksSubtitle": "Three steps to get help quickly.",
|
|
108
|
+
"simpleAndEfficient": "Simple and effective",
|
|
109
|
+
"step1Title": "Create a ticket",
|
|
110
|
+
"step1Description": "Describe your need or issue. Add a category and priority for fast processing.",
|
|
111
|
+
"step2Title": "Chat with us",
|
|
112
|
+
"step2Description": "Discuss directly with our team. Every message is tracked and archived in your space.",
|
|
113
|
+
"step3Title": "Track progress",
|
|
114
|
+
"step3Description": "Check the status of your tickets, time spent and complete project history.",
|
|
115
|
+
"noAccount": "Don't have an account yet?",
|
|
116
|
+
"noAccountDescription": "Create your account in seconds to access your support space, or send an email to",
|
|
117
|
+
"noAccountSuffix": "for automatic creation.",
|
|
118
|
+
"loginButton": "Sign in"
|
|
119
|
+
},
|
|
120
|
+
"header": {
|
|
121
|
+
"myTickets": "My tickets",
|
|
122
|
+
"newTicket": "New ticket",
|
|
123
|
+
"faq": "FAQ",
|
|
124
|
+
"myProfile": "My profile",
|
|
125
|
+
"logout": "Log out",
|
|
126
|
+
"impersonation": "Impersonation mode",
|
|
127
|
+
"quit": "Quit",
|
|
128
|
+
"lightMode": "Light mode",
|
|
129
|
+
"darkMode": "Dark mode",
|
|
130
|
+
"notificationsEnabled": "Notifications enabled",
|
|
131
|
+
"notificationsBlocked": "Notifications blocked (change in browser settings)",
|
|
132
|
+
"enableNotifications": "Enable notifications",
|
|
133
|
+
"notificationsActivated": "Notifications enabled",
|
|
134
|
+
"notificationsBody": "You will receive a notification when support responds.",
|
|
135
|
+
"newMessage": "New message"
|
|
136
|
+
},
|
|
137
|
+
"dashboard": {
|
|
138
|
+
"title": "My tickets",
|
|
139
|
+
"tabs": {
|
|
140
|
+
"active": "Active",
|
|
141
|
+
"archived": "Archived"
|
|
142
|
+
},
|
|
143
|
+
"search": {
|
|
144
|
+
"placeholder": "Search a ticket...",
|
|
145
|
+
"searchInMessages": "Search in messages"
|
|
146
|
+
},
|
|
147
|
+
"filters": {
|
|
148
|
+
"status": "Status",
|
|
149
|
+
"category": "Category",
|
|
150
|
+
"project": "Project",
|
|
151
|
+
"sort": "Sort by",
|
|
152
|
+
"allStatuses": "All statuses",
|
|
153
|
+
"allCategories": "All categories",
|
|
154
|
+
"allProjects": "All projects"
|
|
155
|
+
},
|
|
156
|
+
"sort": {
|
|
157
|
+
"updatedAt": "Last updated",
|
|
158
|
+
"createdAt": "Creation date",
|
|
159
|
+
"priority": "Priority"
|
|
160
|
+
},
|
|
161
|
+
"empty": {
|
|
162
|
+
"noTickets": "No tickets",
|
|
163
|
+
"noTicketsDescription": "You don't have any tickets yet.",
|
|
164
|
+
"createFirst": "Create my first ticket"
|
|
165
|
+
},
|
|
166
|
+
"newMessage": "New message",
|
|
167
|
+
"status": {
|
|
168
|
+
"open": "Open",
|
|
169
|
+
"waiting_client": "Waiting",
|
|
170
|
+
"resolved": "Resolved"
|
|
171
|
+
},
|
|
172
|
+
"priority": {
|
|
173
|
+
"low": "Low",
|
|
174
|
+
"normal": "Normal",
|
|
175
|
+
"high": "High",
|
|
176
|
+
"urgent": "Urgent"
|
|
177
|
+
},
|
|
178
|
+
"category": {
|
|
179
|
+
"bug": "Bug",
|
|
180
|
+
"content": "Content",
|
|
181
|
+
"feature": "Feature",
|
|
182
|
+
"question": "Question",
|
|
183
|
+
"hosting": "Hosting"
|
|
184
|
+
}
|
|
185
|
+
},
|
|
186
|
+
"ticketDetail": {
|
|
187
|
+
"backToTickets": "Back to tickets",
|
|
188
|
+
"status": {
|
|
189
|
+
"open": "Open",
|
|
190
|
+
"waiting_client": "Waiting",
|
|
191
|
+
"resolved": "Resolved"
|
|
192
|
+
},
|
|
193
|
+
"priority": {
|
|
194
|
+
"low": "Low",
|
|
195
|
+
"normal": "Normal",
|
|
196
|
+
"high": "High",
|
|
197
|
+
"urgent": "Urgent"
|
|
198
|
+
},
|
|
199
|
+
"category": {
|
|
200
|
+
"bug": "Bug / Issue",
|
|
201
|
+
"content": "Content modification",
|
|
202
|
+
"feature": "New feature",
|
|
203
|
+
"question": "Question / Help",
|
|
204
|
+
"hosting": "Hosting / Domain"
|
|
205
|
+
},
|
|
206
|
+
"timeline": {
|
|
207
|
+
"open": "Open",
|
|
208
|
+
"waiting_client": "Waiting",
|
|
209
|
+
"resolved": "Resolved"
|
|
210
|
+
},
|
|
211
|
+
"details": {
|
|
212
|
+
"category": "Category",
|
|
213
|
+
"priority": "Priority",
|
|
214
|
+
"created": "Created on",
|
|
215
|
+
"updated": "Updated on"
|
|
216
|
+
},
|
|
217
|
+
"messages": {
|
|
218
|
+
"support": "Support",
|
|
219
|
+
"internal": "Internal note",
|
|
220
|
+
"solution": "Solution",
|
|
221
|
+
"edited": "Edited",
|
|
222
|
+
"deleted": "This message has been deleted."
|
|
223
|
+
},
|
|
224
|
+
"reply": {
|
|
225
|
+
"placeholder": "Write your reply...",
|
|
226
|
+
"sendButton": "Send",
|
|
227
|
+
"sending": "Sending...",
|
|
228
|
+
"attachments": "Attachments",
|
|
229
|
+
"attachmentsTooLarge": "File(s) too large",
|
|
230
|
+
"dropFiles": "Drop your files here"
|
|
231
|
+
},
|
|
232
|
+
"actions": {
|
|
233
|
+
"closeTicket": "Close ticket",
|
|
234
|
+
"reopenTicket": "Reopen ticket",
|
|
235
|
+
"markSolution": "Mark as solution",
|
|
236
|
+
"unmarkSolution": "Unmark solution",
|
|
237
|
+
"print": "Print"
|
|
238
|
+
},
|
|
239
|
+
"satisfaction": {
|
|
240
|
+
"title": "Your feedback matters",
|
|
241
|
+
"subtitle": "How would you rate the resolution of this ticket?",
|
|
242
|
+
"ratingLabel": "Rating",
|
|
243
|
+
"commentLabel": "Comment",
|
|
244
|
+
"commentPlaceholder": "Your feedback helps us improve...",
|
|
245
|
+
"submitButton": "Submit feedback",
|
|
246
|
+
"thanks": "Thank you for your feedback!"
|
|
247
|
+
},
|
|
248
|
+
"typing": {
|
|
249
|
+
"isTyping": "is typing..."
|
|
250
|
+
},
|
|
251
|
+
"readReceipt": {
|
|
252
|
+
"read": "Read",
|
|
253
|
+
"sent": "Sent"
|
|
254
|
+
}
|
|
255
|
+
},
|
|
256
|
+
"newTicket": {
|
|
257
|
+
"title": "New ticket",
|
|
258
|
+
"badge": "New ticket",
|
|
259
|
+
"heading": "How can we help you?",
|
|
260
|
+
"subtitle": "Describe your need in detail and we'll get back to you as soon as possible.",
|
|
261
|
+
"backToTickets": "Back to tickets",
|
|
262
|
+
"subjectLabel": "Subject",
|
|
263
|
+
"subjectPlaceholder": "E.g.: 404 error on contact page",
|
|
264
|
+
"descriptionLabel": "Description",
|
|
265
|
+
"descriptionPlaceholder": "Describe your problem in detail. The more information you provide, the faster we can help.",
|
|
266
|
+
"attachmentsLabel": "Attachments",
|
|
267
|
+
"uploadButton": "Click or drag and drop your files",
|
|
268
|
+
"uploadHint": "Images, PDF, documents -- max {{maxSize}} per file",
|
|
269
|
+
"dropHere": "Drop your files here",
|
|
270
|
+
"fileTooLarge": "File(s) too large (max {{maxSize}})",
|
|
271
|
+
"advancedOptions": "Advanced options",
|
|
272
|
+
"categoryLabel": "Category",
|
|
273
|
+
"categorySelect": "Select",
|
|
274
|
+
"priorityLabel": "Priority",
|
|
275
|
+
"projectLabel": "Project",
|
|
276
|
+
"projectSelect": "Select",
|
|
277
|
+
"requiredFields": "Fields marked with * are required",
|
|
278
|
+
"submitButton": "Create ticket",
|
|
279
|
+
"submitting": "Submitting...",
|
|
280
|
+
"errors": {
|
|
281
|
+
"subjectAndMessageRequired": "Subject and message are required.",
|
|
282
|
+
"creationError": "Error creating ticket.",
|
|
283
|
+
"messageError": "Ticket was created but the message could not be sent.",
|
|
284
|
+
"networkError": "Connection error. Please try again."
|
|
285
|
+
},
|
|
286
|
+
"templates": {
|
|
287
|
+
"bug": {
|
|
288
|
+
"message": "**Bug description:**\n\n**Steps to reproduce:**\n1. \n2. \n3. \n\n**Expected result:**\n\n**Actual result:**\n\n**Browser / Device:**\n"
|
|
289
|
+
},
|
|
290
|
+
"feature": {
|
|
291
|
+
"message": "**Desired feature:**\n\n**Context / need:**\n\n**Expected behavior:**\n\n**Desired priority:**\n"
|
|
292
|
+
},
|
|
293
|
+
"content": {
|
|
294
|
+
"message": "**Page concerned:**\n\n**Requested modification:**\n\n**New content:**\n"
|
|
295
|
+
},
|
|
296
|
+
"hosting": {
|
|
297
|
+
"message": "**Domain name:**\n\n**Problem description:**\n\n**Error message (if applicable):**\n"
|
|
298
|
+
}
|
|
299
|
+
},
|
|
300
|
+
"categories": {
|
|
301
|
+
"bug": "Bug / Issue",
|
|
302
|
+
"content": "Content modification",
|
|
303
|
+
"feature": "New feature",
|
|
304
|
+
"question": "Question / Help",
|
|
305
|
+
"hosting": "Hosting / Domain"
|
|
306
|
+
},
|
|
307
|
+
"priorities": {
|
|
308
|
+
"low": "Low",
|
|
309
|
+
"normal": "Normal",
|
|
310
|
+
"high": "High",
|
|
311
|
+
"urgent": "Urgent"
|
|
312
|
+
}
|
|
313
|
+
},
|
|
314
|
+
"profile": {
|
|
315
|
+
"title": "My profile",
|
|
316
|
+
"personalInfo": "Personal information",
|
|
317
|
+
"firstNameLabel": "First name",
|
|
318
|
+
"lastNameLabel": "Last name",
|
|
319
|
+
"companyLabel": "Company",
|
|
320
|
+
"phoneLabel": "Phone",
|
|
321
|
+
"emailLabel": "Email",
|
|
322
|
+
"emailReadonly": "Email cannot be modified",
|
|
323
|
+
"saveProfile": "Save",
|
|
324
|
+
"saving": "Saving...",
|
|
325
|
+
"profileUpdated": "Profile updated successfully.",
|
|
326
|
+
"loadError": "Unable to load profile.",
|
|
327
|
+
"sessionExpired": "Session expired. Please log in again.",
|
|
328
|
+
"notifications": {
|
|
329
|
+
"title": "Notifications",
|
|
330
|
+
"onReply": "Receive an email when support replies",
|
|
331
|
+
"onStatusChange": "Receive an email on status change"
|
|
332
|
+
},
|
|
333
|
+
"security": {
|
|
334
|
+
"title": "Security",
|
|
335
|
+
"twoFactor": "Two-step verification (2FA)",
|
|
336
|
+
"twoFactorDescription": "A code will be sent by email at each login",
|
|
337
|
+
"changePassword": "Change password",
|
|
338
|
+
"currentPassword": "Current password",
|
|
339
|
+
"newPassword": "New password",
|
|
340
|
+
"confirmPassword": "Confirm new password",
|
|
341
|
+
"changeButton": "Change password",
|
|
342
|
+
"changing": "Changing...",
|
|
343
|
+
"passwordChanged": "Password changed successfully.",
|
|
344
|
+
"errorPasswordLength": "New password must be at least 8 characters.",
|
|
345
|
+
"errorPasswordMismatch": "Passwords do not match.",
|
|
346
|
+
"errorCurrentPassword": "Current password is incorrect."
|
|
347
|
+
},
|
|
348
|
+
"deleteAccount": {
|
|
349
|
+
"title": "Delete my account",
|
|
350
|
+
"warning": "This action is irreversible. All your data will be deleted.",
|
|
351
|
+
"button": "Delete my account",
|
|
352
|
+
"confirmTitle": "Confirm deletion",
|
|
353
|
+
"confirmMessage": "Enter your password to confirm account deletion.",
|
|
354
|
+
"passwordLabel": "Password",
|
|
355
|
+
"confirmButton": "Delete permanently",
|
|
356
|
+
"deleting": "Deleting...",
|
|
357
|
+
"cancelButton": "Cancel"
|
|
358
|
+
}
|
|
359
|
+
},
|
|
360
|
+
"faq": {
|
|
361
|
+
"title": "Knowledge Base",
|
|
362
|
+
"subtitle": "Find answers to your questions",
|
|
363
|
+
"searchPlaceholder": "Search an article...",
|
|
364
|
+
"noResults": "No results for your search.",
|
|
365
|
+
"categories": {
|
|
366
|
+
"getting-started": "Getting Started",
|
|
367
|
+
"tickets": "Tickets & Support",
|
|
368
|
+
"account": "Account & Profile",
|
|
369
|
+
"billing": "Billing",
|
|
370
|
+
"technical": "Technical",
|
|
371
|
+
"general": "General"
|
|
372
|
+
}
|
|
373
|
+
}
|
|
374
|
+
}
|