@firecms/core 3.1.0-canary.9e89e98 → 3.1.0-canary.adb5759

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 (216) hide show
  1. package/dist/components/EntityCollectionTable/internal/popup_field/useDraggable.d.ts +2 -2
  2. package/dist/components/EntityCollectionView/CollectionDataErrorBanner.d.ts +4 -0
  3. package/dist/components/ErrorBoundary.d.ts +4 -2
  4. package/dist/components/HomePage/DefaultHomePage.d.ts +0 -1
  5. package/dist/components/LanguageToggle.d.ts +1 -0
  6. package/dist/components/UnsavedChangesDialog.d.ts +1 -0
  7. package/dist/components/VirtualTable/VirtualTableHeader.d.ts +1 -1
  8. package/dist/components/index.d.ts +1 -0
  9. package/dist/core/DrawerNavigationGroup.d.ts +2 -2
  10. package/dist/editor/components/SlashCommandMenu.d.ts +6 -0
  11. package/dist/editor/components/editor-bubble-item.d.ts +8 -0
  12. package/dist/editor/components/editor-bubble.d.ts +8 -0
  13. package/dist/editor/components/image-bubble.d.ts +5 -0
  14. package/dist/editor/components/index.d.ts +16 -0
  15. package/dist/editor/components/table-bubble.d.ts +5 -0
  16. package/dist/editor/editor.d.ts +30 -0
  17. package/dist/editor/extensions/HighlightDecorationExtension.d.ts +24 -0
  18. package/dist/editor/extensions/Image/index.d.ts +6 -0
  19. package/dist/editor/extensions/Image.d.ts +6 -0
  20. package/dist/editor/extensions/TextLoadingDecorationExtension.d.ts +16 -0
  21. package/dist/editor/extensions/clipboard.d.ts +7 -0
  22. package/dist/editor/extensions/custom-keymap.d.ts +1 -0
  23. package/dist/editor/extensions/drag-and-drop.d.ts +9 -0
  24. package/dist/editor/hooks/useProseMirror.d.ts +13 -0
  25. package/dist/editor/hooks/useProseMirrorContext.d.ts +9 -0
  26. package/dist/editor/index.d.ts +2 -0
  27. package/dist/editor/markdown.d.ts +5 -0
  28. package/dist/editor/nodeViews/ImageComponent.d.ts +3 -0
  29. package/dist/editor/nodeViews/ReactNodeView.d.ts +29 -0
  30. package/dist/editor/nodeViews/TaskItemComponent.d.ts +3 -0
  31. package/dist/editor/nodeViews/index.d.ts +6 -0
  32. package/dist/editor/plugins/index.d.ts +2 -0
  33. package/dist/editor/plugins/inputrules.d.ts +6 -0
  34. package/dist/editor/plugins/placeholderPlugin.d.ts +3 -0
  35. package/dist/editor/plugins/slashCommandPlugin.d.ts +12 -0
  36. package/dist/editor/schema.d.ts +2 -0
  37. package/dist/editor/selectors/ai-selector.d.ts +0 -0
  38. package/dist/editor/selectors/color-selector.d.ts +10 -0
  39. package/dist/editor/selectors/link-selector.d.ts +8 -0
  40. package/dist/editor/selectors/node-selector.d.ts +15 -0
  41. package/dist/editor/selectors/text-buttons.d.ts +1 -0
  42. package/dist/editor/types.d.ts +5 -0
  43. package/dist/editor/useProseMirror.d.ts +16 -0
  44. package/dist/editor/utils/prosemirror-utils.d.ts +6 -0
  45. package/dist/editor/utils/remove_classes.d.ts +1 -0
  46. package/dist/editor/utils/useDebouncedCallback.d.ts +1 -0
  47. package/dist/form/components/ErrorFocus.d.ts +1 -1
  48. package/dist/form/field_bindings/MarkdownEditorFieldBinding.d.ts +1 -1
  49. package/dist/hooks/index.d.ts +1 -0
  50. package/dist/hooks/useBuildNavigationController.d.ts +0 -1
  51. package/dist/hooks/useCollapsedGroups.d.ts +3 -3
  52. package/dist/hooks/useTranslation.d.ts +17 -0
  53. package/dist/i18n/FireCMSi18nProvider.d.ts +33 -0
  54. package/dist/index.d.ts +4 -0
  55. package/dist/index.es.js +13009 -2312
  56. package/dist/index.es.js.map +1 -1
  57. package/dist/index.umd.js +12997 -2320
  58. package/dist/index.umd.js.map +1 -1
  59. package/dist/internal/useRestoreScroll.d.ts +1 -1
  60. package/dist/locales/de.d.ts +2 -0
  61. package/dist/locales/en.d.ts +10 -0
  62. package/dist/locales/es.d.ts +10 -0
  63. package/dist/locales/fr.d.ts +2 -0
  64. package/dist/locales/hi.d.ts +2 -0
  65. package/dist/locales/it.d.ts +2 -0
  66. package/dist/locales/pt.d.ts +7 -0
  67. package/dist/types/analytics.d.ts +1 -1
  68. package/dist/types/customization_controller.d.ts +2 -1
  69. package/dist/types/firecms.d.ts +2 -1
  70. package/dist/types/index.d.ts +1 -0
  71. package/dist/types/navigation.d.ts +2 -2
  72. package/dist/types/plugins.d.ts +23 -0
  73. package/dist/types/storage.d.ts +1 -0
  74. package/dist/types/translations.d.ts +646 -0
  75. package/dist/util/entities.d.ts +1 -1
  76. package/dist/util/resolutions.d.ts +2 -2
  77. package/dist/util/useStorageUploadController.d.ts +10 -1
  78. package/package.json +49 -13
  79. package/src/app/Scaffold.tsx +7 -5
  80. package/src/components/AIIcon.tsx +3 -1
  81. package/src/components/ArrayContainer.tsx +6 -4
  82. package/src/components/ClearFilterSortButton.tsx +6 -3
  83. package/src/components/ConfirmationDialog.tsx +4 -2
  84. package/src/components/DeleteEntityDialog.tsx +10 -7
  85. package/src/components/EntityCollectionTable/fields/TableReferenceField.tsx +6 -3
  86. package/src/components/EntityCollectionTable/internal/CollectionTableToolbar.tsx +3 -1
  87. package/src/components/EntityCollectionTable/internal/EntityTableCellActions.tsx +1 -1
  88. package/src/components/EntityCollectionTable/internal/popup_field/PopupFormField.tsx +3 -2
  89. package/src/components/EntityCollectionTable/internal/popup_field/useDraggable.tsx +11 -11
  90. package/src/components/EntityCollectionView/BoardSortableList.tsx +3 -1
  91. package/src/components/EntityCollectionView/CollectionDataErrorBanner.tsx +43 -0
  92. package/src/components/EntityCollectionView/EntityBoardCard.tsx +1 -1
  93. package/src/components/EntityCollectionView/EntityCard.tsx +4 -0
  94. package/src/components/EntityCollectionView/EntityCollectionBoardView.tsx +39 -46
  95. package/src/components/EntityCollectionView/EntityCollectionCardView.tsx +17 -25
  96. package/src/components/EntityCollectionView/EntityCollectionView.tsx +54 -17
  97. package/src/components/EntityCollectionView/EntityCollectionViewActions.tsx +4 -3
  98. package/src/components/EntityCollectionView/EntityCollectionViewStartActions.tsx +4 -2
  99. package/src/components/EntityCollectionView/FiltersDialog.tsx +8 -5
  100. package/src/components/EntityCollectionView/ViewModeToggle.tsx +11 -8
  101. package/src/components/EntityView.tsx +3 -2
  102. package/src/components/ErrorBoundary.tsx +27 -15
  103. package/src/components/HomePage/DefaultHomePage.tsx +19 -13
  104. package/src/components/HomePage/HomePageDnD.tsx +3 -1
  105. package/src/components/HomePage/NavigationGroup.tsx +3 -1
  106. package/src/components/HomePage/RenameGroupDialog.tsx +15 -13
  107. package/src/components/LanguageToggle.tsx +66 -0
  108. package/src/components/NotFoundPage.tsx +5 -3
  109. package/src/components/ReferenceTable/ReferenceSelectionTable.tsx +9 -7
  110. package/src/components/ReferenceWidget.tsx +3 -2
  111. package/src/components/SearchIconsView.tsx +3 -1
  112. package/src/components/SelectableTable/filters/DateTimeFilterField.tsx +11 -0
  113. package/src/components/SelectableTable/filters/ReferenceFilterField.tsx +15 -2
  114. package/src/components/SelectableTable/filters/StringNumberFilterField.tsx +11 -0
  115. package/src/components/UnsavedChangesDialog.tsx +6 -4
  116. package/src/components/VirtualTable/VirtualTable.performance.test.tsx +1 -0
  117. package/src/components/VirtualTable/VirtualTable.tsx +116 -113
  118. package/src/components/VirtualTable/VirtualTableHeader.tsx +54 -52
  119. package/src/components/VirtualTable/VirtualTableHeaderRow.tsx +1 -1
  120. package/src/components/VirtualTable/fields/VirtualTableSelect.tsx +3 -3
  121. package/src/components/common/default_entity_actions.tsx +4 -0
  122. package/src/components/common/useDataSourceTableController.tsx +12 -4
  123. package/src/components/index.tsx +1 -0
  124. package/src/core/DefaultAppBar.tsx +15 -11
  125. package/src/core/DefaultDrawer.tsx +8 -2
  126. package/src/core/DrawerNavigationGroup.tsx +5 -3
  127. package/src/core/EntityEditView.tsx +4 -3
  128. package/src/core/EntityEditViewFormActions.tsx +24 -17
  129. package/src/core/EntitySidePanel.tsx +32 -29
  130. package/src/core/FireCMS.tsx +33 -6
  131. package/src/core/field_configs.tsx +14 -9
  132. package/src/editor/components/SlashCommandMenu.tsx +516 -0
  133. package/src/editor/components/editor-bubble-item.tsx +32 -0
  134. package/src/editor/components/editor-bubble.tsx +118 -0
  135. package/src/editor/components/image-bubble.tsx +156 -0
  136. package/src/editor/components/index.ts +14 -0
  137. package/src/editor/components/table-bubble.tsx +165 -0
  138. package/src/editor/editor.tsx +455 -0
  139. package/src/editor/extensions/HighlightDecorationExtension.ts +114 -0
  140. package/src/editor/extensions/Image/index.ts +133 -0
  141. package/src/editor/extensions/Image.ts +159 -0
  142. package/src/editor/extensions/TextLoadingDecorationExtension.tsx +107 -0
  143. package/src/editor/extensions/clipboard.ts +72 -0
  144. package/src/editor/extensions/custom-keymap.ts +24 -0
  145. package/src/editor/extensions/drag-and-drop.tsx +480 -0
  146. package/src/editor/hooks/useProseMirror.ts +124 -0
  147. package/src/editor/hooks/useProseMirrorContext.ts +15 -0
  148. package/src/editor/index.ts +2 -0
  149. package/src/editor/markdown.ts +172 -0
  150. package/src/editor/nodeViews/ImageComponent.tsx +20 -0
  151. package/src/editor/nodeViews/ReactNodeView.tsx +89 -0
  152. package/src/editor/nodeViews/TaskItemComponent.tsx +29 -0
  153. package/src/editor/nodeViews/index.ts +35 -0
  154. package/src/editor/plugins/index.ts +58 -0
  155. package/src/editor/plugins/inputrules.ts +82 -0
  156. package/src/editor/plugins/placeholderPlugin.ts +55 -0
  157. package/src/editor/plugins/slashCommandPlugin.ts +61 -0
  158. package/src/editor/schema.ts +240 -0
  159. package/src/editor/selectors/ai-selector.tsx +111 -0
  160. package/src/editor/selectors/color-selector.tsx +200 -0
  161. package/src/editor/selectors/link-selector.tsx +118 -0
  162. package/src/editor/selectors/node-selector.tsx +157 -0
  163. package/src/editor/selectors/text-buttons.tsx +86 -0
  164. package/src/editor/types.ts +6 -0
  165. package/src/editor/useProseMirror.ts +126 -0
  166. package/src/editor/utils/prosemirror-utils.ts +108 -0
  167. package/src/editor/utils/remove_classes.ts +17 -0
  168. package/src/editor/utils/useDebouncedCallback.ts +25 -0
  169. package/src/form/EntityForm.tsx +85 -63
  170. package/src/form/EntityFormActions.tsx +19 -12
  171. package/src/form/PropertyFieldBinding.tsx +6 -5
  172. package/src/form/components/ErrorFocus.tsx +3 -3
  173. package/src/form/components/LocalChangesMenu.tsx +13 -13
  174. package/src/form/components/StorageItemPreview.tsx +3 -2
  175. package/src/form/components/StorageUploadProgress.tsx +18 -3
  176. package/src/form/field_bindings/ArrayOfReferencesFieldBinding.tsx +4 -4
  177. package/src/form/field_bindings/BlockFieldBinding.tsx +5 -2
  178. package/src/form/field_bindings/KeyValueFieldBinding.tsx +23 -18
  179. package/src/form/field_bindings/MapFieldBinding.tsx +4 -3
  180. package/src/form/field_bindings/MarkdownEditorFieldBinding.tsx +34 -20
  181. package/src/form/field_bindings/RepeatFieldBinding.tsx +3 -1
  182. package/src/form/field_bindings/StorageUploadFieldBinding.tsx +87 -86
  183. package/src/hooks/index.tsx +1 -0
  184. package/src/hooks/useBuildNavigationController.tsx +49 -22
  185. package/src/hooks/useCollapsedGroups.ts +7 -6
  186. package/src/hooks/useTranslation.ts +31 -0
  187. package/src/hooks/useValidateAuthenticator.tsx +1 -1
  188. package/src/i18n/FireCMSi18nProvider.tsx +160 -0
  189. package/src/index.ts +4 -0
  190. package/src/internal/useBuildDataSource.ts +1 -2
  191. package/src/internal/useBuildSideEntityController.tsx +22 -20
  192. package/src/locales/de.ts +691 -0
  193. package/src/locales/en.ts +703 -0
  194. package/src/locales/es.ts +703 -0
  195. package/src/locales/fr.ts +691 -0
  196. package/src/locales/hi.ts +691 -0
  197. package/src/locales/it.ts +691 -0
  198. package/src/locales/pt.ts +700 -0
  199. package/src/preview/PropertyPreview.tsx +1 -0
  200. package/src/preview/components/UrlComponentPreview.tsx +4 -2
  201. package/src/preview/components/UserPreview.tsx +3 -1
  202. package/src/types/analytics.ts +10 -0
  203. package/src/types/customization_controller.tsx +2 -1
  204. package/src/types/firecms.tsx +2 -1
  205. package/src/types/index.ts +1 -0
  206. package/src/types/navigation.ts +2 -2
  207. package/src/types/plugins.tsx +26 -0
  208. package/src/types/properties.ts +1 -0
  209. package/src/types/storage.ts +2 -1
  210. package/src/types/translations.ts +725 -0
  211. package/src/util/entities.ts +1 -1
  212. package/src/util/join_collections.ts +10 -8
  213. package/src/util/previews.ts +2 -2
  214. package/src/util/property_utils.tsx +1 -1
  215. package/src/util/resolutions.ts +5 -3
  216. package/src/util/useStorageUploadController.tsx +23 -29
