@djangocfg/ext-support 1.0.26 → 1.0.27
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/config.cjs +1 -1
- package/dist/config.js +1 -1
- package/dist/hooks.cjs +1010 -2
- package/dist/hooks.js +1010 -2
- package/dist/i18n.cjs +1039 -3
- package/dist/i18n.d.cts +29 -1
- package/dist/i18n.d.ts +29 -1
- package/dist/i18n.js +1024 -2
- package/dist/index.cjs +1010 -2
- package/dist/index.js +1010 -2
- package/package.json +8 -8
- package/src/i18n/index.ts +14 -0
- package/src/i18n/locales/ar.ts +81 -0
- package/src/i18n/locales/da.ts +81 -0
- package/src/i18n/locales/de.ts +81 -0
- package/src/i18n/locales/es.ts +81 -0
- package/src/i18n/locales/fr.ts +81 -0
- package/src/i18n/locales/it.ts +81 -0
- package/src/i18n/locales/ja.ts +81 -0
- package/src/i18n/locales/nl.ts +81 -0
- package/src/i18n/locales/no.ts +81 -0
- package/src/i18n/locales/pl.ts +81 -0
- package/src/i18n/locales/pt-BR.ts +81 -0
- package/src/i18n/locales/sv.ts +81 -0
- package/src/i18n/locales/tr.ts +81 -0
- package/src/i18n/locales/zh.ts +81 -0
- package/src/i18n/useSupportT.ts +15 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@djangocfg/ext-support",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.27",
|
|
4
4
|
"description": "Support ticket system extension for DjangoCFG",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"django",
|
|
@@ -65,10 +65,10 @@
|
|
|
65
65
|
"check": "tsc --noEmit"
|
|
66
66
|
},
|
|
67
67
|
"peerDependencies": {
|
|
68
|
-
"@djangocfg/api": "^2.1.
|
|
68
|
+
"@djangocfg/api": "^2.1.146",
|
|
69
69
|
"@djangocfg/ext-base": "^1.0.19",
|
|
70
|
-
"@djangocfg/i18n": "^2.1.
|
|
71
|
-
"@djangocfg/ui-core": "^2.1.
|
|
70
|
+
"@djangocfg/i18n": "^2.1.146",
|
|
71
|
+
"@djangocfg/ui-core": "^2.1.146",
|
|
72
72
|
"@hookform/resolvers": "^5.2.2",
|
|
73
73
|
"consola": "^3.4.2",
|
|
74
74
|
"lucide-react": "^0.545.0",
|
|
@@ -82,11 +82,11 @@
|
|
|
82
82
|
"zod": "^4.3.4"
|
|
83
83
|
},
|
|
84
84
|
"devDependencies": {
|
|
85
|
-
"@djangocfg/api": "^2.1.
|
|
85
|
+
"@djangocfg/api": "^2.1.146",
|
|
86
86
|
"@djangocfg/ext-base": "^1.0.19",
|
|
87
|
-
"@djangocfg/i18n": "^2.1.
|
|
88
|
-
"@djangocfg/ui-core": "^2.1.
|
|
89
|
-
"@djangocfg/typescript-config": "^2.1.
|
|
87
|
+
"@djangocfg/i18n": "^2.1.146",
|
|
88
|
+
"@djangocfg/ui-core": "^2.1.146",
|
|
89
|
+
"@djangocfg/typescript-config": "^2.1.146",
|
|
90
90
|
"@types/node": "^24.7.2",
|
|
91
91
|
"@types/react": "^19.0.0",
|
|
92
92
|
"consola": "^3.4.2",
|
package/src/i18n/index.ts
CHANGED
|
@@ -24,3 +24,17 @@ export type { SupportTranslations, SupportLocalKeys } from './types';
|
|
|
24
24
|
export { en } from './locales/en';
|
|
25
25
|
export { ru } from './locales/ru';
|
|
26
26
|
export { ko } from './locales/ko';
|
|
27
|
+
export { ja } from './locales/ja';
|
|
28
|
+
export { de } from './locales/de';
|
|
29
|
+
export { fr } from './locales/fr';
|
|
30
|
+
export { zh } from './locales/zh';
|
|
31
|
+
export { it } from './locales/it';
|
|
32
|
+
export { es } from './locales/es';
|
|
33
|
+
export { nl } from './locales/nl';
|
|
34
|
+
export { ar } from './locales/ar';
|
|
35
|
+
export { tr } from './locales/tr';
|
|
36
|
+
export { ptBR } from './locales/pt-BR';
|
|
37
|
+
export { pl } from './locales/pl';
|
|
38
|
+
export { sv } from './locales/sv';
|
|
39
|
+
export { no } from './locales/no';
|
|
40
|
+
export { da } from './locales/da';
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import type { SupportTranslations } from '../types';
|
|
2
|
+
|
|
3
|
+
export const ar: SupportTranslations = {
|
|
4
|
+
layout: {
|
|
5
|
+
title: 'مركز الدعم',
|
|
6
|
+
titleShort: 'الدعم',
|
|
7
|
+
subtitle: 'احصل على المساعدة من فريق الدعم لدينا',
|
|
8
|
+
newTicket: 'تذكرة جديدة',
|
|
9
|
+
},
|
|
10
|
+
|
|
11
|
+
hero: {
|
|
12
|
+
openTickets: 'التذاكر المفتوحة',
|
|
13
|
+
unreadMessages: 'الرسائل غير المقروءة',
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
status: {
|
|
17
|
+
open: 'مفتوحة',
|
|
18
|
+
waitingForUser: 'في انتظار ردك',
|
|
19
|
+
waitingForAdmin: 'في انتظار الدعم',
|
|
20
|
+
resolved: 'تم الحل',
|
|
21
|
+
closed: 'مغلقة',
|
|
22
|
+
},
|
|
23
|
+
|
|
24
|
+
ticketList: {
|
|
25
|
+
noTickets: 'لا توجد تذاكر',
|
|
26
|
+
noTicketsDescription: 'أنشئ أول تذكرة دعم للحصول على المساعدة',
|
|
27
|
+
loadingMore: 'جاري التحميل...',
|
|
28
|
+
loadMore: 'تحميل المزيد',
|
|
29
|
+
allLoaded: 'تم تحميل جميع التذاكر ({count})',
|
|
30
|
+
},
|
|
31
|
+
|
|
32
|
+
createTicket: {
|
|
33
|
+
title: 'تذكرة دعم جديدة',
|
|
34
|
+
description: 'صف مشكلتك وسنساعدك',
|
|
35
|
+
subjectLabel: 'الموضوع',
|
|
36
|
+
subjectPlaceholder: 'وصف موجز لمشكلتك',
|
|
37
|
+
messageLabel: 'الرسالة',
|
|
38
|
+
messagePlaceholder: 'صف مشكلتك بالتفصيل...',
|
|
39
|
+
cancel: 'إلغاء',
|
|
40
|
+
creating: 'جاري الإنشاء...',
|
|
41
|
+
create: 'إنشاء التذكرة',
|
|
42
|
+
},
|
|
43
|
+
|
|
44
|
+
validation: {
|
|
45
|
+
subjectRequired: 'الموضوع مطلوب',
|
|
46
|
+
subjectTooLong: 'الموضوع طويل جداً (الحد الأقصى 200 حرف)',
|
|
47
|
+
messageRequired: 'الرسالة مطلوبة',
|
|
48
|
+
messageTooLong: 'الرسالة طويلة جداً (الحد الأقصى 5000 حرف)',
|
|
49
|
+
},
|
|
50
|
+
|
|
51
|
+
messages: {
|
|
52
|
+
ticketCreated: 'تم إنشاء التذكرة بنجاح',
|
|
53
|
+
ticketCreateFailed: 'فشل في إنشاء التذكرة',
|
|
54
|
+
messageSent: 'تم إرسال الرسالة',
|
|
55
|
+
messageSendFailed: 'فشل في إرسال الرسالة',
|
|
56
|
+
},
|
|
57
|
+
|
|
58
|
+
messageInput: {
|
|
59
|
+
placeholder: 'اكتب رسالتك...',
|
|
60
|
+
ticketClosed: 'التذكرة مغلقة',
|
|
61
|
+
ticketClosedDescription: 'تم إغلاق هذه التذكرة. أنشئ تذكرة جديدة إذا كنت بحاجة إلى مزيد من المساعدة.',
|
|
62
|
+
},
|
|
63
|
+
|
|
64
|
+
messageList: {
|
|
65
|
+
noTicketSelected: 'لم يتم اختيار تذكرة',
|
|
66
|
+
noTicketSelectedDescription: 'اختر تذكرة من القائمة لعرض الرسائل',
|
|
67
|
+
noMessages: 'لا توجد رسائل',
|
|
68
|
+
noMessagesDescription: 'ابدأ المحادثة بإرسال رسالة',
|
|
69
|
+
loadingOlder: 'جاري تحميل الرسائل السابقة...',
|
|
70
|
+
loadOlder: 'تحميل الرسائل السابقة',
|
|
71
|
+
supportTeam: 'فريق الدعم',
|
|
72
|
+
staff: 'الموظف',
|
|
73
|
+
},
|
|
74
|
+
|
|
75
|
+
time: {
|
|
76
|
+
justNow: 'الآن',
|
|
77
|
+
minutesAgo: 'منذ {count} دقيقة',
|
|
78
|
+
hoursAgo: 'منذ {count} ساعة',
|
|
79
|
+
daysAgo: 'منذ {count} يوم',
|
|
80
|
+
},
|
|
81
|
+
};
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import type { SupportTranslations } from '../types';
|
|
2
|
+
|
|
3
|
+
export const da: SupportTranslations = {
|
|
4
|
+
layout: {
|
|
5
|
+
title: 'Supportcenter',
|
|
6
|
+
titleShort: 'Support',
|
|
7
|
+
subtitle: 'Få hjælp fra vores supportteam',
|
|
8
|
+
newTicket: 'Ny sag',
|
|
9
|
+
},
|
|
10
|
+
|
|
11
|
+
hero: {
|
|
12
|
+
openTickets: 'Åbne sager',
|
|
13
|
+
unreadMessages: 'Ulæste beskeder',
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
status: {
|
|
17
|
+
open: 'Åben',
|
|
18
|
+
waitingForUser: 'Afventer dit svar',
|
|
19
|
+
waitingForAdmin: 'Afventer support',
|
|
20
|
+
resolved: 'Løst',
|
|
21
|
+
closed: 'Lukket',
|
|
22
|
+
},
|
|
23
|
+
|
|
24
|
+
ticketList: {
|
|
25
|
+
noTickets: 'Ingen sager',
|
|
26
|
+
noTicketsDescription: 'Opret din første supportsag for at få hjælp',
|
|
27
|
+
loadingMore: 'Indlæser...',
|
|
28
|
+
loadMore: 'Indlæs flere',
|
|
29
|
+
allLoaded: 'Alle {count} sager indlæst',
|
|
30
|
+
},
|
|
31
|
+
|
|
32
|
+
createTicket: {
|
|
33
|
+
title: 'Ny supportsag',
|
|
34
|
+
description: 'Beskriv dit problem, så hjælper vi dig',
|
|
35
|
+
subjectLabel: 'Emne',
|
|
36
|
+
subjectPlaceholder: 'Kort beskrivelse af problemet',
|
|
37
|
+
messageLabel: 'Besked',
|
|
38
|
+
messagePlaceholder: 'Beskriv dit problem i detaljer...',
|
|
39
|
+
cancel: 'Annuller',
|
|
40
|
+
creating: 'Opretter...',
|
|
41
|
+
create: 'Opret sag',
|
|
42
|
+
},
|
|
43
|
+
|
|
44
|
+
validation: {
|
|
45
|
+
subjectRequired: 'Emne er påkrævet',
|
|
46
|
+
subjectTooLong: 'Emnet er for langt (maks 200 tegn)',
|
|
47
|
+
messageRequired: 'Besked er påkrævet',
|
|
48
|
+
messageTooLong: 'Beskeden er for lang (maks 5000 tegn)',
|
|
49
|
+
},
|
|
50
|
+
|
|
51
|
+
messages: {
|
|
52
|
+
ticketCreated: 'Sag oprettet',
|
|
53
|
+
ticketCreateFailed: 'Kunne ikke oprette sag',
|
|
54
|
+
messageSent: 'Besked sendt',
|
|
55
|
+
messageSendFailed: 'Kunne ikke sende besked',
|
|
56
|
+
},
|
|
57
|
+
|
|
58
|
+
messageInput: {
|
|
59
|
+
placeholder: 'Skriv din besked...',
|
|
60
|
+
ticketClosed: 'Sag lukket',
|
|
61
|
+
ticketClosedDescription: 'Denne sag er lukket. Opret en ny sag, hvis du har brug for yderligere hjælp.',
|
|
62
|
+
},
|
|
63
|
+
|
|
64
|
+
messageList: {
|
|
65
|
+
noTicketSelected: 'Ingen sag valgt',
|
|
66
|
+
noTicketSelectedDescription: 'Vælg en sag fra listen for at se beskeder',
|
|
67
|
+
noMessages: 'Ingen beskeder',
|
|
68
|
+
noMessagesDescription: 'Start samtalen ved at sende en besked',
|
|
69
|
+
loadingOlder: 'Indlæser ældre beskeder...',
|
|
70
|
+
loadOlder: 'Indlæs ældre beskeder',
|
|
71
|
+
supportTeam: 'Supportteam',
|
|
72
|
+
staff: 'Medarbejder',
|
|
73
|
+
},
|
|
74
|
+
|
|
75
|
+
time: {
|
|
76
|
+
justNow: 'Lige nu',
|
|
77
|
+
minutesAgo: '{count} min siden',
|
|
78
|
+
hoursAgo: '{count}t siden',
|
|
79
|
+
daysAgo: '{count}d siden',
|
|
80
|
+
},
|
|
81
|
+
};
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import type { SupportTranslations } from '../types';
|
|
2
|
+
|
|
3
|
+
export const de: SupportTranslations = {
|
|
4
|
+
layout: {
|
|
5
|
+
title: 'Support-Center',
|
|
6
|
+
titleShort: 'Support',
|
|
7
|
+
subtitle: 'Hilfe von unserem Support-Team erhalten',
|
|
8
|
+
newTicket: 'Neues Ticket',
|
|
9
|
+
},
|
|
10
|
+
|
|
11
|
+
hero: {
|
|
12
|
+
openTickets: 'Offene Tickets',
|
|
13
|
+
unreadMessages: 'Ungelesene Nachrichten',
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
status: {
|
|
17
|
+
open: 'Offen',
|
|
18
|
+
waitingForUser: 'Wartet auf Sie',
|
|
19
|
+
waitingForAdmin: 'Wartet auf Support',
|
|
20
|
+
resolved: 'Gelöst',
|
|
21
|
+
closed: 'Geschlossen',
|
|
22
|
+
},
|
|
23
|
+
|
|
24
|
+
ticketList: {
|
|
25
|
+
noTickets: 'Noch keine Tickets',
|
|
26
|
+
noTicketsDescription: 'Erstellen Sie Ihr erstes Support-Ticket, um Hilfe zu erhalten',
|
|
27
|
+
loadingMore: 'Lade mehr...',
|
|
28
|
+
loadMore: 'Mehr laden',
|
|
29
|
+
allLoaded: 'Alle {count} Tickets geladen',
|
|
30
|
+
},
|
|
31
|
+
|
|
32
|
+
createTicket: {
|
|
33
|
+
title: 'Neues Support-Ticket',
|
|
34
|
+
description: 'Beschreiben Sie Ihr Problem und wir helfen Ihnen',
|
|
35
|
+
subjectLabel: 'Betreff',
|
|
36
|
+
subjectPlaceholder: 'Kurze Beschreibung Ihres Problems',
|
|
37
|
+
messageLabel: 'Nachricht',
|
|
38
|
+
messagePlaceholder: 'Beschreiben Sie Ihr Problem im Detail...',
|
|
39
|
+
cancel: 'Abbrechen',
|
|
40
|
+
creating: 'Wird erstellt...',
|
|
41
|
+
create: 'Ticket erstellen',
|
|
42
|
+
},
|
|
43
|
+
|
|
44
|
+
validation: {
|
|
45
|
+
subjectRequired: 'Betreff ist erforderlich',
|
|
46
|
+
subjectTooLong: 'Betreff ist zu lang (max. 200 Zeichen)',
|
|
47
|
+
messageRequired: 'Nachricht ist erforderlich',
|
|
48
|
+
messageTooLong: 'Nachricht ist zu lang (max. 5000 Zeichen)',
|
|
49
|
+
},
|
|
50
|
+
|
|
51
|
+
messages: {
|
|
52
|
+
ticketCreated: 'Ticket erfolgreich erstellt',
|
|
53
|
+
ticketCreateFailed: 'Ticket konnte nicht erstellt werden',
|
|
54
|
+
messageSent: 'Nachricht gesendet',
|
|
55
|
+
messageSendFailed: 'Nachricht konnte nicht gesendet werden',
|
|
56
|
+
},
|
|
57
|
+
|
|
58
|
+
messageInput: {
|
|
59
|
+
placeholder: 'Nachricht eingeben...',
|
|
60
|
+
ticketClosed: 'Ticket geschlossen',
|
|
61
|
+
ticketClosedDescription: 'Dieses Ticket wurde geschlossen. Erstellen Sie ein neues Ticket, wenn Sie weitere Hilfe benötigen.',
|
|
62
|
+
},
|
|
63
|
+
|
|
64
|
+
messageList: {
|
|
65
|
+
noTicketSelected: 'Kein Ticket ausgewählt',
|
|
66
|
+
noTicketSelectedDescription: 'Wählen Sie ein Ticket aus der Liste, um Nachrichten anzuzeigen',
|
|
67
|
+
noMessages: 'Noch keine Nachrichten',
|
|
68
|
+
noMessagesDescription: 'Beginnen Sie das Gespräch, indem Sie eine Nachricht senden',
|
|
69
|
+
loadingOlder: 'Lade ältere Nachrichten...',
|
|
70
|
+
loadOlder: 'Ältere Nachrichten laden',
|
|
71
|
+
supportTeam: 'Support-Team',
|
|
72
|
+
staff: 'Mitarbeiter',
|
|
73
|
+
},
|
|
74
|
+
|
|
75
|
+
time: {
|
|
76
|
+
justNow: 'Gerade eben',
|
|
77
|
+
minutesAgo: 'vor {count} Min.',
|
|
78
|
+
hoursAgo: 'vor {count} Std.',
|
|
79
|
+
daysAgo: 'vor {count} T.',
|
|
80
|
+
},
|
|
81
|
+
};
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import type { SupportTranslations } from '../types';
|
|
2
|
+
|
|
3
|
+
export const es: SupportTranslations = {
|
|
4
|
+
layout: {
|
|
5
|
+
title: 'Centro de soporte',
|
|
6
|
+
titleShort: 'Soporte',
|
|
7
|
+
subtitle: 'Obtén ayuda de nuestro equipo de soporte',
|
|
8
|
+
newTicket: 'Nuevo ticket',
|
|
9
|
+
},
|
|
10
|
+
|
|
11
|
+
hero: {
|
|
12
|
+
openTickets: 'Tickets abiertos',
|
|
13
|
+
unreadMessages: 'Mensajes sin leer',
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
status: {
|
|
17
|
+
open: 'Abierto',
|
|
18
|
+
waitingForUser: 'Esperando tu respuesta',
|
|
19
|
+
waitingForAdmin: 'Esperando soporte',
|
|
20
|
+
resolved: 'Resuelto',
|
|
21
|
+
closed: 'Cerrado',
|
|
22
|
+
},
|
|
23
|
+
|
|
24
|
+
ticketList: {
|
|
25
|
+
noTickets: 'Sin tickets',
|
|
26
|
+
noTicketsDescription: 'Crea tu primer ticket de soporte para obtener ayuda',
|
|
27
|
+
loadingMore: 'Cargando más...',
|
|
28
|
+
loadMore: 'Cargar más',
|
|
29
|
+
allLoaded: 'Todos los {count} tickets cargados',
|
|
30
|
+
},
|
|
31
|
+
|
|
32
|
+
createTicket: {
|
|
33
|
+
title: 'Nuevo ticket de soporte',
|
|
34
|
+
description: 'Describe tu problema y te ayudaremos',
|
|
35
|
+
subjectLabel: 'Asunto',
|
|
36
|
+
subjectPlaceholder: 'Breve descripción de tu problema',
|
|
37
|
+
messageLabel: 'Mensaje',
|
|
38
|
+
messagePlaceholder: 'Describe tu problema en detalle...',
|
|
39
|
+
cancel: 'Cancelar',
|
|
40
|
+
creating: 'Creando...',
|
|
41
|
+
create: 'Crear ticket',
|
|
42
|
+
},
|
|
43
|
+
|
|
44
|
+
validation: {
|
|
45
|
+
subjectRequired: 'El asunto es obligatorio',
|
|
46
|
+
subjectTooLong: 'El asunto es demasiado largo (máx. 200 caracteres)',
|
|
47
|
+
messageRequired: 'El mensaje es obligatorio',
|
|
48
|
+
messageTooLong: 'El mensaje es demasiado largo (máx. 5000 caracteres)',
|
|
49
|
+
},
|
|
50
|
+
|
|
51
|
+
messages: {
|
|
52
|
+
ticketCreated: 'Ticket creado exitosamente',
|
|
53
|
+
ticketCreateFailed: 'No se pudo crear el ticket',
|
|
54
|
+
messageSent: 'Mensaje enviado',
|
|
55
|
+
messageSendFailed: 'No se pudo enviar el mensaje',
|
|
56
|
+
},
|
|
57
|
+
|
|
58
|
+
messageInput: {
|
|
59
|
+
placeholder: 'Escribe tu mensaje...',
|
|
60
|
+
ticketClosed: 'Ticket cerrado',
|
|
61
|
+
ticketClosedDescription: 'Este ticket ha sido cerrado. Crea un nuevo ticket si necesitas más ayuda.',
|
|
62
|
+
},
|
|
63
|
+
|
|
64
|
+
messageList: {
|
|
65
|
+
noTicketSelected: 'Ningún ticket seleccionado',
|
|
66
|
+
noTicketSelectedDescription: 'Selecciona un ticket de la lista para ver los mensajes',
|
|
67
|
+
noMessages: 'Sin mensajes',
|
|
68
|
+
noMessagesDescription: 'Inicia la conversación enviando un mensaje',
|
|
69
|
+
loadingOlder: 'Cargando mensajes anteriores...',
|
|
70
|
+
loadOlder: 'Cargar mensajes anteriores',
|
|
71
|
+
supportTeam: 'Equipo de soporte',
|
|
72
|
+
staff: 'Personal',
|
|
73
|
+
},
|
|
74
|
+
|
|
75
|
+
time: {
|
|
76
|
+
justNow: 'Ahora mismo',
|
|
77
|
+
minutesAgo: 'hace {count} min',
|
|
78
|
+
hoursAgo: 'hace {count}h',
|
|
79
|
+
daysAgo: 'hace {count}d',
|
|
80
|
+
},
|
|
81
|
+
};
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import type { SupportTranslations } from '../types';
|
|
2
|
+
|
|
3
|
+
export const fr: SupportTranslations = {
|
|
4
|
+
layout: {
|
|
5
|
+
title: 'Centre d\'assistance',
|
|
6
|
+
titleShort: 'Assistance',
|
|
7
|
+
subtitle: 'Obtenez de l\'aide de notre équipe support',
|
|
8
|
+
newTicket: 'Nouveau ticket',
|
|
9
|
+
},
|
|
10
|
+
|
|
11
|
+
hero: {
|
|
12
|
+
openTickets: 'Tickets ouverts',
|
|
13
|
+
unreadMessages: 'Messages non lus',
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
status: {
|
|
17
|
+
open: 'Ouvert',
|
|
18
|
+
waitingForUser: 'En attente de votre réponse',
|
|
19
|
+
waitingForAdmin: 'En attente du support',
|
|
20
|
+
resolved: 'Résolu',
|
|
21
|
+
closed: 'Fermé',
|
|
22
|
+
},
|
|
23
|
+
|
|
24
|
+
ticketList: {
|
|
25
|
+
noTickets: 'Aucun ticket',
|
|
26
|
+
noTicketsDescription: 'Créez votre premier ticket de support pour obtenir de l\'aide',
|
|
27
|
+
loadingMore: 'Chargement...',
|
|
28
|
+
loadMore: 'Charger plus',
|
|
29
|
+
allLoaded: 'Tous les {count} tickets chargés',
|
|
30
|
+
},
|
|
31
|
+
|
|
32
|
+
createTicket: {
|
|
33
|
+
title: 'Nouveau ticket de support',
|
|
34
|
+
description: 'Décrivez votre problème et nous vous aiderons',
|
|
35
|
+
subjectLabel: 'Sujet',
|
|
36
|
+
subjectPlaceholder: 'Brève description de votre problème',
|
|
37
|
+
messageLabel: 'Message',
|
|
38
|
+
messagePlaceholder: 'Décrivez votre problème en détail...',
|
|
39
|
+
cancel: 'Annuler',
|
|
40
|
+
creating: 'Création...',
|
|
41
|
+
create: 'Créer le ticket',
|
|
42
|
+
},
|
|
43
|
+
|
|
44
|
+
validation: {
|
|
45
|
+
subjectRequired: 'Le sujet est requis',
|
|
46
|
+
subjectTooLong: 'Le sujet est trop long (max 200 caractères)',
|
|
47
|
+
messageRequired: 'Le message est requis',
|
|
48
|
+
messageTooLong: 'Le message est trop long (max 5000 caractères)',
|
|
49
|
+
},
|
|
50
|
+
|
|
51
|
+
messages: {
|
|
52
|
+
ticketCreated: 'Ticket créé avec succès',
|
|
53
|
+
ticketCreateFailed: 'Échec de la création du ticket',
|
|
54
|
+
messageSent: 'Message envoyé',
|
|
55
|
+
messageSendFailed: 'Échec de l\'envoi du message',
|
|
56
|
+
},
|
|
57
|
+
|
|
58
|
+
messageInput: {
|
|
59
|
+
placeholder: 'Tapez votre message...',
|
|
60
|
+
ticketClosed: 'Ticket fermé',
|
|
61
|
+
ticketClosedDescription: 'Ce ticket a été fermé. Créez un nouveau ticket si vous avez besoin d\'aide supplémentaire.',
|
|
62
|
+
},
|
|
63
|
+
|
|
64
|
+
messageList: {
|
|
65
|
+
noTicketSelected: 'Aucun ticket sélectionné',
|
|
66
|
+
noTicketSelectedDescription: 'Sélectionnez un ticket dans la liste pour voir les messages',
|
|
67
|
+
noMessages: 'Aucun message',
|
|
68
|
+
noMessagesDescription: 'Commencez la conversation en envoyant un message',
|
|
69
|
+
loadingOlder: 'Chargement des anciens messages...',
|
|
70
|
+
loadOlder: 'Charger les anciens messages',
|
|
71
|
+
supportTeam: 'Équipe support',
|
|
72
|
+
staff: 'Personnel',
|
|
73
|
+
},
|
|
74
|
+
|
|
75
|
+
time: {
|
|
76
|
+
justNow: 'À l\'instant',
|
|
77
|
+
minutesAgo: 'il y a {count} min',
|
|
78
|
+
hoursAgo: 'il y a {count}h',
|
|
79
|
+
daysAgo: 'il y a {count}j',
|
|
80
|
+
},
|
|
81
|
+
};
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import type { SupportTranslations } from '../types';
|
|
2
|
+
|
|
3
|
+
export const it: SupportTranslations = {
|
|
4
|
+
layout: {
|
|
5
|
+
title: 'Centro assistenza',
|
|
6
|
+
titleShort: 'Assistenza',
|
|
7
|
+
subtitle: 'Ottieni aiuto dal nostro team di supporto',
|
|
8
|
+
newTicket: 'Nuovo ticket',
|
|
9
|
+
},
|
|
10
|
+
|
|
11
|
+
hero: {
|
|
12
|
+
openTickets: 'Ticket aperti',
|
|
13
|
+
unreadMessages: 'Messaggi non letti',
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
status: {
|
|
17
|
+
open: 'Aperto',
|
|
18
|
+
waitingForUser: 'In attesa di risposta',
|
|
19
|
+
waitingForAdmin: 'In attesa del supporto',
|
|
20
|
+
resolved: 'Risolto',
|
|
21
|
+
closed: 'Chiuso',
|
|
22
|
+
},
|
|
23
|
+
|
|
24
|
+
ticketList: {
|
|
25
|
+
noTickets: 'Nessun ticket',
|
|
26
|
+
noTicketsDescription: 'Crea il tuo primo ticket di supporto per ricevere aiuto',
|
|
27
|
+
loadingMore: 'Caricamento...',
|
|
28
|
+
loadMore: 'Carica altri',
|
|
29
|
+
allLoaded: 'Tutti i {count} ticket caricati',
|
|
30
|
+
},
|
|
31
|
+
|
|
32
|
+
createTicket: {
|
|
33
|
+
title: 'Nuovo ticket di supporto',
|
|
34
|
+
description: 'Descrivi il tuo problema e ti aiuteremo',
|
|
35
|
+
subjectLabel: 'Oggetto',
|
|
36
|
+
subjectPlaceholder: 'Breve descrizione del problema',
|
|
37
|
+
messageLabel: 'Messaggio',
|
|
38
|
+
messagePlaceholder: 'Descrivi il tuo problema in dettaglio...',
|
|
39
|
+
cancel: 'Annulla',
|
|
40
|
+
creating: 'Creazione...',
|
|
41
|
+
create: 'Crea ticket',
|
|
42
|
+
},
|
|
43
|
+
|
|
44
|
+
validation: {
|
|
45
|
+
subjectRequired: 'L\'oggetto è obbligatorio',
|
|
46
|
+
subjectTooLong: 'L\'oggetto è troppo lungo (max 200 caratteri)',
|
|
47
|
+
messageRequired: 'Il messaggio è obbligatorio',
|
|
48
|
+
messageTooLong: 'Il messaggio è troppo lungo (max 5000 caratteri)',
|
|
49
|
+
},
|
|
50
|
+
|
|
51
|
+
messages: {
|
|
52
|
+
ticketCreated: 'Ticket creato con successo',
|
|
53
|
+
ticketCreateFailed: 'Impossibile creare il ticket',
|
|
54
|
+
messageSent: 'Messaggio inviato',
|
|
55
|
+
messageSendFailed: 'Impossibile inviare il messaggio',
|
|
56
|
+
},
|
|
57
|
+
|
|
58
|
+
messageInput: {
|
|
59
|
+
placeholder: 'Scrivi il tuo messaggio...',
|
|
60
|
+
ticketClosed: 'Ticket chiuso',
|
|
61
|
+
ticketClosedDescription: 'Questo ticket è stato chiuso. Crea un nuovo ticket se hai bisogno di ulteriore assistenza.',
|
|
62
|
+
},
|
|
63
|
+
|
|
64
|
+
messageList: {
|
|
65
|
+
noTicketSelected: 'Nessun ticket selezionato',
|
|
66
|
+
noTicketSelectedDescription: 'Seleziona un ticket dall\'elenco per visualizzare i messaggi',
|
|
67
|
+
noMessages: 'Nessun messaggio',
|
|
68
|
+
noMessagesDescription: 'Inizia la conversazione inviando un messaggio',
|
|
69
|
+
loadingOlder: 'Caricamento messaggi precedenti...',
|
|
70
|
+
loadOlder: 'Carica messaggi precedenti',
|
|
71
|
+
supportTeam: 'Team di supporto',
|
|
72
|
+
staff: 'Staff',
|
|
73
|
+
},
|
|
74
|
+
|
|
75
|
+
time: {
|
|
76
|
+
justNow: 'Adesso',
|
|
77
|
+
minutesAgo: '{count} min fa',
|
|
78
|
+
hoursAgo: '{count}h fa',
|
|
79
|
+
daysAgo: '{count}g fa',
|
|
80
|
+
},
|
|
81
|
+
};
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import type { SupportTranslations } from '../types';
|
|
2
|
+
|
|
3
|
+
export const ja: SupportTranslations = {
|
|
4
|
+
layout: {
|
|
5
|
+
title: 'サポートセンター',
|
|
6
|
+
titleShort: 'サポート',
|
|
7
|
+
subtitle: 'サポートチームからヘルプを受ける',
|
|
8
|
+
newTicket: '新規チケット',
|
|
9
|
+
},
|
|
10
|
+
|
|
11
|
+
hero: {
|
|
12
|
+
openTickets: '未解決チケット',
|
|
13
|
+
unreadMessages: '未読メッセージ',
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
status: {
|
|
17
|
+
open: '未解決',
|
|
18
|
+
waitingForUser: 'お客様の返答待ち',
|
|
19
|
+
waitingForAdmin: 'サポート対応待ち',
|
|
20
|
+
resolved: '解決済み',
|
|
21
|
+
closed: 'クローズ',
|
|
22
|
+
},
|
|
23
|
+
|
|
24
|
+
ticketList: {
|
|
25
|
+
noTickets: 'チケットはありません',
|
|
26
|
+
noTicketsDescription: '最初のサポートチケットを作成してヘルプを受けましょう',
|
|
27
|
+
loadingMore: '読み込み中...',
|
|
28
|
+
loadMore: 'さらに読み込む',
|
|
29
|
+
allLoaded: '全{count}件のチケットを読み込みました',
|
|
30
|
+
},
|
|
31
|
+
|
|
32
|
+
createTicket: {
|
|
33
|
+
title: '新規サポートチケット',
|
|
34
|
+
description: '問題を説明していただければ、お手伝いします',
|
|
35
|
+
subjectLabel: '件名',
|
|
36
|
+
subjectPlaceholder: '問題の簡単な説明',
|
|
37
|
+
messageLabel: 'メッセージ',
|
|
38
|
+
messagePlaceholder: '問題の詳細を説明してください...',
|
|
39
|
+
cancel: 'キャンセル',
|
|
40
|
+
creating: '作成中...',
|
|
41
|
+
create: 'チケット作成',
|
|
42
|
+
},
|
|
43
|
+
|
|
44
|
+
validation: {
|
|
45
|
+
subjectRequired: '件名は必須です',
|
|
46
|
+
subjectTooLong: '件名が長すぎます(最大200文字)',
|
|
47
|
+
messageRequired: 'メッセージは必須です',
|
|
48
|
+
messageTooLong: 'メッセージが長すぎます(最大5000文字)',
|
|
49
|
+
},
|
|
50
|
+
|
|
51
|
+
messages: {
|
|
52
|
+
ticketCreated: 'チケットが作成されました',
|
|
53
|
+
ticketCreateFailed: 'チケットの作成に失敗しました',
|
|
54
|
+
messageSent: 'メッセージを送信しました',
|
|
55
|
+
messageSendFailed: 'メッセージの送信に失敗しました',
|
|
56
|
+
},
|
|
57
|
+
|
|
58
|
+
messageInput: {
|
|
59
|
+
placeholder: 'メッセージを入力...',
|
|
60
|
+
ticketClosed: 'チケットはクローズされています',
|
|
61
|
+
ticketClosedDescription: 'このチケットはクローズされました。さらにサポートが必要な場合は新しいチケットを作成してください。',
|
|
62
|
+
},
|
|
63
|
+
|
|
64
|
+
messageList: {
|
|
65
|
+
noTicketSelected: 'チケットが選択されていません',
|
|
66
|
+
noTicketSelectedDescription: 'メッセージを表示するにはリストからチケットを選択してください',
|
|
67
|
+
noMessages: 'メッセージはありません',
|
|
68
|
+
noMessagesDescription: 'メッセージを送信して会話を始めましょう',
|
|
69
|
+
loadingOlder: '古いメッセージを読み込み中...',
|
|
70
|
+
loadOlder: '古いメッセージを読み込む',
|
|
71
|
+
supportTeam: 'サポートチーム',
|
|
72
|
+
staff: 'スタッフ',
|
|
73
|
+
},
|
|
74
|
+
|
|
75
|
+
time: {
|
|
76
|
+
justNow: 'たった今',
|
|
77
|
+
minutesAgo: '{count}分前',
|
|
78
|
+
hoursAgo: '{count}時間前',
|
|
79
|
+
daysAgo: '{count}日前',
|
|
80
|
+
},
|
|
81
|
+
};
|