-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathen.json
1109 lines (1109 loc) · 44.1 KB
/
en.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"common": {
"actions": {
"add": "Add",
"cancel": "Cancel",
"close": "Close",
"deactivate": "Deactivate",
"download-template": "Download template",
"edit": "Edit",
"save": "Save",
"validate": "Validate"
},
"api-error-messages": {
"bad-request-error": "The data entered was not in the correct format.",
"gateway-timeout-error": "The service is being slow. Please try again later.",
"internal-server-error": "An error occurred, our teams are working on finding a solution. Please try again later.",
"login-unauthorized-error": "There was an error in the email address or username/password entered.",
"login-user-blocked-error": "Your account has reached the maximum number of failed login attempts and has been temporarily blocked. Please '<'a href=\"{url}\"'>'contact us'</a>' to unblock it.",
"login-user-temporary-blocked-error": "You have reached too many failed login attempts. Please try again later or '<'a href=\"{url}\"'>'reset your password here'</a>'.",
"organization-not-found-error": "The organization \"{organizationId}\" does not exist."
},
"fields": {
"createdAt": "creation date",
"id": "id",
"internalName": "internal name",
"name": "name",
"status": "status",
"target-profile": {
"category": {
"name": "category",
"tags": {
"BACK_TO_SCHOOL": "Back to school",
"COMPETENCES": "Pix Competences",
"CUSTOM": "Created for you",
"DISCIPLINE": "Schools",
"OTHER": "Other",
"PIX_PLUS": "Pix+",
"PREDEFINED": "Ready-made",
"SUBJECT": "Subject",
"TARGETED": "Targeted"
}
}
}
},
"filters": {
"actions": {
"clear": "Clear filters"
},
"target-profile": {
"label": "Category",
"placeholder": "Pix+, Other ..."
},
"title": "Filters"
},
"forms": {
"loading": "Loading...",
"mandatory": "Champ obligatoire",
"mandatory-fields": "The fields marked '<abbr title=\"required\" class=\"mandatory-mark\">'*'</abbr>' are required"
},
"home-page": "Pix Admin homepage",
"invitations": {
"invitation-locale": "Locale",
"send-new": "Resend the invitation",
"send-new-confirm": "An email has been sent to {invitationEmail}",
"send-new-label": "Resend the invitation to {invitationEmail}"
},
"notifications": {
"close-button": {
"extra-information": "Close notification"
},
"generic-error": "An error occurred."
},
"pix-admin": "Pix Admin",
"roles": {
"admin": "Administrator",
"auto": "Automatic",
"member": "Member"
},
"tables": {
"empty-result": "Aucun résultat"
},
"words": {
"no": "No",
"yes": "Yes"
}
},
"components": {
"administration": {
"add-organization-features-in-batch": {
"description": "Note: Trying to enable already existing features on organizations would produce an error.",
"notifications": {
"success": "Features have been enabled."
},
"title": "Enable features on organizations",
"upload-button": "Import CSV file"
},
"anonymize-gar-import": {
"description": "Note: Anonymization should be done once a year. Provide the list of user IDs to be anonymized.",
"notifications": {
"error": {
"payload-too-large": "The CSV file must be a maximum size of {maxSize}Mb."
},
"success": {
"full": "All GAR data has been successfully anonymized for the {total} users provided.",
"partial": "GAR data has been anonymized for {garAnonymizedUserCount} users for a total of {total}."
}
},
"title": "Anonymize GAR Data",
"upload-button": "Anonymize from a CSV file"
},
"campaigns-import": {
"description": "Existing campaigns will not be modified. There is no control to prevent duplicates.",
"notifications": {
"success": "The campaigns have been created."
},
"title": "Creation of mass campaigns",
"upload-button": "Import a CSV file"
},
"oidc-providers-import": {
"description": "Note: Trying to import already existing OIDC Providers would produce an error.",
"notifications": {
"success": "The OIDC Providers have been created."
},
"title": "OIDC Providers import",
"upload-button": "Import JSON file"
},
"organization-import-format": {
"description": "Only existing format imports will be updated. If the name does not match, no format import will be created.",
"notifications": {
"success": "Format imports are updated correctly"
},
"title": "Update existing import formats",
"upload-button": "Importing a JSON file"
},
"organization-tags-import": {
"description": "Allow to add tags to organisations. Each line of the CSV file must be made of the ID of an organisation, followed by the name of a tag.",
"notifications": {
"errors": {
"tag-not-found": "The tag \"{tagName}\" does not exist."
},
"success": "Tags have been added to the organisations."
},
"title": "Bulk addition of tags on organisations",
"upload-button": "Import CSV file"
},
"organizations-import": {
"description": "Existing organizations will not be changed.",
"notifications": {
"success": "The organizations have been created."
},
"title": "Mass creation of organizations",
"upload-button": "Import CSV file"
},
"swap-campaign-codes": {
"description": "Allow to switch campaign codes from two different campaigns. Campaigns must be on the same organization.",
"form": {
"button": "Switch",
"firstCampaignId": "1st campaign ID",
"secondCampaignId": "2nd campaign ID"
},
"notifications": {
"error": {
"mismatch-organization": "Campaign code swapping is possible between campaigns on the same organization.",
"swap-code-error": "May be one of your campaign id doesn't exist. Check and retry."
},
"success": "Campaign code switch success"
},
"title": "Switch campaign codes"
},
"update-campaign-code": {
"description": "Allow to modify the campaign code from the campaign ID. The campaign's code must be unique and composed of 9 uppercase alphanumeric characters.",
"form": {
"button": "Update",
"campaignCode": "Campaign code",
"campaignId": "Campaign ID"
},
"notifications": {
"error": {
"campaign-code-format": "Campaign's code should contains only uppercase alpha numeric characters.",
"campaign-id-error": "Campaign id does not exist.",
"unique-code-error": "Campaign's code is not unique."
},
"success": "Campaign code update succeed."
},
"title": "Update campaign code"
},
"update-organizations-in-batch": {
"description": "Note: Only columns with a value will be modified.",
"notifications": {
"errors": {
"data-protection-email-invalid": "DPO email format invalid \"{value}\" for the organization \"{organizationId}\".",
"organization-batch-update-error": "An error occurred for organization \"{organizationId}\".",
"organization-not-found": "Organization id not found: \"{organizationId}\".",
"parent-organization-not-found": "Parent organization for \"{organizationId}\" not found."
},
"success": "The organisations have been modified."
},
"title": "Mass modification of organisations",
"upload-button": "Import CSV file"
},
"upsert-quests-in-batch": {
"description": "Check with a spécialiste in the doubt ;)",
"notifications": {
"success": "Quests have been imported."
},
"quest-creator": "Create your quest",
"title": "Create and update quests",
"upload-button": "Import CSV file"
}
},
"autonomous-courses": {
"actions": {
"new": "Nouveau parcours autonome"
},
"list": {
"headers": {
"createdAt": "Date de création",
"id": "Id",
"name": "Nom",
"status": "Date"
},
"no-result": "Aucun résultat",
"status": {
"active": "Actif",
"archived": "Archivé"
},
"title": "Liste des parcours autonomes"
},
"new": {
"create-autonomous-course": "Créer le parcours autonome",
"target-profile": {
"category-label": "Sélectionner une ou plusieurs catégories de profils cibles",
"label": "Quel profil cible voulez-vous associer à ce parcours autonome ?",
"placeholder": "Choisir un profil cible",
"search-label": "Recherchez un profil cible",
"sub-label": "Le profil cible doit être en accès simplifié et relié à l’organisation \"Organisation pour les parcours autonomes\""
},
"technical-informations": {
"label": "Nom interne",
"title": "Informations techniques"
},
"title": "Nouveau parcours autonome",
"user-information": {
"homepage": {
"label": "Texte de la page d'accueil",
"placeholder": "Exemple : description, objectifs..."
},
"public-name": {
"label": "Nom public <small>(50 caractères maximum)</small>",
"placeholder": "Exemple : Le super nom de mon parcours autonome",
"sub-label": "Le nom du parcours autonome sera affiché sur la page de démarrage du candidat."
},
"title": "Informations pour les utilisateurs"
}
},
"title": "Tous les parcours autonomes",
"update": {
"custom-landing-page": {
"label": "Texte de la page d'accueil",
"placeholder": "Exemple : description, objectifs..."
},
"internal-title": {
"label": "Nom interne"
},
"public-title": {
"label": "Nom public <small>(50 caractères maximum)</small>",
"placeholder": "Exemple : Le super nom de mon parcours autonome",
"sublabel": "Le nom du parcours autonome sera affiché sur la page de démarrage du candidat."
},
"save": "Sauvegarder les modifications"
},
"view": {
"labels": {
"created-date": "Date de création",
"custom-landing-page": "Texte de la page d'accueil",
"id": "Id",
"internal-title": "Nom interne",
"public-title": "Nom public"
},
"link-copy-action": "Copier le lien de la campagne",
"link-copy-validation": "Lien copié !",
"link-label": "Lien vers la campagne {code} (nouvelle fenêtre)",
"link-title": "Lien public"
}
},
"badges": {
"api-error-messages": {
"key-already-exists": "The badge key {badgeKey} already exists"
},
"tooltips": {
"parameters": "<u>Always visible</u><br/>If the badge is always visible and the learner has not fulfilled the obtaining conditions, then the badge will not be seen on the results screen.<br/><br/><u>Certifiable</u><br/>The badge becomes a prerequisite for certification."
}
},
"campaign": {
"type": {
"explanation": {
"ASSESSMENT": "Campaign of type assessment",
"EXAM": "Interrogation mode [beta]",
"PROFILES_COLLECTION": "Campaign of type profiles collection"
},
"information": {
"ASSESSMENT": "Assessment",
"EXAM": "Interrogation mode [beta]",
"PROFILES_COLLECTION": "Profiles collection"
}
}
},
"certification-centers": {
"invitations": {
"table": {
"caption": "Liste des invitations envoyées pour rejoindre un centre de certification. Contient une adresse e-mail de l'utilisateur, le rôle que l'on souhaite lui attribuer, la date de dernier envoi de l'invitation et des actions permettent de renvoyer l'invitation ou de la supprimer."
}
},
"list-items": {
"table": {
"caption": "Liste des centres de certification. Contient l'identifiant, le nom et le type du centre ainsi que son Id externe. Des filtres présents à l'extérieur du tableau permettent de trier les informations de ce dernier"
}
},
"membership-item": {
"actions": {
"edit-role": "Edit role"
},
"no-last-connection-date-info": "Has not been connected since 03/2025"
},
"membership-item-role": {
"select-role": "Select role"
},
"table-headers": {
"roleLabel": "Role"
}
},
"certifications": {
"external-jury-select-options": {
"REJECTED": "Rejected",
"UNSET": "Waiting"
}
},
"complementary-certifications": {
"list": {
"caption": "Liste des certifications complémentaires, comprenant l'identifiant unique et le nom.",
"id": "ID",
"name": "Nom"
},
"target-profiles": {
"badges-list": {
"caption": "Liste des badges certifiants liés au profil cible, comprenant l'identifiant unique, l'image associée, le niveau, le nombre de pix minimum pour l'obtenir et le nom du badge.",
"header": {
"id": "ID du badge certifiant",
"image-url": "Image du badge certifié",
"level": "Niveau du badge certifié",
"minimum-earned-pix": "Nombre de pix minimum",
"name": "Nom du badge certifié"
},
"title": "Badges certifiés du profil cible actuel"
},
"history-list": {
"caption": "Liste des profils cibles (actuellement rattaché ou ayant étés rattachés à la complémentaire). Contient la date de rattachement et de détachement et le nom.",
"headers": {
"attached-at": "Date de rattachement",
"detached-at": "Date de détachement",
"name": "Nom du profil cible"
},
"title": "Historique des profils cibles rattachés"
}
},
"title": "Toutes les certifications complémentaires"
},
"layout": {
"menu-bar": {
"entries": {
"administration": "Administration",
"autonomous-courses": "Parcours autonomes",
"certification-centers": "Centres de certification",
"certifications": "Certifications",
"complementary-certifications": "Certifications complémentaires",
"logout": "Se déconnecter",
"organizations": "Organisations",
"sessions": "Sessions de certifications",
"target-profiles": "Profils cibles",
"team": "Équipe",
"tools": "Outils",
"trainings": "Contenus formatifs",
"users": "Utilisateurs"
},
"label": "Navigation principale"
},
"sidebar": {
"administration": "Administration",
"autonomous-courses": "Autonomous courses",
"certification-centers": "Certif centers",
"certification-centers-label": "Certifications centers",
"certifications": "Certifications",
"complementary-certifications": "Compl. certifications",
"complementary-certifications-label": "Complementary certifications",
"labels": {
"close": "Close navigation",
"main": "Main navigation",
"open": "Open navigation"
},
"logout": "Log out",
"organizations": "Organizations",
"sessions": "Certif sessions",
"sessions-label": "Certifications sessions",
"target-profiles": "Target profiles",
"team": "Team",
"tools": "Tools",
"trainings": "Trainings",
"users": "Users"
}
},
"memberships-section": {
"roles": {
"admin": "Administrator",
"member": "Member"
},
"table": {
"caption": "Liste des membres appartenant au centre de certification. Contient son identifiant, nom et prénom, son adresse e-mail, son rôle, son dernier accès et sa date de rattachement à l'espace de certification. Des actions permettent de modifier son rôle ou de le supprimer du centre."
}
},
"organizations": {
"all-tags": {
"recently-used-tags": "List of tags recently used with {tagName}"
},
"children": {
"attach-child-form": {
"input-information": "ID of organisation(s) to add",
"input-label": "Add one or more child organisations",
"name": "Add child organisation(s) form"
}
},
"children-list": {
"table-headers": {
"external-id": "External Identifier",
"id": "ID",
"name": "Name"
},
"table-name": "List of children organisations"
},
"information-section-view": {
"child-organization": "Child organization",
"features": {
"ATTESTATIONS_MANAGEMENT": "Attestations",
"COMPUTE_ORGANIZATION_LEARNER_CERTIFICABILITY": "Automatic certificability",
"IS_MANAGING_STUDENTS": "Managing students",
"LEARNER_IMPORT": "Import",
"MULTIPLE_SENDING_ASSESSMENT": "Multiple sending on assessment campaigns",
"PLACES_MANAGEMENT": "Display the Places page on PixOrga",
"SHOW_NPS": "Net Promoter Score display",
"SHOW_SKILLS": "Displaying skills in the results export",
"title": "Features"
},
"parent-organization": "Parent organization"
},
"invitations": {
"table": {
"caption": "Liste des invitations envoyées pour rejoindre une organisation. Contient une adresse e-mail de l'utilisateur, le rôle que l'on souhaite lui attribuer, la date de dernier envoi de l'invitation et des actions permettent de renvoyer l'invitation ou de la supprimer."
}
},
"list-items": {
"table": {
"caption": "Liste des organisations. Contient l'identifiant, le nom, de type et l'identifiant externe de l'organisation."
}
},
"member-items": {
"no-last-connection-date-info": "Has not been connected since 03/2025"
},
"target-profiles-section": {
"table": {
"caption": "Liste des profils cibles rattachés à l'organisation. Contient son identifiant et son nom interne. Une action permet de détacher le profil cible quand cela est possible."
}
},
"team-section": {
"table": {
"caption": "Liste des membres appartenant à l'organisation. Contient son identifiant d'utilisateur, nom et prénom, son adresse e-mail, son rôle et son dernier accès à l'organisation. Des actions permettent de modifier son rôle ou de désactiver."
}
}
},
"target-profiles": {
"badges": {
"table": {
"caption": "Liste des badges. Contient l'identifiant, l'image, la clé, le nom, le message et les paramètres (colonne indiquant si le badge est en lacune ou certifiable). Des actions permettent de supprimer ou bien d'accéder à une page de détails du résultat thématique."
}
},
"list": {
"table": {
"caption": "Liste des profil cibles. Contient l'identifiant, le nom interne, la catégorie, la date de création et le statut."
}
}
},
"users": {
"campaign-participations": {
"table": {
"caption": "Liste des participations de campagne de l'utilisateur. Contient le prénom et nom du prescrit, le nom de la campagne, l'identifiant externe, la date de participation à cette campagne, le statut, la date d'envoi, la date de suppression de cette participation. Une action permet de supprimer la participation.."
}
},
"certification-centers": {
"memberships": {
"caption": "Liste des centres de certification dont l'utilisateur est membre. Contient l'identifiant en tant que membre, l'identifiant, le nom, l'identifiant externe et le type du centre, et enfin le rôle du membre. Plusieurs actions permettent de changer le rôle du membre et de le désactiver du centre.",
"empty-table": "There is no certification center",
"items": {
"actions": {
"cancel-extra-informations": "Cancel role modification",
"deactivate-extra-informations": "Deactivate certification center membership",
"edit-role": "Edit the role",
"edit-role-extra-informations": "Edit certification center membership role",
"save-extra-informations": "Save certification center membership role"
},
"role": {
"select-role": "Select a role"
}
},
"no-last-connection-date-info": "Has not been connected since 03/2025",
"section-title": "User Certification Centres",
"table-headers": {
"actions-label": "Actions",
"center-external-id": "External ID",
"center-id": "Center ID",
"center-name": "Name",
"center-type": "Type",
"last-accessed-at": "Last access",
"member-id": "Member ID",
"role-label": "Role"
}
}
},
"list-items": {
"table": {
"caption": "Liste des utilisateurs. Contient le prénom, le nom, l'adresse e-mail et l'identifiant."
}
},
"organization-learner-information": {
"table": {
"caption": "Liste des informations d'un prescrit. Contient le prénom, le nom, la date de naissance, sa classe ou groupe, le nom de l'organisation auquel prescrit est rattaché, la date de création, la dernière date de mise à jour de ses informations, son état (actif ou inactif). Une action permet le dissocier le prescrit de l'organisation auquel il est rattaché.."
}
},
"organizations": {
"memberships": {
"no-last-connection-date-info": "Has not been connected since 03/2025",
"table": {
"caption": "Liste des organisations dont l'utilisateur est membre. Contient l'identifiant en tant que membre, l'identifiant, le nom, l'identifiant externe et le type de l'organisation, et enfin le rôle du membre. Plusieurs actions permettent de changer le rôle du membre et de le désactiver de l'organisation."
}
}
},
"user-detail-personal-information": {
"actions": {
"copy-email": "Copy user e-mail address",
"copy-username": "Copy user id"
},
"authentication-method": {
"last-application-connection-date": "Last application connection date",
"last-logged-at": "Last logged at {date}",
"no-last-connection-date-info": "Has not been connected since 03/2025",
"should-change-password-status": "Temporary password :"
},
"cgu": {
"title": "CGU",
"validation": {
"domain": {
"pix-app": "Pix App Terms of Service validated:",
"pix-certif": "Pix Certif Terms of Service validated:",
"pix-orga": "Pix Orga Terms of Service validated:"
},
"status": {
"non-validated": "NO",
"validated": "YES",
"validated-with-date": "YES, on {formattedDate}"
}
}
},
"copied": "Copied!"
},
"user-overview": {
"global-last-login": "Global last login :",
"no-last-connection-date-info": "Has not been connected since 03/2025",
"sso": "SSO"
}
}
},
"pages": {
"administration": {
"certification": {
"certification-scoring-configuration": {
"form": {
"label": "Add certification score configuration (JSON)"
},
"title": "Mesh configuration for global score"
},
"competence-scoring-configuration": {
"form": {
"label": "Level configuration by skill added (JSON)"
},
"title": "Configuration of thresholds by skill"
},
"flash-algorithm-configuration": {
"form": {
"challengesBetweenSameCompetence": "Nombre de questions entre 2 questions de la même compétence",
"enablePassageByAllCompetences": "Forcer le passage par les 16 compétences",
"limitToOneQuestionPerTube": "Limiter à une question par sujet",
"maximumAssessmentLength": "Nombre de questions",
"variationPercent": "Capage de la capacité (en % )"
},
"title": "Configuration de l’algorithme de déroulé du test"
},
"sco-whitelist": {
"export": {
"button": "Export whitelist (CSV)",
"error": "Could not download SCO whitelist."
},
"import": {
"CERTIFICATION_INVALID_SCO_WHITELIST_ERROR": "An error has occurred. Please verify externalIds in csv.",
"button": "Import file as whitelist (CSV)",
"error": "Could not save SCO whitelist",
"success": "SCO whitelist saved."
},
"instructions": "Recommended: make an export, modify the export, and import the modified version.",
"title": "SCO whitelist"
},
"scoring-simulator": {
"actions": {
"submit": "Generate profile"
},
"errors": {
"both-input-empty": "Please fill at least only one field",
"both-input-filled": "Please fill only one of following fields “Global score in Pix“ or “Capacity”",
"score": "Please enter a Pix score between O and 896"
},
"labels": {
"capacity": "Capacity :",
"capacity-input": "Capacity",
"level": "Level :",
"score": "Score :",
"score-input": "Global score in Pix"
},
"table": {
"headers": {
"competence": "Competence",
"level": "Level"
},
"label": "Level by competence"
},
"title": "Scoring simulator"
}
},
"navigation": {
"access": {
"label": "Access"
},
"aria-label": "Administration section navigation",
"campaigns": {
"label": "Campaigns"
},
"certification": {
"label": "Certification"
},
"common": {
"label": "Common"
},
"deployment": {
"label": "Deployment"
},
"junior": {
"label": "Junior"
},
"organizations": {
"label": "Organizations"
}
}
},
"certification-centers": {
"information-view": {
"habilitations": {
"aria-label": {
"active": "Habilitated to {complementaryCertificationLabel}",
"inactive": "Not habilitated to {complementaryCertificationLabel}"
},
"title": "Habilitated to the following complementary certifications"
},
"pilot-features": {
"is-complementary-alone-pilot": {
"aria-label": {
"active": "is pilot Pix/Pix+ compatibility test phase",
"inactive": "not Pix/Pix+ compatibility test phase"
},
"label": "Pix/Pix+ compatibility test phase"
},
"title": "Pilot features"
}
},
"notifications": {
"failure": {
"update-certification-center-membership-role": "An error has occurred, the member's role has not been changed."
},
"success": {
"update-certification-center-membership-role": "The member's role has been modified."
}
}
},
"certifications": {
"actions": {
"load": {
"label": "Charger"
},
"publish-session": {
"label": "Publish the session",
"warning-information": "You cannot publish the session until it is finalized or there are still erroneous certifications."
},
"unpublish-session": "Unpublish the session"
},
"certification": {
"details": {
"title": "Details",
"v3": {
"abort-reason": {
"candidate": "Withdrawal: Lack of time or early departure",
"technical": "Technical problem"
},
"answer-status": {
"aband": "Abandoned",
"focused-out": "Focus out",
"ko": "KO",
"ok": "OK",
"timedout": "Time out",
"unimplemented": "Not implemented",
"validated-live-alert": "Report validated"
},
"assessment-result-status": {
"cancelled": "Cancelled",
"error": "Error",
"fraud": "Rejected for fraud",
"rejected": "Rejected",
"validated": "Validated"
},
"assessment-state": {
"ended-by-supervisor": "The invigilator",
"ended-due-to-finalization": "Session finalised"
},
"completion-date-tooltip": {
"ended-by-supervisor": "Date et heure à laquelle le test de certification a été terminé par le surveillant.",
"ended-due-to-finalization": "Date et heure d’affichage de la dernière question proposée au candidat."
},
"general-informations": {
"labels": {
"abort-reason": "Reason for withdrawal",
"created-at": "Created on",
"ended-at": "Completed on",
"ended-by": "Certification completed by",
"pix-score": "Score (in pix)"
},
"title": "Certification N°{certificationCourseId}"
},
"live-alert-modal": {
"title": {
"answer": "Response",
"report": "Report"
}
},
"more-informations": {
"labels": {
"numberof-aband-answers": "Number of questions abandoned",
"numberof-answered-questions": "Number of questions answered",
"numberof-ko-questions": "Number of questions KO",
"numberof-ok-questions": "Number of questions OK",
"numberof-validated-live-alerts": "Number of technical problems validated",
"total-numberof-questions": "Total number of questions"
},
"title": "Additional information"
},
"questions-list": {
"actions": {
"challenge-preview": {
"extra-information": "Link to test preview (opens in new window)",
"label": "Link to the test preview"
},
"display-answer": {
"extra-information": "Display candidate's answer",
"label": "Show candidate's answer"
},
"display-live-alert": {
"extra-information": "Show question description",
"label": "Show question description"
},
"informations": {
"extra-information": "Link to question information (Opens in new window)"
}
},
"caption": "Liste des questions passées sur une certification. Contient le numéro de la question, l'heure de la réponse donnée, son statut, la compétence concernée, le nom de l'acquis et le recId. Des boutons d'action permettent d'accéder à un aperçu de la question ou de lire la réponse donnée par le candidat.",
"labels": {
"actions": "Actions",
"answer-status": "Status",
"answered-at": "Response time",
"challenge-id": "RecID (see in Pix Editor)",
"competence": "Competence concerned",
"number": "N°",
"skill": "Name of the asset"
},
"title": "List of questions"
}
}
},
"neutralization": {
"table": {
"caption": "Liste des questions passées par le candidats. Contient l'identifiant et le RecId de l'épreuve associé. Une action permet de neutraliser ou de dé-neutraliser les questions."
}
},
"result": {
"table": {
"headers": {
"competence": "Competence",
"level": "Level",
"score": "Score"
},
"label": "Result details by competence"
}
},
"title": "Certif"
},
"modal-confirmation": {
"publish-session-information": "Souhaitez-vous publier la session ?",
"unpublish-session-information": "Souhaitez-vous dépublier la session ?"
},
"session-state": {
"not-published": "Session non publiée",
"published": "Session publiée"
},
"table": {
"caption": "Table listing the certifications for a session. It shows the unique identifier, the first and last name of the candidate, the status and score of the certification, the impacting alerts to be resolved, the presence of another past certification and the start and end dates of the session.",
"headers": {
"finished-certification-date": "Fin",
"first-name": "Prénom",
"id": "ID",
"last-name": "Nom",
"other-certification": "Autre certification",
"pix-score": "Score",
"started-certification-date": "Début",
"status": "Statut",
"unresolved-reports": "Signalements impactants non résolus"
}
},
"title": "Certifications"
},
"login": {
"api-error-messages": {
"login-no-permission": "You don't have the permission to connect."
},
"button": "Log in",
"fields": {
"email": {
"label": "Email address"
},
"password": {
"label": "Password"
}
},
"google": {
"label": "Log in via Google"
},
"title": "Access to this Pix Admin space is limited to administrators."
},
"organization": {
"navbar": {
"children": "Children organisations"
}
},
"organization-children": {
"empty-table": "No child organisation",
"notifications": {
"error": {
"unable-to-attach-already-attached-child-organization": "Child organization already linked",
"unable-to-attach-child-organization-to-another-child-organization": "Unable to attach a child organization to another child organization",
"unable-to-attach-child-organization-to-itself": "Unable to attach organization to itself",
"unable-to-attach-child-organization-without-same-type": "Check and select a child organization that matches the parent organization's type",
"unable-to-attach-parent-organization-as-child-organization": "Unable to attach a parent organization as child organization"
},
"success": {
"attach-child-organization": "The child organization has been linked to the parent organization"
}
},
"title": "Children organisations"
},
"organizations": {
"notifications": {
"errors": {
"payload-too-large": "The weight of the logo exceeds the authorised limit of {maxSizeInMegaBytes} MB. Please reduce the weight of the logo and try again."
}
}
},
"sessions": {
"informations": {
"assignment-confirmation-modal": "This session is already assigned to the user {fullName}.'<br/>'Do you still want to assign it to yourself?",
"unfinalization-confirmation-modal": "Are you sure you want to unfinalize this session ? Click on confirm to process."
},
"list": {
"all": "Toutes les sessions",
"filters": {
"certification-name": {
"aria-label": "Filtrer les sessions avec le nom d'un centre de certification"
},
"external-id": {
"aria-label": "Filtrer les sessions avec un identifiant externe"
},
"id": {
"aria-label": "Filtrer les sessions avec un id",
"label": "Identifiant"
},
"status": {
"aria-label": "Filtrer les sessions en sélectionnant un statut"
},
"type": {
"aria-label": "Filtrer les sessions en sélectionnant un type de centre de certification"
},
"version": {
"aria-label": "Filtrer les sessions par leur version",
"label": "Version"
}
},
"required-actions": {
"v2": "Sessions with required actions",
"v3": "V3 sessions with required actions"
},
"to-be-published": {
"v2": "Sessions to be published",
"v3": "V3 sessions to be published"
}
},
"table": {
"caption": "Tableau listant les sessions de certification. Il indique l'identifiant unique, le nom du centre de certification auquel il appartient, l'identifiant externe, la catégorie, le statut, les dates de passage, de finalisation et de publication et la version de la session.",
"headers": {
"certification-name": "Centre de certification",
"external-id": "Identifiant externe",
"finalization-session-date": "Date de finalisation",
"id": "ID",
"publication-session-date": "Date de publication",
"session-date": "Date de session",
"status": "Statut",
"type": "Catégorie",
"version": "Version de la session"
},
"required-actions": {
"caption": "Liste des sessions nécessitant un traitement par un interne Pix. Contient l'identifiant unique de la session, le nom du centre de certification, la date de finalisation et le nom de l'interne en charge du traitement.",
"checkbox-label": "Afficher uniquement mes sessions",
"headers": {
"assigned-officer-name": "Qui ?",
"certification-name": "Centre de certification",
"finalization-date": "Date de finalisation",
"id": "ID",
"session-date": "Date de session"
}
},
"to-be-published": {
"button-label": "Publier toutes les sessions",
"caption": "Liste des sessions pouvant être publiées. Contient l'identifiant unique de la session, le nom du centre de certification, la date de finalisation et un bouton pour publier la session. Ce bouton est disponible uniquement pour les internes Pix ayant les droits.",
"cell": {
"publish-button": {
"aria-label": "Publier la session numéro",
"label": "Publier"
}
},
"headers": {
"actions": "Actions",
"certification-name": "Centre de certification",
"finalization-date": "Date de finalisation",
"id": "ID",
"session-date": "Date de session"
},
"modals": {
"batch-publications": "Vous vous apprêtez à publier {length} session(s) de certification, souhaitez vous poursuivre ?",
"publication": "Souhaitez-vous publier la session ?"
}
}
},
"title": "Toutes les sessions"
},
"target-profiles": {
"copy": {
"button": {
"label": "Duplicate this target profile"
},
"modal": {
"label": "Confirming will duplicate the current target profiles with tubes, badges and stages.",
"title": "Confirm the target profile duplication ?"
},
"notifications": {
"success": "The target profile has been duplicated."
}
},
"filters": {
"aria-label": "Target profile filters",
"count": "{count, plural, =0 {0 target profile} =1 {1 target profile} other {{count} target profiles}}",
"search-by-id": {
"aria-label": "Filter target profiles by ID",
"label": "Identifier"
},
"search-by-internal-name": {
"aria-label": "Filter target profiles by internal name",
"label": "Internal name"
}
},
"resettable-checkbox": {
"label": "Allow resetting for evaluation-type campaigns when multiple submissions are enabled for the organisation"
},