@@ -0,0 +1,725 @@
1
+ /**
2
+ * Recursively makes all properties optional.
3
+ * Used to type partial translation overrides.
4
+ */
5
+ export type DeepPartial<T> = T extends object
6
+ ? { [K in keyof T]?: DeepPartial<T[K]> }
7
+ : T;
8
+
9
+ /**
10
+ * All user-visible strings used internally by @firecms/core.
11
+ * Pass a `DeepPartial<FireCMSTranslations>` via the `translations` prop
12
+ * on your FireCMS entry-point component to override any key, or to add
13
+ * a new locale.
14
+ *
15
+ * @group Core
16
+ */
17
+ export interface FireCMSTranslations {
18
+ // ─── Form actions ────────────────────────────────────────────
19
+ save: string;
20
+ create: string;
21
+ /** Used when duplicating an existing entity */
22
+ create_copy: string;
23
+ save_and_close: string;
24
+ create_copy_and_close: string;
25
+ create_and_close: string;
26
+ /** Discard changes on an existing entity */
27
+ discard: string;
28
+ /** Clear a new/copy form (not yet persisted) */
29
+ clear: string;
30
+ cancel: string;
31
+
32
+ // ─── Entity actions ──────────────────────────────────────────
33
+ edit: string;
34
+ copy: string;
35
+ delete: string;
36
+
37
+ // ─── Delete dialog ───────────────────────────────────────────
38
+ delete_confirmation_title: string;
39
+ delete_confirmation_body: string;
40
+ delete_multiple_confirmation_body: string;
41
+
42
+ // ─── Unsaved-changes dialog ───────────────────────────────────
43
+ unsaved_changes_title: string;
44
+ unsaved_changes_body: string;
45
+ discard_changes: string;
46
+ keep_editing: string;
47
+
48
+ // ─── Collection table / toolbar ──────────────────────────────
49
+ search: string;
50
+ find_by_id: string;
51
+ find_entity_by_id: string;
52
+ filter: string;
53
+ clear_filter: string;
54
+ clear_filter_sort: string;
55
+ clear_sort: string;
56
+ no_items: string;
57
+ no_entries_found: string;
58
+ all_entries_loaded: string;
59
+ create_your_first_entry: string;
60
+ no_results_filter_sort: string;
61
+ add: string;
62
+ remove: string;
63
+ copy_id: string;
64
+ add_specific: string;
65
+ select_specific: string;
66
+ select_from: string;
67
+ done: string;
68
+ log_out: string;
69
+ license_needed: string;
70
+ license_description: string;
71
+ column_cannot_be_edited: string;
72
+ close: string;
73
+ unsaved_local_changes: string;
74
+ unsaved_local_changes_description: string;
75
+ preview_changes: string;
76
+ apply_changes: string;
77
+ discard_local_changes: string;
78
+ preview_local_changes: string;
79
+ preview_local_changes_description: string;
80
+ type: string;
81
+ string: string;
82
+ number: string;
83
+ boolean: string;
84
+ date: string;
85
+ map: string;
86
+ array: string;
87
+ arrays_of_arrays_not_supported: string;
88
+ data_type_not_supported: string;
89
+ browser_does_not_support_audio: string;
90
+ user_not_found: string;
91
+
92
+ // ─── Collection view actions ──────────────────────────────────
93
+ /** "Delete" action on collections, may require permissions check */
94
+ delete_selected: string;
95
+ cannot_delete_selected: string;
96
+
97
+ // ─── Array / field containers ─────────────────────────────────
98
+ /** Label for buttons that add a new item to a list */
99
+ add_entry: string;
100
+ add_on_top: string;
101
+ add_below: string;
102
+ /** Label when a fieldName is provided — "Add to {fieldName}" */
103
+ add_to_field: string;
104
+ /** Placeholder for the 'value' input in a KeyValue field */
105
+ value: string;
106
+ /** Placeholder for the 'key' input in a KeyValue field */
107
+ key: string;
108
+ /** Drag and drop help text for multiple files */
109
+ drag_drop_multiple: string;
110
+ /** Drag and drop help text for a single file */
111
+ drag_drop_single: string;
112
+
113
+ // ─── Navigation / scaffold ────────────────────────────────────
114
+ open_menu: string;
115
+ close_drawer: string;
116
+ navigation_drawer: string;
117
+
118
+ // ─── Error states ─────────────────────────────────────────────
119
+ error: string;
120
+ error_uploading_file: string;
121
+ error_deleting: string;
122
+ error_before_delete: string;
123
+ error_firestore_index: string;
124
+ create_index: string;
125
+ value_is_not_reference: string;
126
+ click_to_edit: string;
127
+ data_is_not_array_of_references: string;
128
+ collection_does_not_exist: string;
129
+
130
+ // ─── Misc ─────────────────────────────────────────────────────
131
+ loading: string;
132
+ local_changes_applied: string;
133
+ local_changes_discarded: string;
134
+ open_in_console: string;
135
+ see_console_details: string;
136
+ drop_here_create_group: string;
137
+ filter_for_null_values: string;
138
+ value_updated_elsewhere: string;
139
+ add_property: string;
140
+ edit_name: string;
141
+ this_entity_not_exist: string;
142
+ internal_error: string;
143
+ /** Shown in unsaved-changes dialogs */
144
+ are_you_sure_leave: string;
145
+ passkey_error_unsupported: string;
146
+
147
+ admin: string;
148
+ home: string;
149
+ this_form_has_errors: string;
150
+ error_loading_navigation: string;
151
+ error_loading_auth: string;
152
+ this_form_has_been_modified: string;
153
+ current_form_in_sync: string;
154
+ unexpected_value: string;
155
+ unexpected_value_click_to_edit: string;
156
+ unexpected_reference_value: string;
157
+ copy_url_to_clipboard: string;
158
+ open_image_in_new_tab: string;
159
+ reference_not_set: string;
160
+ reference_does_not_exist: string;
161
+ entity_not_found: string;
162
+ file_not_found: string;
163
+ unsaved_changes_in_entity: string;
164
+ delete_this_role: string;
165
+ no_roles_yet: string;
166
+ create_default_roles: string;
167
+ delete_role_confirmation: string;
168
+ delete_this_user: string;
169
+ no_users_yet: string;
170
+ add_logged_user_as_admin: string;
171
+ add_current_user_as_admin: string;
172
+ create_default_roles_and_add_admin: string;
173
+ delete_user_confirmation: string;
174
+ create_your_users_and_roles: string;
175
+ no_users_or_roles_defined: string;
176
+ save_before_changing_schema: string;
177
+ edit_schema_for_this_form: string;
178
+ no_permissions_to_edit_collection: string;
179
+
180
+ // ─── Rename group dialog ──────────────────────────────────────
181
+ rename_group: string;
182
+ group_name_label: string;
183
+ group_name_empty_error: string;
184
+ group_name_exists_error: string;
185
+
186
+ // ─── Search ───────────────────────────────────────────────────
187
+ search_collections: string;
188
+
189
+ // ─── Navigation groups ────────────────────────────────────────
190
+ /** Default group name shown when collections/views have no explicit group */
191
+ views_group: string;
192
+
193
+ // ─── Entity Edit View ─────────────────────────────────────────
194
+ youd_need_to_save_before_additional_collections: string;
195
+
196
+ // ─── Not Found Page ───────────────────────────────────────────
197
+ page_not_found: string;
198
+ page_not_found_body: string;
199
+ back_to_home: string;
200
+
201
+ // ─── Collection Editor ─────────────────────────────────────────
202
+ default_collection_view: string;
203
+ table_view: string;
204
+ cards_view: string;
205
+ kanban_view: string;
206
+ choose_how_entities_displayed_default: string;
207
+
208
+ document_view: string;
209
+ side_panel: string;
210
+ full_screen: string;
211
+ should_documents_opened_full_screen: string;
212
+
213
+ select_custom_view: string;
214
+ no_custom_views_defined: string;
215
+ select_custom_action: string;
216
+ no_custom_actions_defined: string;
217
+
218
+ no_collections_found: string;
219
+ start_building_collections: string;
220
+ create_first_collection: string;
221
+ define_collections_programmatically: string;
222
+
223
+ edit_collection: string;
224
+ no_permissions_edit_collection: string;
225
+ no_permissions_create_collection: string;
226
+ create_collection: string;
227
+ update_collection: string;
228
+
229
+ new_collection: string;
230
+ add_new_collection: string;
231
+ collection_with_name: string;
232
+ change_icon: string;
233
+ is_subcollection_of: string;
234
+ name: string;
235
+ collection_name_description: string;
236
+ path: string;
237
+ relative_path_to_parent: string;
238
+ path_in_database: string;
239
+ singular_name: string;
240
+ singular_name_description: string;
241
+ description: string;
242
+ description_of_collection: string;
243
+ collection_id: string;
244
+ collection_id_description: string;
245
+ collection_group: string;
246
+ collection_group_description: string;
247
+ advanced_settings: string;
248
+ doc_history_global: string;
249
+ doc_history_enabled: string;
250
+ doc_history_not_enabled: string;
251
+ doc_history_description: string;
252
+ document_id_generation: string;
253
+ code_defined: string;
254
+ users_must_define_id: string;
255
+ users_can_define_id: string;
256
+ doc_id_auto_generated: string;
257
+ config_doc_id_generation: string;
258
+ enable_text_search: string;
259
+ text_search_description: string;
260
+ database_id: string;
261
+ default_text: string;
262
+
263
+ custom_actions: string;
264
+ more_info: string;
265
+ define_custom_actions_cli: string;
266
+ action_defined_in_code: string;
267
+ add_custom_entity_action: string;
268
+ remove_this_action: string;
269
+ remove_action_warning: string;
270
+
271
+ subcollections_of: string;
272
+ add_subcollection: string;
273
+ custom_views: string;
274
+ define_custom_views_cli: string;
275
+ view_defined_in_code: string;
276
+ add_custom_entity_view: string;
277
+ delete_this_subcollection: string;
278
+ remove_collection_warning: string;
279
+ remove_this_view: string;
280
+ remove_view_warning: string;
281
+
282
+ no_collection_selected: string;
283
+ code_for_collection: string;
284
+ use_config_define_json: string;
285
+ customise_collection_code: string;
286
+ copied: string;
287
+
288
+ property_cant_be_edited: string;
289
+ property_not_editable_description: string;
290
+ delete_this_property: string;
291
+ delete_property_warning: string;
292
+ error_must_specify_id: string;
293
+ error_id_format: string;
294
+ error_id_already_exists: string;
295
+ error_must_specify_title: string;
296
+ custom_or_other: string;
297
+ select_property_widget: string;
298
+ error_changing_data_type: string;
299
+ required: string;
300
+
301
+ enum_form_dialog: string;
302
+ imported_data_preview: string;
303
+ entities_with_same_id_overwritten: string;
304
+ collection_editor: string;
305
+ properties_in_this_group: string;
306
+ data_property_mapping: string;
307
+ property_edit_view: string;
308
+ all_of_these: string;
309
+ any_of_these: string;
310
+
311
+ only_admins_edit_roles: string;
312
+ error_user_not_found: string;
313
+ role: string;
314
+ name_of_this_role: string;
315
+ id_of_this_role: string;
316
+ create_entities: string;
317
+ read_entities: string;
318
+ update_entities: string;
319
+ delete_entities: string;
320
+ all_collections: string;
321
+ create_entities_in_collections: string;
322
+ access_all_data_in_every_collection: string;
323
+ update_data_in_any_collection: string;
324
+ delete_data_in_any_collection: string;
325
+ allow_all_permissions_in_this_collections: string;
326
+ all: string;
327
+ customise_permissions_description: string;
328
+ create_collections: string;
329
+ yes: string;
330
+ no: string;
331
+ can_user_create_collections: string;
332
+ edit_collections: string;
333
+ only_own_collections: string;
334
+ own: string;
335
+ can_user_edit_collections: string;
336
+ delete_collections: string;
337
+ can_user_delete_collections: string;
338
+ error_saving_role: string;
339
+ create_role: string;
340
+ update: string;
341
+
342
+ only_admins_change_roles: string;
343
+ must_be_at_least_one_admin: string;
344
+ logged_user_not_found: string;
345
+ user: string;
346
+ user_id: string;
347
+ error_updating_asset: string;
348
+ error_deleting_asset: string;
349
+ name_of_this_user: string;
350
+ email_of_this_user: string;
351
+ roles: string;
352
+ create_user: string;
353
+
354
+ filters: string;
355
+ multiple_entities: string;
356
+ unsaved_changes: string;
357
+ so_empty: string;
358
+ no_results: string;
359
+ refresh_data: string;
360
+ dark_mode: string;
361
+ light_mode: string;
362
+ system_mode: string;
363
+ ok: string;
364
+ save_collection_config: string;
365
+ search_for_more_icons: string;
366
+ ai_modified: string;
367
+ size_label: string;
368
+ group_by: string;
369
+ initialize_kanban_order: string;
370
+
371
+ users: string;
372
+ add_user: string;
373
+ add_role: string;
374
+ is_admin: string;
375
+ default_permissions: string;
376
+ created_on: string;
377
+ email: string;
378
+ id: string;
379
+ read: string;
380
+
381
+ // data import
382
+ column_in_file: string;
383
+ map_to_property: string;
384
+ default_values: string;
385
+ default_values_description: string;
386
+ property: string;
387
+ default_value: string;
388
+ autogenerate_id: string;
389
+ id_column_description: string;
390
+ do_not_set_value: string;
391
+ set_value_to_true: string;
392
+ set_value_to_false: string;
393
+ drag_and_drop_file: string;
394
+ error_saving_data: string;
395
+ retry: string;
396
+ saving_data: string;
397
+ entities_saved: string;
398
+ do_not_close_tab: string;
399
+ import: string;
400
+ import_data: string;
401
+ upload_file_description: string;
402
+ back: string;
403
+ next: string;
404
+ save_data: string;
405
+ use_column_as_id: string;
406
+ do_not_import_property: string;
407
+ entities_will_be_overwritten: string;
408
+ data_imported_successfully: string;
409
+
410
+ // data export
411
+ export: string;
412
+ export_data: string;
413
+ download_table_csv: string;
414
+ csv: string;
415
+ json: string;
416
+ dates_as_timestamps: string;
417
+ dates_as_strings: string;
418
+ flatten_arrays: string;
419
+ download: string;
420
+ large_number_of_documents: string;
421
+ include_undefined_values: string;
422
+ submit: string;
423
+
424
+ no_filterable_properties: string;
425
+ apply_filters: string;
426
+ list: string;
427
+ cards: string;
428
+ board: string;
429
+ initialize_kanban_order_desc: string;
430
+ kanban_view_not_available: string;
431
+ kanban_view_requires_enum: string;
432
+ no_enum_values_configured: string;
433
+ items_need_backfill: string;
434
+ initialize: string;
435
+ confirm_multiple_delete: string;
436
+ delete_entity_confirm_title: string;
437
+
438
+ /** AI Collection Generator Popover */
439
+ generate_collection_with_ai: string;
440
+ modify_collection_with_ai: string;
441
+ describe_collection_to_create: string;
442
+ describe_changes_to_make: string;
443
+ ai_placeholder_create: string;
444
+ ai_placeholder_modify: string;
445
+ ai_assist: string;
446
+ generating: string;
447
+
448
+ /** Recently extracted strings for collection editor */
449
+ this_is_subcollection_of: string;
450
+ use_existing_paths_database: string;
451
+ describe_collection_ai: string;
452
+ generate_with_ai: string;
453
+ create_from_json_config: string;
454
+ paste_json_config: string;
455
+ create_collection_from_file_formats: string;
456
+ select_template: string;
457
+ products: string;
458
+ collection_products_subtitle: string;
459
+ collection_users_subtitle: string;
460
+ blog_posts: string;
461
+ collection_blog_posts_subtitle: string;
462
+ pages: string;
463
+ collection_pages_subtitle: string;
464
+ continue_from_scratch: string;
465
+
466
+ /** Admin views config */
467
+ cms_users: string;
468
+ roles_menu: string;
469
+ project_settings: string;
470
+
471
+ // ─── FireCMS Cloud Login ──────────────────────────────────────
472
+ build_admin_panel_in_minutes: string;
473
+ go_live_instantly: string;
474
+ create_production_ready_back_offices: string;
475
+ without_the_frontend_hassle: string;
476
+ automatic_setup: string;
477
+ from_your_existing_firestore_data: string;
478
+ seamless_real_time_firebase_integration: string;
479
+ intuitive_spreadsheet_like_ui: string;
480
+ your_whole_team_can_use: string;
481
+ focus_on_your_app: string;
482
+ not_the_admin_panel: string;
483
+ join_our_newsletter: string;
484
+ by_signing_in_you_agree_to_our: string;
485
+ terms_and_conditions: string;
486
+ and_our: string;
487
+ privacy_policy: string;
488
+ firecms_cloud_google_disclosure: string;
489
+ google_api_services_user_data_policy: string;
490
+ including_the_limited_use_requirements: string;
491
+ email_password: string;
492
+ sign_in_with_google: string;
493
+
494
+ // --- Auth error messages ---
495
+ auth_user_not_found: string;
496
+ auth_wrong_password: string;
497
+ auth_user_disabled: string;
498
+ auth_account_exists_with_different_credential: string;
499
+ auth_email_already_in_use: string;
500
+ auth_google_permissions_required: string;
501
+ auth_invalid_email_password: string;
502
+ auth_enter_email_first: string;
503
+ auth_password_reset_sent: string;
504
+ auth_sign_in_account: string;
505
+ auth_create_new_account: string;
506
+ auth_password: string;
507
+ auth_reset_password: string;
508
+ auth_new_user: string;
509
+ auth_have_account: string;
510
+ auth_sign_in: string;
511
+ auth_sign_up: string;
512
+
513
+ // --- SaaS Subscriptions ---
514
+ subscriptions: string;
515
+ manage_your_subscriptions_in_stripe: string;
516
+ go_to_your_stripe_portal: string;
517
+ your_pro_licenses: string;
518
+ create_new_license: string;
519
+ create_subscriptions_in_this_section: string;
520
+ if_you_are_an_agency: string;
521
+ if_you_have_any_questions: string;
522
+ you_have_not_created_any_pro_licenses: string;
523
+ archive: string;
524
+ licensed_projects_lowercase: string;
525
+ manage: string;
526
+ update_payment_method: string;
527
+ your_firecms_cloud_projects: string;
528
+ status_active: string;
529
+ status_trialing: string;
530
+ status_past_due: string;
531
+ status_canceled: string;
532
+ status_unpaid: string;
533
+ status_incomplete: string;
534
+ status_incomplete_expired: string;
535
+ status_unknown: string;
536
+
537
+ plan_free: string;
538
+ plan_cloud_plus: string;
539
+ plan_pro: string;
540
+ plan_unknown: string;
541
+
542
+ auto_setup_collections_button: string;
543
+ auto_setup_collections_title: string;
544
+ auto_setup_collections_desc: string;
545
+ this_can_take_a_minute: string;
546
+ no_collections_found_to_setup: string;
547
+ collections_have_been_setup: string;
548
+ error_setting_up_collections: string;
549
+
550
+ // --- Home Suggestions ---
551
+ add_your: string;
552
+ database_collections: string;
553
+ to_firecms: string;
554
+ no_unmapped_collections: string;
555
+ query_and_update_with_datatalk: string;
556
+
557
+ // --- SaaS Welcome ---
558
+ welcome_to_firecms: string;
559
+ admin_panel_ready_bring_data: string;
560
+ admin_panel_ready_get_started: string;
561
+ auto_detect_collections: string;
562
+ auto_detect_collections_desc: string;
563
+ create_a_collection: string;
564
+ create_collection_desc: string;
565
+ read_the_docs: string;
566
+ read_the_docs_desc: string;
567
+ explore_docs: string;
568
+ want_to_customize_with_code: string;
569
+ to_scaffold_a_local_project: string;
570
+
571
+ // ─── Collection Editor — Validation ──────────────────────────
572
+ validation: string;
573
+ unique: string;
574
+ required_message: string;
575
+ required_tooltip: string;
576
+ unique_tooltip: string;
577
+ lowercase: string;
578
+ uppercase: string;
579
+ trim: string;
580
+ exact_length: string;
581
+ min_length: string;
582
+ max_length: string;
583
+ matches_regex: string;
584
+ not_valid_regexp: string;
585
+ regex_helper: string;
586
+ min_value: string;
587
+ max_value: string;
588
+ less_than: string;
589
+ more_than: string;
590
+ positive_value: string;
591
+ negative_value: string;
592
+ integer_value: string;
593
+
594
+ // ─── Collection Editor — Property Edit ───────────────────────
595
+ invalid_regular_expression: string;
596
+ must_specify_target_collection: string;
597
+ need_specify_repeat_field: string;
598
+ need_specify_block_properties: string;
599
+ incomplete_condition: string;
600
+ field_name: string;
601
+
602
+ // ─── Collection Editor — Display & Config ────────────────────
603
+ kanban_column_property: string;
604
+ select_a_property: string;
605
+ kanban_property_not_found: string;
606
+ no_enum_string_properties: string;
607
+ kanban_column_description: string;
608
+ create_property: string;
609
+ order_property: string;
610
+ order_property_not_found: string;
611
+ no_number_properties: string;
612
+ order_property_description: string;
613
+ display_settings: string;
614
+ default_row_size: string;
615
+ side_dialog_width: string;
616
+ side_dialog_width_description: string;
617
+ inline_editing_enabled: string;
618
+ inline_editing_disabled: string;
619
+ inline_editing_description: string;
620
+ include_json_view: string;
621
+ no_json_view: string;
622
+ json_view_description: string;
623
+ not_found_suffix: string;
624
+
625
+ // ─── Editor ─────────────────────────────────────────────────
626
+ editor_text: string;
627
+ editor_text_description: string;
628
+ editor_heading_1: string;
629
+ editor_heading_1_description: string;
630
+ editor_heading_2: string;
631
+ editor_heading_2_description: string;
632
+ editor_heading_3: string;
633
+ editor_heading_3_description: string;
634
+ editor_todo_list: string;
635
+ editor_todo_list_description: string;
636
+ editor_bullet_list: string;
637
+ editor_bullet_list_description: string;
638
+ editor_numbered_list: string;
639
+ editor_numbered_list_description: string;
640
+ editor_quote: string;
641
+ editor_quote_description: string;
642
+ editor_code: string;
643
+ editor_code_description: string;
644
+ editor_image: string;
645
+ editor_image_description: string;
646
+ editor_multiple: string;
647
+ editor_link: string;
648
+ editor_save: string;
649
+ editor_cancel: string;
650
+ editor_remove_link: string;
651
+ editor_paste_or_type_link: string;
652
+ editor_open_in_new_window: string;
653
+ editor_bold: string;
654
+ editor_italic: string;
655
+ editor_underline: string;
656
+ editor_strikethrough: string;
657
+ editor_autocomplete: string;
658
+ editor_autocomplete_description: string;
659
+
660
+ // ─── Text Search Dialog ─────────────────────────────────────
661
+ text_search_dialog_title: string;
662
+ text_search_local_not_recommended: string;
663
+ text_search_local_fetch_warning: string;
664
+ text_search_external_suggestion: string;
665
+ text_search_local_description: string;
666
+ text_search_own_implementation: string;
667
+ text_search_enable_for_collection: string;
668
+ text_search_enable_for_project: string;
669
+ text_search_enabled_snackbar: string;
670
+
671
+ // ─── Cloud Project Settings ──────────────────────────────────
672
+ settings_subscription_plan: string;
673
+ settings_subscribed_to: string;
674
+ settings_no_active_subscription: string;
675
+ settings_trial_valid_until: string;
676
+ settings_features_intro: string;
677
+ settings_feature_managed_service: string;
678
+ settings_feature_local_text_search: string;
679
+ settings_feature_unlimited_users_roles: string;
680
+ settings_feature_theme_logo: string;
681
+ settings_feature_custom_fields_views: string;
682
+ settings_feature_secondary_databases: string;
683
+ settings_feature_ai_content: string;
684
+ settings_feature_unlimited_export: string;
685
+ settings_feature_appcheck: string;
686
+ settings_heading: string;
687
+ settings_project_name: string;
688
+ settings_default_language: string;
689
+ settings_default_language_caption: string;
690
+ settings_enable_local_text_search: string;
691
+ settings_local_text_search_caption: string;
692
+ settings_doc_history_all_collections: string;
693
+ settings_doc_history_caption: string;
694
+ settings_theme: string;
695
+ settings_primary_color: string;
696
+ settings_secondary_color: string;
697
+ settings_sample_theme_components: string;
698
+ settings_drag_drop_logo: string;
699
+ settings_create_subscription: string;
700
+ settings_stripe_disclaimer: string;
701
+ settings_subscription_is: string;
702
+ settings_next_payment_on: string;
703
+ settings_seats_count: string;
704
+ settings_seat: string;
705
+ settings_seats: string;
706
+ settings_per_seat: string;
707
+ settings_current_price: string;
708
+ settings_per_user_usage: string;
709
+ settings_cancelled_active_until: string;
710
+ settings_no_additional_charges: string;
711
+ settings_manage_subscription: string;
712
+ settings_security_rules: string;
713
+ settings_security_rules_description: string;
714
+ settings_security_rules_add_domain: string;
715
+ settings_security_rules_caption: string;
716
+ settings_appcheck: string;
717
+ settings_appcheck_description: string;
718
+ settings_appcheck_add_domain: string;
719
+ settings_appcheck_enable: string;
720
+ settings_appcheck_site_key: string;
721
+ settings_appcheck_update: string;
722
+ settings_appcheck_refresh_note: string;
723
+ settings_appcheck_updated: string;
724
+ settings_appcheck_error: string;
725
+ }