@paroicms/admin-ui 1.70.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.
- package/README.md +9 -0
- package/assets/icons/add.svg +1 -0
- package/assets/icons/google.svg +10 -0
- package/assets/images/file-placeholder.webp +0 -0
- package/assets/images/image-placeholder.webp +0 -0
- package/assets/images/pdf-placeholder.webp +0 -0
- package/dist/assets/InterVariable-CWi-zmRD.woff2 +0 -0
- package/dist/assets/InterVariable-Italic-d6KXgdvN.woff2 +0 -0
- package/dist/assets/index-BDxMIeO3.js +2967 -0
- package/dist/assets/index-DQb1uwWn.css +1 -0
- package/dist/assets/pdf-placeholder-BOmmIZYp.webp +0 -0
- package/dist/assets/primeicons-C6QP2o4f.woff2 +0 -0
- package/dist/assets/primeicons-DMOk5skT.eot +0 -0
- package/dist/assets/primeicons-Dr5RGzOO.svg +345 -0
- package/dist/assets/primeicons-MpK4pl85.ttf +0 -0
- package/dist/assets/primeicons-WjwUDZjB.woff +0 -0
- package/dist/index.html +14 -0
- package/for-backend/index.d.ts +1 -0
- package/for-backend/index.js +4 -0
- package/locales/en.json +255 -0
- package/locales/fr.json +255 -0
- package/package.json +64 -0
|
Binary file
|
|
Binary file
|
package/dist/index.html
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<meta name="robots" content="noindex, nofollow" />
|
|
7
|
+
<script type="module" crossorigin src="/adm/assets/index-BDxMIeO3.js"></script>
|
|
8
|
+
<link rel="stylesheet" crossorigin href="/adm/assets/index-DQb1uwWn.css">
|
|
9
|
+
</head>
|
|
10
|
+
|
|
11
|
+
<body>
|
|
12
|
+
<div id="app"></div>
|
|
13
|
+
</body>
|
|
14
|
+
</html>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const distDir: string;
|
package/locales/en.json
ADDED
|
@@ -0,0 +1,255 @@
|
|
|
1
|
+
{
|
|
2
|
+
"en": "English",
|
|
3
|
+
"fr": "French",
|
|
4
|
+
"toast": {
|
|
5
|
+
"success": "Success",
|
|
6
|
+
"info": "Information",
|
|
7
|
+
"warn": "Warning",
|
|
8
|
+
"error": "Error"
|
|
9
|
+
},
|
|
10
|
+
"sizeFormatter": {
|
|
11
|
+
"B": "B",
|
|
12
|
+
"GB": "GB",
|
|
13
|
+
"MB": "MB",
|
|
14
|
+
"KB": "KB"
|
|
15
|
+
},
|
|
16
|
+
"selectALanguage": "Select a language",
|
|
17
|
+
"errorOccurred": "An error occured",
|
|
18
|
+
"app": {
|
|
19
|
+
"logout": "Log out",
|
|
20
|
+
"adminUiTitle": "Admin - {{siteTitle}}",
|
|
21
|
+
"dev": "DEV",
|
|
22
|
+
"adminArea": "Administration area",
|
|
23
|
+
"settings": "Settings",
|
|
24
|
+
"siteProperties": "Site properties",
|
|
25
|
+
"successfulUpdate": "Successful update",
|
|
26
|
+
"updateFailed": "Update failed",
|
|
27
|
+
"saveChanges": "Save",
|
|
28
|
+
"tooltipTranslateMessage": "{{language}} (Translate)",
|
|
29
|
+
"preferences": "Preferences",
|
|
30
|
+
"administrationLanguage": "Language of the administration area:",
|
|
31
|
+
"PoweredBy": "Powered by",
|
|
32
|
+
"special": "Special",
|
|
33
|
+
"siteFieldsSavedToast": "Site properties have been saved"
|
|
34
|
+
},
|
|
35
|
+
"preferences": {
|
|
36
|
+
"savedToast": "Preferences have been saved"
|
|
37
|
+
},
|
|
38
|
+
"DocumentSearch": {
|
|
39
|
+
"searchLabel": "Your search",
|
|
40
|
+
"searchPlaceholder": "Search"
|
|
41
|
+
},
|
|
42
|
+
"NavBar": {
|
|
43
|
+
"translate": "Translate",
|
|
44
|
+
"pages": "Child doc.",
|
|
45
|
+
"edit": "Edit",
|
|
46
|
+
"parts": "Sub-parts",
|
|
47
|
+
"openListOfParts": "Open the list of sub-parts",
|
|
48
|
+
"noTitle": "(no title)"
|
|
49
|
+
},
|
|
50
|
+
"languages": {
|
|
51
|
+
"en": "English",
|
|
52
|
+
"fr": "French"
|
|
53
|
+
},
|
|
54
|
+
"document": {
|
|
55
|
+
"savedToast": "Document has been saved"
|
|
56
|
+
},
|
|
57
|
+
"part": {
|
|
58
|
+
"savedToast": "Sub-part has been saved",
|
|
59
|
+
"setPublishDate": "Change publication date of the sub-part"
|
|
60
|
+
},
|
|
61
|
+
"DocumentEditPanel": {
|
|
62
|
+
"documentDeleted": "Document deleted",
|
|
63
|
+
"mediaDeleted": "Media deleted",
|
|
64
|
+
"uploadError": "The '{{ filename }}' media has not been received."
|
|
65
|
+
},
|
|
66
|
+
"list": {
|
|
67
|
+
"label": "Sub-parts",
|
|
68
|
+
"addPart": "Add a sub-part",
|
|
69
|
+
"reorderParts": "Reorder",
|
|
70
|
+
"partDeleted": "Sub-part deleted",
|
|
71
|
+
"confirmItemDeletion": "Do you want to delete this sub-part?",
|
|
72
|
+
"createPart": "Create a sub-part"
|
|
73
|
+
},
|
|
74
|
+
"documentType": {
|
|
75
|
+
"addChild": "Add"
|
|
76
|
+
},
|
|
77
|
+
"document-control": {
|
|
78
|
+
"publishDateIsUpdated": "The publish date has been updated",
|
|
79
|
+
"switchedToDraft": "The document has been switched to draft",
|
|
80
|
+
"documentAndTranslationsAreDeleted": "The document and its translations have been deleted",
|
|
81
|
+
"documentIsDeleted": "The document has been deleted",
|
|
82
|
+
"titleOrSlugIsUpdated": "The title (or slug) has been updated",
|
|
83
|
+
"metaDescriptionIsUpdated": "The meta-description has been updated",
|
|
84
|
+
"metaKeywordsIsUpdated": "The HTML keywords have been updated"
|
|
85
|
+
},
|
|
86
|
+
"DocumentControl": {
|
|
87
|
+
"editPublishDate": "Edit publish date",
|
|
88
|
+
"setPublishDate": "Publish or schedule",
|
|
89
|
+
"updateDraft": "Update draft",
|
|
90
|
+
"view": "View",
|
|
91
|
+
"MD": "D",
|
|
92
|
+
"MDTooltip": "A description is present",
|
|
93
|
+
"MK": "K",
|
|
94
|
+
"MKTooltip": "Keywords are present"
|
|
95
|
+
},
|
|
96
|
+
"DeleteDocument": {
|
|
97
|
+
"documentDeletingConfirmationMessage": "Do you want to delete the article \"{{title}}\"?",
|
|
98
|
+
"deleteJustThisArticle": "Delete just this article in \"{{language}}\"",
|
|
99
|
+
"deleteThisArticle": "Delete this article",
|
|
100
|
+
"deleteAllTranslations": "Delete all the translations"
|
|
101
|
+
},
|
|
102
|
+
"SwitchToDraft": {
|
|
103
|
+
"switchToDraftConfirmationMessage": "Would you like to change this document to draft? It will no longer be accessible from the website."
|
|
104
|
+
},
|
|
105
|
+
"DocumentView": {
|
|
106
|
+
"seoSettings": "SEO Settings",
|
|
107
|
+
"title": "Title:",
|
|
108
|
+
"slug": "Slug:",
|
|
109
|
+
"metaDescription": "Description:",
|
|
110
|
+
"metaKeywords": "Keywords:",
|
|
111
|
+
"chooseFeatureImage": "Featured image"
|
|
112
|
+
},
|
|
113
|
+
"DocumentListPanel": {
|
|
114
|
+
"translations": "Translations",
|
|
115
|
+
"status": "Status",
|
|
116
|
+
"draft": "Draft",
|
|
117
|
+
"maximumChildPartsReached": "You have reached the sub-part limit."
|
|
118
|
+
},
|
|
119
|
+
"ReorderDocumentDialog": {
|
|
120
|
+
"changeDisplayOrder": "Change display order"
|
|
121
|
+
},
|
|
122
|
+
"SwitchAndTranslateDocument": {
|
|
123
|
+
"switchAndTranslateConfirmationMesage": "Do you want translate"
|
|
124
|
+
},
|
|
125
|
+
"SaveChangesOrCancelDialog": {
|
|
126
|
+
"confirmationMessage": "Would you like to save your updates?",
|
|
127
|
+
"stayAndEditing": "Continue editing",
|
|
128
|
+
"cancelWithoutSave": "Leave without saving"
|
|
129
|
+
},
|
|
130
|
+
"SelectTermsDialog": {
|
|
131
|
+
"title": "Selection",
|
|
132
|
+
"selectedItems": "Selected:",
|
|
133
|
+
"availableItems": "Available:",
|
|
134
|
+
"emptySelection": "No selected item"
|
|
135
|
+
},
|
|
136
|
+
"common": {
|
|
137
|
+
"inLanguage": "in {{language}}",
|
|
138
|
+
"translateDocumentInto": "Translate the document into {{language}}",
|
|
139
|
+
"translatePartInto": "Translate the sub-part into {{language}}",
|
|
140
|
+
"switchToDraft": "Switch to draft",
|
|
141
|
+
"deletion": "Deletion",
|
|
142
|
+
"editItem": "Sub-part {{orderNum}} ({{typeLabel}})",
|
|
143
|
+
"title": "Title",
|
|
144
|
+
"delete": "Delete",
|
|
145
|
+
"save": "Save",
|
|
146
|
+
"validate": "Validate",
|
|
147
|
+
"translate": "Translate",
|
|
148
|
+
"publish": "Publish",
|
|
149
|
+
"published": "Published",
|
|
150
|
+
"schedule": "Schedule",
|
|
151
|
+
"scheduled": "Scheduled",
|
|
152
|
+
"draft": "Draft",
|
|
153
|
+
"publishDate": "Publish date",
|
|
154
|
+
"cancel": "Cancel",
|
|
155
|
+
"confirm": "Confirm",
|
|
156
|
+
"confirmation": "Confirmation",
|
|
157
|
+
"email": "E-mail",
|
|
158
|
+
"name": "Name",
|
|
159
|
+
"thumbnail": "Thumbnail",
|
|
160
|
+
"colon": "{{label}}:",
|
|
161
|
+
"fold": "fold",
|
|
162
|
+
"unfold": "unfold",
|
|
163
|
+
"savedToast": "Saved",
|
|
164
|
+
"invalidJson": "Invalid JSON",
|
|
165
|
+
"yes": "Yes",
|
|
166
|
+
"no": "No",
|
|
167
|
+
"select": "Select",
|
|
168
|
+
"public": "Public",
|
|
169
|
+
"protected": "Protected",
|
|
170
|
+
"passwordPlaceholder": "Enter password"
|
|
171
|
+
},
|
|
172
|
+
"LoginScreen": {
|
|
173
|
+
"signIn": "Sign in",
|
|
174
|
+
"password": "Password",
|
|
175
|
+
"signin": "Sign in",
|
|
176
|
+
"or": "or",
|
|
177
|
+
"failedMessage": "Incorrect e-mail or password.",
|
|
178
|
+
"signInWithGoogle": "Sign in with Google",
|
|
179
|
+
"signInWithLocalAccount": "Sign in with a local account"
|
|
180
|
+
},
|
|
181
|
+
"PasswordReset": {
|
|
182
|
+
"invalidToken": "Sorry, your token is not or no longer valid.",
|
|
183
|
+
"newPassword": "New password",
|
|
184
|
+
"confirmPassword": "Enter again your password",
|
|
185
|
+
"validate": "Validate",
|
|
186
|
+
"resetPassword": "Reset your password",
|
|
187
|
+
"nonIdenticalPasswords": "Non-identical passwords"
|
|
188
|
+
},
|
|
189
|
+
"AccountScreen": {
|
|
190
|
+
"accounts": "Accounts",
|
|
191
|
+
"addAccount": "Add account",
|
|
192
|
+
"userAccounts": "User Accounts",
|
|
193
|
+
"createAnAccount": "Create an account",
|
|
194
|
+
"editUserAccount": "Edit a user account",
|
|
195
|
+
"passwordBeingReset": "Password being reset",
|
|
196
|
+
"resetPasswordButton": "Reset password",
|
|
197
|
+
"resetPasswordDialog": {
|
|
198
|
+
"title": "Password resetting",
|
|
199
|
+
"description": "Would you like to reset account password?"
|
|
200
|
+
},
|
|
201
|
+
"deleteAccountDialog": {
|
|
202
|
+
"title": "Delete account",
|
|
203
|
+
"description": "Would you like to delete this account?"
|
|
204
|
+
},
|
|
205
|
+
"makeCreateAccountDialog": {
|
|
206
|
+
"accountType": "Account type",
|
|
207
|
+
"localAccount": "Local account",
|
|
208
|
+
"googleAccount": "Google account"
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
"BackupScreen": {
|
|
212
|
+
"backup": "Backup",
|
|
213
|
+
"prepareBackup": "Prepare a backup",
|
|
214
|
+
"backupFileSizeLabel": "Backup file size :",
|
|
215
|
+
"download": "Download"
|
|
216
|
+
},
|
|
217
|
+
"NotFoundScreen": {
|
|
218
|
+
"notFound": "Resource not found",
|
|
219
|
+
"returnHomePage": "Return to our Home Page"
|
|
220
|
+
},
|
|
221
|
+
"mediaField": {
|
|
222
|
+
"invalidFile": "Invalid file: {{ filename }}"
|
|
223
|
+
},
|
|
224
|
+
"mediaGallery": {
|
|
225
|
+
"delete": "Delete",
|
|
226
|
+
"chooseAFile": "Choose a file",
|
|
227
|
+
"deleteThisFile": "Do you want to delete this file?",
|
|
228
|
+
"no": "No",
|
|
229
|
+
"yes": "Yes",
|
|
230
|
+
"save": "Save",
|
|
231
|
+
"cancel": "Cancel",
|
|
232
|
+
"orderTheMedia": "Reorder",
|
|
233
|
+
"dragAndDropMedia": "Reorder medias",
|
|
234
|
+
"cancelUpload": "Cancel upload",
|
|
235
|
+
"replace": "Replace",
|
|
236
|
+
"properties": "Properties",
|
|
237
|
+
"deleteFileModalTitle": "Media deletion",
|
|
238
|
+
"dropFilesHere": "Upload your files here…",
|
|
239
|
+
"mediaLimitReached": "The media limit has been reached.",
|
|
240
|
+
"mediaProperties": {
|
|
241
|
+
"fileProperties": "File properties",
|
|
242
|
+
"imageProperties": "Image properties",
|
|
243
|
+
"fileStored": "File stored:",
|
|
244
|
+
"imageStored": "Image stored:",
|
|
245
|
+
"format": "format",
|
|
246
|
+
"originalFileName": "Original file name:",
|
|
247
|
+
"caption": "Caption:",
|
|
248
|
+
"pixelRatio": "Pixel ratio:",
|
|
249
|
+
"usedSizes": "Used sizes:",
|
|
250
|
+
"auto": "Auto",
|
|
251
|
+
"cancel": "Cancel",
|
|
252
|
+
"close": "Close"
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
}
|
package/locales/fr.json
ADDED
|
@@ -0,0 +1,255 @@
|
|
|
1
|
+
{
|
|
2
|
+
"en": "Anglais",
|
|
3
|
+
"fr": "Français",
|
|
4
|
+
"toast": {
|
|
5
|
+
"success": "Succès",
|
|
6
|
+
"info": "Information",
|
|
7
|
+
"warn": "Avertissement",
|
|
8
|
+
"error": "Erreur"
|
|
9
|
+
},
|
|
10
|
+
"sizeFormatter": {
|
|
11
|
+
"B": "o",
|
|
12
|
+
"GB": "Go",
|
|
13
|
+
"MB": "Mo",
|
|
14
|
+
"KB": "Ko"
|
|
15
|
+
},
|
|
16
|
+
"selectALanguage": "Sélectionner une langue",
|
|
17
|
+
"errorOccurred": "Une erreur est survenue",
|
|
18
|
+
"app": {
|
|
19
|
+
"logout": "Se déconnecter",
|
|
20
|
+
"adminUiTitle": "Admin - {{siteTitle}}",
|
|
21
|
+
"dev": "DÉV",
|
|
22
|
+
"adminArea": "Espace d'administration",
|
|
23
|
+
"settings": "Configuration",
|
|
24
|
+
"siteProperties": "Propriétés du site",
|
|
25
|
+
"successfulUpdate": "Mise à jour réussie",
|
|
26
|
+
"updateFailed": "Mise à jour échouée",
|
|
27
|
+
"saveChanges": "Enregistrer",
|
|
28
|
+
"tooltipTranslateMessage": "{{language}} (Traduire)",
|
|
29
|
+
"preferences": "Préférences",
|
|
30
|
+
"administrationLanguage": "Language de l'espace d'administration :",
|
|
31
|
+
"PoweredBy": "Propulsé par",
|
|
32
|
+
"special": "Spécial",
|
|
33
|
+
"siteFieldsSavedToast": "Les propriétés du site ont été enregistrées"
|
|
34
|
+
},
|
|
35
|
+
"preferences": {
|
|
36
|
+
"savedToast": "Préférences enregistrées"
|
|
37
|
+
},
|
|
38
|
+
"DocumentSearch": {
|
|
39
|
+
"searchLabel": "Votre recherche",
|
|
40
|
+
"searchPlaceholder": "Rechercher"
|
|
41
|
+
},
|
|
42
|
+
"NavBar": {
|
|
43
|
+
"translate": "Traduire",
|
|
44
|
+
"pages": "Doc. enfants",
|
|
45
|
+
"edit": "Éditer",
|
|
46
|
+
"parts": "Sous-parties",
|
|
47
|
+
"openListOfParts": "Ouvrir la liste des sous-rubriques",
|
|
48
|
+
"noTitle": "(pas de titre)"
|
|
49
|
+
},
|
|
50
|
+
"languages": {
|
|
51
|
+
"en": "anglais",
|
|
52
|
+
"fr": "français"
|
|
53
|
+
},
|
|
54
|
+
"document": {
|
|
55
|
+
"savedToast": "Document enregistré"
|
|
56
|
+
},
|
|
57
|
+
"part": {
|
|
58
|
+
"savedToast": "Sous-partie enregistrée",
|
|
59
|
+
"setPublishDate": "Modifier la date de publication de la sous-partie"
|
|
60
|
+
},
|
|
61
|
+
"DocumentEditPanel": {
|
|
62
|
+
"documentDeleted": "Document supprimé",
|
|
63
|
+
"mediaDeleted": "Média supprimé",
|
|
64
|
+
"uploadError": "Le fichier '{{ filename }}' n'a pas été reçu."
|
|
65
|
+
},
|
|
66
|
+
"list": {
|
|
67
|
+
"label": "Sous-parties",
|
|
68
|
+
"addPart": "Ajouter une sous-partie",
|
|
69
|
+
"reorderParts": "Réordonner",
|
|
70
|
+
"partDeleted": "Sous-partie supprimée",
|
|
71
|
+
"confirmItemDeletion": "Voulez-vous supprimer cette sous-partie ?",
|
|
72
|
+
"createPart": "Créer une sous-partie"
|
|
73
|
+
},
|
|
74
|
+
"documentType": {
|
|
75
|
+
"addChild": "Ajouter"
|
|
76
|
+
},
|
|
77
|
+
"document-control": {
|
|
78
|
+
"publishDateIsUpdated": "La date de publication a été mise à jour",
|
|
79
|
+
"switchedToDraft": "Le document a été passé en brouillon",
|
|
80
|
+
"documentAndTranslationsAreDeleted": "Le document et ses traductions ont été supprimés",
|
|
81
|
+
"documentIsDeleted": "Le document a été supprimé",
|
|
82
|
+
"titleOrSlugIsUpdated": "Le titre (ou le slug) a été mis à jour",
|
|
83
|
+
"metaDescriptionIsUpdated": "La meta-description a été mise à jour",
|
|
84
|
+
"metaKeywordsIsUpdated": "Les mots-clés HTML ont été mis à jour"
|
|
85
|
+
},
|
|
86
|
+
"DocumentControl": {
|
|
87
|
+
"editPublishDate": "Changer la date de publication",
|
|
88
|
+
"setPublishDate": "Publier ou programmer",
|
|
89
|
+
"updateDraft": "Enregistrer le brouillon",
|
|
90
|
+
"view": "Voir",
|
|
91
|
+
"MD": "D",
|
|
92
|
+
"MDTooltip": "Une description est présente",
|
|
93
|
+
"MK": "M",
|
|
94
|
+
"MKTooltip": "Des mot-clés sont présents"
|
|
95
|
+
},
|
|
96
|
+
"SwitchToDraft": {
|
|
97
|
+
"switchToDraftConfirmationMessage": "Souhaitez-vous passer ce document en brouillon ? Il ne sera plus accessible depuis le site web."
|
|
98
|
+
},
|
|
99
|
+
"DeleteDocument": {
|
|
100
|
+
"documentDeletingConfirmationMessage": "Voulez-vous supprimer l'article \"{{title}}\"?",
|
|
101
|
+
"deleteJustThisArticle": "Supprimer uniquement cet article \"{{language}}\"",
|
|
102
|
+
"deleteThisArticle": "Supprimer cet article",
|
|
103
|
+
"deleteAllTranslations": "Supprimer toutes les traductions"
|
|
104
|
+
},
|
|
105
|
+
"DocumentView": {
|
|
106
|
+
"seoSettings": "Paramètres SEO",
|
|
107
|
+
"title": "Titre :",
|
|
108
|
+
"slug": "Slug :",
|
|
109
|
+
"metaDescription": "Description :",
|
|
110
|
+
"metaKeywords": "Mot-clés :",
|
|
111
|
+
"chooseFeatureImage": "Image mise en avant"
|
|
112
|
+
},
|
|
113
|
+
"DocumentListPanel": {
|
|
114
|
+
"translations": "Traductions",
|
|
115
|
+
"status": "Statut",
|
|
116
|
+
"draft": "Brouillon",
|
|
117
|
+
"maximumChildPartsReached": "Vous avez atteint la limite des sous-parties."
|
|
118
|
+
},
|
|
119
|
+
"ReorderDocumentDialog": {
|
|
120
|
+
"changeDisplayOrder": "Modifier l'ordre d'affichage"
|
|
121
|
+
},
|
|
122
|
+
"SwitchAndTranslateDocument": {
|
|
123
|
+
"switchAndTranslateConfirmationMesage": "Souhaitez-vous traduire"
|
|
124
|
+
},
|
|
125
|
+
"SaveChangesOrCancelDialog": {
|
|
126
|
+
"confirmationMessage": "Souhaitez-vous enregistrer vos modifications ?",
|
|
127
|
+
"stayAndEditing": "Continuer à éditer",
|
|
128
|
+
"cancelWithoutSave": "Quitter sans enregistrer"
|
|
129
|
+
},
|
|
130
|
+
"SelectTermsDialog": {
|
|
131
|
+
"title": "Sélection",
|
|
132
|
+
"selectedItems": "Sélectionnés :",
|
|
133
|
+
"availableItems": "Disponibles :",
|
|
134
|
+
"emptySelection": "Aucun item sélectionné"
|
|
135
|
+
},
|
|
136
|
+
"common": {
|
|
137
|
+
"inLanguage": "en {{language}}",
|
|
138
|
+
"translateDocumentInto": "Traduire le document en {{language}}",
|
|
139
|
+
"translatePartInto": "Traduire la sous-partie en {{language}}",
|
|
140
|
+
"switchToDraft": "Passer en brouillon",
|
|
141
|
+
"deletion": "Suppression",
|
|
142
|
+
"editItem": "Sous-partie {{orderNum}} ({{typeLabel}})",
|
|
143
|
+
"title": "Titre",
|
|
144
|
+
"delete": "Supprimer",
|
|
145
|
+
"save": "Enregistrer",
|
|
146
|
+
"validate": "Valider",
|
|
147
|
+
"translate": "Traduire",
|
|
148
|
+
"publish": "Publier",
|
|
149
|
+
"published": "Publié",
|
|
150
|
+
"schedule": "Programmer",
|
|
151
|
+
"scheduled": "Programmé",
|
|
152
|
+
"draft": "Brouillon",
|
|
153
|
+
"publishDate": "Date de publication",
|
|
154
|
+
"cancel": "Annuler",
|
|
155
|
+
"confirm": "Valider",
|
|
156
|
+
"confirmation": "Confirmation",
|
|
157
|
+
"email": "E-mail",
|
|
158
|
+
"name": "Name",
|
|
159
|
+
"thumbnail": "Miniature",
|
|
160
|
+
"colon": "{{label}} :",
|
|
161
|
+
"fold": "replier",
|
|
162
|
+
"unfold": "déplier",
|
|
163
|
+
"savedToast": "Enregistré",
|
|
164
|
+
"invalidJson": "Le JSON est invalide",
|
|
165
|
+
"yes": "Oui",
|
|
166
|
+
"no": "Non",
|
|
167
|
+
"select": "Sélectionner",
|
|
168
|
+
"public": "Public",
|
|
169
|
+
"protected": "Protégé",
|
|
170
|
+
"passwordPlaceholder": "Saisissez le mot de passe"
|
|
171
|
+
},
|
|
172
|
+
"LoginScreen": {
|
|
173
|
+
"signIn": "Se connecter",
|
|
174
|
+
"password": "Mot de passe",
|
|
175
|
+
"signin": "Se connecter",
|
|
176
|
+
"or": "ou",
|
|
177
|
+
"failedMessage": "E-mail ou mot de passe incorrect",
|
|
178
|
+
"signInWithGoogle": "Se connecter avec Google",
|
|
179
|
+
"signInWithLocalAccount": "Se connecter avec un compte local"
|
|
180
|
+
},
|
|
181
|
+
"PasswordReset": {
|
|
182
|
+
"invalidToken": "Désolé, votre token n'est pas ou plus valide.",
|
|
183
|
+
"newPassword": "Nouveau mot de passe",
|
|
184
|
+
"confirmPassword": "Saisissez encore votre mot de passe",
|
|
185
|
+
"validate": "Valider",
|
|
186
|
+
"resetPassword": "Réinitialiser votre mot de passe",
|
|
187
|
+
"nonIdenticalPasswords": "Mots de passe non identiques"
|
|
188
|
+
},
|
|
189
|
+
"AccountScreen": {
|
|
190
|
+
"accounts": "Comptes",
|
|
191
|
+
"addAccount": "Ajouter un compte",
|
|
192
|
+
"userAccounts": "Comptes utilisateurs",
|
|
193
|
+
"createAnAccount": "Créer un compte",
|
|
194
|
+
"editUserAccount": "Édition d'un compte utilisateur",
|
|
195
|
+
"passwordBeingReset": "Mot de passe en cours de réinitialisation",
|
|
196
|
+
"resetPasswordButton": "Réinitialiser le mot de passe",
|
|
197
|
+
"resetPasswordDialog": {
|
|
198
|
+
"title": "Réinitialisation du mot de passe",
|
|
199
|
+
"description": "Souhaitez-vous réinitialiser le mot de passe du compte?"
|
|
200
|
+
},
|
|
201
|
+
"deleteAccountDialog": {
|
|
202
|
+
"title": "Suppression d'un compte",
|
|
203
|
+
"description": "Souhaitez-vous supprimer ce compte ?"
|
|
204
|
+
},
|
|
205
|
+
"makeCreateAccountDialog": {
|
|
206
|
+
"accountType": "Type de compte",
|
|
207
|
+
"localAccount": "Compte local",
|
|
208
|
+
"googleAccount": "Compte Google"
|
|
209
|
+
}
|
|
210
|
+
},
|
|
211
|
+
"BackupScreen": {
|
|
212
|
+
"backup": "Sauvegarde",
|
|
213
|
+
"prepareBackup": "Préparer une sauvegarde",
|
|
214
|
+
"backupFileSizeLabel": "Taille du fichier de sauvegarde :",
|
|
215
|
+
"download": "Télécharger"
|
|
216
|
+
},
|
|
217
|
+
"NotFoundScreen": {
|
|
218
|
+
"notFound": "Ressource non trouvée",
|
|
219
|
+
"returnHomePage": "Retourner sur la page d'accueil"
|
|
220
|
+
},
|
|
221
|
+
"mediaField": {
|
|
222
|
+
"invalidFile": "Fichier invalide : {{ filename }}"
|
|
223
|
+
},
|
|
224
|
+
"mediaGallery": {
|
|
225
|
+
"delete": "Supprimer",
|
|
226
|
+
"chooseAFile": "Choisir un fichier",
|
|
227
|
+
"deleteThisFile": "Voulez-vous supprimer ce fichier?",
|
|
228
|
+
"no": "Non",
|
|
229
|
+
"yes": "Oui",
|
|
230
|
+
"save": "Enregistrer",
|
|
231
|
+
"cancel": "Annuler",
|
|
232
|
+
"orderTheMedia": "Réordonner",
|
|
233
|
+
"dragAndDropMedia": "Réordonner les médias",
|
|
234
|
+
"cancelUpload": "Annuler l'upload",
|
|
235
|
+
"replace": "Remplacer",
|
|
236
|
+
"properties": "Propriétés",
|
|
237
|
+
"deleteFileModalTitle": "Suppression de média",
|
|
238
|
+
"dropFilesHere": "Déposez vos fichiers ici…",
|
|
239
|
+
"mediaLimitReached": "La limite des médias a été atteinte.",
|
|
240
|
+
"mediaProperties": {
|
|
241
|
+
"fileProperties": "Propriétés du fichier",
|
|
242
|
+
"imageProperties": "Propriétés de l'image",
|
|
243
|
+
"fileStored": "Fichier stocké :",
|
|
244
|
+
"imageStored": "Image stockée :",
|
|
245
|
+
"format": "format",
|
|
246
|
+
"originalFileName": "Nom du fichier original :",
|
|
247
|
+
"caption": "Légende :",
|
|
248
|
+
"pixelRatio": "Ratio de pixels :",
|
|
249
|
+
"usedSizes": "Tailles utilisées :",
|
|
250
|
+
"auto": "Automatique",
|
|
251
|
+
"cancel": "Annuler",
|
|
252
|
+
"close": "Fermer"
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@paroicms/admin-ui",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "1.70.0",
|
|
5
|
+
"description": "Admin UI for ParoiCMS",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://gitlab.com/paroi/opensource/paroicms.git",
|
|
9
|
+
"directory": "app/admin-ui"
|
|
10
|
+
},
|
|
11
|
+
"keywords": [
|
|
12
|
+
"paroicms",
|
|
13
|
+
"admin-ui"
|
|
14
|
+
],
|
|
15
|
+
"author": "Paroi Team",
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"main": "for-backend/index.js",
|
|
18
|
+
"types": "for-backend/index.d.ts",
|
|
19
|
+
"files": [
|
|
20
|
+
"assets",
|
|
21
|
+
"dist",
|
|
22
|
+
"for-backend",
|
|
23
|
+
"locales"
|
|
24
|
+
],
|
|
25
|
+
"scripts": {
|
|
26
|
+
"dev": "vite --clearScreen false",
|
|
27
|
+
"clear": "rimraf dist/*",
|
|
28
|
+
"build": "tsc && vite build",
|
|
29
|
+
"tsc": "tsc",
|
|
30
|
+
"preview": "vite preview"
|
|
31
|
+
},
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@apollo/client": "~3.13.8",
|
|
34
|
+
"@paroi/data-formatters-lib": "~0.4.0",
|
|
35
|
+
"@paroi/use-async-effect": "~1.0.0",
|
|
36
|
+
"@paroicms/ui-logger": "1.12.0",
|
|
37
|
+
"@paroicms/internal-anywhere-lib": "1.30.0",
|
|
38
|
+
"@paroicms/public-anywhere-lib": "0.24.0",
|
|
39
|
+
"@paroicms/public-admin-ui-lib": "0.25.0",
|
|
40
|
+
"@paroicms/react-ui": "0.2.0",
|
|
41
|
+
"@types/react": "~19.1.8",
|
|
42
|
+
"@types/react-dom": "~19.1.6",
|
|
43
|
+
"@vitejs/plugin-react": "~4.5.2",
|
|
44
|
+
"dayjs": "~1.11.13",
|
|
45
|
+
"graphql": "~16.11.0",
|
|
46
|
+
"i18next": "~25.2.1",
|
|
47
|
+
"mitt": "~3.0.1",
|
|
48
|
+
"primeflex": "~4.0.0",
|
|
49
|
+
"primeicons": "~7.0.0",
|
|
50
|
+
"primereact": "~10.9.6",
|
|
51
|
+
"react": "~19.1.0",
|
|
52
|
+
"react-dom": "~19.1.0",
|
|
53
|
+
"react-i18next": "~15.5.3",
|
|
54
|
+
"react-icons": "~5.5.0",
|
|
55
|
+
"react-router-dom": "~7.6.2",
|
|
56
|
+
"react-sortablejs": "~6.1.4",
|
|
57
|
+
"rimraf": "~6.0.1",
|
|
58
|
+
"sass": "~1.89.2",
|
|
59
|
+
"typescript": "~5.8.3",
|
|
60
|
+
"vite": "~6.3.5",
|
|
61
|
+
"vite-plugin-checker": "~0.9.3",
|
|
62
|
+
"zustand": "~5.0.5"
|
|
63
|
+
}
|
|
64
|
+
}
|