Newer
Older

Florian Azizian
committed
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
{
"ABS": "Absent",
"ADD": "Add",
"ARPaper": "Paper acknowledgement of receipt",
"ARelectronic": "Electronic acknowledgement of receipt",
"ARsimple": "AR simple",
"ARsva": "AR SVA",
"ARsvr": "AR SVR",
"DEL": "Delete",
"DIR": "Manager",
"DLP": "Permanent delegation",
"ERROR": "Error",
"EXE": "Community representative",
"FON": "Agent",
"IdMaarch2Maarch": "MAARCH2MAARCH identifier",
"LOGIN": "Login",
"LOGOUT": "Logout",
"NOTE_version": "Annotated version",
"NotificationDiffusionType": "Diffusion type",
"NotificationEnabled": "Enabled",
"NotificationEvent": "Event",
"NotificationScheduleInfo": "As a reminder,\n\ncrontab format : [minute][hour][day of month][month][day of week]",
"NotificationToEnable": "Enable",
"PER": "Natural person (personnel)",
"PRE": "Back from absence",
"RESETPSW": "Password reset",
"SIGN": "Sign document",
"SIGN_version": "Original version",
"SPH": "Superior",
"UNSIGN": "Un-sign document",
"UP": "Update",
"VIEW": "View",
"aboutUs": "About Maarch Courrier",
"abs": "Absent",
"absOff": "Absence deactivated",
"absOn": "Absence activated",
"accordingTemplateParameters": "According to the parameters defined in the model",
"accountAdded": "Account added",
"accountDeleted": "Account deleted",
"accountLinked": "Account linked",
"accountUnlinked": "Account unlinked",
"acknowledgementReceipt": "Acknowledgement of receipt",
"acknowledgementReceiptType": "Type of acknowledgement of receipt",
"acknowledgementReceipts": "Acknowledgement of receipts",
"acknowledgementSendDate": "Acknowledgement send date",
"action": "Action",
"actionAdded": "Action added",
"actionAvailable": "Available actions",
"actionCarriedOut": "System action",
"actionChosen": "Action(s) chosen",
"actionCreation": "Action creation",
"actionDeleted": "Action deleted",
"actionDone": "Action done",
"actionHistory": "Log action in history",
"actionHistoryDesc": "Log this action in the mail history. It is strongly recommended to check this option",
"actionMassForbidden": "This action cannot be used in mass",
"actionModification": "Action modification",
"actionName": "Action name",
"actionNotExist": "This action does not exist",
"actionPage": "Action result page",
"actionParameters": "Action parameters",
"actionUpdated": "Action updated",
"actions": "Actions",
"actionsAdmin": "Create or update actions",
"actionsAlt": "Actions",
"actionsGroupBasketUpdated": "Actions settings updated",
"actionsHistory": "Actions history",
"actionsInfo": "The available actions will be the ones with the parameter <b>System action<\/b> set as : \"Simple confirmation\", \"No confirmation\", \"Send for visa\" and \"Close a mail\"",
"activateAbsence": "Activate absence",
"activateMyAbs": "Activate my absence",
"activateNotification": "Activate notification",
"activationNotificationSend": "E-mail activation sent",
"active": "Active",
"activeCron": "Active task(s)",
"actives": "Active(s)",
"add": "Add",
"addAll": "Add all",
"addAllData": "Add all available data",
"addAttachment": "Add an attachment",
"addContacts": "Add contacts",
"addCustomUnit": "Add a custom unit",
"addDoctype": "Add a document type",
"addFirstLevel": "Add a first level",
"addFolder": "New folder",
"addLinks": "Add\/remove links",
"notEnoughAlfrescoInformations": "User primary entity has not enough alfresco informations",
"missingAlfrescoConfig": "Alfresco configuration is not enabled or incomplete",
"alreadySentToAlfresco": "Document already sent to Alfresco",
"addNewAccount": "Add a new account",
"addNote": "Add a note",
"addNoteToNumericPackage": "Add a note to mail to transmit",
"addOpinion": "Give your opinion",
"addOpinionReason": "Please fill the opinion reason",
"addPerson": "Add a person",
"addPrivateIndexingModelMsg": "This model will be <b>private<\/b> and will be a copy of the model",
"addPrivateIndexingModelMsg2": "with the values <b>currently filled<\/b>.",
"addRootFolder": "New root folder",
"addSecondLevel": "Add second level",
"addStatus": "Add a status",
"addSubFolder": "New sub-folder",
"addUser": "Add a user",
"addUserOrEntity": "Add a user \/ an entity",
"addUsers": "Add users",
"addValue": "Add a value",
"addVisaSignUser": "Add an approver or a signatory",
"additionalRoles": "Additional Role(s)",
"additionals": "Additional",
"address": "Address",
"adminBasketsDesc": "Define the baskets content and associate them to users groups. List available actions in the basket for a group. Set the display format for each group",
"adminDocumentTypesDesc": "Define the internal layout of document types (file\/ sub-file\/ document type)",
"adminEntitiesDesc": "Manage your organization structure (poles,services, etc.). Also manage diffusion models and visa workflow linked to entities.",
"adminGroupsDesc": "Add, suspend, or update groups. Add privileges or access to resources.",
"adminParamsUsers": "Settings for users administration",
"adminTagsDesc": "Add, delete, update, or merge tags",
"adminUsersDesc": "Add, suspend or modify users profiles.",
"adminWorkflowModelsDesc": "Manage opinion and visa workflow models, which can be used in mails",
"administration": "Administration",
"administrationServices": "Administration privileges",
"admissionDate": "Admission date",
"adrPriority": "Sequence priority",
"afterClickingSendLinkChangePassword": "After clicking on <b>Send<\/b>, you will receive an email containing a link to change your password. This link will be active for <b>1 hour<\/b>.",
"alignCenter": "Center",
"alignLeft": "Left",
"alignRight": "Right",
"all": "All",
"allActions": "All actions",
"allAttachments": "All attachments",
"allEntities": "All entities",
"allRoles": "All roles",
"allowedExtensions": "Allowed extensions",
"alreadyExist": "Identifier already exists",
"alt_identifier": "Chrono number",
"appName": "Application name",
"appUpToDate": "Your application is up to date",
"application": "Application",
"approvedUserDate": "Approved",
"april": "April",
"aprilShort": "Apr.",
"arAlreadyGenerated": "Acknowledgement receipt generated but not sent",
"arAlreadySend": "Acknowledgement receipt already sent",
"arGenWithModelMessage": "The summary sheets will be generated with the fields defined in the resource's indexing model.",
"archival": "Archival",
"archivalAgency": "Archival agency",
"archivalAgreement": "Archival agreement",
"arrivalDate": "Arrival date",
"ascOrder": "Ascending order",
"ascending": "Ascending",
"askOpinion": "Several users want your opinion",
"askOpinionUser": "ask you for your opinion",
"askRedirectBasketBeforeAbsence": "Do you want to redirect your baskets before being absent ?",
"assignBy": "Assigned by",
"associatedStatus": "Associated status",
"at": "At",
"atRange": "at",
"attachAttachment": "Link an attachment",
"attachItemToNumericPackage": "Attach an element to sending mail",
"attachMainDocument": "Link main document",
"attachNote": "Link a note",
"attachSummarySheet": "Attach the summary sheet",
"attachment": "Attachment",
"attachmentAdded": "Attachment added",
"attachmentCreation": "Attachment creation",
"attachmentDeleted": "Attachment deleted",
"attachmentGenerated": "Attachment generated",
"attachmentShort": "Attachment",
"attachmentSignature": "Signature of attachments in signature book",
"attachmentType": "Attachment type",
"attachmentUpdated": "Attachment updated",
"attachment_A_TRA": "To process",
"attachment_FRZ": "Frozen",
"attachment_SEND_MASS": "Send to mailing",
"attachment_SIGN": "Signed",
"attachment_TRA": "Processed",
"attachments": "Attachments",
"attachmentsNumericPackage": "Attachments of sent mail",
"attachmentsNumericPackageToSend": "Attachments of sending mail",
"august": "August",
"augustShort": "Aug.",
"authorize": "Authorize",
"authorizedEntities": "Authorized entities destination",
"autoAR": "Automatic",
"autoLogoutAbsence": "You are going to be automatically disconnected after having defined your basket's redirection",
"autocompleteInfo": "Your search must contain at least <b>3 characters<\/b>",
"autocompleteInput": "Autocomplete input",
"autocompletionDisplayable": "Displayable in autocompletion",
"autocompletionSearchable": "Searchable in autocompletion",
"avaiblableCustomFieldsTypes": "Available custom type(s)",
"available": "available",
"availableContacts": "Available contact",
"availableCustomFields": "Available custom field(s)",
"availableDatas": "Available data",
"availableFields": "Available field(s)",
"availableGroups": "Available groups",
"availableIndexingActions": "Available actions when indexing",
"availableMinorVersions": "Available versions",
"availableStatuses": "Available statuses",
"availableUsers": "Available users",
"availableValues": "Available values",
"avis": "Opinion workflow",
"avisAnswer": "Give oneself's opinion",
"avisAnswerDesc": "Allow this group to appear in the counsellor's list (opinion workflow)",
"avisSent": "Opinion given",
"avisUserAsk": "for opinion",
"avisUserState": "opinion",
"avisWorkflowDeleted": "Opinion workflow deleted",
"avisWorkflowUpdated": "Opinion workflow updated",
"back": "Back",
"backBasket": "Back to basket",
"backHome": "Back to home",
"badActionParam": "Wrong action setting",
"badEmailsFormat": "Some email addresses are not correct",
"badFormat": "Bad format",
"banAutocompleteInput": "Autocomplete BAN input",
"barcode": "Barcode",
"basket": "Basket",
"basketAdded": "Basket added",
"basketCreation": "Basket creation",
"basketDeleted": "Basket deleted",
"basketHelpDesc": "Drag and drop baskets to change the order",
"basketModification": "Basket modification",
"basketNotFound": "Basket not found",
"basketNotification": "Toggle notification for this basket",
"basketUpdated": "Basket updated",
"baskets": "Baskets",
"basketsAssigned": "Assigned basket(s)",
"basketsAssignedShort": "Assigned basket(s)",
"basketsColor": "Baskets color",
"basketsColorAdmin": "Manage your baskets color",
"basketsOrder": "Manage baskets order",
"basketsRedirected": "Redirected baskets",
"basketsUpdated": "Basket(s) updated",
"beginSendTest": "Begin send test",
"belowAllMyEntities": "Below all my entities",
"belowMyPrimaryEntity": "Below my primary entity",
"bothAR": "Automatic and manual",
"browsing": "Browsing",
"by": "By",
"calDays": "calendar days",
"canBeModified": "Index modification",
"canBeSearched": "Searchable",
"canManageFolder": "Can manage this folder",
"canNotDeleteIndexingModel": "This indexing model cannot be deleted because at least one mail uses it",
"canNotMakeAction": "Impossible to do action on the following mails",
"canNotSendAr": "acknowledgement of receipts impossible to send",
"canNotUpdateApplication": "Some files have been modified on the server. Cannot update the application",
"canUpdateData": "Can update resource data",
"cancel": "Cancel",
"cannotCloseMails": "Some mails cannot be closed because at least one of the mandatory fields are empty",
"cannotCloseThisMail": "This mail cannot be closed because at least one of the mandatory fields are empty",
"cannotMergeTags": "This tag has a parent or children : impossible to merge tags",
"cantMoveDoctype": "The document type can only be moved in a sub-folder",
"cantMoveFirstLevel": "Sub-folder can only be moved in folder",
"categories": "Categories",
"category_id": "Category",
"changeMyPassword": "Change my password",
"changePassword": "Change password",
"changePasswordInfo": "you must change your password",
"chars": "character(s)",
"checkEmptyFields": "Required fields to make this action",
"checkOnlyofficeServer": "Establish contact with the Onlyoffice server",
"checkSendmail": "Check mail server status",
"checkboxInput": "Checkbox input",
"choice": "Choice",
"chooseAllowedGroups": "Choose allowed groups",
"chooseAnotherEntityUser": "Choose another person from the entity",
"chooseBAN": "Choose an address",
"chooseBasket": "Choose a basket",
"chooseCategoryAssociation": "Choose one or some associated categories",
"chooseColor": "Choose a color",
"chooseContactType": "Choose a contact type",
"chooseDate": "Choose a date",
"chooseDefaultAction": "Choose main action",
"chooseEntity": "Choose a entity",
"chooseEntityAssociationModel": "Choose entities who will be able to use this model",
"chooseFile": "Choose a file",
"chooseGroup": "Choose a group",
"chooseIndexationProfil": "Choose an indexation group",
"chooseModel": "Choose a model",
"chooseNewDest": "is <b>recipient<\/b> of following diffusion list models, please choose a <b>replacement<\/b> user",
"chooseNewDestUser": "is <b>recipient<\/b> of mail being processed, please select a <b>replacement user<\/b>",
"chooseRedirectGroup": "Choose another group",
"chooseValue": "Choose a value",
"chosenDatas": "Chosen data",
"chosenModel": "Chosen model",
"chrono": "Chrono",
"chronoNumber": "Chrono number",
"chronoNumberShort": "Chrono Num",
"circuitNotStarted": "The workflow has not yet started",
"city": "City",
"classify": "Classify",
"classifyIn": "Classify in ...",
"classifyInFolder": "Classify this mail in a folder",
"classifyQuestion": "Do you want to classify",
"classifying": "Classifying",
"clause": "Clause",
"clauseGroup": "Group's document perimeter",
"click": "Click",
"clickOn": "Click on",
"close": "Close",
"closeEditor": "Close the editor",
"closeFullscreen": "Disable fullscreen",
"closeMailAddNoteMandatory": "Please enter a note below, or add an attachment to the mails.",
"closeSidePanel": "Close side panel",
"closed": "Closed",
"closingDate": "Closing date",
"collection": "Collection",
"color": "Color",
"comment": "Comment",
"comments": "Comments",
"communicationMean": "Communication mean",
"communicationMeanDesc": "Link a contact with another Maarch instance",
"community": "Community",
"complementaryFields": "Complementary fields",
"confidential": "Confidential",
"confidentiality": "Confidentiality",
"confidentialityAndSecurity": "Confidentiality and security",
"configAvisWorkflow": "Opinion workflow configuration",
"configAvisWorkflowDesc": "Allows to set up the mail opinion workflow",
"configAvisWorkflowInDetail": "Opinion workflow configuration from the detailed page",
"configAvisWorkflowInDetailDesc": "Allows to define the opinion workflow directly from the mail detailed page",
"configVisaWorkflow": "Visa workflow configuration",
"configVisaWorkflowDesc": "Allows to set up the mail visa workflow",
"configVisaWorkflowInDetail": "Visa workflow configuration from detailed page",
"configVisaWorkflowInDetailDesc": "Allows to define the visa workflow directly from the mail detailed page",
"configurationType": "Configuration type",
"configurationUpdated": "Configuration updated",
"confirm": "Confirm",
"confirmAction": "Do you really want to do this action ?",
"confirmCloseEditor": "Do you really want to close the editor ? All modifications will be canceled",
"confirmDeleteAccount": "Do you want to delete this account ?",
"confirmDeleteMailSignature": "Do you really want to delete the mail signature ?",
"confirmDeleteSignature": "Do you really want to delete the signature ?",
"confirmDuplicate": "Do you really want to duplicate this template ?",
"confirmRemoveNote": "Note deletion",
"confirmSwitchInPlanText": "Text formatting will be removed. Do you want to continue ?",
"confirmToBeAbsent": "Do you really want to be absent ? You will be automatically logged out",
"connectionFailed": "Connection to server failed, please try later.",
"conservation": "Retention",
"contact": "Contact",
"contactAdded": "Contact(s) added",
"contactCreation": "Contact creation",
"contactDeleted": "Contact deleted",
"contactDeletedFromGroup": "Contact was removed from the group",
"contactDetails": "Details",
"contactDisabled": "Contact disabled",
"contactEnabled": "Contact enabled",
"contactFilledTo": "Contact filled at",
"contactGroupCreate": "Create contacts group",
"contactGroupCreation": "Contacts group creation",
"contactGroupList": "Contacts group list",
"contactInfo": "Contact card",
"contactLinkedToMails": "Contact linked to mails",
"contactModification": "Contact modification",
"contactReplacement": "Replacement contact",
"contactUpdated": "Contact updated",
"contact_contact": "Contact",
"contact_contactGroup": "Contacts group",
"contact_corporate": "Legal contact",
"contact_entity": "Entity",
"contact_internal": "Internal user",
"contact_physical": "Natural contact",
"contact_third": "Contact third",
"contact_user": "User",
"contacts": "Contacts",
"contactsAdmin": "Contacts administration",
"contactsAlt": "Contact(s)",
"contactsFillingAdministration": "Contact information filling",
"contactsFillingCriteria": "Filling criteria",
"contactsFillingRate": "Filling rate",
"contactsFillingStep1": "First step",
"contactsFillingStep2": "Second step",
"contactsFillingStep3": "Last step",
"contactsFillingStr": "filled",
"contactsGroupAdded": "Contacts group added",
"contactsGroupDeleted": "Contacts group deleted",
"contactsGroupDesc": "If the group is public, all the users will be able to use it. Otherwise it is private, and only the creator can use it",
"contactsGroupModification": "Contacts group modification",
"contactsGroupUpdated": "Contacts group updated",
"contactsGroups": "Contacts groups",
"contactsGroupsAlt": "Contact(s) group(s)",
"contactsList": "Contacts list",
"contactsParameters": "Contacts settings",
"contactsParameters_addressAdditional1": "Building",
"contactsParameters_addressAdditional2": "Additional Line",
"contactsParameters_addressCountry": "Country",
"contactsParameters_addressNumber": "Street number",
"contactsParameters_addressPostcode": "Post code",
"contactsParameters_addressStreet": "Street",
"contactsParameters_addressTown": "City",
"contactsParameters_civility": "Civility",
"contactsParameters_company": "Company",
"contactsParameters_department": "Department",
"contactsParameters_email": "Email",
"contactsParameters_firstname": "First name",
"contactsParameters_function": "Function",
"contactsParameters_lastname": "Last name",
"contactsParameters_phone": "Phone",
"contactsReassign": "Contacts reassign",
"content": "Content",
"contentHtmlTemplate": "Html template content",
"contentTxtTemplate": "Text template content",
"content_management": "Resource revision",
"contextParaph": "Context",
"convertingFile": "Converting file",
"copieShort": "Cc",
"copyUsersEntities": "Users \/ Entities in copy",
"country": "Country",
"createAtt": "Create an attachment",
"createContact": "Create a contact",
"createFolder": "Create a folder",
"createNewEntity": "Create new entity",
"createNewVersion": "Create a new version",
"createPrivateIndexingModel": "Create an indexing model with current data",
"createScriptNotification": "Create the script",
"createUserInMaarchParapheur": "Create in Maarch Parapheur",
"created": "Created",
"createdAlt": "Created",
"createdBy": "Created by",
"createdOn": "Created on",
"creationDate": "Creation date",
"creation_date": "Creation date",
"criteria": "Criteria",
"criteriaContactField": "Sender \/ Recipient",
"criteriaContactFieldDesc": "Search the company, the last name, the first name or a part of these elements",
"criteriaResourceField": "Subject \/ Chrono number",
"criteriaResourceFieldDesc": "Search a subject \/ chrono or a part of these elements",
"criteriaSearch": "Search criteria",
"currentApplicationVersion": "Current application version",
"currentFilters": "Current filters",
"currentIndexingMail": "the mail currently being indexed",
"currentPsw": "Current password",
"currentVersion": "Current version",
"customField": "custom field",
"customFieldAdded": "Custom field added",
"customFieldAlreadyExists": "A custom field with this namealready exists",
"customFieldDeleted": "Custom field deleted",
"customFieldUpdated": "Custom field updated",
"customFields": "custom field(s)",
"customFieldsAdmin": "Custom fields",
"customFieldsTypesAvailable": "Available custom fields types",
"dashboard": "Dashboard",
"dataOfMonth": "Month data",
"dataUpdated": "Data updated",
"databaseColumn": "DB column",
"datasToExport": "Data to export",
"date": "Date",
"dateAgo": "Since",
"dateInput": "Date input",
"dateTo": "The",
"day": "Day",
"dayOfMonth": "Day of month",
"dayS": "Day(s)",
"days": "day(s)",
"december": "December",
"decemberShort": "Dec.",
"default": "default",
"defaultAction": "Default action",
"defaultModel": "Default model",
"defaultOrder": "Default order",
"defaultSort": "Default sort",
"defaultTemplate": "Template nature",
"defaultValue": "Default value",
"delAttachment": "Delete this attachment",
"delay1": "Reminder period 1 before term (in days)",
"delay2": "Reminder period 2 after term (in days)",
"delete": "Delete",
"deleteAll": "Delete all",
"deleteAssignation": "Delete assignation",
"deleteAtt": "Delete the attachment",
"deleteContactInformations": "Links between contact and resources, attachments or acknowledgement receipts will be deleted.",
"deleteContactwithtoutReassign": "Delete contact without reassigning it",
"deleteDocumentInDetail": "Delete a mail in detail page",
"deleteMsg": "Do you really want to delete this element ?",
"deleteRedirection": "Delete redirection",
"deleteResource": "Delete document",
"deleteSignedVersion": "Delete signed version",
"deleteUnit": "Delete unit",
"delimiter": "Delimiter",
"delivery": "Delivery",
"denomination": "Denomination",
"department": "Senders' department",
"departureDate": "Departure date",
"desactivateAbsence": "Deactivate absence",
"descOrder": "Descending order",
"descending": "Descending",
"description": "Description",
"destUserSetToDefault": "Assignee will be the assignee of the initiator entity diffusion list",
"dest_user": "Assignee",
"destination": "Entity destination",
"destinationChangingInfo": "This mail will be reassigned to this entity",
"destinationChangingInfoMass": "The mails coming from an entity outside of",
"destinationChangingInfoMass2": "will be redirected to the entity",
"destinationEntity": "Destination entity name",
"destinationEntityType": "Destination entity type",
"destruction": "Destruction",
"detailDoc": "Detail page",
"detailLink": "Link to detail page",
"details": "Details",
"diffListPrivilegeMsgDetails": "In <b>details page<\/b>, update users in roles: ",
"diffListPrivilegeMsgIndexing": "In <b>indexing page<\/b>, update users in roles: ",
"diffListPrivilegeMsgProcess": "In <b>process page<\/b>, update users in roles: ",
"diffNoDestmsg": "No <b>assignee<\/b> defined, you <b>cannot<\/b> update the diffusion list.",
"diffusionList": "Diffusion list",
"diffusionListUpdated": "Diffusion list updated",
"diffusionModelAdded": "Workflow model added",
"diffusionModelCreation": "Workflow model creation",
"diffusionModelDeleted": "Diffusion model deleted",
"diffusionModelModification": "Diffusion model modification",
"diffusionModelUpdated": "Diffusion model updated",
"diffusionModels": "Diffusion models",
"diffusionType": "Diffusion type",
"disable": "Disable",
"disableBasket": "Disable basket",
"disableIndex": "Disable mail indexing",
"disableMailing": "Disable mailing",
"disabledContactsFilling": "Contacts filling enabled",
"disabledMailevaConfig": "Maileva configuration is disabled",
"display": "display",
"displayAtt": "Display attachments list",
"displayProcessLimitRes": "Display documents with passed process limit",
"displayWebserviceAccount": "Display webservice accounts",
"dlAttachment": "Download the attachment",
"doNotModifyUnlessExpert": "Do not edit this section unless you know what you are doing. Incorrect settings can cause the application to malfunction !",
"doNotReply": "Do not reply",
"doNothingRedirect": "Unlink entity from the user's profile",
"doNothingRedirectInformations": "The diffusion lists from mails and entity's model will not be modified",
"doShippingParameter": "Please set up a template in <b>Administration<\/b> > <b>Shippings Maileva templates<\/b>",
"docDate": "Document date",
"docserverAdded": "Document server added",
"docserverCreation": "Document server creation",
"docserverDeleted": "Doctype deleted",
"docserverDoesNotExists": "Document server does not exists",
"docserverType": "Document server type",
"docserverUpdated": "Document server updated",
"docserverdeleteWarning": "This document server contains files, these files will not be available in the application.\n\nDo you want to continue ?",
"docservers": "Document servers",
"docserversAdmin": "Add, suspend or update document servers. Put the document server by kind of affiliations and define their primary group",
"doctype": "Document type",
"doctypes": "Document types",
"documentEditor": "Document editor",
"canNotEditImportedDocumentWhenJava": "You can not edit imported document with Java applet",
"documentEditor_java": "Open your default document editor in a new window",
"documentEditor_onlyoffice": "Open OnlyOffice directly inside Maarch Courrier",
"documentOutOfPerimeter": "This document is out of your perimeter",
"documentsOutOfPerimeter": "Some documents are out of your perimeter",
"documentSignedMsg": "The document has been signed, you cannot edit this document",
"documentTypeAdded": "Document type added",
"documentTypeDeleted": "Document type deleted",
"documentTypeReplacement": "Document type replacement",
"documentTypeUpdated": "Document type updated",
"documentTypes": "Document types",
"documentTypesAlt": "Document(s) types",
"documentUnsigned": "This document has been unsigned",
"documentation": "Documentation",
"documents": "document(s)",
"done": "done",
"downloadConvertedFile": "Download converted file",
"downloadNumericPackage": "Download the numeric package",
"downloadOriginalFile": "Download the original file",
"draft": "Draft",
"draftSaved": "Draft saved",
"draftUpdated": "Draft updated",
"dragAndDrop": "Drag and drop",
"duplicate": "Duplicate",
"durationCurrentUse": "Current usage duration (in month)",
"eachDay": "Each day",
"eachHour": "Each hour",
"eachMinute": "Each minute",
"eachMonth": "Each month",
"editAcknowledgementReceipt": "Edit the acknowledgement receipt",
"editAttachment": "Edit the attachment",
"editDocument": "Edit the document",
"editInProgress": "Edit in progress",
"editModelFirst": "Please edit the model first",
"editNote": "Edit note",
"editResource": "Edit a document",
"editResourceDesc": "Edit a document. Il will also depend on status setting (Index modification)",
"editingAttachmentInterrupted": "Editing of the attachment has been interrupted. <br\/><sub>Please re-edit it.<\/sub>",
"editingDocumentMsg": "The document is being edited, do you want to continue ?",
"edition": "Edition",
"editionAttachmentConfirmFirst": "All merge variables will be replaced taking into account what you have entered in the form on the left.",
"editionAttachmentConfirmSecond": "Only <b> chrono number <\/b> ([res_letterbox.alt_identifier]) will be replaced after mail creation",
"editionAttachmentConfirmThird": "Only <b> chrono number <\/b> ([res_letterbox.alt_identifier]) and <b>barcode<\/b> will be replaced after attachment creation",
"editorOption": "Editor option",
"editorOptionAdmin": "Manage editor option",
"electronicSignature": "Electronic signature",
"electronicTemplate": "Electronic template",
"elements": "element(s)",
"email": "Email",
"emailCannotSent": "Error while sending email",
"emailDeleted": "Email deleted",
"emailModel": "Email model",
"emailSendFailed": "Failed to send email",
"emailSendInProgress": "Sending email...",
"emailSendSuccess": "Email sent",
"emailSendTest": "Email send test",
"emailSent": "Email sent",
"emailServerParam": "Mail server",
"emailServerParamDesc": "Connect your mail server with Maarch Courrier in order to send emails",
"emailSignatureAdded": "Email signature added",
"emailSignatureDeleted": "Email signature deleted",
"emailSignatureUpdated": "Email signature updated",
"emailSignatures": "Email signatures",
"emails": "Emails",
"emptyBasket": "Empty basket",
"emptySubject": "Empty subject",
"enable": "Enable",
"enableAuth": "Activate authentication",
"enableBasket": "Enable basket",
"enableGroupMsg": "This group could access to all the app features.",
"enableIndex": "Enable mail indexation",
"enableMailing": "Enable mailing",
"enabledContactsFilling": "Contacts filling disabled",
"endWorkflow": "You will end the workflow",
"endedCircuit": "Workflow ended",
"enterLogin": "Enter your login",
"enterValue": "You must enter a value",
"entities": "Entities",
"entitiesSeparator": "Print separators",
"entityAdded": "Entity added",
"entityDeleted": "Entity deleted",
"entityDeletedButAnnuaryUnreachable": "Entity deleted but annuary is unreachable",
"entityFullName": "Full name",
"entityReplacement": "Entity replacement",
"entityTooglePrimary": "Set as primary entity",
"entityTreeInfo": "Click on entity tree to access entity information",
"entityTreeInfoCreation": "Click on entity tree to link an entity to the new entity",
"entityTreeInfoSeparator": "Click on entity tree in order to generate the separator",
"entityType": "Entity type",
"entityUpdated": "Entity updated",
"entityWithoutParentMessage": "If you're not a member of this entity, you will automatically become part of it.",
"entity_label": "Entity",
"entries": "entries",
"eraseAll": "Erase all",
"eraseAllFilters": "Erase all filters",
"eraseValue": "Erase value",
"errorOccured": "An error occurred",
"errorOnlyoffice1": "Cannot launch onlyoffice, you are using a local address",
"errorOnlyoffice2": "Cannot launch onlyoffice. Check if the onlyoffice server is available",
"event": "Event",
"eventList": "Open page",
"eventProcessDoc": "Process document",
"eventViewDoc": "View document",
"eventVisaMail": "Electronic signature book",
"expectedReturnDate": "Expected return date",
"exportDatas": "Export data",
"export_seda": "Seda export",
"externalComponents": "External components",
"externalVisaWorkflow": "Maarch Parapheur visa workflow",
"february": "February",
"februaryShort": "Feb.",
"fewSeconds": "few seconds",
"field": "Field",
"fieldNature": "Field nature",
"fieldNotExist": "Field does not exist",
"fieldType": "Field type",
"file": "File",
"fileAlreadySentToSignatureBook": "File already send to signature book",
"fileDoesNotExists": "File does not exists",
"filterBy": "Filter by",
"filteredFrom": "filtered on",
"filters": "Filters",
"fingerprint": "Digital fingerprint",
"fingerprintsDoNotMatch": "Fingerprints do not match",
"firstLevelAdded": "Folder added",
"firstLevelAttached": "Attach to folder",
"firstLevelDeleted": "Folder deleted",
"firstLevelDoctype": "Folder",
"firstLevelUpdated": "Folder updated",
"firstSummarySheetsGenerated": "Only the first 500 summary sheets will be generated.",
"firstname": "First name",
"folder": "Folder",
"folderAdded": "Folder added",
"folderDeleted": "Folder deleted",
"folderInformations": "Folder Information",
"folderName": "Folder name",
"folderPinned": "Folder pinned",
"folderStatus": "Folder status",
"folderTypeList": "Folder types list",
"folderUnpinned": "Folder unpinned",
"folderUpdated": "Folder updated",
"folders": "Folders",
"foldersTree": "Folders tree",
"followedMail": "Followed mail(s)",
"fontBig": "Big",
"fontBold": "Bold",
"for": "for",
"forCapital": "For",
"format": "Format",
"found": "found",
"freeNote": "Free note",
"friday": "Friday",
"from": "From",
"fromRange": "From",
"functionnalities": "Features",
"ged_doc": "GED Document",
"genSummarySheets": "Generate Summary sheets",
"generateARMode": "Acknowledgement receipt mode allowed",
"generateAndDownload": "Generate and download",
"generateAndDownloadPrintedFolder": "Generate the printed folder",
"generateSeparators": "Generate separators for each attachments and acknowledgement receipt",
"generation": "Generating...",
"generic": "Generic",
"getAssignee": "User destination (entity destination)",
"getAssigneeSample": "Barbara BAIN (Finance division)",
"getCategory": "Category",
"getCreationAndProcessLimitDates": "Creation date - Process limit date",
"getCreationAndProcessLimitDatesSample": "Jan. 1st - <i class=\"fa fa-stopwatch\"><\/i> <b color=\"warn\">3 day(s)<\/b>",
"getDoctype": "Mail type",
"getDoctypeSample": "Reclamation",
"getFolders": "Folders (fixed postion)",
"getFoldersSample": "Litigation",
"getModificationDate": "Modification date",
"getOpinionLimitDate": "Opinion limit date",
"getParallelOpinionsNumber": "Number of opinions sent",
"getParallelOpinionsNumberSample": "<b>3<\/b> opinion(s) sent",
"getPriority": "Priority",
"getPrioritySample": "Urgent",
"getRecipients": "Recipient",
"getSenders": "Sender",
"getSignatories": "Signatories",
"getVisaWorkflow": "Visa workflow",
"goToAdminParams": "Access to administration settings",
"goToBasket": "Go to basket...",
"goToFolder": "Go to folder",
"groupAdded": "Group added",
"groupCreation": "Group creation",
"groupDeleted": "Group deleted",
"groupModification": "Update group",
"groupRedirect": "Group redirection",
"groupServicesUpdated": "Privileges updated",
"groupUpdated": "Group updated",
"groupeCompany": ", a Xelians group company",
"grouping": "Grouping",
"groups": "Groups",
"handwrittenSignature": "Handwritten signature",
"hasInterruptedWorkflow": "Has interrupted the workflow",
"hasNoAttachmentsNotes": "The following mails have no notes and no attachments",
"hasNoEntity": "The following mails do not have an initiator entity",
"hello": "Hello",
"here": "here",
"hideFoldersTree": "Hide tree",
"history": "History",
"historyBatch": "Batch history",
"historyBatchAdmin": "Read batch history",
"historyDisabled": "History disabled",
"home": "Home",
"homePage": "Home page",
"host": "Host",
"hour": "Hour",
"hours": "hours",
"html": "HTML",
"id": "ID",
"imgRelated": "Associated image",
"immediatelyBelowMyPrimaryEntity": "Immediately below my primary entity",
"immediatelySuperiorMyPrimaryEntity": "Immediately above to my primary entity",
"importFile": "Import a file",
"in": "in",
"inShipping": "In shipping",
"inShipping_doc": "Put the main document in Maileva shipping",
"inSignatureBook": "In signature book",
"inSignatureBook_doc": "Put the main document in signature book",
"inactive": "Inactive",
"inactives": "Inactive(s)",
"incoming": "Incoming",
"incompleteAddressForPostal": "Incomplete address for postal mailing",
"indexDisabled": "Mail indexation disabled",
"indexEnabled": "Mail indexation enabled",
"indexation": "Mail indexation",
"indexing": "Indexing",
"indexingFile": "Indexation",
"indexingForm": "Indexing form",
"indexingModel": "Indexing model",
"indexingModelAdded": "Indexing model added",
"indexingModelCreation": "Indexing model creation",
"indexingModelDeleted": "Indexing model deleted",
"indexingModelDisabled": "Indexing model disabled",
"indexingModelEnabled": "Indexing model enabled",
"indexingModelModification": "Indexing model modification",
"indexingModelUpdated": "Indexing model updated",
"indexingModels": "Indexing models",
"indexing_ged_doc": "GED",
"indexing_incoming": "incoming",
"indexing_internal": "internal",
"indexing_outgoing": "outgoing",
"infoMailevaAccount": "Indicate here your username and the INITIAL password communicated by Maileva when opening your account",
"information": "Information",
"informations": "Information",
"infosActions": "You must choose at least one status and \/ or a script.",
"initials": "Initials",
"initiator": "Initiator",
"initiatorEntity": "Initiator entity name",
"initiatorEntityAlt": "Initiator entity",
"insufficientPrivilege": "Not enough privilege",
"integer": "Integer",
"integerInput": "Integer input",
"internal": "Internal",
"interruptVisaWorkflow": "The following users will not be able to approve or sign the mail",
"interrupted": "Interrupted",
"invalidToken": "Token has expired or does not exist",
"invisibleCopyShort": "Cci",
"ip": "IP address",
"isAssociatedTo": "is associated to",
"isAvailable": "is available",
"isCopyTo": "is in copy to",
"isDestTo": "is in destination to",
"isFolderStatus": "Folder status",
"isLinkedTo": "Is linked to",
"isMulticontact": "Multi-contact",
"isNotAvailable": "is not available",
"isSearchBasket": "Search basket",
"isSearchBasketInfo": "Basket only used in advanced search. Not visible in home page.",
"isSytemAction": "System action",
"itemRemovedFromAvisTemplate": "The following users have been removed because they cannot give an opinion",
"itemRemovedFromVisaTemplate": "The following users have been removed because they cannot approve or sign",
"january": "January",
"januaryShort": "Jan.",
"july": "July",
"julyShort": "July",
"june": "June",
"juneShort": "June",
"keyword": "Keyword",
"keywordAdded": "Keyword added",
"keywordDeleted": "Keyword deleted",
"keywordHelp": "Keyword help",
"keywordHelpDesc_1": "Identifier of logged user",
"keywordHelpDesc_10": "Immediate sub-entities (n-1) of entities passed as argument",
"keywordHelpDesc_11": "Document perimeter example : access to resource of logged user's main entity, or sub-entity of this entity",
"keywordHelpDesc_12": "Technical user id of logged user",
"keywordHelpDesc_2": "Email of logged user",
"keywordHelpDesc_3": "All logged user's entities. Sub-entities are not included",
"keywordHelpDesc_13": "All logged user's identifier entities. Sub-entities are not included",
"keywordHelpDesc_4": "Logged user's primary entity",
"keywordHelpDesc_14": "Logged user's identifier primary entity",
"keywordHelpDesc_5": "Sub-entities of argument list, can be @my_entities or @my_primary_entity",
"keywordHelpDesc_6": "Parent entity passed as argument",
"keywordHelpDesc_7": "All entities to the same level of entity passed as argument",
"keywordHelpDesc_8": "All entities with de same type passed as argument",
"keywordHelpDesc_9": "All entities (enabled)",
"keywordHelper": "Hide \/ Display keyword help",
"label": "Label",
"langISO": "en-US",
"language": "en",
"last": "last",
"lastname": "Last name",
"less": "Less",
"life_cycle": "Life cycle",
"limitDataReached": "You have reached maximum amount of displayable data (<b>25000 data<\/b>), refine your <b>date range<\/b>",
"limitDataReached_1000": "You have reached maximum amount of displayable data (<b>1000 data<\/b>).",
"linkAccount": "Link Maarch Parapheur account",
"linkContact": "Link a contact",
"linkDetails": "Go to detail page",
"linkEntityToUserInfo": "Click on an entity in the tree to link \/ unlink it to this user",
"linkGroup": "Link a group",
"linkNewAction": "Link new action",
"linkResource": "Link to a new mail",
"linkSelectedResources": "Link selected mails",
"linkUser": "Link a user",
"links": "Links",
"listConfiguration": "Manage group order",
"listTemplatesRolesUpdated": "Roles updated",
"loaded": "loaded",
"loadedFile": "File loaded",
"loading": "Loading",
"loadingFile": "Loading file",
"lockDocserver": "Lock this document server (read only)",
"lockedBy": "locked by",
"logInOncePasswordChanged": "You will be asked to log in once the password has been changed.",
"loginAlreadyExistsInMaarchParapheur": "Login already exists in Maarch Parapheur",
"loginIxbus": "Ixbus login",
"logout": "Log out",
"m2mContactInfo": "Expected Format : SIRET\/ENTITY_ID of destination entity",
"m2m_ARCHIVETRANSFER": "Archive transfer",
"m2m_ARCHIVETRANSFERREPLY": "Archive transfer reply",
"maarchApplication": "Maarch Application",
"maarchLicence": "Maarch Courrier is distributed under the terms of",
"maarchParapheurAccountMsg": "A <b>new<\/b> account with login",
"maarchParapheurAccountMsg2": " will be created in Maarch Parapheur.",
"maarchParapheurDocuments": "My mails in Maarch Parapheur",
"maarchParapheurLinkbroken": "User does not exist in Maarch Parapheur anymore",
"mail": "Mail",
"mailAttachments": "mail attachment(s)",
"mailClassified": "Mail(s) classified",
"mailDate": "Mail date",
"mailEntitiesList": "List of entities attached to mails",
"mailFrom": "Sending address",
"mailInformations": "Mail information",
"mailNotPresentInBasket": "Mail not present in any basket",
"mailNote": "Main document's note",
"mailSubject": "Mail subject",
"mailTo": "Mail address destination",
"mailType": "Mail type",
"mailevaAccount": "Maileva account",
"mailevaAdmin": "Maileva shipping",
"mailevaAdminDesc": "Configure mailing templates for Maileva",
"maileva_addressPage": "Address page",
"maileva_color": "Color",
"maileva_duplexPrinting": "Both sides",
"maileva_economic": "Economic : Ecopli grand compte (D+4)",
"maileva_fast": "Fast : Lettre grand compte (D+2)",
"maileva_firstPagePrice": "1st page",
"maileva_nextPagePrice": "Next page(s)",
"maileva_postagePrice": "Postage up to 20g",
"maileva_registered_mail": "Registered mail",
"maileva_registered_mail_ar": "Registered mail AR",
"mailing": "Mailing",
"mailingActionInformations": "Following mails contain mailing attachments, mailing will be done after action validation :",
"mailingMsg": "Mailing enbled<br><br>In this mode, an attachment will be generated for each contacts of the mail. <br><br>To create them immediately, click on <b>\"Mailing\"<\/b><br><br> Click on <b>\"Validate\"<\/b> if you want them to be generated when transferred to the first signatory of the visa workflow",
"mails": "mails",
"mailsInFolder": "mail(s) in folder",
"mailsSent": "Resource(s) sent",
"mailsSentAlt": "Resources sent",
"mainDocNumericPackage": "Main document of sent mail",
"mainDocNumericPackageToSend": "Main document of mail to send",
"mainDocument": "Main document",
"makeActionOn": "Do you want to do this action on",
"makeUpdate": "Update",
"manageAbsences": "Redirect my baskets",
"manageAttachments": "Update or delete attachments",
"manageCreateContacts": "Create contacts",
"manageCreateContactsDesc": "Create contacts from indexing\/processing\/detail page",
"manageNumericPackage": "Send and save numeric package",
"managePersonalData": "Viewable and updatable",
"manageSignatures": "Manage signatures",
"manageTagsInApplication": "Create tags",
"manageTagsInApplicationDesc": "Create tags while indexing and processing, and in the detail page",
"manageUpdateContacts": "Update contacts",
"manageUpdateContactsDesc": "Update contacts from indexing\/processing\/detail page",
"mandatory": "Mandatory",
"mandatoryField": "Mandatory field",
"manualAR": "Manual",
"manualSendingAR": "Generated for manual sending...",
"march": "March",
"marchShort": "Mar.",
"maxFileSize": "Maximum file size",
"maxFileSizeReached": "Maximum file size reached",
"maxSize": "Maximum size",
"may": "May",
"mayShort": "May",
"memberAllUsers": "All users member of ",
"memberDiffTypeUsers": "Diffusion type users member",
"memberUserDest": "Dest user member",
"memberUsersCopy": "Copy users member",
"menu": "Menu",
"menus": "Menus",
"mergeTagWith": "Merge this tag with",
"mergeWith": "Merge with",
"minute": "Minute",
"minutes": "minute(s)",
"missingAdvert": "This account is currently set as absent.",
"missingAdvert2": "If you want to connect with this account, the 'absent' mode will be disabled.",
"missingAdvertTitle": "Absences management",
"missingBasket": "Select the baskets for which you want to delete the redirection :",
"missingChoose": "Do you want to reactivate your account ?",
"missingMailevaConfig": "Maileva configuration does not exist",
"modelDeleted": "Model deleted",
"modelName": "Model name",
"modelSaved": "Model saved",
"modelUpdated": "Model updated",
"modificationSaved": "Modification saved",
"modified": "Modified",
"modifiedBy": "Modified by",
"modifiedOn": "Modified on",
"modifyDiffusionList": "Modify diffusion list",
"modifyVisaInSignatureBook": "Modify current approver from signature book",
"modifyVisaInSignatureBookDesc": "Useful if signature book is used as a supervision signature book",
"module": "Module",
"modules": "Modules",
"monday": "Monday",
"month": "Month",
"more": "More",
"moreInfos": "More data",
"moreOptions": "More options",
"move": "Move",
"moveAvisUserErr1": "You cannot move",
"moveAvisUserErr2": "with users who have already given an opinion",
"moveQuestion": "Do you want to move",
"moveVisaUserErr": "You cannot move <p>{0}<\/p> with users who have already approved \/ signed or approval \/ sign is in progress.",
"mustCompleteAR": "You must complete one of two acknowledgement of receipts model",
"mustCompleteAllAttachments": "Please complete all attachments",
"mustDeleteUsersWithNoPrivileges": "You must delete users with insufficient privileges",
"mustEditAttachmentFirst": "You must edit the attachment first",
"mustEditDocument": "You must <b>edit<\/b> the document in order to <b>validate<\/b> modifications.",
"mustFixErrors": "You must fix the errors.",
"mustReconnect": "Please reconnect",
"myBaskets": "My baskets",
"myBasketsDesc": "Redirect my baskets to others users",
"myContactsGroups": "My contacts groups",
"myContactsGroupsDesc": "Manage my contacts lists",
"myEntities": "My entities",
"myHistoric": "My history",
"myInformations": "My information",
"myLastResources": "My last consulted mails",
"myMenu": "Personal menu",
"myParameters": "My parameters",
"myPinnedFolder": "My pinned folders",
"myPreferences": "My preferences",
"myPrimaryEntity": "My primary entity",
"myProfile": "My profile",
"myProfileAccess": "Access to my profile",