@nocobase/client 2.0.0-alpha.8 → 2.1.0-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (204) hide show
  1. package/.dumirc.ts +4 -0
  2. package/es/application/Application.d.ts +2 -1
  3. package/es/block-configs/BlockConfigsProvider.d.ts +1 -1
  4. package/es/block-provider/hooks/index.d.ts +2 -1
  5. package/es/block-provider/index.d.ts +4 -3
  6. package/es/collection-manager/Configuration/SetPrimaryKeyAction.d.ts +10 -0
  7. package/es/collection-manager/Configuration/components/CollectionCategory.d.ts +1 -1
  8. package/es/collection-manager/Configuration/components/CollectionFieldInterfaceTag.d.ts +1 -1
  9. package/es/collection-manager/Configuration/components/CollectionTemplateTag.d.ts +1 -1
  10. package/es/collection-manager/Configuration/components/Summary.d.ts +1 -1
  11. package/es/collection-manager/Configuration/interfaces.d.ts +1 -0
  12. package/es/collection-manager/action-hooks.d.ts +1 -1
  13. package/es/collection-manager/interfaces/color.d.ts +0 -1
  14. package/es/collection-manager/interfaces/index.d.ts +1 -0
  15. package/es/collection-manager/interfaces/input.d.ts +1 -0
  16. package/es/collection-manager/interfaces/integer.d.ts +1 -0
  17. package/es/collection-manager/interfaces/nanoid.d.ts +1 -0
  18. package/es/collection-manager/interfaces/number.d.ts +44 -0
  19. package/es/collection-manager/interfaces/snowflake-id.d.ts +117 -0
  20. package/es/collection-manager/interfaces/uuid.d.ts +1 -0
  21. package/es/collection-manager/templates/properties/index.d.ts +1 -0
  22. package/es/data-source/collection-field-interface/CollectionFieldInterface.d.ts +1 -0
  23. package/es/data-source/data-source/DataSourceManager.d.ts +1 -0
  24. package/es/flow/FlowModelRepository.d.ts +4 -0
  25. package/es/flow/FlowPage.d.ts +2 -1
  26. package/es/flow/actions/columnFixed.d.ts +1 -2
  27. package/es/flow/actions/customVariable.d.ts +9 -0
  28. package/es/flow/actions/displayFieldComponent.d.ts +1 -1
  29. package/es/flow/actions/index.d.ts +7 -1
  30. package/es/flow/actions/linkageRules.d.ts +4 -0
  31. package/es/flow/actions/navigateToURL.d.ts +9 -0
  32. package/es/flow/actions/openView.d.ts +2 -13
  33. package/es/flow/actions/refreshTargetBlocks.d.ts +9 -0
  34. package/es/flow/actions/setTargetDataScope.d.ts +10 -0
  35. package/es/flow/actions/showMessage.d.ts +9 -0
  36. package/es/flow/actions/showNotification.d.ts +9 -0
  37. package/es/flow/actions/titleField.d.ts +0 -1
  38. package/es/flow/common/Liquid.d.ts +33 -0
  39. package/es/flow/common/Markdown/Display.d.ts +9 -0
  40. package/es/flow/common/Markdown/Edit.d.ts +23 -0
  41. package/es/flow/common/Markdown/Markdown.d.ts +24 -0
  42. package/es/flow/common/Markdown/style.d.ts +10 -0
  43. package/es/flow/common/Markdown/useCDN.d.ts +9 -0
  44. package/es/flow/components/BlockItemCard.d.ts +2 -0
  45. package/es/flow/components/FieldAssignValueInput.d.ts +1 -0
  46. package/es/flow/components/code-editor/extension/CodeEditorExtension.d.ts +14 -0
  47. package/es/flow/components/code-editor/extension/index.d.ts +9 -0
  48. package/es/flow/components/code-editor/index.d.ts +5 -4
  49. package/es/flow/components/code-editor/jsxCompletion.d.ts +10 -0
  50. package/es/flow/components/code-editor/linter.d.ts +2 -0
  51. package/es/flow/components/code-editor/panels/RightExtra.d.ts +3 -1
  52. package/es/flow/components/code-editor/types.d.ts +16 -0
  53. package/es/flow/components/filter/FilterContainer.d.ts +4 -4
  54. package/es/flow/components/filter/FilterGroup.d.ts +2 -1
  55. package/es/flow/components/filter/LinkageFilterItem.d.ts +1 -0
  56. package/es/flow/components/filter/VariableFilterItem.d.ts +4 -1
  57. package/es/flow/components/index.d.ts +1 -1
  58. package/es/flow/components/placeholders/BlockPlaceholder.d.ts +1 -0
  59. package/es/flow/flows/editMarkdownFlow.d.ts +10 -0
  60. package/es/flow/getViewDiffAndUpdateHidden.d.ts +1 -0
  61. package/es/flow/index.d.ts +5 -0
  62. package/es/flow/internal/utils/associationValueCoercion.d.ts +15 -0
  63. package/es/flow/internal/utils/enumOptionsUtils.d.ts +7 -7
  64. package/es/flow/internal/utils/operatorSchemaHelper.d.ts +15 -0
  65. package/es/flow/internal/utils/rebuildFieldSubModel.d.ts +33 -0
  66. package/es/flow/models/actions/AddChildActionModel.d.ts +15 -0
  67. package/es/flow/models/actions/AddNewActionModel.d.ts +1 -0
  68. package/es/flow/models/actions/EditActionModel.d.ts +1 -0
  69. package/es/flow/models/actions/ExpandCollapseActionModel.d.ts +19 -0
  70. package/es/flow/models/actions/FilterActionModel.d.ts +5 -59
  71. package/es/flow/models/actions/JSActionModel.d.ts +13 -0
  72. package/es/flow/models/actions/LinkActionModel.d.ts +18 -0
  73. package/es/flow/models/actions/UpdateRecordActionModel.d.ts +6 -0
  74. package/es/flow/models/actions/index.d.ts +4 -0
  75. package/es/flow/models/base/ActionModel.d.ts +15 -5
  76. package/es/flow/models/base/BlockModel.d.ts +4 -1
  77. package/es/flow/models/base/CollectionBlockModel.d.ts +12 -25
  78. package/es/flow/models/base/FieldModel.d.ts +6 -0
  79. package/es/flow/models/base/GridModel.d.ts +27 -4
  80. package/es/flow/models/base/PageModel/ChildPageModel.d.ts +1 -0
  81. package/es/flow/models/base/PageModel/PageModel.d.ts +3 -0
  82. package/es/flow/models/base/PageModel/PageTabModel.d.ts +2 -0
  83. package/es/flow/models/base/PageModel/RootPageModel.d.ts +2 -0
  84. package/es/flow/models/blocks/details/DetailsBlockModel.d.ts +1 -0
  85. package/es/flow/models/blocks/details/DetailsCustomItemModel.d.ts +2 -2
  86. package/es/flow/models/blocks/details/DetailsGridModel.d.ts +1 -0
  87. package/es/flow/models/blocks/details/DetailsItemModel.d.ts +2 -2
  88. package/es/flow/models/blocks/details/DetailsJSFieldItemModel.d.ts +2 -2
  89. package/es/flow/models/blocks/filter-form/FieldModelSelect.d.ts +10 -0
  90. package/es/flow/models/blocks/filter-form/FilterFormBlockModel.d.ts +4 -0
  91. package/es/flow/models/blocks/filter-form/FilterFormCustomItemModel.d.ts +13 -0
  92. package/es/flow/models/blocks/filter-form/FilterFormGridModel.d.ts +1 -0
  93. package/es/flow/models/blocks/filter-form/FilterFormItemModel.d.ts +5 -4
  94. package/es/flow/models/blocks/filter-form/FilterFormSubmitActionModel.d.ts +1 -1
  95. package/es/flow/models/blocks/filter-form/SourceCascader.d.ts +10 -0
  96. package/es/flow/models/blocks/filter-form/fields/FieldComponentProps.d.ts +13 -0
  97. package/es/flow/models/blocks/filter-form/fields/FilterFormCustomFieldModel.d.ts +36 -0
  98. package/es/flow/models/blocks/filter-form/fields/date-time/DateTimeFilterFieldModel.d.ts +8 -0
  99. package/es/flow/models/blocks/filter-form/fields/date-time/index.d.ts +1 -0
  100. package/es/flow/models/blocks/filter-form/fields/index.d.ts +1 -0
  101. package/es/flow/models/blocks/filter-form/index.d.ts +1 -0
  102. package/es/flow/models/blocks/filter-manager/flow-actions/customizeFilterRender.d.ts +10 -0
  103. package/es/flow/models/blocks/filter-manager/flow-actions/index.d.ts +2 -0
  104. package/es/flow/models/blocks/filter-manager/flow-actions/operatorComponentProps.d.ts +10 -0
  105. package/es/flow/models/blocks/form/CreateFormModel.d.ts +1 -0
  106. package/es/flow/models/blocks/form/EditFormModel.d.ts +1 -0
  107. package/es/flow/models/blocks/form/FormBlockModel.d.ts +11 -1
  108. package/es/flow/models/blocks/form/FormGridModel.d.ts +1 -0
  109. package/es/flow/models/blocks/form/FormItemModel.d.ts +1 -1
  110. package/es/flow/models/blocks/form/FormJSFieldItemModel.d.ts +1 -1
  111. package/es/flow/models/blocks/form/submitHandler.d.ts +9 -0
  112. package/es/flow/models/blocks/js-block/JSBlock.d.ts +1 -0
  113. package/es/flow/models/blocks/table/JSColumnModel.d.ts +0 -1
  114. package/es/flow/models/blocks/table/TableActionsColumnModel.d.ts +0 -1
  115. package/es/flow/models/blocks/table/TableBlockModel.d.ts +14 -1
  116. package/es/flow/models/blocks/table/TableColumnModel.d.ts +9 -2
  117. package/es/flow/models/blocks/table/TableJSFieldItemModel.d.ts +2 -2
  118. package/es/flow/models/blocks/table/utils.d.ts +8 -0
  119. package/es/flow/models/blocks/utils/transformChildrenToJS.d.ts +42 -0
  120. package/es/flow/models/fields/AssociationFieldModel/AssociationFieldModel.d.ts +1 -0
  121. package/es/flow/models/fields/AssociationFieldModel/CascadeSelectFieldModel.d.ts +29 -0
  122. package/es/flow/models/fields/AssociationFieldModel/RecordPickerFieldModel.d.ts +2 -0
  123. package/es/flow/models/fields/AssociationFieldModel/RecordSelectFieldModel.d.ts +8 -2
  124. package/es/flow/models/fields/AssociationFieldModel/SubFormFieldModel.d.ts +7 -0
  125. package/es/flow/models/fields/AssociationFieldModel/SubTableFieldModel/SubTableColumnModel.d.ts +3 -3
  126. package/es/flow/models/fields/AssociationFieldModel/SubTableFieldModel/index.d.ts +2 -0
  127. package/es/flow/models/fields/AssociationFieldModel/index.d.ts +1 -0
  128. package/es/flow/models/fields/AssociationFieldModel/recordSelectShared.d.ts +49 -0
  129. package/es/flow/models/fields/ClickableFieldModel.d.ts +3 -2
  130. package/es/flow/models/fields/DisplayAssociationField/DisplaySubItemFieldModel.d.ts +1 -0
  131. package/es/flow/models/fields/DisplayAssociationField/DisplaySubListFieldModel.d.ts +1 -0
  132. package/es/flow/models/fields/DisplayAssociationField/DisplaySubTableFieldModel.d.ts +3 -1
  133. package/es/flow/models/fields/DisplayEnumFieldModel.d.ts +1 -0
  134. package/es/flow/models/fields/DisplayJSONFieldModel.d.ts +3 -3
  135. package/es/flow/models/fields/DisplayNumberFieldModel.d.ts +4 -2
  136. package/es/flow/models/fields/DisplayTextFieldModel.d.ts +1 -1
  137. package/es/flow/models/fields/JSItemModel.d.ts +0 -1
  138. package/es/flow/models/fields/JsonFieldModel.d.ts +1 -0
  139. package/es/flow/models/fields/MarkdownItemModel.d.ts +1 -0
  140. package/es/flow/models/fields/TimeFieldModel.d.ts +0 -1
  141. package/es/flow/models/fields/mobile-components/MobileDatePicker.d.ts +10 -0
  142. package/es/flow/models/fields/mobile-components/MobileLazySelect.d.ts +11 -0
  143. package/es/flow/{components/JsonInput.d.ts → models/fields/mobile-components/MobileSelect.d.ts} +1 -1
  144. package/es/flow/models/fields/mobile-components/MobileTimePicker.d.ts +10 -0
  145. package/es/flow/resolveViewParamsToViewList.d.ts +4 -2
  146. package/es/flow/{components/decorator → utils}/index.d.ts +1 -1
  147. package/es/global-theme/type.d.ts +1 -0
  148. package/es/hooks/useFullscreenOverlay.d.ts +20 -0
  149. package/es/index.d.ts +1 -0
  150. package/es/index.mjs +26499 -19157
  151. package/es/modules/menu/FlowPageMenuItem.d.ts +1 -3
  152. package/es/modules/menu/index.d.ts +9 -0
  153. package/es/nocobase-buildin-plugin/plugins/LocalePlugin.d.ts +0 -1
  154. package/es/schema-component/antd/association-select/ReadPretty.d.ts +1 -1
  155. package/es/schema-component/antd/filter/FilterItem.d.ts +1 -1
  156. package/es/schema-component/antd/input/EllipsisWithTooltip.d.ts +1 -0
  157. package/es/schema-component/antd/linkageFilter/LinkageFilterItem.d.ts +1 -1
  158. package/es/schema-component/antd/remote-select/RemoteSelect.d.ts +1 -3
  159. package/es/schema-component/antd/table/Table.Column.ActionBar.d.ts +1 -1
  160. package/es/schema-component/antd/table/Table.Void.d.ts +1 -0
  161. package/es/schema-component/antd/table-v2/Table.Column.ActionBar.d.ts +1 -1
  162. package/es/schema-component/antd/upload/shared.d.ts +1 -1
  163. package/es/schema-settings/LinkageRules/LinkageRuleAction.d.ts +2 -2
  164. package/es/schema-settings/LinkageRules/components/BlockLinkageRuleAction.d.ts +1 -1
  165. package/es/schema-settings/LinkageRules/components/FieldStyleLinkageRuleAction.d.ts +1 -1
  166. package/lib/index-C3fHjsMw-CDWZlvuM.js +2237 -0
  167. package/lib/index.js +453 -239
  168. package/lib/locale/cron/zh-CN.json +33 -0
  169. package/lib/locale/cron/zh-TW.json +33 -0
  170. package/lib/locale/de-DE.json +1545 -0
  171. package/lib/locale/en-US.json +1553 -0
  172. package/lib/locale/es-ES.json +1573 -0
  173. package/lib/locale/fr-FR.json +1549 -0
  174. package/lib/locale/hu-HU.json +1545 -0
  175. package/lib/locale/id-ID.json +1546 -0
  176. package/lib/locale/{it-IT.js → it-IT.json} +1496 -1054
  177. package/lib/locale/ja-JP.json +1564 -0
  178. package/lib/locale/ko-KR.json +1558 -0
  179. package/lib/locale/{nl-NL.js → nl-NL.json} +1493 -1018
  180. package/lib/locale/pt-BR.json +1617 -0
  181. package/lib/locale/ru-RU.json +1551 -0
  182. package/lib/locale/tr-TR.json +1553 -0
  183. package/lib/locale/uk-UA.json +1570 -0
  184. package/lib/locale/vi-VN.json +1545 -0
  185. package/lib/locale/zh-CN.json +1571 -0
  186. package/lib/locale/zh-TW.json +1549 -0
  187. package/package.json +10 -7
  188. package/es/flow/components/decorator/injectable.d.ts +0 -19
  189. package/lib/index-C3fHjsMw-DpvvwPtU.js +0 -2023
  190. package/lib/locale/cron/zh-CN.js +0 -33
  191. package/lib/locale/cron/zh-TW.js +0 -33
  192. package/lib/locale/de-DE.js +0 -904
  193. package/lib/locale/en-US.js +0 -1001
  194. package/lib/locale/es-ES.js +0 -824
  195. package/lib/locale/fr-FR.js +0 -844
  196. package/lib/locale/ja-JP.js +0 -1062
  197. package/lib/locale/ko-KR.js +0 -935
  198. package/lib/locale/pt-BR.js +0 -804
  199. package/lib/locale/ru-RU.js +0 -633
  200. package/lib/locale/tr-TR.js +0 -631
  201. package/lib/locale/uk-UA.js +0 -847
  202. package/lib/locale/zh-CN.js +0 -1410
  203. package/lib/locale/zh-TW.js +0 -938
  204. /package/es/flow/{internal/utils → utils}/blockUtils.d.ts +0 -0
