@habit.analytics/habit-claims-journey-components 2.1.0 → 2.1.2

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.
@@ -160,6 +160,232 @@ declare const en: {
160
160
  readonly not_found_message: "Oops! Page not found";
161
161
  readonly not_found_link: "Return to Home";
162
162
  readonly runner_page_back: "Builder";
163
+ readonly fc_title: "Form Configurator";
164
+ readonly fc_read_only: "Read-only";
165
+ readonly fc_undo: "Undo";
166
+ readonly fc_redo: "Redo";
167
+ readonly fc_preview_form: "Preview Form";
168
+ readonly fc_save: "Save";
169
+ readonly fc_publish: "Publish";
170
+ readonly fc_unlock_edit: "Unlock edit";
171
+ readonly fc_tab_steps: "Steps";
172
+ readonly fc_tab_fields: "Fields";
173
+ readonly fc_tab_init: "Init";
174
+ readonly fc_tab_json: "JSON";
175
+ readonly fc_form_steps: "Form Steps";
176
+ readonly fc_add_step: "Add Step";
177
+ readonly fc_step_untitled: "(untitled)";
178
+ readonly fc_step_meta: "{{rows}} rows, {{fields}} fields";
179
+ readonly fc_no_steps: "No steps yet.";
180
+ readonly fc_no_steps_hint_click: "Click";
181
+ readonly fc_no_steps_hint_to_begin: "to begin.";
182
+ readonly fc_confirm_delete_step: "Delete this step?";
183
+ readonly fc_step_empty_select: "Select a step on the left.";
184
+ readonly fc_step_empty_create: "Add a step from the left panel to begin.";
185
+ readonly fc_step_title_label: "Step Title";
186
+ readonly fc_step_title_placeholder: "Step title";
187
+ readonly fc_step_description_label: "Description";
188
+ readonly fc_step_description_placeholder: "Optional";
189
+ readonly fc_add_row: "Add Row";
190
+ readonly fc_row_n: "Row {{n}}";
191
+ readonly fc_layout_horizontal: "Horizontal";
192
+ readonly fc_layout_vertical: "Vertical";
193
+ readonly fc_confirm_delete_row: "Delete this row?";
194
+ readonly fc_add_field_btn: "Add field";
195
+ readonly fc_no_fields: "No fields.";
196
+ readonly fc_edit: "Edit";
197
+ readonly fc_remove_from_row: "Remove from row";
198
+ readonly fc_nav_title: "Step Navigation";
199
+ readonly fc_nav_api_call: "API call on continue";
200
+ readonly fc_nav_api_call_hint: "Executed before evaluating the rules.";
201
+ readonly fc_nav_body_template: "Body template (JSON)";
202
+ readonly fc_nav_body_template_hint_prefix: "Use";
203
+ readonly fc_nav_body_template_hint_suffix: "tokens.";
204
+ readonly fc_nav_on_error: "On error";
205
+ readonly fc_nav_on_error_block: "Block — stay on this step";
206
+ readonly fc_nav_on_error_continue: "Continue — evaluate rules anyway";
207
+ readonly fc_nav_on_error_goto: "Go to: {{step}}";
208
+ readonly fc_nav_on_error_summary: "Go to: Summary";
209
+ readonly fc_nav_on_error_hint: "What happens if the call throws or the network fails.";
210
+ readonly fc_nav_continue_button: "Continue button";
211
+ readonly fc_nav_continue_placeholder: "Continue";
212
+ readonly fc_nav_rules: "Navigation rules";
213
+ readonly fc_nav_add_rule: "Add rule";
214
+ readonly fc_nav_rules_hint: "Rules evaluated in order. First match wins. Use \"always\" as the last fallback.";
215
+ readonly fc_nav_rule_n: "Rule {{n}}";
216
+ readonly fc_nav_has_condition: "Has condition";
217
+ readonly fc_nav_go_to: "Go to";
218
+ readonly fc_nav_submit_form: "— Submit form —";
219
+ readonly fc_nav_field_requires_value: "Field \"{{label}}\" requires a value.";
220
+ readonly fc_summary_panel: "Summary Panel";
221
+ readonly fc_summary_title_label: "Summary Title";
222
+ readonly fc_summary_sections: "Sections";
223
+ readonly fc_summary_add_section: "Add Section";
224
+ readonly fc_summary_section_title_placeholder: "Section title";
225
+ readonly fc_summary_visible_from: "Visible from step";
226
+ readonly fc_summary_until_step: "Until step (optional)";
227
+ readonly fc_summary_all_steps: "All steps";
228
+ readonly fc_summary_step_n: "Step {{n}}";
229
+ readonly fc_summary_display_fields: "Display Fields";
230
+ readonly fc_summary_add: "Add";
231
+ readonly fc_summary_no_display_fields: "No display fields yet.";
232
+ readonly fc_summary_no_sections: "No sections yet.";
233
+ readonly fc_summary_confirm_delete_section: "Delete this section?";
234
+ readonly fc_summary_source: "Source";
235
+ readonly fc_summary_source_form_field: "Form Field";
236
+ readonly fc_summary_source_api_response: "API Response";
237
+ readonly fc_summary_format: "Format";
238
+ readonly fc_summary_format_text: "Text";
239
+ readonly fc_summary_format_number: "Number";
240
+ readonly fc_summary_format_currency: "Currency";
241
+ readonly fc_summary_format_date: "Date";
242
+ readonly fc_summary_format_datetime: "Date & Time";
243
+ readonly fc_summary_display_label: "Label";
244
+ readonly fc_summary_display_label_placeholder: "Display label";
245
+ readonly fc_summary_field: "Field";
246
+ readonly fc_summary_select: "Select…";
247
+ readonly fc_summary_from_step_api: "From step API";
248
+ readonly fc_summary_response_path: "Response Path (dot-notation)";
249
+ readonly fc_fields_catalog: "Fields catalog";
250
+ readonly fc_fields_catalog_hint: "All fields used across the form. Edit here to update them everywhere.";
251
+ readonly fc_fields_add: "Add Field";
252
+ readonly fc_fields_search: "Search fields…";
253
+ readonly fc_fields_filter_all: "All";
254
+ readonly fc_fields_filter_used: "Used";
255
+ readonly fc_fields_filter_unused: "Unused";
256
+ readonly fc_fields_unused_badge: "Unused";
257
+ readonly fc_fields_used_in_one: "Used in {{count}} step";
258
+ readonly fc_fields_used_in_many: "Used in {{count}} steps";
259
+ readonly fc_fields_go_to_step: "Go to step \"{{title}}\"";
260
+ readonly fc_fields_no_fields: "No fields yet.";
261
+ readonly fc_fields_no_match: "No fields match the current filter.";
262
+ readonly fc_fields_confirm_delete: "Delete this field?";
263
+ readonly fc_init_title: "Initial values";
264
+ readonly fc_init_subtitle: "Static answers pre-loaded into the runner before the user starts.";
265
+ readonly fc_init_static: "Static values";
266
+ readonly fc_init_add: "Add";
267
+ readonly fc_init_no_values: "No initial values yet.";
268
+ readonly fc_init_prefill: "Pre-fill from API";
269
+ readonly fc_init_prefill_hint: "Fetch answers from an endpoint when the runner mounts.";
270
+ readonly fc_init_mapping: "Mapping (JSON: namespace → response_path)";
271
+ readonly fc_json_title: "JSON";
272
+ readonly fc_json_hint: "Raw JourneySpec (form_config + theme). Edit and click Import to apply.";
273
+ readonly fc_json_refresh: "Refresh from store";
274
+ readonly fc_json_copy: "Copy";
275
+ readonly fc_json_download: "Download";
276
+ readonly fc_json_import: "Import";
277
+ readonly fc_json_imported_ok: "Imported successfully";
278
+ readonly fc_json_copied: "Copied to clipboard";
279
+ readonly fc_json_invalid: "Invalid JSON";
280
+ readonly fc_create_field_title: "Add field";
281
+ readonly fc_create_field_subtitle: "Pick from the catalog or create a custom field.";
282
+ readonly fc_create_from_catalog: "From catalog ({{count}})";
283
+ readonly fc_create_custom: "Custom field";
284
+ readonly fc_create_search_specs: "Search specs…";
285
+ readonly fc_create_no_specs: "No specs match.";
286
+ readonly fc_create_label_required: "Label *";
287
+ readonly fc_create_label_placeholder: "e.g. Customer Name";
288
+ readonly fc_create_namespace: "Namespace";
289
+ readonly fc_create_namespace_placeholder: "e.g. customer.name (auto if empty)";
290
+ readonly fc_create_schema: "Schema";
291
+ readonly fc_create_options: "Options";
292
+ readonly fc_create_option_value_placeholder: "value";
293
+ readonly fc_create_option_label_placeholder: "Label";
294
+ readonly fc_create_cancel: "Cancel";
295
+ readonly fc_create_create: "Create";
296
+ readonly fc_field_props: "Field properties";
297
+ readonly fc_field_no_selected: "No field selected.";
298
+ readonly fc_field_label: "Label *";
299
+ readonly fc_field_namespace: "Namespace";
300
+ readonly fc_field_placeholder: "Placeholder";
301
+ readonly fc_field_help: "Help text";
302
+ readonly fc_field_required: "Required";
303
+ readonly fc_field_required_hint: "User must fill before continuing.";
304
+ readonly fc_field_actor: "Actor";
305
+ readonly fc_field_actor_customer: "Customer";
306
+ readonly fc_field_actor_operator: "Operator";
307
+ readonly fc_field_widget: "Widget";
308
+ readonly fc_field_widget_auto: "Auto";
309
+ readonly fc_field_widget_text: "Text";
310
+ readonly fc_field_widget_textarea: "Textarea";
311
+ readonly fc_field_widget_select: "Select";
312
+ readonly fc_field_widget_radio: "Radio";
313
+ readonly fc_field_widget_date: "Date";
314
+ readonly fc_field_widget_time: "Time";
315
+ readonly fc_field_widget_datetime: "Date & Time";
316
+ readonly fc_field_widget_currency: "Currency";
317
+ readonly fc_field_widget_upload: "Upload";
318
+ readonly fc_field_widget_email: "Email";
319
+ readonly fc_field_widget_phone: "Phone";
320
+ readonly fc_field_widget_location: "Location";
321
+ readonly fc_field_widget_boolean: "Boolean (Yes/No)";
322
+ readonly fc_field_allow_future: "Allow future dates";
323
+ readonly fc_field_allow_future_hint: "Allow dates after today.";
324
+ readonly fc_field_display_style: "Display style";
325
+ readonly fc_field_display_auto: "Auto (radio ≤5, dropdown >5)";
326
+ readonly fc_field_display_radio: "Radio list";
327
+ readonly fc_field_display_dropdown: "Dropdown";
328
+ readonly fc_field_display_segmented: "Segmented buttons";
329
+ readonly fc_field_display_hint: "Controls how options render at runtime.";
330
+ readonly fc_field_display_switch: "Switch (toggle)";
331
+ readonly fc_field_display_yesno: "Segmented (Yes / No buttons)";
332
+ readonly fc_field_boolean_hint: "Override Yes/No labels by adding 2 options below (first = true, second = false).";
333
+ readonly fc_field_options: "Options";
334
+ readonly fc_field_no_options: "No options yet.";
335
+ readonly fc_field_upload_validation: "Upload validation";
336
+ readonly fc_field_upload_accept: "Accepted MIME types/extensions";
337
+ readonly fc_field_upload_max: "Max size (MB)";
338
+ readonly fc_field_delete: "Delete field";
339
+ readonly fc_field_done: "Done";
340
+ readonly fc_field_confirm_delete: "Delete this field from the catalog (and all rows that use it)?";
341
+ readonly theme_button: "Theme";
342
+ readonly theme_reset: "Reset";
343
+ readonly theme_colors: "Colors";
344
+ readonly theme_primary: "Primary";
345
+ readonly theme_background: "Background";
346
+ readonly theme_card: "Card";
347
+ readonly theme_foreground: "Foreground";
348
+ readonly theme_color_picker_aria: "{{label}} color picker";
349
+ readonly theme_color_placeholder: "e.g. 222 47% 11%";
350
+ readonly theme_color_hint: "Pick a color or type an HSL triplet";
351
+ readonly theme_typography: "Typography";
352
+ readonly theme_heading_font: "Heading font";
353
+ readonly theme_body_font: "Body font";
354
+ readonly theme_font_default: "Default";
355
+ readonly theme_font_size: "Base font size (px)";
356
+ readonly theme_shape_spacing: "Shape & spacing";
357
+ readonly theme_border_radius: "Border radius (rem)";
358
+ readonly theme_spacing: "Spacing";
359
+ readonly theme_spacing_cozy_default: "Cozy (default)";
360
+ readonly theme_spacing_compact: "Compact";
361
+ readonly theme_spacing_cozy: "Cozy";
362
+ readonly theme_spacing_spacious: "Spacious";
363
+ readonly theme_live_preview: "Live preview";
364
+ readonly theme_heading_sample: "Heading sample";
365
+ readonly theme_body_sample: "The quick brown fox jumps over the lazy dog. Body text uses your selected font, size and spacing.";
366
+ readonly theme_input_sample: "Sample input";
367
+ readonly theme_primary_action: "Primary action";
368
+ readonly runner_toast_required_fields: "Please fill the required fields.";
369
+ readonly runner_toast_api_failed: "API call failed.";
370
+ readonly runner_toast_answers_copied: "Answers copied to clipboard!";
371
+ readonly runner_toast_partial_saved: "Partial answers saved (logged).";
372
+ readonly runner_toast_file_uploaded: "Uploaded {{name}} for {{key}}";
373
+ readonly runner_loading_preview: "Loading preview…";
374
+ readonly runner_no_form: "No form configured yet.";
375
+ readonly runner_back_to_builder: "Back to builder";
376
+ readonly runner_preset_full: "Full";
377
+ readonly runner_iframe_title: "Form runner preview";
378
+ readonly import_invalid_json: "Invalid JSON: could not parse the input.";
379
+ readonly import_success: "Journey imported successfully";
380
+ readonly import_clipboard_failed: "Could not read clipboard";
381
+ readonly shortcut_selected_nodes_one: "Selected {{count}} node";
382
+ readonly shortcut_selected_nodes_other: "Selected {{count}} nodes";
383
+ readonly shortcut_deleted: "Deleted";
384
+ readonly shortcut_undo: "Undo";
385
+ readonly shortcut_redo: "Redo";
386
+ readonly shortcut_copied: "Copied to clipboard";
387
+ readonly shortcut_pasted: "Pasted";
388
+ readonly shortcut_duplicated: "Duplicated";
163
389
  };
164
390
  export type TranslationKey = keyof typeof en;
165
391
  export default en;