@@ -0,0 +1,1549 @@
1
+ {
2
+ "\"Content-Type\" only support \"application/json\", and no need to specify": "\"Content-Type\" only support \"application/json\", and no need to specify",
3
+ "(Fields only)": "(Champs uniquement)",
4
+ "(currently not effective in sub-forms/sub-tables)": "(currently not effective in sub-forms/sub-tables)",
5
+ "12 hour": "12 heures",
6
+ "24 hour": "24 heures",
7
+ "<": "<",
8
+ "=": "=",
9
+ ">": ">",
10
+ "ACL": "ACL",
11
+ "ASC": "ASC",
12
+ "Access": "Accès",
13
+ "Access control": "Access control",
14
+ "Accessible": "Accessible",
15
+ "Accuracy": "Accuracy",
16
+ "Action": "Action",
17
+ "Action after successful submission": "Action after successful submission",
18
+ "Action column": "Colonne d'action",
19
+ "Action display name": "Nom d'affichage de l'action",
20
+ "Action logs": "Logs d'action",
21
+ "Action name": "Nom de l'action",
22
+ "Action on existing records": "Action sur les enregistrements existants",
23
+ "Action on new records": "Action sur les nouveaux enregistrements",
24
+ "Action permission": "Permission d'action",
25
+ "Action permissions": "Permissions d'action",
26
+ "Action scope": "Portée de l'action",
27
+ "Action type": "Type d'action",
28
+ "Actions": "Actions",
29
+ "Actions column": "Actions column",
30
+ "Add": "Ajouter",
31
+ "Add & Update": "Add & Update",
32
+ "Add Markdown": "Add Markdown",
33
+ "Add action": "Add action",
34
+ "Add attach": "Ajouter une pièce jointe",
35
+ "Add block": "Ajouter un bloc",
36
+ "Add card": "Ajouter une carte",
37
+ "Add category": "Ajouter une catégorie",
38
+ "Add child": "Ajouter un enfant",
39
+ "Add child route": "Ajouter une route enfant",
40
+ "Add condition": "Ajouter une condition",
41
+ "Add condition group": "Ajouter un groupe de conditions",
42
+ "Add event flow": "Add event flow",
43
+ "Add exportable field": "Ajouter un champ exportable",
44
+ "Add field": "Ajouter un champ",
45
+ "Add filter": "Ajouter un filtre",
46
+ "Add filter group": "Ajouter un groupe de filtres",
47
+ "Add group": "Ajouter un groupe",
48
+ "Add link": "Ajouter un lien",
49
+ "Add linkage rule": "Ajouter une règle de liaison",
50
+ "Add menu item": "Ajouter un élément de menu",
51
+ "Add new": "Ajouter nouveau",
52
+ "Add new mode": "Mode d'ajout",
53
+ "Add option": "Ajouter une option",
54
+ "Add page": "Ajouter une page",
55
+ "Add parameter": "Add parameter",
56
+ "Add plugin": "Add plugin",
57
+ "Add property": "Ajouter une propriété",
58
+ "Add record": "Ajouter un enregistrement",
59
+ "Add request header": "Add request header",
60
+ "Add role": "Ajouter un rôle",
61
+ "Add rule": "Add rule",
62
+ "Add sort field": "Ajouter un champ de tri",
63
+ "Add step": "Add step",
64
+ "Add tab": "Ajouter un onglet",
65
+ "Add target block": "Add target block",
66
+ "Add template": "Add template",
67
+ "Add text": "Ajouter du texte",
68
+ "Add type": "Ajouter un type",
69
+ "Add validation rule": "Ajouter une règle de validation",
70
+ "Add variable": "Add variable",
71
+ "Add {{type}} after \"{{title}}\"": "Ajouter {{type}} après \"{{title}}\"",
72
+ "Add {{type}} before \"{{title}}\"": "Ajouter {{type}} avant \"{{title}}\"",
73
+ "Add {{type}} in \"{{title}}\"": "Ajouter {{type}} dans \"{{title}}\"",
74
+ "Advanced type": "Type avancé",
75
+ "After": "Après",
76
+ "After change": "Après modification",
77
+ "After clicking the custom button, the following field values will be assigned according to the following form.": "Après avoir cliqué sur le bouton personnalisé, les valeurs de champ suivantes seront attribuées selon le formulaire suivant.",
78
+ "After clicking the custom button, the following fields of the current record will be saved according to the following form.": "Après avoir cliqué sur le bouton personnalisé, les champs suivants de l'enregistrement actuel seront sauvegardés selon le formulaire suivant.",
79
+ "After hiding, this menu will no longer appear in the menu bar. To show it again, you need to go to the route management page to configure it.": "Après avoir masqué, ce menu ne sera plus affiché dans la barre de menu. Pour le réafficher, vous devez aller à la page de gestion des routes pour le configurer.",
80
+ "After hiding, this tab will no longer appear in the tab bar. To show it again, you need to go to the route management page to set it.": "Après avoir masqué, cette tab ne sera plus affichée dans la barre de tab. Pour la montrer à nouveau, vous devez vous rendre sur la page de gestion des routes pour la configurer.",
81
+ "After successful bulk update": "Après une mise à jour en masse réussie",
82
+ "After successful request": "Après une requête réussie",
83
+ "After successful save": "Après un enregistrement réussie",
84
+ "After successful submission": "Après un envoi réussi",
85
+ "After successful submission, the selected data blocks will be automatically refreshed.": "Après une soumission réussie, les blocs de données sélectionnés seront automatiquement actualisés.",
86
+ "After successful update": "Après une mise à jour réussie",
87
+ "Agenda": "Agenda",
88
+ "All": "Tous",
89
+ "All collections": "Toutes les collections",
90
+ "All collections use general action permissions by default; permission configured individually will override the default one.": "Toutes les collections utilisent les permissions d'action générales par défaut ; les permissions configurées individuellement remplaceront celles par défaut.",
91
+ "All events": "Tous les événements",
92
+ "All plugin settings": "Tous les paramètres de plugin",
93
+ "All records": "Tous les enregistrements",
94
+ "Allow": "Autoriser",
95
+ "Allow access": "Autoriser l'accès",
96
+ "Allow action": "Autoriser l'action",
97
+ "Allow add new": "Autoriser les ajouts",
98
+ "Allow add new data": "Autoriser l'ajout de nouvelles données",
99
+ "Allow add new, update and delete actions": "Autoriser les actions d'ajout, de mise à jour et de suppression",
100
+ "Allow adding records to the current collection": "Autoriser l'ajout d'enregistrements à la collection actuelle",
101
+ "Allow disassociation": "Allow disassociation",
102
+ "Allow dissociate": "Allow dissociate",
103
+ "Allow linking to multiple records": "Autoriser la liaison à plusieurs enregistrements",
104
+ "Allow list": "Allow list",
105
+ "Allow multiple": "Autoriser plusieurs",
106
+ "Allow multiple selection": "Permettre la sélection multiple",
107
+ "Allow relative URIs": "Allow relative URIs",
108
+ "Allow selection of existing file": "Allow selection of existing file",
109
+ "Allow selection of existing records": "Permet de sélectionner des données existantes",
110
+ "Allow sign up": "Autoriser l'inscription",
111
+ "Allow to configure plugins": "Autoriser la configuration des plugins",
112
+ "Allow to desgin pages": "Autoriser la conception des pages",
113
+ "Allow to manage plugins": "Autoriser la gestion des plugins",
114
+ "Allow uploading multiple files": "Autoriser le téléchargement de plusieurs fichiers",
115
+ "Allows configuration of the whole system, including UI, collections, permissions, etc.": "Permet de configurer l'ensemble du système, y compris l'interface utilisateur, les collections, les permissions, etc.",
116
+ "Allows to clear cache, reboot application": "Allows to clear cache, reboot application",
117
+ "Allows to configure interface": "Permet de configurer l'interface",
118
+ "Allows to configure plugins": "Permet de configurer des plugins",
119
+ "Allows to install, activate, disable plugins": "Permet d'installer, d'activer, de désactiver des plugins",
120
+ "Allows unencoded square brackets inside the query string": "Allows unencoded square brackets inside the query string",
121
+ "Alphabet": "Alphabet",
122
+ "Any": "Any",
123
+ "App error": "App error",
124
+ "Application reloading": "Application reloading",
125
+ "Are you sure to delete this plugin?": "Êtes-vous sûr de vouloir supprimer ce plugin ?",
126
+ "Are you sure to disable this plugin?": "Are you sure to disable this plugin?",
127
+ "Are you sure you don't want to save?": "Êtes-vous sûr de ne pas vouloir enregistrer ?",
128
+ "Are you sure you want to clear cache ?": "Are you sure you want to clear cache ?",
129
+ "Are you sure you want to delete it?": "Êtes-vous sûr de vouloir le supprimer ?",
130
+ "Are you sure you want to delete this variable?": "Are you sure you want to delete this variable?",
131
+ "Are you sure you want to disassociate it?": "Êtes-vous sûr de vouloir le dissocier ?",
132
+ "Are you sure you want to hide these routes in menu?": "Êtes-vous sûr de vouloir masquer ces routes dans le menu ?",
133
+ "Are you sure you want to hide this menu?": "Êtes-vous sûr de vouloir masquer ce menu ?",
134
+ "Are you sure you want to hide this tab?": "Êtes-vous sûr de vouloir masquer cet onglet ?",
135
+ "Are you sure you want to load {{count}} collection(s)?": "Are you sure you want to load {{count}} collection(s)?",
136
+ "Are you sure you want to perform the Custom request action": "Are you sure you want to perform the Custom request action",
137
+ "Are you sure you want to perform the Refresh action?": "Are you sure you want to perform the Refresh action?",
138
+ "Are you sure you want to perform the Submit action?": "Are you sure you want to perform the Submit action?",
139
+ "Are you sure you want to perform the Trigger workflow action?": "Are you sure you want to perform the Trigger workflow action?",
140
+ "Are you sure you want to perform the Update record action?": "Are you sure you want to perform the Update record action?",
141
+ "Are you sure you want to perform the {{title}} action?": "Are you sure you want to perform the {{title}} action?",
142
+ "Are you sure you want to save it?": "Are you sure you want to save it?",
143
+ "Are you sure you want to show these routes in menu?": "Êtes-vous sûr de vouloir afficher ces routes dans le menu ?",
144
+ "Area": "Région",
145
+ "Area chart": "Graphique en aires",
146
+ "Assign data scope for the template": "Assign data scope for the template",
147
+ "Assign field values": "Attribuer des valeurs de champ",
148
+ "Assign value": "Assign value",
149
+ "Assignment mode": "Assignment mode",
150
+ "Associate": "Associate",
151
+ "Associated records": "Enregistrements associés",
152
+ "Association field settings": "Association field settings",
153
+ "Association fields": "Champs d'association",
154
+ "Association fields filter": "Filtre des champs d'association",
155
+ "Association select settings": "Association select settings",
156
+ "Association table settings": "Association table settings",
157
+ "Association tag settings": "Association tag settings",
158
+ "AssociationField component": "AssociationField component",
159
+ "Attempts to encode the URI using encodeURI before validating it again": "Attempts to encode the URI using encodeURI before validating it again",
160
+ "Audit logs": "Journaux d'audit",
161
+ "Authentication": "Authentication",
162
+ "Author": "Auteur",
163
+ "Auto": "Auto",
164
+ "Auto focus": "Auto focus",
165
+ "Auto increment": "Auto increment",
166
+ "AutoGenId": "Champ d'ID généré automatiquement",
167
+ "Automatic close": "Fermeture automatique",
168
+ "Automatically drop objects that depend on the collection (such as views), and in turn all objects that depend on those objects": "Automatically drop objects that depend on the collection (such as views), and in turn all objects that depend on those objects",
169
+ "Automatically generate default values": "Automatically generate default values",
170
+ "Automatically remove heading and tailing spaces": "Automatically remove heading and tailing spaces",
171
+ "Automatically update timestamp on update": "Automatically update timestamp on update",
172
+ "Automatically update timestamp to the current server time on update": "Automatically update timestamp to the current server time on update",
173
+ "Available \"target blocks\" are all data blocks on the current page": "Available \"target blocks\" are all data blocks on the current page",
174
+ "Available Collections": "Available Collections",
175
+ "Background Color": "Background Color",
176
+ "Bar chart": "Graphique à barres",
177
+ "Base": "Base",
178
+ "Basic": "Basique",
179
+ "Basic configuration": "Basic configuration",
180
+ "Before": "Avant",
181
+ "Before change": "Avant modification",
182
+ "Before render": "Before render",
183
+ "Blank block": "Bloc vierge",
184
+ "Block": "Block",
185
+ "Block Linkage rules": "Block Linkage rules",
186
+ "Block linkage rules": "Block linkage rules",
187
+ "Block list": "Block list",
188
+ "Block template": "Modèle de bloc",
189
+ "Block templates": "Modèles de bloc",
190
+ "Block title": "Titre du bloc",
191
+ "Block type": "Type de bloc",
192
+ "Blocks": "Blocks",
193
+ "Blue": "Bleu",
194
+ "Bookmark": "Signet",
195
+ "Boolean": "Boolean",
196
+ "Bottom left": "Bottom left",
197
+ "Bottom right": "Bottom right",
198
+ "Built-in": "Intégré",
199
+ "Bulk edit": "Édition en masse",
200
+ "Bulk enable": "Bulk enable",
201
+ "Bulk update": "Mise à jour en masse",
202
+ "Button background color": "Couleur d'arrière-plan du bouton",
203
+ "Button icon": "Icône du bouton",
204
+ "Button settings": "Button settings",
205
+ "Button title": "Titre du bouton",
206
+ "Button type": "Button type",
207
+ "Calculation engine": "Calculation engine",
208
+ "Calendar": "Calendrier",
209
+ "Calendar Month": "Calendar Month",
210
+ "Calendar Year": "Calendar Year",
211
+ "Calendar collection": "Collection de calendrier",
212
+ "Calendar week": "Calendar week",
213
+ "Cancel": "Annuler",
214
+ "Cannot find the model instance with UID": "Cannot find the model instance with UID",
215
+ "Card settings": "Card settings",
216
+ "Cascade Select": "Cascade Select",
217
+ "Cascade select": "Cascade select",
218
+ "Cascade select settings": "Cascade select settings",
219
+ "Categories": "Catégories",
220
+ "Category name": "Nom de la catégorie",
221
+ "Center": "Center",
222
+ "Change password": "Changer de mot de passe",
223
+ "Changed to": "Modifié en",
224
+ "Changelog": "Journal des modifications",
225
+ "Chart blocks": "Blocs de graphique",
226
+ "Chart config": "Configuration du graphique",
227
+ "Chart title": "Titre du graphique",
228
+ "Chart type": "Type de graphique",
229
+ "Check strength": "Check strength",
230
+ "Checkbox": "Case à cocher",
231
+ "Checkbox group": "Groupe de cases à cocher",
232
+ "Children": "Children",
233
+ "China region": "Région de Chine",
234
+ "Choices": "Choix",
235
+ "Choices fields": "Champs de choix",
236
+ "City": "Ville",
237
+ "Classic page (v1)": "Classic page (v1)",
238
+ "Clear": "Effacer",
239
+ "Clear cache": "Clear cache",
240
+ "Clear default value": "Effacer la valeur par défaut",
241
+ "Click": "Click",
242
+ "Click event": "Click event",
243
+ "Click or drag file to this area to upload": "Click or drag file to this area to upload",
244
+ "Click the \"UI Editor\" icon in the upper right corner to enter the UI Editor mode": "Cliquez sur l'icône \"Éditeur d'interface utilisateur\" dans le coin supérieur droit pour entrer en mode Éditeur d'interface utilisateur",
245
+ "Clicked row record": "Clicked row record",
246
+ "Close": "Fermer",
247
+ "Collapse": "Pliable",
248
+ "Collapse all": "Réduire tout",
249
+ "Collapse button": "Collapse",
250
+ "Collapse settings": "Collapse settings",
251
+ "Collapsed rows": "Collapsed rows",
252
+ "Collection": "Collection",
253
+ "Collection category": "Catégorie de collection",
254
+ "Collection display name": "Nom d'affichage de la collection",
255
+ "Collection fields": "Collection fields",
256
+ "Collection manager": "Gestionnaire de collection",
257
+ "Collection name": "Nom de la collection",
258
+ "Collection selector": "Collection selector",
259
+ "Collection template": "Modèle de collection",
260
+ "Collections": "Collections",
261
+ "Collections & Fields": "Collections et champs",
262
+ "Colon": "Colon",
263
+ "Color": "Couleur",
264
+ "Column": "Colonne",
265
+ "Column Settings": "Paramètres de colonne",
266
+ "Column chart": "Graphique en colonnes",
267
+ "Column title": "Titre de colonne",
268
+ "Column width": "Largeur de colonne",
269
+ "Coming soon...": "Bientôt...",
270
+ "Compact theme": "Compact theme",
271
+ "Comparision": "Comparaison",
272
+ "Comparison": "Comparison",
273
+ "Component properties": "Component properties",
274
+ "Compressed file url": "URL du fichier compressé",
275
+ "Computer": "Computer",
276
+ "Condition": "Condition",
277
+ "Conditional assignment": "Conditional assignment",
278
+ "Configuration saved": "Configuration saved",
279
+ "Configuration:": "Configuration:",
280
+ "Configure": "Configurer",
281
+ "Configure actions": "Configurer les actions",
282
+ "Configure calendar": "Configurer le calendrier",
283
+ "Configure columns": "Configurer les colonnes",
284
+ "Configure field": "Configure field",
285
+ "Configure fields": "Configurer les champs",
286
+ "Configure fields of {{title}}": "Configurer les champs de {{title}}",
287
+ "Configure page": "Configure page",
288
+ "Configure permission": "Configurer la permission",
289
+ "Configure permissions": "Configurer les permissions",
290
+ "Configure rows": "Configure rows",
291
+ "Configure the rows and columns of the grid.": "Configure the rows and columns of the grid.",
292
+ "Configure the sizes of each row. The value is an array of numbers representing the width of each column in the row.": "Configure the sizes of each row. The value is an array of numbers representing the width of each column in the row.",
293
+ "Confirm": "Confirm",
294
+ "Confirm Load Collections": "Confirm Load Collections",
295
+ "Confirm password": "Confirmer le mot de passe",
296
+ "Confirmation": "Confirmation",
297
+ "Connect data blocks": "Connecter les blocs de données",
298
+ "Connect fields": "Connect fields",
299
+ "Connect to database view": "Connexion à la vue de la base de données",
300
+ "Console": "Console",
301
+ "Constant": "Constant",
302
+ "Constant value": "Valeur constante",
303
+ "Contain": "Contenir",
304
+ "Content": "Content",
305
+ "Content overflow display mode": "Content overflow display mode",
306
+ "Content settings": "Content settings",
307
+ "Controls whether the current document is allowed to autoplay media requested through the HTMLMediaElement interface. When this policy is disabled and there were no user gestures, the Promise returned by HTMLMediaElement.play() will reject with a NotAllowedError DOMException. The autoplay attribute on <audio> and <video> elements will be ignored.": "Controls whether the current document is allowed to autoplay media requested through the HTMLMediaElement interface. When this policy is disabled and there were no user gestures, the Promise returned by HTMLMediaElement.play() will reject with a NotAllowedError DOMException. The autoplay attribute on <audio> and <video> elements will be ignored.",
308
+ "Controls whether the current document is allowed to set document.domain. When this policy is disabled, attempting to set document.domain will fail and cause a SecurityError DOMException to be thrown.": "Controls whether the current document is allowed to set document.domain. When this policy is disabled, attempting to set document.domain will fail and cause a SecurityError DOMException to be thrown.",
309
+ "Controls whether the current document is allowed to use Element.requestFullscreen(). When this policy is disabled, the returned Promise rejects with a TypeError.": "Controls whether the current document is allowed to use Element.requestFullscreen(). When this policy is disabled, the returned Promise rejects with a TypeError.",
310
+ "Controls whether the current document is allowed to use audio input devices. When this policy is disabled, the Promise returned by MediaDevices.getUserMedia() will reject with a NotAllowedError DOMException.": "Controls whether the current document is allowed to use audio input devices. When this policy is disabled, the Promise returned by MediaDevices.getUserMedia() will reject with a NotAllowedError DOMException.",
311
+ "Controls whether the current document is allowed to use the Encrypted Media Extensions API (EME). When this policy is disabled, the Promise returned by Navigator.requestMediaKeySystemAccess() will reject with a SecurityError DOMException.": "Controls whether the current document is allowed to use the Encrypted Media Extensions API (EME). When this policy is disabled, the Promise returned by Navigator.requestMediaKeySystemAccess() will reject with a SecurityError DOMException.",
312
+ "Controls whether the current document is allowed to use the Geolocation Interface. When this policy is disabled, calls to getCurrentPosition() and watchPosition() will cause those functions callbacks to be invoked with a GeolocationPositionError code of PERMISSION_DENIED.": "Controls whether the current document is allowed to use the Geolocation Interface. When this policy is disabled, calls to getCurrentPosition() and watchPosition() will cause those functions callbacks to be invoked with a GeolocationPositionError code of PERMISSION_DENIED.",
313
+ "Controls whether the current document is allowed to use the Payment Request API. When this policy is enabled, the PaymentRequest() constructor will throw a SecurityError DOMException.": "Controls whether the current document is allowed to use the Payment Request API. When this policy is enabled, the PaymentRequest() constructor will throw a SecurityError DOMException.",
314
+ "Controls whether the current document is allowed to use the Web MIDI API. When this policy is disabled, the Promise returned by Navigator.requestMIDIAccess() will reject with a SecurityError DOMException.": "Controls whether the current document is allowed to use the Web MIDI API. When this policy is disabled, the Promise returned by Navigator.requestMIDIAccess() will reject with a SecurityError DOMException.",
315
+ "Controls whether the current document is allowed to use video input devices. When this policy is disabled, the Promise returned by getUserMedia() will reject with a NotAllowedError DOMException.": "Controls whether the current document is allowed to use video input devices. When this policy is disabled, the Promise returned by getUserMedia() will reject with a NotAllowedError DOMException.",
316
+ "Convert reference to duplicate": "Convertir la référence en doublon",
317
+ "Convert template to duplicate": "Convert template to duplicate",
318
+ "Copy": "Copy",
319
+ "Copy into the form and continue to fill in": "Copy into the form and continue to fill in",
320
+ "Cover": "Couvrir",
321
+ "Create": "Créer",
322
+ "Create an account": "Créer un compte",
323
+ "Create calendar block": "Créer un bloc de calendrier",
324
+ "Create collection": "Créer une collection",
325
+ "Create form": "Créer un formulaire",
326
+ "Create gantt block": "Créer un bloc de Gantt",
327
+ "Create inverse field in the target collection": "Créer un champ inverse dans la collection cible",
328
+ "Create kanban block": "Créer un bloc kanban",
329
+ "Create template": "Créer un modèle",
330
+ "Created at": "Créé le",
331
+ "Created by": "Créé par",
332
+ "CreatedAt": "Enregistrer l'heure de création d'une ligne",
333
+ "CreatedBy": "Enregistrer l'utilisateur qui a créé une ligne",
334
+ "Current action": "Current action",
335
+ "Current block": "Current block",
336
+ "Current collection": "Collection actuelle",
337
+ "Current device type": "Current device type",
338
+ "Current form": "Formulaire actuel",
339
+ "Current object": "Objet actuel",
340
+ "Current popup": "Current popup",
341
+ "Current popup parent record": "Current popup parent record",
342
+ "Current popup record": "Enregistrement popup actuel",
343
+ "Current record": "Enregistrement actuel",
344
+ "Current record blocks": "Blocs d'enregistrement actuels",
345
+ "Current role": "Rôle actuel",
346
+ "Current time": "Heure actuelle",
347
+ "Current user": "Utilisateur actuel",
348
+ "Custom": "Personnalisé",
349
+ "Custom Title": "Titre personnalisé",
350
+ "Custom column name": "Nom de colonne personnalisé",
351
+ "Custom column title": "Titre de colonne personnalisé",
352
+ "Custom field": "Custom field",
353
+ "Custom field display name": "Nom d'affichage personnalisé du champ",
354
+ "Custom name": "Nom personnalisé",
355
+ "Custom request": "Requête personnalisée",
356
+ "Custom title": "Titre personnalisé",
357
+ "Custom variable": "Custom variable",
358
+ "Customize": "Personnaliser",
359
+ "Cyan": "Cyan",
360
+ "DESC": "DESC",
361
+ "Daily": "Quotidien",
362
+ "Danger action": "Danger action",
363
+ "Danger red": "Rouge danger",
364
+ "Dashed": "Dashed",
365
+ "Data Model": "Data Model",
366
+ "Data blocks": "Blocs de données",
367
+ "Data changes": "Modifications des données",
368
+ "Data fields": "Data fields",
369
+ "Data loading mode": "Mode de chargement des données",
370
+ "Data model": "Data model",
371
+ "Data model tools": "Data model tools",
372
+ "Data refreshed successfully": "Data refreshed successfully",
373
+ "Data scope": "Portée des données",
374
+ "Data source": "source de données",
375
+ "Data source key": "Data source key",
376
+ "Data source permissions": "Data source permissions",
377
+ "Data sources": "Data sources",
378
+ "Data template": "Modèle de données",
379
+ "Data will be updated": "Les données seront mises à jour",
380
+ "DataSource": "Source de données",
381
+ "Date": "Date",
382
+ "Date & Time": "Date & heure",
383
+ "Date display format": "Date display format",
384
+ "Date format": "Format de date",
385
+ "Date range limit": "Date range limit",
386
+ "Date scope": "Date scope",
387
+ "Date variables": "Variables de date",
388
+ "Date variables(Deprecated)": "Date variables(Deprecated)",
389
+ "DateOnly": "DateOnly",
390
+ "Datetime": "Date et heure",
391
+ "Datetime (with time zone)": "Datetime (with time zone)",
392
+ "Datetime (without time zone)": "Datetime (without time zone)",
393
+ "Datetime settings": "Datetime settings",
394
+ "Day": "Jour",
395
+ "Day before yesterday": "Day before yesterday",
396
+ "Day/Month/Year": "Jour/Mois/Année",
397
+ "Default": "Par défaut",
398
+ "Default collapse": "Développé/réduit par défaut",
399
+ "Default collapsed": "Default collapsed",
400
+ "Default expand all": "Default expand all",
401
+ "Default filter conditions": "Default filter conditions",
402
+ "Default is the ID field": "La valeur par défaut est le champ ID",
403
+ "Default operator": "Default operator",
404
+ "Default role": "Rôle par défaut",
405
+ "Default sorting": "Default sorting",
406
+ "Default theme": "Default theme",
407
+ "Default title for each record": "Default title for each record",
408
+ "Default value": "Valeur par défaut",
409
+ "Default value to current server time": "Default value to current server time",
410
+ "Default value to current time": "Default value to current time",
411
+ "Delete": "Supprimer",
412
+ "Delete Event": "Supprimer l'événement",
413
+ "Delete action": "Supprimer l'action",
414
+ "Delete block": "Supprimer le bloc",
415
+ "Delete category": "Supprimer la catégorie",
416
+ "Delete collection": "Delete collection",
417
+ "Delete events": "Supprimer les événements",
418
+ "Delete field": "Supprimer le champ",
419
+ "Delete menu item": "Supprimer l'élément de menu",
420
+ "Delete record": "Supprimer l'enregistrement",
421
+ "Delete role": "Supprimer le rôle",
422
+ "Delete route": "Supprimer la route",
423
+ "Delete routes": "Supprimer les routes",
424
+ "Delete settings": "Delete settings",
425
+ "Delete step": "Delete step",
426
+ "Delete table column": "Supprimer la colonne de tableau",
427
+ "Delete this event?": "Supprimer cet événement ?",
428
+ "Delete this target block": "Delete this target block",
429
+ "Delete variable": "Delete variable",
430
+ "Deny list": "Deny list",
431
+ "Department name": "Department name",
432
+ "Departments": "Departments",
433
+ "Dependencies check": "Vérification des dépendances",
434
+ "Dependencies check failed": "Échec de la vérification des dépendances",
435
+ "Dependencies check failed, can't enable.": "Échec de la vérification des dépendances, impossible d'activer.",
436
+ "Dependencies compatibility check": "Vérification de la compatibilité des dépendances",
437
+ "Deprecated": "Déprécié",
438
+ "Description": "Description",
439
+ "Desktop device": "Ordinateur de bureau",
440
+ "Desktop routes": "Routes de bureau",
441
+ "Detail item settings": "Detail item settings",
442
+ "Details": "Détails",
443
+ "Details settings": "Details settings",
444
+ "Determine whether a record exists by the following fields": "Determine whether a record exists by the following fields",
445
+ "Dialog": "Dialogue",
446
+ "Direct assignment": "Direct assignment",
447
+ "Direct duplicate": "Direct duplicate",
448
+ "Disable": "Disable",
449
+ "Disable manual input": "Disable manual input",
450
+ "Disable tabs": "Désactiver les onglets",
451
+ "Disable validation": "Disable validation",
452
+ "Disabled": "Désactivé",
453
+ "Disassociate": "Dissocier",
454
+ "Disassociate record": "Dissocier l'enregistrement",
455
+ "Display <1><0>10</0><1>20</1><2>50</2><3>100</3></1> items per page": "Afficher <1><0>10</0><1>20</1><2>50</2><3>100</3></1> éléments par page",
456
+ "Display <icon></icon> when unchecked": "Display <icon></icon> when unchecked",
457
+ "Display Field settings": "Display Field settings",
458
+ "Display association fields": "Afficher les champs d'association",
459
+ "Display field title": "Afficher le titre du champ",
460
+ "Display fields": "Afficher les champs de la collection",
461
+ "Display label": "Display label",
462
+ "Display mode": "Display mode",
463
+ "Display name": "Nom d'affichage",
464
+ "Display only": "Display only",
465
+ "Display order number": "Afficher numéro d'ordre",
466
+ "Display page title": "Display page title",
467
+ "Display style": "Display style",
468
+ "Display title": "Titre d'affichage",
469
+ "DisplayName": "Nom d'affichage",
470
+ "Divide by": "Divide by",
471
+ "Divider line color": "Divider line color",
472
+ "Do not concatenate search params in the URL": "Do not concatenate search params in the URL",
473
+ "Do not load data when filter is empty": "Ne pas charger les données lorsque le filtre est vide",
474
+ "Docs": "Docs",
475
+ "Domains ending with a . character are permitted": "Domains ending with a . character are permitted",
476
+ "Done": "Terminé",
477
+ "Double click": "Double click",
478
+ "Double click to choose entire object": "Double click to choose entire object",
479
+ "Download": "Download",
480
+ "Download logs": "Download logs",
481
+ "Drag and drop sorting field": "Drag and drop sorting field",
482
+ "Drag and drop the file here or click to upload, file size should not exceed 30M": "Faites glisser et déposez le fichier ici ou cliquez pour télécharger, la taille du fichier ne doit pas dépasser 30M",
483
+ "Dragging": "Déplacement",
484
+ "Drawer": "Tiroir",
485
+ "Dropdown": "Dropdown",
486
+ "Dropdown select": "Dropdown select",
487
+ "Duplicate": "Dupliquer",
488
+ "Duplicate and continue": "Dupliquer et continuer",
489
+ "Duplicate mode": "Mode de duplication",
490
+ "Duplicate template": "Dupliquer le modèle",
491
+ "Duplicating": "Duplication",
492
+ "Duration (seconds, 0 = no auto close)": "Duration (seconds, 0 = no auto close)",
493
+ "Dynamic value": "Valeur dynamique",
494
+ "Easy reading": "Lecture facile",
495
+ "Easy-reading": "Lecture facile",
496
+ "Edit": "Modifier",
497
+ "Edit Title": "Edit Title",
498
+ "Edit block title": "Modifier le titre du bloc",
499
+ "Edit block title & description": "Edit block title & description",
500
+ "Edit button": "Modifier le bouton",
501
+ "Edit category": "Modifier la catégorie",
502
+ "Edit chart": "Modifier le graphique",
503
+ "Edit collection": "Modifier la collection",
504
+ "Edit description": "Modifier la description",
505
+ "Edit event flows": "Edit event flows",
506
+ "Edit field": "Modifier le champ",
507
+ "Edit field title": "Modifier le titre du champ",
508
+ "Edit form": "Modifier le formulaire",
509
+ "Edit group title": "Edit group title",
510
+ "Edit link": "Edit link",
511
+ "Edit markdown": "Modifier le markdown",
512
+ "Edit menu item": "Modifier l'élément de menu",
513
+ "Edit page size": "Edit page size",
514
+ "Edit page title": "Edit page title",
515
+ "Edit popup": "Edit popup",
516
+ "Edit profile": "Modifier le profil",
517
+ "Edit record": "Modifier l'enregistrement",
518
+ "Edit role": "Modifier le rôle",
519
+ "Edit tab": "Modifier l'onglet",
520
+ "Edit tooltip": "Modifier l'info-bulle",
521
+ "Edit variable": "Edit variable",
522
+ "Editable": "Modifiable",
523
+ "Ellipsis": "Ellipsis",
524
+ "Ellipsis overflow content": "Contenu de débordement avec ellipse",
525
+ "Email": "Email",
526
+ "Embedded": "Embedded",
527
+ "Empty": "Vide",
528
+ "Enable": "Enable",
529
+ "Enable SMS authentication": "Activer l'authentification par SMS",
530
+ "Enable Scan": "Enable Scan",
531
+ "Enable actions": "Activer les actions",
532
+ "Enable child collections": "Activer les collections enfants",
533
+ "Enable click-to-open": "Enable click-to-open",
534
+ "Enable drag and drop sorting": "Activer le tri par glisser-déposer",
535
+ "Enable form data template": "Enable form data template",
536
+ "Enable index column": "Enable index column",
537
+ "Enable link": "Activer le lien",
538
+ "Enable page header": "Enable page header",
539
+ "Enable page tabs": "Enable page tabs",
540
+ "Enable quick edit": "Enable quick edit",
541
+ "Enable refresh": "Enable refresh",
542
+ "Enable secondary confirmation": "Enable secondary confirmation",
543
+ "Enable tabs": "Enable tabs",
544
+ "Enable tree table": "Enable tree table",
545
+ "Enable virtual scrolling": "Enable virtual scrolling",
546
+ "Enabled": "Activé",
547
+ "Enabled languages": "Langues activées",
548
+ "End": "End",
549
+ "End accessor": "End accessor",
550
+ "End date field": "Champ de date de fin",
551
+ "Enter collection name": "Enter collection name",
552
+ "Enter end accessor": "Enter end accessor",
553
+ "Enter field title": "Enter field title",
554
+ "Enter number of rows to display": "Enter number of rows to display",
555
+ "Enter page title": "Enter page title",
556
+ "Enter placeholder text": "Enter placeholder text",
557
+ "Enter start accessor": "Enter start accessor",
558
+ "Enter title accessor": "Enter title accessor",
559
+ "Enter value": "Enter value",
560
+ "Error message": "Message d'erreur",
561
+ "Event": "Événement",
562
+ "Event flow": "Event flow",
563
+ "Event selected": "Event selected",
564
+ "Event settings": "Event settings",
565
+ "Exact day": "Exact day",
566
+ "Execute": "Execute",
567
+ "Execute JavaScript": "Execute JavaScript",
568
+ "Exists": "Existe",
569
+ "Expand All": "Tout déplier",
570
+ "Expand all": "Développer tout",
571
+ "Expand all rows by default": "Expand all rows by default",
572
+ "Expand button": "Expand",
573
+ "Expand/Collapse": "Développer/Réduire",
574
+ "Export": "Exporter",
575
+ "Exportable fields": "Champs exportables",
576
+ "Expression": "Expression",
577
+ "Expression collection": "Expression collection",
578
+ "FORMULAJS_DOC_URL": "https://v2.docs.nocobase.com/calculation-engine/formula",
579
+ "Failed to load plugin": "Failed to load plugin",
580
+ "False": "False",
581
+ "Feedback": "Commentaires",
582
+ "Field": "Champ",
583
+ "Field Linkage rules": "Field Linkage rules",
584
+ "Field assignment": "Field assignment",
585
+ "Field component": "Composant de champ",
586
+ "Field display name": "Nom d'affichage du champ",
587
+ "Field interface": "Interface du champ",
588
+ "Field linkage rules": "Field linkage rules",
589
+ "Field mode": "Mode du champ",
590
+ "Field model": "Field model",
591
+ "Field name": "Nom du champ",
592
+ "Field permission": "Permission de champ",
593
+ "Field settings": "Field settings",
594
+ "Field source": "Source de champ",
595
+ "Field title": "Titre du champ",
596
+ "Field type": "Type de champ",
597
+ "Field value changes": "Changements de valeur du champ",
598
+ "Field value do not meet the requirements": "Field value do not meet the requirements",
599
+ "Field value size is": "Field value size is",
600
+ "Field values must be unique.": "Field values must be unique.",
601
+ "Fields": "Champs",
602
+ "Fields can only be used correctly if they are defined with an interface.": "Fields can only be used correctly if they are defined with an interface.",
603
+ "Fields values": "Valeurs des champs",
604
+ "File manager": "Gestionnaire de fichiers",
605
+ "File size exceeds the limit": "File size exceeds the limit",
606
+ "File size should not exceed {{size}}.": "File size should not exceed {{size}}.",
607
+ "File type is not allowed": "File type is not allowed",
608
+ "File type is not supported for previewing, please download it to preview.": "File type is not supported for previewing, please download it to preview.",
609
+ "Fill": "Remplir",
610
+ "Filled": "Filled",
611
+ "Filter": "Filtrer",
612
+ "Filter blocks": "Blocs de filtre",
613
+ "Filter configuration": "Filter configuration",
614
+ "Filter data based on the specific field, with the requirement that the field value must be unique.": "Filter data based on the specific field, with the requirement that the field value must be unique.",
615
+ "Filter out a single piece or a group of records as a template": "Filter out a single piece or a group of records as a template",
616
+ "Filter target key": "Filter target key",
617
+ "Filterable fields": "Champs filtrables",
618
+ "Find by the following fields": "Trouver par les champs suivants",
619
+ "First or create": "D'abord ou créer",
620
+ "Fix block": "Fixer le bloc",
621
+ "Fixed": "Fixed",
622
+ "Fixed to the left": "Fixer à gauche",
623
+ "Fixed to the right": "Fixer à droite",
624
+ "Flexible popup": "Flexible popup",
625
+ "Flow Page": "Modern page (v2)",
626
+ "Font Size(px)": "Font Size(px)",
627
+ "Font Style": "Font Style",
628
+ "Font Weight": "Font Weight",
629
+ "Foreign key": "Clé étrangère",
630
+ "Foreign key 1": "Clé étrangère 1",
631
+ "Foreign key 2": "Clé étrangère 2",
632
+ "Form": "Formulaire",
633
+ "Form (Add new)": "Formulaire (Ajouter nouveau)",
634
+ "Form (Edit)": "Formulaire (Modifier)",
635
+ "Form UID": "Form UID",
636
+ "Form data templates": "Form data templates",
637
+ "Form duplicate": "Form duplicate",
638
+ "Form field assignment": "Form field assignment",
639
+ "Form item settings": "Form item settings",
640
+ "Form settings": "Form settings",
641
+ "Form values": "Valeurs du formulaire",
642
+ "Form values change": "Form values change",
643
+ "Form variable": "Form variable",
644
+ "Format": "Format",
645
+ "Formula": "Formule",
646
+ "Formula description": "Calcule une valeur dans chaque enregistrement en fonction d'autres champs dans le même enregistrement.",
647
+ "Formula error.": "Erreur de formule.",
648
+ "Formula mode": "Mode formule",
649
+ "Formula.js supports most Microsoft Excel formula functions.": "Formula.js supports most Microsoft Excel formula functions.",
650
+ "Full height": "Full height",
651
+ "Full permissions": "Tous les droits",
652
+ "Function": "Fonction",
653
+ "Gantt": "Gantt",
654
+ "Geek blue": "Bleu geek",
655
+ "General": "Générale",
656
+ "General action permissions": "Permissions d'action générales",
657
+ "General collection": "Collection générale",
658
+ "General configuration": "General configuration",
659
+ "General fields": "Champs généraux",
660
+ "General permissions": "Permissions générales",
661
+ "Generated automatically if left blank": "Généré automatiquement si laissé vide",
662
+ "Generic properties": "Generic properties",
663
+ "Global action permissions": "Permissions d'action globales",
664
+ "Global permissions": "Permissions globales",
665
+ "Gold": "Or",
666
+ "Greater than": "Greater than",
667
+ "Green": "Vert",
668
+ "Grid Card": "Grille de cartes",
669
+ "Group": "Groupe",
670
+ "Grouped sorting": "Grouped sorting",
671
+ "Grouping field": "Champ de regroupement",
672
+ "HTML content": "HTML content",
673
+ "Half of day": "Demi-journée",
674
+ "Handbook": "Manuel de l'utilisateur",
675
+ "Hidden": "Caché",
676
+ "Hidden (reserved value)": "Caché (valeur réservée)",
677
+ "Hidden text": "Hidden text",
678
+ "Hidden(reserved value)": "Caché (valeur réservée)",
679
+ "Hide": "Masquer",
680
+ "Hide column": "Masquer la colonne",
681
+ "Hide in menu": "Masquer dans le menu",
682
+ "Highlight": "Mise en évidence",
683
+ "Home page": "Page d'accueil",
684
+ "Homepage": "Page d'accueil",
685
+ "Horizontal": "Horizontal",
686
+ "Hour": "Heure",
687
+ "Html settings": "Html settings",
688
+ "IANA registry": "IANA registry",
689
+ "ID": "ID",
690
+ "Icon": "Icône",
691
+ "Icon only": "Icon only",
692
+ "Identifier for program usage. Support letters, numbers and underscores, must start with an letter.": "Identifiant pour une utilisation dans le programme. Prend en charge les lettres, les chiffres et les traits de soulignement et doit commencer par une lettre.",
693
+ "If a collection lacks a primary key, you must configure a unique record key to locate row records within a block, failure to configure this will prevent the creation of data blocks for the collection.": "If a collection lacks a primary key, you must configure a unique record key to locate row records within a block, failure to configure this will prevent the creation of data blocks for the collection.",
694
+ "If collection inherits, choose inherited collections as templates": "If collection inherits, choose inherited collections as templates",
695
+ "If selected, the page will display Tab pages.": "Si sélectionné, la page affichera des onglets.",
696
+ "If selected, the route will be displayed in the menu.": "Si sélectionné, la route sera affichée dans le menu.",
697
+ "If the compatibility check fails, you should change the dependent version to meet the version requirements.": "Si la vérification de la compatibilité échoue, vous devez modifier la version dépendante pour répondre aux exigences de version.",
698
+ "Ignore invalid email length errors": "Ignore invalid email length errors",
699
+ "Imperative Drawer": "Imperative Drawer",
700
+ "Import": "Importer",
701
+ "Importable fields": "Champs importables",
702
+ "In configuration": "En configuration",
703
+ "In configuration mode, the entire column becomes transparent. In non-configuration mode, the entire column will be hidden. Even if the entire column is hidden, its configured default values and other settings will still take effect.": "En mode de configuration, toute la colonne devient transparente. En mode de non-configuration, toute la colonne sera masquée. Même si toute la colonne est masquée, ses valeurs par défaut configurées et les autres paramètres resteront toujours en vigueur.",
704
+ "Incomplete uploading files need to be resolved": "Incomplete uploading files need to be resolved",
705
+ "Index": "Index",
706
+ "Individual": "Individuelle",
707
+ "Inherited fields": "Champs hérités",
708
+ "Inherited template": "Modèle hérité",
709
+ "Inherits": "Hérite de",
710
+ "Inner": "Interne",
711
+ "Input": "Input",
712
+ "Input +, -, *, /, ( ) to calculate, input @ to open field variables.": "Saisissez +, -, *, /, ( ) pour calculer, saisissez @ pour ouvrir les variables de champ.",
713
+ "Input request data": "Input request data",
714
+ "Insert": "Insérer",
715
+ "Insert above": "Insérer au-dessus",
716
+ "Insert after": "Insérer après",
717
+ "Insert before": "Insérer avant",
718
+ "Insert below": "Insérer en dessous",
719
+ "Insert if not exists": "Insert if not exists",
720
+ "Insert if not exists, or update": "Insert if not exists, or update",
721
+ "Insert inner": "Insérer à l'intérieur",
722
+ "Insert left": "Insérer à gauche",
723
+ "Insert right": "Insérer à droite",
724
+ "Installing": "Installation",
725
+ "Integer": "Entier",
726
+ "Invalid JSON format": "Format JSON invalide",
727
+ "Inverse field display name": "Nom d'affichage du champ inverse",
728
+ "Inverse field name": "Nom du champ inverse",
729
+ "Inverse relationship type": "Type de relation inverse",
730
+ "Italic": "Italic",
731
+ "Junction collection": "Collection de jonction",
732
+ "Kanban": "Kanban",
733
+ "Label": "Label",
734
+ "Label align": "Label align",
735
+ "Label field": "Champ d'étiquette",
736
+ "Label width": "Label width",
737
+ "Language": "Langue",
738
+ "Large": "Grande",
739
+ "Large screen device": "Ordinateur à grand écran",
740
+ "Last 30 days": "Les 30 derniers jours",
741
+ "Last 7 days": "Les 7 derniers jours",
742
+ "Last 90 days": "Les 90 derniers jours",
743
+ "Last Month": "Last Month",
744
+ "Last Quarter": "Last Quarter",
745
+ "Last Week": "Last Week",
746
+ "Last Year": "Last Year",
747
+ "Last month": "Le mois dernier",
748
+ "Last quarter": "Le dernier trimestre",
749
+ "Last updated": "Dernière mise à jour",
750
+ "Last updated at": "Dernière mise à jour le",
751
+ "Last updated by": "Dernière mise à jour par",
752
+ "Last week": "La semaine dernière",
753
+ "Last year": "L'année dernière",
754
+ "Layout": "Layout",
755
+ "Leave it blank, unless you need a custom intermediate table": "Laissez-le vide, sauf si vous avez besoin d'une table intermédiaire personnalisée",
756
+ "Left": "Left",
757
+ "Left fixed": "Left fixed",
758
+ "Length": "Longueur",
759
+ "Less than": "Less than",
760
+ "License": "Licence",
761
+ "Lime": "Citron vert",
762
+ "Limit": "Limit",
763
+ "Line break": "Line break",
764
+ "Line chart": "Graphique linéaire",
765
+ "Link": "Lien",
766
+ "Link action settings": "Link action settings",
767
+ "Link to": "Lien vers",
768
+ "Link to description": "Utilisé pour créer rapidement des relations entre collections et compatible avec la plupart des scénarios courants. Convient à une utilisation sans développement. Lorsqu'il est présent en tant que champ, c'est une sélection déroulante utilisée pour sélectionner des enregistrements de la collection cible. Une fois créé, il génère simultanément les champs associés de la collection actuelle dans la collection cible.",
769
+ "Linkage rule": "Règle de liaison",
770
+ "Linkage rules": "Règles de liaison",
771
+ "Linkage with form fields": "Lien avec les champs de formulaire",
772
+ "List": "Liste",
773
+ "Load all data when filter is empty": "Charger toutes les données lorsque le filtre est vide",
774
+ "Load collections": "Load collections",
775
+ "Local": "Local",
776
+ "Log in with an existing account": "Se connecter avec un compte existant",
777
+ "Logging and monitoring": "Logging and monitoring",
778
+ "Logo": "Logo",
779
+ "Long text": "Texte long",
780
+ "MATHJS_DOC_URL": "https://v2.docs.nocobase.com/calculation-engine/math",
781
+ "Magenta": "Magenta",
782
+ "Main": "Main",
783
+ "Main department": "Main department",
784
+ "Manage all settings": "Gérer tous les paramètres",
785
+ "Manually close": "Fermeture manuelle",
786
+ "Many to many": "Many to many",
787
+ "Many to many description": "Utilisé pour créer des relations de plusieurs à plusieurs. Par exemple, un étudiant aura de nombreux enseignants et un enseignant aura de nombreux étudiants. Lorsqu'il est présent en tant que champ, c'est une sélection déroulante utilisée pour sélectionner des enregistrements dans la collection associée.",
788
+ "Many to one": "Many to one",
789
+ "Many to one description": "Utilisé pour créer des relations de plusieurs à un. Par exemple, une ville peut appartenir à un seul pays et un pays peut avoir de nombreuses villes. Lorsqu'il est présent en tant que champ, c'est une sélection déroulante utilisée pour sélectionner un enregistrement dans la collection associée. Une fois créé, un champ One to many est automatiquement généré dans la collection associée.",
790
+ "Markdown": "Markdown",
791
+ "Marketplace": "Place de marché",
792
+ "Math.js comes with a large set of built-in functions and constants, and offers an integrated solution to work with different data types.": "Math.js comes with a large set of built-in functions and constants, and offers an integrated solution to work with different data types.",
793
+ "Max Domain Segments": "Max Domain Segments",
794
+ "Max length": "Longueur maximale",
795
+ "Max length must greater than min length": "La longueur maximale doit être supérieure à la longueur minimale",
796
+ "Max value": "Max value",
797
+ "MaxDate": "MaxDate",
798
+ "Maximum": "Maximum",
799
+ "Maximum must greater than minimum": "La valeur maximale doit être supérieure à la valeur minimale",
800
+ "Media": "Média",
801
+ "Medium": "Medium",
802
+ "Meet": "Meet",
803
+ "Meet <1><0>All</0><1>Any</1></1> conditions in the group": "Remplir <1><0>Toutes</0><1>Quelconques</1></1> conditions dans le groupe",
804
+ "Menu": "Menu",
805
+ "Menu item icon": "Icône de l'élément de menu",
806
+ "Menu item name": "Nom de l'élément de menu",
807
+ "Menu item title": "Titre de l'élément de menu",
808
+ "Menu permissions": "Permissions de menu",
809
+ "Message content": "Message content",
810
+ "Message popup close method": "Message popup close method",
811
+ "Message type": "Message type",
812
+ "Middle": "Moyenne",
813
+ "Millisecond": "Millisecond",
814
+ "Min Domain Segments": "Min Domain Segments",
815
+ "Min length": "Longueur minimale",
816
+ "Min length must less than max length": "La longueur minimale doit être inférieure à la longueur maximale",
817
+ "Min value": "Min value",
818
+ "MinDate": "MinDate",
819
+ "Minimum": "Minimum",
820
+ "Minimum must less than maximum": "La valeur minimale doit être inférieure à la valeur maximale",
821
+ "Mobile": "Mobile",
822
+ "Mobile routes": "Routes mobiles",
823
+ "Modal": "Modal",
824
+ "Modal add": "Ajout modal",
825
+ "Mode": "Mode",
826
+ "Modern page (v2)": "Modern page (v2)",
827
+ "Month": "Mois",
828
+ "Monthly": "Mensuel",
829
+ "More details": "Plus de détails",
830
+ "More options": "Plus d'options",
831
+ "Move down": "Move down",
832
+ "Move to": "Déplacer vers",
833
+ "Move up": "Move up",
834
+ "Move {{title}} to": "Déplacer {{title}} vers",
835
+ "Multiple": "Multiple",
836
+ "Multiple select": "Sélection multiple",
837
+ "Multiply by": "Multiply by",
838
+ "Must be 1-50 characters in length (excluding @.<>\"'/)": "Must be 1-50 characters in length (excluding @.<>\"'/)",
839
+ "Must select to the last level": "Doit sélectionner jusqu'au dernier niveau",
840
+ "Must use `-` and `:`": "Must use `-` and `:`",
841
+ "N/A": "N/A",
842
+ "Name": "Nom",
843
+ "Navigate": "Naviguer",
844
+ "Navigate to URL": "Navigate to URL",
845
+ "New menu items are allowed to be accessed by default.": "Les nouveaux éléments de menu peuvent être accessibles par défaut.",
846
+ "New password": "Nouveau mot de passe",
847
+ "New plugin": "Nouveau plugin",
848
+ "New routes are allowed to be accessed by default": "Les nouvelles routes sont autorisées à être accessibles par défaut",
849
+ "Next": "Next",
850
+ "Next 30 days": "Les 30 prochains jours",
851
+ "Next 7 days": "Les 7 prochains jours",
852
+ "Next 90 days": "Les 90 prochains jours",
853
+ "Next Month": "Next Month",
854
+ "Next Quarter": "Next Quarter",
855
+ "Next Week": "Next Week",
856
+ "Next Year": "Next Year",
857
+ "Next month": "Le mois prochain",
858
+ "Next quarter": "Le prochain trimestre",
859
+ "Next week": "La semaine prochaine",
860
+ "Next year": "L'année prochaine",
861
+ "Nickname": "Pseudo",
862
+ "No": "Non",
863
+ "No CHANGELOG.md file": "Aucun fichier CHANGELOG.md",
864
+ "No README.md file": "Aucun fichier README.md",
865
+ "No allow `-` and `:`": "No allow `-` and `:`",
866
+ "No assigned fields configured": "No assigned fields configured",
867
+ "No blocks to connect": "Aucun bloc à connecter",
868
+ "No configuration available.": "No configuration available.",
869
+ "No data": "No data",
870
+ "No event flows": "No event flows",
871
+ "No form available for reset.": "No form available for reset.",
872
+ "No form available for submission.": "No form available for submission.",
873
+ "No linkage rules": "No linkage rules",
874
+ "No pages yet, please configure first": "Pas encore de pages, veuillez configurer d'abord",
875
+ "No parent popup": "No parent popup",
876
+ "No records selected for bulk edit": "No records selected for bulk edit",
877
+ "No records selected for deletion": "No records selected for deletion",
878
+ "No resource or record selected for deletion": "No resource or record selected for deletion",
879
+ "No resource selected for bulk edit": "No resource selected for bulk edit",
880
+ "No resource selected for deletion": "No resource selected for deletion",
881
+ "No resource selected for refresh": "No resource selected for refresh",
882
+ "None": "Aucun",
883
+ "Normal": "Normal",
884
+ "Not Fixed": "Défixer",
885
+ "Not enabled": "Non activé",
886
+ "Not fixed": "Not fixed",
887
+ "Not required": "Non requis",
888
+ "Notification": "Notification",
889
+ "Notification description": "Notification description",
890
+ "Notification title": "Notification title",
891
+ "Notification type": "Notification type",
892
+ "Now": "Now",
893
+ "Npm package": "Paquet Npm",
894
+ "Npm package name": "Nom du paquet Npm",
895
+ "Null": "Null",
896
+ "Number": "Nombre",
897
+ "Number settings": "Number settings",
898
+ "Object Fit": "Ajustement de l'objet",
899
+ "Off": "Inactif",
900
+ "Official plugin": "Plugin officiel",
901
+ "Old password": "Ancien mot de passe",
902
+ "On": "Actif",
903
+ "One to many": "One to many",
904
+ "One to many description": "Utilisé pour créer une relation un à plusieurs. Par exemple, un pays aura de nombreuses villes et une ville ne peut être que dans un pays. Lorsqu'il est présent en tant que champ, c'est un sous-tableau qui affiche les enregistrements de la collection associée. Lors de la création, un champ Many to one est automatiquement généré dans la collection associée.",
905
+ "One to one": "One to one",
906
+ "One to one (belongs to)": "One to one (belongs to)",
907
+ "One to one (has one)": "One to one (has one)",
908
+ "One to one description": "Utilisé pour créer des relations un à un. Par exemple, un utilisateur a un profil.",
909
+ "Only support standard JSON data": "Only support standard JSON data",
910
+ "Only the selected fields will be used as the initialization data for the form": "Only the selected fields will be used as the initialization data for the form",
911
+ "Only use `-`": "Only use `-`",
912
+ "Only use `.`": "Only use `.`",
913
+ "Only use `_`": "Only use `_`",
914
+ "Open in new window": "Ouvrir dans une nouvelle fenêtre",
915
+ "Open in<1><0>Modal</0><1>Drawer</1><2>Window</2></1>": "Ouvrir dans<1><0>Modale</0><1>Tiroir</1><2>Fenêtre</2></1>",
916
+ "Open mode": "Mode d'ouverture",
917
+ "Open mode configuration": "Open mode configuration",
918
+ "Operate on existing data": "Opérer sur des données existantes",
919
+ "Operate on new data": "Opérer sur de nouvelles données",
920
+ "Operation failed": "Échec de l'opération",
921
+ "Operation succeeded": "Opération réussie",
922
+ "Operator": "Opérateur",
923
+ "Option label": "Étiquette de l'option",
924
+ "Option value": "Valeur de l'option",
925
+ "Options": "Options",
926
+ "Orange": "Orange",
927
+ "Original field title: ": "Titre du champ d'origine : ",
928
+ "Original name": "Nom d'origine",
929
+ "Original title: ": "Titre original : ",
930
+ "Other": "Other",
931
+ "Other action": "Other action",
932
+ "Other block": "Other block",
933
+ "Other blocks": "Autres blocs",
934
+ "Other chart": "Autre graphique",
935
+ "Other collections": "Autres collections",
936
+ "Other column": "Other column",
937
+ "Other form": "Other form",
938
+ "Other records": "Autres enregistrements",
939
+ "Others": "Autres",
940
+ "Outlined": "Outlined",
941
+ "Override": "Remplacer",
942
+ "Override field": "Remplacer le champ",
943
+ "Oversized": "Surdimensionné",
944
+ "Own records": "Ses propres enregistrements",
945
+ "Owners": "Owners",
946
+ "PK & FK fields": "Champs PK & FK",
947
+ "Package name": "Package name",
948
+ "PackageName": "Nom du paquet",
949
+ "Page": "Page",
950
+ "Page (v2)": "Page (v2)",
951
+ "Page Title": "Page Title",
952
+ "Page number": "Page number",
953
+ "Page settings": "Page settings",
954
+ "Page size": "Page size",
955
+ "Parent": "Parent",
956
+ "Parent ID": "Parent ID",
957
+ "Parent collection fields": "Champs de la collection parente",
958
+ "Parent object": "Objet parent",
959
+ "Parent popup": "Parent popup",
960
+ "Parent popup record": "Enregistrement popup parent",
961
+ "Parent record": "Enregistrement parent",
962
+ "Password": "Mot de passe",
963
+ "Password Options": "Password Options",
964
+ "Password mismatch": "Erreur de mot de passe",
965
+ "Past": "Past",
966
+ "Path": "Chemin",
967
+ "Pattern": "Motif",
968
+ "Percent": "Pourcentage",
969
+ "Perform the Custom request": "Perform the Custom request",
970
+ "Perform the Refresh": "Perform the Refresh",
971
+ "Perform the Submit": "Perform the Submit",
972
+ "Perform the Trigger workflow": "Perform the Trigger workflow",
973
+ "Perform the Update record": "Perform the Update record",
974
+ "Perform the {{title}}": "Perform the {{title}}",
975
+ "Permission deined": "Permission denied",
976
+ "Permission denied": "Permission denied",
977
+ "Permission policy": "Politique de permission",
978
+ "Phone": "Téléphone",
979
+ "Phone device": "Smartphone",
980
+ "Picker": "Picker",
981
+ "Pie chart": "Graphique en camembert",
982
+ "Pin to left": "Fixer à gauche",
983
+ "Pin to right": "Fixer à droite",
984
+ "Placeholder": "Placeholder",
985
+ "Placement": "Placement",
986
+ "Please add a data block on the page first": "Please add a data block on the page first",
987
+ "Please add or select record": "Please add or select record",
988
+ "Please configure the URL": "Please configure the URL",
989
+ "Please configure the duplicate fields": "Veuillez configurer les champs de duplication",
990
+ "Please confirm the SQL statement first": "Please confirm the SQL statement first",
991
+ "Please enter form uid": "Please enter form uid",
992
+ "Please enter the target block UID": "Please enter the target block UID",
993
+ "Please enter variable identifier": "Please enter variable identifier",
994
+ "Please enter variable title": "Please enter variable title",
995
+ "Please fill in the iframe URL": "Veuillez remplir l'URL de l'iframe",
996
+ "Please input message content": "Please input message content",
997
+ "Please input notification description": "Please input notification description",
998
+ "Please input notification title": "Please input notification title",
999
+ "Please input target action uid": "Please input target action uid",
1000
+ "Please input target block uid": "Please input target block uid",
1001
+ "Please input target form uid": "Please input target form uid",
1002
+ "Please select": "Please select",
1003
+ "Please select field": "Please select field",
1004
+ "Please select fields": "Please select fields",
1005
+ "Please select fields to filter": "Please select fields to filter",
1006
+ "Please select filterable fields": "Please select filterable fields",
1007
+ "Please select state": "Please select state",
1008
+ "Please select the records to be updated": "Veuillez sélectionner les enregistrements à mettre à jour",
1009
+ "Please select time or variable": "Please select time or variable",
1010
+ "Please use a valid SELECT or WITH AS statement": "Please use a valid SELECT or WITH AS statement",
1011
+ "Plugin": "Plugin",
1012
+ "Plugin Zip File": "Fichier Zip du plugin",
1013
+ "Plugin dependencies check failed": "Plugin dependencies check failed",
1014
+ "Plugin dependencies check failed, you should change the dependent version to meet the version requirements.": "Plugin dependencies check failed, you should change the dependent version to meet the version requirements.",
1015
+ "Plugin dependency version mismatch": "Plugin dependency version mismatch",
1016
+ "Plugin loading failed. Please check the server logs.": "Échec du chargement du plugin. Veuillez vérifier les journaux du serveur.",
1017
+ "Plugin manager": "Gestionnaire de plugins",
1018
+ "Plugin name": "Nom du plugin",
1019
+ "Plugin settings": "Plugin settings",
1020
+ "Plugin settings permissions": "Permissions de configuration des plugins",
1021
+ "Plugin source": "Plugin source",
1022
+ "Plugin starting...": "Démarrage du plugin...",
1023
+ "Plugin stopping...": "Arrêt du plugin...",
1024
+ "Plugin tab name": "Nom de l'onglet du plugin",
1025
+ "Plugin's version": "Version du plugin",
1026
+ "Pop-up": "Pop-up",
1027
+ "Popup": "Popup",
1028
+ "Popup close method": "Méthode de fermeture de la popup",
1029
+ "Popup form": "Formulaire popup",
1030
+ "Popup message": "Message popup",
1031
+ "Popup record": "Popup record",
1032
+ "Popup settings": "Popup settings",
1033
+ "Popup size": "Taille de la popup",
1034
+ "Popup uid": "Popup UID",
1035
+ "Position": "Position",
1036
+ "Precision": "Précision",
1037
+ "Precision(UI)": "Precision(UI)",
1038
+ "Prefix": "Prefix",
1039
+ "Preset fields": "Preset fields",
1040
+ "Prettify": "Prettify",
1041
+ "Preview": "Aperçu",
1042
+ "Preview Settings": "Preview Settings",
1043
+ "Preview field component": "Preview field component",
1044
+ "Primary": "Primary",
1045
+ "Primary key, unique identifier, self growth": "Générer automatiquement le champ ID",
1046
+ "Print": "Imprimer",
1047
+ "Problematic": "Problematic",
1048
+ "Progress field": "Champ de progression",
1049
+ "Properties": "Propriétés",
1050
+ "Providing certain collections as options for users, typically used in polymorphic or inheritance scenarios": "Providing certain collections as options for users, typically used in polymorphic or inheritance scenarios",
1051
+ "Province": "Province",
1052
+ "Province/city/area name": "Nom de la province/ville/région",
1053
+ "Purple": "Violet",
1054
+ "Quarter": "Quarter",
1055
+ "Quarter of day": "Quart de journée",
1056
+ "QuarterYear": "Trimestre",
1057
+ "Quick add": "Ajout rapide",
1058
+ "Quick create": "Quick create",
1059
+ "Quick duplicate": "Duplication rapide",
1060
+ "Quick upload": "Téléchargement rapide",
1061
+ "Radio group": "Groupe de boutons radio",
1062
+ "Randomly generated and can be modified. Support letters, numbers and underscores, must start with an letter.": "Généré aléatoirement et peut être modifié. Prend en charge les lettres, les chiffres et les traits de soulignement, doit commencer par une lettre.",
1063
+ "Read only": "Lecture seule",
1064
+ "ReadOnly": "ReadOnly",
1065
+ "ReadPretty": "ReadPretty",
1066
+ "Readme": "Lisez-moi",
1067
+ "Readonly": "Lecture seule",
1068
+ "Recommended": "Recommended",
1069
+ "Record ID": "ID de l'enregistrement",
1070
+ "Record deleted successfully": "Record deleted successfully",
1071
+ "Record picker": "Sélecteur d'enregistrement",
1072
+ "Record unique key": "Record unique key",
1073
+ "RecordPicker settings": "RecordPicker settings",
1074
+ "Records can be sorted": "Les enregistrements peuvent être triés",
1075
+ "Records per page": "Enregistrements par page",
1076
+ "Red": "Rouge",
1077
+ "Redirect to": "Rediriger vers",
1078
+ "Reference template": "Référencer le modèle",
1079
+ "References": "References",
1080
+ "Refresh": "Actualiser",
1081
+ "Refresh data after execution": "Refresh data after execution",
1082
+ "Refresh data blocks": "Actualiser les blocs de données",
1083
+ "Refresh data on action": "Refresh data on action",
1084
+ "Refresh data on close": "Refresh data on close",
1085
+ "Refresh target blocks": "Refresh target blocks",
1086
+ "Regular Expression": "Regular Expression",
1087
+ "Regular expression": "Expression régulière",
1088
+ "Related collection": "Collection associée",
1089
+ "Relation": "Relation",
1090
+ "Relationship blocks": "Blocs de relations",
1091
+ "Relationship type": "Type de relation",
1092
+ "Reload application": "Reload application",
1093
+ "Remains the same": "Reste inchangé",
1094
+ "Remove": "Remove",
1095
+ "Render Failed": "Échec du rendu",
1096
+ "Render mode": "Render mode",
1097
+ "Repeats": "Répétitions",
1098
+ "Request API": "Interroger une API",
1099
+ "Request URL": "URL de la requête",
1100
+ "Request body": "Corps de la requête",
1101
+ "Request headers": "En-têtes de requête",
1102
+ "Request method": "Méthode de requête",
1103
+ "Request query parameters": "Paramètres de requête",
1104
+ "Request settings": "Paramètres de la requête",
1105
+ "Request success": "Succès de la requête",
1106
+ "Required": "Requis",
1107
+ "Reset": "Réinitialiser",
1108
+ "Reset link expiration": "Réinitialiser l'expiration du lien",
1109
+ "Response record": "Response record",
1110
+ "Response type": "Response type",
1111
+ "Restart": "Restart",
1112
+ "Restart application": "Restart application",
1113
+ "Restrict only relative URIs": "Restrict only relative URIs",
1114
+ "Result": "Résultat",
1115
+ "Retry after {{count}} seconds": "Réessayer après {{count}} secondes",
1116
+ "Return to the main application": "Return to the main application",
1117
+ "Return to the previous popup or page": "Return to the previous popup or page",
1118
+ "Rich Text": "Texte enrichi",
1119
+ "Right": "Right",
1120
+ "Right fixed": "Right fixed",
1121
+ "Role UID": "UID du rôle",
1122
+ "Role display name": "Nom d'affichage du rôle",
1123
+ "Role name": "Nom du rôle",
1124
+ "Roles": "Rôles",
1125
+ "Roles & Permissions": "Rôles & permissions",
1126
+ "Route name": "Nom de route",
1127
+ "Route permissions": "Permissions de route",
1128
+ "Routes": "Routes",
1129
+ "Row click": "Row click",
1130
+ "Rows": "Rows",
1131
+ "SQL collection": "SQL collection",
1132
+ "Save": "Enregistrer",
1133
+ "Save action": "Enregistrer l'action",
1134
+ "Save as block template": "Enregistrer en tant que modèle de bloc",
1135
+ "Save as inherited template": "Enregistrer en tant que modèle hérité",
1136
+ "Save as reference template": "Enregistrer en tant que modèle de référence",
1137
+ "Save as template": "Enregistrer en tant que modèle",
1138
+ "Save conditions": "Enregistrer les conditions",
1139
+ "Save failed": "Save failed",
1140
+ "Save mode": "Mode d'enregistrement",
1141
+ "Save record": "Enregistrer",
1142
+ "Saved successfully": "Enregistré avec succès",
1143
+ "Scale": "Scale",
1144
+ "Scale Down": "Réduire",
1145
+ "Scan to input": "Scan to input",
1146
+ "Scheme": "Scheme",
1147
+ "Scientifix notation": "Scientifix notation",
1148
+ "Scope name": "Nom de la portée",
1149
+ "Screen size": "Taille de l'écran",
1150
+ "Search": "Search",
1151
+ "Search and select collection": "Rechercher et sélectionner une collection",
1152
+ "Search collections...": "Search collections...",
1153
+ "Search parameters": "Search parameters",
1154
+ "Search plugin": "Rechercher un plugin",
1155
+ "Search plugin...": "Search plugin...",
1156
+ "Second": "Second",
1157
+ "Secondary confirmation": "Secondary confirmation",
1158
+ "Security": "Security",
1159
+ "Select": "Sélectionner",
1160
+ "Select a source field to use metadata of the field": "Select a source field to use metadata of the field",
1161
+ "Select a variable": "Select a variable",
1162
+ "Select all": "Select all",
1163
+ "Select an existing piece of data as the initialization data for the form": "Select an existing piece of data as the initialization data for the form",
1164
+ "Select collection": "Sélectionner une collection",
1165
+ "Select data blocks to refresh": "Actualiser les blocs de données",
1166
+ "Select data source": "Sélectionner la source de données",
1167
+ "Select date": "Select date",
1168
+ "Select field": "Sélectionner un champ",
1169
+ "Select file": "Sélectionner un fichier",
1170
+ "Select form fields": "Select form fields",
1171
+ "Select grouping field": "Sélectionner le champ de regroupement",
1172
+ "Select icon": "Sélectionner une icône",
1173
+ "Select level": "Sélectionner un niveau",
1174
+ "Select mode": "Select mode",
1175
+ "Select record": "Sélectionner un enregistrement",
1176
+ "Select target action": "Select target action",
1177
+ "Select target block": "Select target block",
1178
+ "Select target form block": "Select target form block",
1179
+ "Select template": "Sélectionner un modèle",
1180
+ "Select trigger event": "Select trigger event",
1181
+ "Select variable": "Select variable",
1182
+ "Select view": "Sélectionner la vue",
1183
+ "Selected": "Sélectionné",
1184
+ "Selected Collections": "Selected Collections",
1185
+ "Selected records deleted successfully": "Selected records deleted successfully",
1186
+ "Selector": "Sélecteur",
1187
+ "Selector mode": "Mode sélecteur",
1188
+ "Selector setting": "Selector setting",
1189
+ "Send code": "Envoyer le code",
1190
+ "Separate multiple values with comma or Enter": "Separate multiple values with comma or Enter",
1191
+ "Separator": "Separator",
1192
+ "Set Template Engine": "Set Template Engine",
1193
+ "Set action state": "Set action state",
1194
+ "Set block height": "Set block height",
1195
+ "Set block layout": "Set block layout",
1196
+ "Set block state": "Set block state",
1197
+ "Set button state": "Set button state",
1198
+ "Set condition": "Set condition",
1199
+ "Set data loading mode": "Définir le mode de chargement des données",
1200
+ "Set data scope": "Set data scope",
1201
+ "Set default sorting rules": "Définir les règles de tri par défaut",
1202
+ "Set default value": "Définir la valeur par défaut",
1203
+ "Set details field state": "Set details field state",
1204
+ "Set field state": "Set field state",
1205
+ "Set field value": "Set field value",
1206
+ "Set form field state": "Set form field state",
1207
+ "Set form field value": "Set form field value",
1208
+ "Set state": "Set state",
1209
+ "Set the count of columns displayed in a row": "Définir le nombre de colonnes affichées par ligne",
1210
+ "Set the data scope": "Définir la portée des données",
1211
+ "Set validation rules": "Définir les règles de validation",
1212
+ "Set value": "Set value",
1213
+ "Setting": "Setting",
1214
+ "Settings": "Settings",
1215
+ "Show date range": "Show date range",
1216
+ "Show file name": "Show file name",
1217
+ "Show in menu": "Afficher dans le menu",
1218
+ "Show label": "Show label",
1219
+ "Show lunar": "Afficher le calendrier lunaire",
1220
+ "Show message": "Show message",
1221
+ "Show notification": "Show notification",
1222
+ "Show row numbers": "Show row numbers",
1223
+ "Show time": "Afficher l'heure",
1224
+ "Sign in": "Se connecter",
1225
+ "Sign in via account": "Se connecter via un compte",
1226
+ "Sign in via phone": "Se connecter via un numéro de téléphone",
1227
+ "Sign in with another account": "Sign in with another account",
1228
+ "Sign out": "Déconnexion",
1229
+ "Sign up": "S'inscrire",
1230
+ "Sign up successfully, and automatically jump to the sign in page": "Inscription réussie, et redirection automatique vers la page de connexion",
1231
+ "Signed up successfully. It will jump to the login page.": "Inscription réussie. Vous allez être redirigé(e) vers la page de connexion.",
1232
+ "Simple string replacement, can be used to interpolate variables in a string.": "Simple string replacement, can be used to interpolate variables in a string.",
1233
+ "Single line text": "Texte sur une seule ligne",
1234
+ "Single select": "Sélection unique",
1235
+ "Single select and radio fields can be used as the grouping field": "Les champs de sélection unique et radio peuvent être utilisés comme champ de regroupement",
1236
+ "Size": "Taille",
1237
+ "Sizes": "Sizes",
1238
+ "Skip getting the total number of table records during paging to speed up loading. It is recommended to enable this option for data tables with a large amount of data": "Skip getting the total number of table records during paging to speed up loading. It is recommended to enable this option for data tables with a large amount of data",
1239
+ "Skip required validation": "Ignorer la validation requise",
1240
+ "Small": "Petite",
1241
+ "SmartTv": "SmartTv",
1242
+ "Some files are not uploaded correctly, please check.": "Some files are not uploaded correctly, please check.",
1243
+ "Sorry, the page you visited does not exist.": "Désolé, la page que vous avez visitée n'existe pas.",
1244
+ "Sort": "Trier",
1245
+ "Sortable": "Triable",
1246
+ "Source collection": "Collection source",
1247
+ "Source collections": "Collections source",
1248
+ "Source key": "Clé source",
1249
+ "Specific properties": "Specific properties",
1250
+ "Specifies a Permissions Policy for the <iframe>. The policy defines what features are available to the <iframe> (for example, access to the microphone, camera, battery, web-share, etc.) based on the origin of the request.": "Specifies a Permissions Policy for the <iframe>. The policy defines what features are available to the <iframe> (for example, access to the microphone, camera, battery, web-share, etc.) based on the origin of the request.",
1251
+ "Specify height": "Specify height",
1252
+ "Start": "Start",
1253
+ "Start accessor": "Start accessor",
1254
+ "Start date field": "Champ de date de début",
1255
+ "State": "State",
1256
+ "Stay on current page": "Rester sur la page actuelle",
1257
+ "Stay on the current popup or page": "Stay on the current popup or page",
1258
+ "Steps": "Steps",
1259
+ "Store the creation time of each record": "Stocker l'heure de création de chaque enregistrement",
1260
+ "Store the creation user of each record": "Enregistrer l'utilisateur de création de chaque enregistrement",
1261
+ "Store the last update time of each record": "Stocker l'heure de dernière mise à jour de chaque enregistrement",
1262
+ "Store the last update user of each record": "Enregistrer l'utilisateur de dernière mise à jour de chaque enregistrement",
1263
+ "Street": "Rue",
1264
+ "String": "String",
1265
+ "String template": "String template",
1266
+ "Style": "Style",
1267
+ "Sub-detail": "Sub-detail",
1268
+ "Sub-details": "Sous-détails",
1269
+ "Sub-form": "Sous-formulaire",
1270
+ "Sub-form(Popover)": "Sub-form(Popover)",
1271
+ "Sub-table": "Sous-tableau",
1272
+ "Subform mode": "Mode sous-formulaire",
1273
+ "Submit": "Envoyer",
1274
+ "Submit action settings": "Submit action settings",
1275
+ "Submit record": "Submit record",
1276
+ "Submitted successfully": "Envoyé avec succès",
1277
+ "Subtable": "Sous-tableau",
1278
+ "Subtable mode": "Mode sous-table",
1279
+ "Successfully": "Successfully",
1280
+ "Suffix": "Suffix",
1281
+ "Super admin": "Super administrateur",
1282
+ "Superior department": "Superior department",
1283
+ "Support filtering multiple blocks simultaneously, support deep selection of relationship fields (e.g.: User/Department/Name)": "Support filtering multiple blocks simultaneously, support deep selection of relationship fields (e.g.: User/Department/Name)",
1284
+ "Support for a single or bulk upload.": "Support for a single or bulk upload.",
1285
+ "Switch role": "Changer de rôle",
1286
+ "Switching the picker, the value and default value will be cleared": "Switching the picker, the value and default value will be cleared",
1287
+ "Sync from database": "Sync from database",
1288
+ "Sync from form fields": "Sync from form fields",
1289
+ "Sync successfully": "Sync successfully",
1290
+ "Syntax references": "Syntax references",
1291
+ "System": "System",
1292
+ "System & security": "System & security",
1293
+ "System fields": "Champs système",
1294
+ "System info": "Informations système",
1295
+ "System management": "System management",
1296
+ "System settings": "Paramètres système",
1297
+ "System title": "Titre du système",
1298
+ "System variables": "Variables système",
1299
+ "Tab": "Onglet",
1300
+ "Tab name": "Nom de l'onglet",
1301
+ "Table": "Tableau",
1302
+ "Table OID(Inheritance)": "Table OID(Héritage)",
1303
+ "Table column settings": "Table column settings",
1304
+ "Table density": "Table density",
1305
+ "Table selected records": "Table selected records",
1306
+ "Table settings": "Table settings",
1307
+ "Table size": "Table size",
1308
+ "Tablet": "Tablet",
1309
+ "Tablet device": "Tablette",
1310
+ "Tag": "Tag",
1311
+ "Tag color field": "Tag color field",
1312
+ "Target": "Cible",
1313
+ "Target block UID": "Target block UID",
1314
+ "Target block uid": "Target block uid",
1315
+ "Target collection": "Collection cible",
1316
+ "Target form block": "Target form block",
1317
+ "Target key": "Clé cible",
1318
+ "Target position": "Position cible",
1319
+ "Template": "Modèle",
1320
+ "Template Data": "Template Data",
1321
+ "Template engine": "Template engine",
1322
+ "Template fields": "Template fields",
1323
+ "Template name": "Nom du modèle",
1324
+ "Templates": "Modèles",
1325
+ "Text": "Text",
1326
+ "Text Align": "Text Align",
1327
+ "Text input": "Text input",
1328
+ "Text only": "Text only",
1329
+ "The application is reloading, please do not close the page.": "The application is reloading, please do not close the page.",
1330
+ "The current button is hidden and cannot be clicked (this message is only visible when the UI Editor is active).": "The current button is hidden and cannot be clicked (this message is only visible when the UI Editor is active).",
1331
+ "The current dependency version of the plugin does not match the version of the application and may not work properly. Are you sure you want to continue enabling the plugin?": "The current dependency version of the plugin does not match the version of the application and may not work properly. Are you sure you want to continue enabling the plugin?",
1332
+ "The current user only has the UI configuration permission, but don't have \"{{actionName}}\" permission for collection \"{{name}}\"": "The current user only has the UI configuration permission, but don't have \"{{actionName}}\" permission for collection \"{{name}}\"",
1333
+ "The current user only has the UI configuration permission, but don't have \"{{actionName}}\" permission for field \"{{name}}\"": "The current user only has the UI configuration permission, but don't have \"{{actionName}}\" permission for field \"{{name}}\"",
1334
+ "The current user only has the UI configuration permission, but don't have view permission for collection \"{{name}}\"": "The current user only has the UI configuration permission, but don't have view permission for collection \"{{name}}\"",
1335
+ "The deletion was successful.": "La suppression a réussi.",
1336
+ "The field has been deleted": "Le champ a été supprimé",
1337
+ "The field value cannot be greater than ": "La valeur du champ ne peut pas être supérieure à ",
1338
+ "The field value cannot be less than ": "La valeur du champ ne peut pas être inférieure à ",
1339
+ "The field value is not a email format": "The field value is not a email format",
1340
+ "The field value is not an integer number": "La valeur du champ n'est pas un nombre entier",
1341
+ "The field value is required": "The field value is required",
1342
+ "The following field types are not compatible and do not support output and display": "The following field types are not compatible and do not support output and display",
1343
+ "The selected fields will automatically populate the form": "The selected fields will automatically populate the form",
1344
+ "The title field is used to identify the template record": "The title field is used to identify the template record",
1345
+ "The value of this variable is derived from the query string of the page URL. This variable can only be used normally when the page has a query string.": "La valeur de cette variable est dérivée de la chaîne de requête de l'URL de la page. Cette variable ne peut être utilisée normalement que lorsque la page a une chaîne de requête.",
1346
+ "The will interrupt service, it may take a few seconds to restart. Are you sure to continue?": "The will interrupt service, it may take a few seconds to restart. Are you sure to continue?",
1347
+ "The {{type}} \"{{name}}\" may have been deleted. Please remove this {{blockType}}.": "Le {{type}} \"{{name}}\" a peut-être été supprimé. Veuillez supprimer ce {{blockType}}.",
1348
+ "Theme": "Theme",
1349
+ "Then": "Ensuite",
1350
+ "Third party services": "Third party services",
1351
+ "This Month": "This Month",
1352
+ "This Quarter": "This Quarter",
1353
+ "This Week": "This Week",
1354
+ "This Year": "This Year",
1355
+ "This and following events": "Cet événement et les suivants",
1356
+ "This event": "Cet événement",
1357
+ "This field has been hidden and you cannot view it (this content is only visible when the UI Editor is activated).": "This field has been hidden and you cannot view it (this content is only visible when the UI Editor is activated).",
1358
+ "This field is required": "This field is required",
1359
+ "This is a demo text, **supports Markdown syntax**.": "Ceci est un texte de démonstration, **prend en charge la syntaxe Markdown.**",
1360
+ "This is likely a NocoBase internals bug. Please open an issue at <1>here</1>": "Ceci est probablement un bogue interne de NocoBase. Veuillez ouvrir un problème <1>ici</1>",
1361
+ "This month": "Ce mois-ci",
1362
+ "This quarter": "Ce trimestre",
1363
+ "This variable has been deprecated and can be replaced with \"Current form\"": "La variable a été obsolète ; \"Formulaire actuel\" peut être utilisé comme substitut",
1364
+ "This week": "Cette semaine",
1365
+ "This year": "Cette année",
1366
+ "Through collection": "Collection intermédiaire",
1367
+ "Time": "Heure",
1368
+ "Time format": "Format d'heure",
1369
+ "Time scale": "Échelle de temps",
1370
+ "Timeout config": "Timeout config",
1371
+ "Timestamp": "Timestamp",
1372
+ "Title": "Titre",
1373
+ "Title & description": "Title & description",
1374
+ "Title accessor": "Title accessor",
1375
+ "Title field": "Champ de titre",
1376
+ "Title field component": "Title field component",
1377
+ "Title position": "Title position",
1378
+ "Today": "Aujourd'hui",
1379
+ "Toggles the subfield mode": "Activer/désactiver le mode sous-champ",
1380
+ "Tomorrow": "Demain",
1381
+ "Tooltip": "Tooltip",
1382
+ "Top left": "Top left",
1383
+ "Top right": "Top right",
1384
+ "Total {{count}} items": "Total {{count}} éléments",
1385
+ "Tree collection": "Tree collection",
1386
+ "Tree table": "Tableau arborescent",
1387
+ "Trigger condition": "Trigger condition",
1388
+ "Trigger event": "Trigger event",
1389
+ "Trigger workflow": "Déclencher un workflow",
1390
+ "Triggered when the row is clicked": "Déclenché lorsque la ligne est cliquée",
1391
+ "True": "True",
1392
+ "Try again": "Réessayer",
1393
+ "Turn pages": "Tourner les pages",
1394
+ "Two tone": "Two tone",
1395
+ "Type": "Genre",
1396
+ "UI Editor": "Éditeur d'interface utilisateur",
1397
+ "UI editor": "Éditeur d'interface utilisateur",
1398
+ "URL": "URL",
1399
+ "URL search params": "Paramètres de recherche d'URL",
1400
+ "UnSelect all": "UnSelect all",
1401
+ "Unauthenticated. Please sign in to continue.": "Unauthenticated. Please sign in to continue.",
1402
+ "Unconnected": "Non connecté",
1403
+ "Unicode characters are permitted": "Unicode characters are permitted",
1404
+ "Unique": "Unique",
1405
+ "Unit conversion": "Unit conversion",
1406
+ "Unix Timestamp": "Unix Timestamp",
1407
+ "Unknown field type": "Unknown field type",
1408
+ "Unnamed": "Unnamed",
1409
+ "Unpinned": "Défixer",
1410
+ "Unsafe integer": "Unsafe integer",
1411
+ "Unsaved changes": "Modifications non enregistrées",
1412
+ "Update": "Mettre à jour",
1413
+ "Update all data?": "Mettre à jour toutes les données ?",
1414
+ "Update or create": "Mettre à jour ou créer",
1415
+ "Update plugin": "Mettre à jour le plugin",
1416
+ "Update record": "Update record",
1417
+ "Update record action": "Update record",
1418
+ "Update selected data?": "Mettre à jour les données sélectionnées ?",
1419
+ "Updated successfully": "Mis à jour avec succès",
1420
+ "UpdatedAt": "Enregistrer le dernier utilisateur ayant effectué une mise à jour de la ligne",
1421
+ "UpdatedBy": "Enregistrer le dernier utilisateur ayant effectué une mise à jour de la ligne",
1422
+ "Upgrade": "Mise à jour",
1423
+ "Upload": "Télécharger",
1424
+ "Upload file settings": "Upload file settings",
1425
+ "Upload new version": "Télécharger une nouvelle version",
1426
+ "Upload plugin": "Télécharger un plugin",
1427
+ "Uploading": "Uploading",
1428
+ "Use simple pagination mode": "Use simple pagination mode",
1429
+ "Use the same time zone (GMT) for all users": "Utiliser le même fuseau horaire (GMT) pour tous les utilisateurs",
1430
+ "Used for drag and drop sorting scenarios, supporting grouping sorting": "Used for drag and drop sorting scenarios, supporting grouping sorting",
1431
+ "User": "Utilisateur",
1432
+ "User not found. Please sign in again to continue.": "User not found. Please sign in again to continue.",
1433
+ "User password changed, please signin again.": "User password changed, please signin again.",
1434
+ "Username": "Username",
1435
+ "Users": "Utilisateurs",
1436
+ "Users & permissions": "Users & permissions",
1437
+ "Valid range: 10-40": "Valid range: 10-40",
1438
+ "Valid range: 100-900": "Valid range: 100-900",
1439
+ "Validation": "Validation",
1440
+ "Validation rule": "Règle de validation",
1441
+ "Value": "Valeur",
1442
+ "Variable identifier": "Variable identifier",
1443
+ "Variable title": "Variable title",
1444
+ "Verification code": "Code de vérification",
1445
+ "Version": "Version",
1446
+ "Version range": "Plage de version",
1447
+ "Vertical": "Vertical",
1448
+ "View": "Voir",
1449
+ "View all plugins": "Voir tous les plugins",
1450
+ "View record": "Voir l'enregistrement",
1451
+ "Village": "Village",
1452
+ "Visible": "Visible",
1453
+ "Volcano": "Volcan",
1454
+ "Wearable": "Wearable",
1455
+ "Week": "Semaine",
1456
+ "Weekly": "Hebdomadaire",
1457
+ "When a field is selected for grouping, it will be grouped first before sorting.": "When a field is selected for grouping, it will be grouped first before sorting.",
1458
+ "When condition is met": "When condition is met",
1459
+ "When condition is not met": "When condition is not met",
1460
+ "When submitting the following fields, the saved values are": "Lors de l'envoi des champs suivants, les valeurs enregistrées sont",
1461
+ "When the HTTP method is Post, Put or Patch, and this custom request inside the form, the request body will be automatically filled in with the form data": "When the HTTP method is Post, Put or Patch, and this custom request inside the form, the request body will be automatically filled in with the form data",
1462
+ "When the Label exceeds the width": "When the Label exceeds the width",
1463
+ "With condition": "With condition",
1464
+ "Without condition": "Without condition",
1465
+ "Work week": "Semaine de travail",
1466
+ "Workflow": "Workflow",
1467
+ "Wrap": "Wrap",
1468
+ "Wysiwyg": "Wysiwyg",
1469
+ "Year": "Année",
1470
+ "Year-Month-Day": "Année-Mois-Jour",
1471
+ "Year/Month/Day": "Année/Mois/Jour",
1472
+ "Yearly": "Annuel",
1473
+ "Yes": "Oui",
1474
+ "Yesterday": "Hier",
1475
+ "Your session has expired. Please sign in again.": "Your session has expired. Please sign in again.",
1476
+ "conditions in the group": "conditions in the group",
1477
+ "contains": "contient",
1478
+ "data source": "source de données",
1479
+ "does not contain": "ne contient pas",
1480
+ "edit title": "modifier le titre",
1481
+ "ends with": "se termine par",
1482
+ "exists": "existe",
1483
+ "is": "est",
1484
+ "is after": "est après",
1485
+ "is any of": "is any of",
1486
+ "is before": "est avant",
1487
+ "is between": "est entre",
1488
+ "is empty": "est vide",
1489
+ "is none of": "is none of",
1490
+ "is not": "n'est pas",
1491
+ "is not empty": "n'est pas vide",
1492
+ "is on or after": "est le même jour ou après",
1493
+ "is on or before": "est le même jour ou avant",
1494
+ "item": "item",
1495
+ "items": "items",
1496
+ "loading": "chargement",
1497
+ "name is required": "le nom est requis",
1498
+ "not ends with": "ne se termine pas par",
1499
+ "not exists": "n'existe pas",
1500
+ "not starts with": "ne commence pas par",
1501
+ "pixels": "pixels",
1502
+ "re-download file": "re-télécharger le fichier",
1503
+ "starts with": "commence par",
1504
+ "tlds": "tlds",
1505
+ "visible": "visible",
1506
+ "{{#label}} email address doesn’t meet the required format": "{{#label}} email address doesn’t meet the required format",
1507
+ "{{#label}} is not allowed to be empty": "{{#label}} is not allowed to be empty",
1508
+ "{{#label}} is required": "{{#label}} is required",
1509
+ "{{#label}} length must be at least {{#limit}} characters long": "{{#label}} length must be at least {{#limit}} characters long",
1510
+ "{{#label}} length must be less than or equal to {{#limit}} characters long": "{{#label}} length must be less than or equal to {{#limit}} characters long",
1511
+ "{{#label}} length must be {{#limit}} characters long": "{{#label}} length must be {{#limit}} characters long",
1512
+ "{{#label}} must be a credit card": "{{#label}} must be a credit card",
1513
+ "{{#label}} must be a float or double": "{{#label}} must be a float or double",
1514
+ "{{#label}} must be a multiple of {{#multiple}}": "{{#label}} must be a multiple of {{#multiple}}",
1515
+ "{{#label}} must be a negative number": "{{#label}} must be a negative number",
1516
+ "{{#label}} must be a number": "{{#label}} must be a number",
1517
+ "{{#label}} must be a positive number": "{{#label}} must be a positive number",
1518
+ "{{#label}} must be a safe number": "{{#label}} must be a safe number",
1519
+ "{{#label}} must be a string": "{{#label}} must be a string",
1520
+ "{{#label}} must be a valid ISO 8601 date": "{{#label}} must be a valid ISO 8601 date",
1521
+ "{{#label}} must be a valid UUID": "{{#label}} must be a valid UUID",
1522
+ "{{#label}} must be a valid date": "{{#label}} must be a valid date",
1523
+ "{{#label}} must be a valid hostname": "{{#label}} must be a valid hostname",
1524
+ "{{#label}} must be a valid port": "{{#label}} must be a valid port",
1525
+ "{{#label}} must be a valid uri": "{{#label}} must be a valid uri",
1526
+ "{{#label}} must be a valid uri with a scheme matching the {{#scheme}} pattern": "{{#label}} must be a valid uri with a scheme matching the {{#scheme}} pattern",
1527
+ "{{#label}} must be an integer": "{{#label}} must be an integer",
1528
+ "{{#label}} must be greater than or equal to {{#limit}}": "{{#label}} must be greater than or equal to {{#limit}}",
1529
+ "{{#label}} must be greater than {{#limit}}": "{{#label}} must be greater than {{#limit}}",
1530
+ "{{#label}} must be in {{#format}} format": "{{#label}} must be in {{#format}} format",
1531
+ "{{#label}} must be less than or equal to {{#limit}}": "{{#label}} must be less than or equal to {{#limit}}",
1532
+ "{{#label}} must be less than {{#limit}}": "{{#label}} must be less than {{#limit}}",
1533
+ "{{#label}} must not have leading or trailing whitespace": "{{#label}} must not have leading or trailing whitespace",
1534
+ "{{#label}} must not have more than {{#limit}} decimal places": "{{#label}} must not have more than {{#limit}} decimal places",
1535
+ "{{#label}} must only contain alpha-numeric and underscore characters": "{{#label}} must only contain alpha-numeric and underscore characters",
1536
+ "{{#label}} must only contain alpha-numeric characters": "{{#label}} must only contain alpha-numeric characters",
1537
+ "{{#label}} must only contain hexadecimal characters": "{{#label}} must only contain hexadecimal characters",
1538
+ "{{#label}} must only contain lowercase characters": "{{#label}} must only contain lowercase characters",
1539
+ "{{#label}} must only contain uppercase characters": "{{#label}} must only contain uppercase characters",
1540
+ "{{#label}} with value \"{{#value}}\" fails to match the required pattern": "{{#label}} with value \"{{#value}}\" fails to match the required pattern",
1541
+ "{{#label}} with value \"{{#value}}\" fails to match the {{#name}} pattern": "{{#label}} with value \"{{#value}}\" fails to match the {{#name}} pattern",
1542
+ "{{#label}} with value \"{{#value}}\" matches the inverted pattern": "{{#label}} with value \"{{#value}}\" matches the inverted pattern",
1543
+ "{{#label}} with value \"{{#value}}\" matches the inverted {{#name}} pattern": "{{#label}} with value \"{{#value}}\" matches the inverted {{#name}} pattern",
1544
+ "{{count}} filter items": "{{count}} éléments filtrés",
1545
+ "{{count}} more items": "{{count}} autres éléments",
1546
+ "≠": "≠",
1547
+ "≤": "≤",
1548
+ "≥": "≥"
1549
+ }