@hexabot-ai/api 3.2.1-alpha.0 → 3.2.2-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.
- package/README.md +1 -1
- package/dist/config/i18n/en/global_settings.json +7 -0
- package/dist/config/i18n/fr/global_settings.json +7 -0
- package/dist/extensions/actions/web/i18n/en.translations.json +9 -0
- package/dist/extensions/actions/web/i18n/fr.translations.json +9 -0
- package/dist/extensions/actions/web/send-mail.action.d.ts +30 -0
- package/dist/extensions/actions/web/send-mail.action.js +79 -0
- package/dist/extensions/actions/web/send-mail.action.js.map +1 -0
- package/dist/extensions/index.d.ts +1 -0
- package/dist/extensions/index.js +1 -0
- package/dist/extensions/index.js.map +1 -1
- package/dist/helper/helper.controller.js +2 -3
- package/dist/helper/helper.controller.js.map +1 -1
- package/dist/helper/helper.service.d.ts +0 -1
- package/dist/helper/helper.service.js +2 -10
- package/dist/helper/helper.service.js.map +1 -1
- package/dist/helper/index.d.ts +0 -1
- package/dist/helper/index.js +0 -1
- package/dist/helper/index.js.map +1 -1
- package/dist/helper/types.d.ts +0 -26
- package/dist/helper/types.js +1 -14
- package/dist/helper/types.js.map +1 -1
- package/dist/license/services/license.service.js +2 -2
- package/dist/license/services/license.service.js.map +1 -1
- package/dist/setting/default.settings.d.ts +5 -20
- package/dist/setting/default.settings.js +10 -63
- package/dist/setting/default.settings.js.map +1 -1
- package/dist/static/assets/{cssMode-CMCoflUW.js → cssMode-ClQbC1-G.js} +1 -1
- package/dist/static/assets/{freemarker2-xrKobLW0.js → freemarker2-DRxgvoL0.js} +1 -1
- package/dist/static/assets/{handlebars-B001x0dl.js → handlebars-CTQECjcj.js} +1 -1
- package/dist/static/assets/{html-HBIKRg6X.js → html-DvVbNWXL.js} +1 -1
- package/dist/static/assets/{htmlMode-D_O4-Va4.js → htmlMode-DHCoon1T.js} +1 -1
- package/dist/static/assets/{index-3E05C6mQ.css → index-BI1BtkYv.css} +1 -1
- package/dist/static/assets/{index-Ca-L_Bhg.js → index-BgFwJPy7.js} +2046 -2046
- package/dist/static/assets/{javascript-BtGFPGHv.js → javascript-CiEs6Ej5.js} +1 -1
- package/dist/static/assets/{jsonMode-Cgpaamyt.js → jsonMode-DTfAuumC.js} +1 -1
- package/dist/static/assets/{liquid-NlTZnkhA.js → liquid-B714yIaN.js} +1 -1
- package/dist/static/assets/{lspLanguageFeatures-CxA7MNHw.js → lspLanguageFeatures-r73pyfl4.js} +1 -1
- package/dist/static/assets/{mdx-CO_P9sLj.js → mdx-D5IAs7yq.js} +1 -1
- package/dist/static/assets/{python-p9cJ1T8V.js → python-ehBpsG6S.js} +1 -1
- package/dist/static/assets/{razor-b6daQ7Gs.js → razor-V-Gitx5J.js} +1 -1
- package/dist/static/assets/{tsMode-qFS4LhFG.js → tsMode-D_iFxZ-O.js} +1 -1
- package/dist/static/assets/{typescript-CVF7hkOS.js → typescript-CEGzsf5j.js} +1 -1
- package/dist/static/assets/{xml-3_BTeML3.js → xml-N5EKZaXL.js} +1 -1
- package/dist/static/assets/{yaml-CdBNONt5.js → yaml-IWZvbW4T.js} +1 -1
- package/dist/static/index.html +2 -2
- package/dist/static/locales/en/translation.json +22 -335
- package/dist/static/locales/fr/translation.json +22 -333
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/utils/helpers/safe-property-path.d.ts +1 -0
- package/dist/utils/helpers/safe-property-path.js +12 -0
- package/dist/utils/helpers/safe-property-path.js.map +1 -0
- package/dist/utils/pipes/typeorm-search-filter.pipe.js +4 -3
- package/dist/utils/pipes/typeorm-search-filter.pipe.js.map +1 -1
- package/dist/utils/test/fixtures/setting.js +1 -1
- package/dist/utils/test/fixtures/setting.js.map +1 -1
- package/dist/utils/test/providers/setting-service.provider.d.ts +0 -1
- package/dist/utils/test/providers/setting-service.provider.js +4 -15
- package/dist/utils/test/providers/setting-service.provider.js.map +1 -1
- package/dist/websocket/services/socket-event-dispatcher.service.js +6 -3
- package/dist/websocket/services/socket-event-dispatcher.service.js.map +1 -1
- package/package.json +4 -4
- package/src/config/i18n/en/global_settings.json +7 -0
- package/src/config/i18n/fr/global_settings.json +7 -0
- package/src/extensions/actions/web/i18n/en.translations.json +9 -0
- package/src/extensions/actions/web/i18n/fr.translations.json +9 -0
- package/src/extensions/actions/web/send-mail.action.ts +89 -0
- package/src/extensions/index.ts +2 -0
- package/src/helper/helper.controller.ts +3 -4
- package/src/helper/helper.service.ts +3 -23
- package/src/helper/index.ts +0 -2
- package/src/helper/types.ts +0 -57
- package/src/license/services/license.service.spec.ts +13 -13
- package/src/license/services/license.service.ts +3 -3
- package/src/setting/default.settings.ts +10 -63
- package/src/utils/helpers/safe-property-path.ts +13 -0
- package/src/utils/pipes/typeorm-search-filter.pipe.ts +4 -3
- package/src/utils/test/fixtures/setting.ts +1 -1
- package/src/utils/test/providers/setting-service.provider.ts +4 -19
- package/src/websocket/services/socket-event-dispatcher.service.ts +7 -5
- package/dist/config/i18n/en/chatbot_settings.json +0 -17
- package/dist/config/i18n/fr/chatbot_settings.json +0 -17
- package/dist/helper/lib/base-llm-helper.d.ts +0 -10
- package/dist/helper/lib/base-llm-helper.js +0 -16
- package/dist/helper/lib/base-llm-helper.js.map +0 -1
- package/src/config/i18n/en/chatbot_settings.json +0 -17
- package/src/config/i18n/fr/chatbot_settings.json +0 -17
- package/src/helper/lib/base-llm-helper.ts +0 -74
|
@@ -1,30 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"message": {
|
|
3
3
|
"duplicate_error": "Duplicate entry. Please choose a unique value.",
|
|
4
|
-
"bad_request": "400 BAD REQUEST",
|
|
5
4
|
"unable_to_process_request": "Unable to process request",
|
|
6
|
-
"not_found": "404 NOT FOUND",
|
|
7
|
-
"unable_to_locate_resource": "Unable to locate the requested resource on the server",
|
|
8
|
-
"connection_refused": "Connection refused",
|
|
9
|
-
"lost_connection": "Unable to reach the server. You may have lost your internet connection.",
|
|
10
|
-
"forbidden": "403 FORBIDDEN ACCESS",
|
|
11
|
-
"action_not_permitted": "You are not permitted to execute this action",
|
|
12
5
|
"unable_to_save": "Unable to perform save",
|
|
13
6
|
"server_error": "500 SERVER ERROR",
|
|
14
7
|
"internal_server_error": "Oops! Something went wrong ... the server may had encountered an internal error. Please contact our support team if needed.",
|
|
15
8
|
"loading": "Loading...",
|
|
16
9
|
"loading_runs": "Loading runs...",
|
|
17
|
-
"save_in_progress": "Save in progress",
|
|
18
|
-
"full_name_is_required": "First and last name are required",
|
|
19
10
|
"first_name_is_required": "First name is required",
|
|
20
11
|
"last_name_is_required": "Last name is required",
|
|
21
12
|
"username_is_required": "Username is required",
|
|
22
13
|
"email_is_invalid": "E-mail is invalid",
|
|
23
14
|
"email_is_required": "E-mail is required",
|
|
24
|
-
"thank_you": "Thank you!",
|
|
25
|
-
"get_back_asap": "We will get back to you as soon as possible.",
|
|
26
15
|
"password_is_required": "Password is required",
|
|
27
|
-
"password2_is_required": "Please retype your password",
|
|
28
16
|
"password_min_length": "Password must be at least 8 characters",
|
|
29
17
|
"password_match": "The two passwords do not match",
|
|
30
18
|
"password_strength": "Password strength",
|
|
@@ -32,20 +20,13 @@
|
|
|
32
20
|
"password_strength_fair": "Fair",
|
|
33
21
|
"password_strength_good": "Good",
|
|
34
22
|
"password_strength_strong": "Strong",
|
|
35
|
-
"at_least_one_role_is_required": "At least one role is required",
|
|
36
23
|
"login_success": "You can now sign in to your account",
|
|
37
|
-
"confirm_required": "A confirmation e-mail has been sent to you! You can sign in but your account must be confirmed later on.",
|
|
38
24
|
"login_failure": "Unable to login! Please check if your credentials are correct.",
|
|
39
25
|
"logout_success": "You have been logged out successfully!",
|
|
40
26
|
"reset_success": "Your reset request has been successful! You will receive an email containing a reset link. Please check your inbox.",
|
|
41
27
|
"reset_newpass_success": "Your new password has been updated! You can log now using your new password.",
|
|
42
28
|
"reset_confirm_success": "Thank you! Your account has been confirmed.",
|
|
43
29
|
"avatar_update": "Update your avatar by uploading your own photo. Avatar must be in JPG/PNG format.",
|
|
44
|
-
"avatar_failure_format": "Invalid format! The image must be in a JPEG(jpg) format",
|
|
45
|
-
"avatar_failure_size": "Invalid size! The image must have a size less than 2MB",
|
|
46
|
-
"account_update": "Update full name, email address and password by using the form below:",
|
|
47
|
-
"edit_account_email": "A valid e-mail address. All e-mails from the system will be sent to this address. The e-mail address is not made public and will only be used if you wish to receive a new password or wish to receive certain news or notifications by e-mail.",
|
|
48
|
-
"new_password": "To change the current password, enter the new password in both fields.",
|
|
49
30
|
"account_update_success": "Account has been updated successfully",
|
|
50
31
|
"account_disabled": "Your account has been either disabled or is pending confirmation.",
|
|
51
32
|
"item_delete_confirm": "Are you sure you want to delete this item?",
|
|
@@ -53,42 +34,24 @@
|
|
|
53
34
|
"items_selected_delete_confirm": "Are you sure you want to delete those {{0}} selected items?",
|
|
54
35
|
"item_delete_success": "Item has been deleted successfully",
|
|
55
36
|
"success_save": "Changes has been saved!",
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"patterns_is_invalid": "Please make sure that all patterns values are filled.",
|
|
59
|
-
"capture_vars_is_invalid": "Be sure to configure all capture variables.",
|
|
60
|
-
"fallback_is_invalid": "Fallback messages cannot be empty.",
|
|
61
|
-
"text_message_is_invalid": "Text messages cannot be empty.",
|
|
62
|
-
"element_buttons_is_invalid": "An element button title cannot be empty.",
|
|
63
|
-
"quick_replies_is_invalid": "Make sure to fill all quick replies titles/payloads!",
|
|
64
|
-
"buttons_is_invalid": "Make sure to fill all buttons titles/payloads!",
|
|
65
|
-
"attachment_failure_format": "Attachment has invalid format",
|
|
66
|
-
"drop_file_here": "Drop file here or click to upload",
|
|
37
|
+
"source_ref_copied": "Source ref copied.",
|
|
38
|
+
"source_ref_copy_failed": "Unable to copy source ref.",
|
|
67
39
|
"file_max_size": "The file exceeds the maximum allowed size. Please ensure your file is within the size limit and try again.",
|
|
68
|
-
"attachment_failure_size": "The file exceeds the maximum allowed size. Please ensure your file is within the size limit and try again.",
|
|
69
40
|
"upload_failed": "Unable to upload the file!",
|
|
70
|
-
"no_user": "There are no subscribers at the moment.",
|
|
71
|
-
"no_user_assigned": "No one is assigned to you.",
|
|
72
|
-
"no_user_handledby_chatbot": "No one is handled currently by the chatbot",
|
|
73
41
|
"no_message_to_display": "No messages to display",
|
|
74
42
|
"title_is_required": "Title is required",
|
|
75
43
|
"url_is_required": "Url is required",
|
|
76
44
|
"url_is_invalid": "The provided URL is invalid",
|
|
77
45
|
"command_is_required": "Command is required",
|
|
78
|
-
"payload_is_required": "Payload is required",
|
|
79
46
|
"no_data_to_display": "No data to display",
|
|
80
|
-
"no_runs": "No runs",
|
|
81
47
|
"no_runs_found": "No runs found",
|
|
82
|
-
"label_is_required": "Label is required",
|
|
83
48
|
"roles_is_required": "Roles are required",
|
|
84
49
|
"name_is_required": "Name is required",
|
|
85
50
|
"value_is_required": "Value is required",
|
|
86
|
-
"owner_is_required": "Owner is required",
|
|
87
51
|
"schedule_is_required": "Schedule is required for scheduled workflows",
|
|
88
52
|
"slug_is_required": "Slug is required",
|
|
89
53
|
"slug_is_invalid": "Slug must use lowercase letters, numbers, and underscores only",
|
|
90
54
|
"scope_is_required": "Scope is required",
|
|
91
|
-
"schema_is_required": "Schema is required",
|
|
92
55
|
"schema_is_invalid": "Schema must be valid JSON",
|
|
93
56
|
"property_name_is_required": "Property name is required",
|
|
94
57
|
"property_name_must_be_unique": "Property name must be unique",
|
|
@@ -96,21 +59,12 @@
|
|
|
96
59
|
"max_depth_reached": "Max depth reached.",
|
|
97
60
|
"ttl_seconds_min": "TTL must be at least 1 second",
|
|
98
61
|
"ttl_seconds_invalid": "TTL must be a positive integer",
|
|
99
|
-
"subtitle_is_required": "Subtitle is required",
|
|
100
|
-
"attachment_is_required": "Attachment is required",
|
|
101
62
|
"success_import": "Content has been successfully imported!",
|
|
102
63
|
"import_failed": "Import failed",
|
|
103
64
|
"import_duplicated_data": "Data already exists",
|
|
104
|
-
"attachment_not_synced": "- Pending Sync. -",
|
|
105
65
|
"success_translation_refresh": "Translations has been successfully refreshed!",
|
|
106
|
-
"message_tag_is_required": "You need to specify a message tag.",
|
|
107
|
-
"block_is_required": "You must select the message block that will be sent as a broadcast message.",
|
|
108
|
-
"notification_type_is_required": "Please choose a notification type",
|
|
109
|
-
"setting_success_update": "Settings has been successfully updated!",
|
|
110
|
-
"labels_are_required": "You need to add at least one Label",
|
|
111
66
|
"type_is_required": "Type is required",
|
|
112
67
|
"permission_already_exists": "Permission already exists",
|
|
113
|
-
"workflow_input_event_type_description": "Type of event that triggered this workflow run.",
|
|
114
68
|
"workflow_input_message_type_description": "Type of inbound message associated with the triggering event.",
|
|
115
69
|
"workflow_input_payload_description": "Raw event payload passed to the workflow.",
|
|
116
70
|
"workflow_input_message_description": "Full message object received from the channel.",
|
|
@@ -123,38 +77,15 @@
|
|
|
123
77
|
"workflow_scheduled_run_now_hint": "Scheduled workflows can be triggered immediately from the run action.",
|
|
124
78
|
"workflow_trigger_simulator_availability": "Trigger simulation is available for manual and scheduled workflows.",
|
|
125
79
|
"workflow_run_started": "Workflow run started.",
|
|
126
|
-
"button_block_message_label": "What would you like to know about us?",
|
|
127
80
|
"network_error": "Network error. Please try again later",
|
|
128
|
-
"content_is_required": "Content is required",
|
|
129
|
-
"message_is_required": "Message is required",
|
|
130
|
-
"invalid_list_limit": "List limit must be >=2 and <= 4",
|
|
131
|
-
"invalid_carousel_limit": "List limit must be >=1 and <= 10",
|
|
132
|
-
"no_content_type": "No content type available, please create one first",
|
|
133
|
-
"invalid_max_fallback_attempt_limit": "Max fallback attempt limit must have positive value",
|
|
134
|
-
"fallback_message_required": "Fallback message is required",
|
|
135
|
-
"regex_is_invalid": "Regex is invalid",
|
|
136
|
-
"regex_is_empty": "Regex cannot be empty",
|
|
137
81
|
"attachment_not_found": "Attachment is not found",
|
|
138
|
-
"title_length_exceeded": "You have reached the maximum length",
|
|
139
|
-
"no_label_found": "No label found",
|
|
140
82
|
"code_is_required": "Language code is required",
|
|
141
|
-
"text_is_required": "Text is required",
|
|
142
83
|
"invalid_file_type": "Invalid file type. Please select a file in the supported format.",
|
|
143
84
|
"logout_failed": "Something went wrong during logout",
|
|
144
|
-
"duplicate_labels_not_allowed": "Duplicate labels are not allowed",
|
|
145
|
-
"duplicate_block_error": "Something went wrong while duplicating block",
|
|
146
|
-
"move_block_error": "Something went wrong. Unable to move block",
|
|
147
85
|
"image_error": "Image not found",
|
|
148
86
|
"file_error": "File not found",
|
|
149
87
|
"audio_error": "Audio not found",
|
|
150
88
|
"video_error": "Video not found",
|
|
151
|
-
"missing_fields_error": "Please make sure that all required fields are filled",
|
|
152
|
-
"weight_required_error": "Weight is required or invalid",
|
|
153
|
-
"weight_positive_number_error": "Weight must be a strictly positive number",
|
|
154
|
-
"no_matching_results": "No matching results found. Try other keywords.",
|
|
155
|
-
"results": "results",
|
|
156
|
-
"item_selected": "{{0}} selected item",
|
|
157
|
-
"items_selected": "{{0}} selected items",
|
|
158
89
|
"start": "Start",
|
|
159
90
|
"stop": "Stop",
|
|
160
91
|
"wait_message": "Please wait",
|
|
@@ -190,15 +121,17 @@
|
|
|
190
121
|
"no_settings_schema": "No settings schema is available for this group.",
|
|
191
122
|
"no_channels_available_for_sources": "No channels available for source creation.",
|
|
192
123
|
"no_channel_selected_for_source": "A channel is required to create a source.",
|
|
193
|
-
"no_settings_schema_for_source_channel": "No settings schema is available for this channel."
|
|
124
|
+
"no_settings_schema_for_source_channel": "No settings schema is available for this channel.",
|
|
125
|
+
"unknown": "Unknown",
|
|
126
|
+
"workflow_type_conversational_trigger": "Triggered by chat messages and events.",
|
|
127
|
+
"workflow_type_conversational_schema_editability": "You can't edit input schema. Input is system-defined.",
|
|
128
|
+
"workflow_type_manual_trigger": "Triggered via API or manual calls.",
|
|
129
|
+
"workflow_type_manual_schema_editability": "You can edit input schema. You define the input schema.",
|
|
130
|
+
"workflow_type_scheduled_trigger": "Triggered on a schedule.",
|
|
131
|
+
"workflow_type_scheduled_schema_editability": "You can't edit input schema. Input is system-defined."
|
|
194
132
|
},
|
|
195
133
|
"menu": {
|
|
196
|
-
"terms": "Terms of Use",
|
|
197
|
-
"policy": "Privacy Policy",
|
|
198
|
-
"login": "Login",
|
|
199
|
-
"register": "Sign Up",
|
|
200
134
|
"logout": "Logout",
|
|
201
|
-
"account": "Account",
|
|
202
135
|
"edit_account": "Edit Account",
|
|
203
136
|
"dashboard": "Dashboard",
|
|
204
137
|
"visual_editor": "Visual Editor",
|
|
@@ -215,15 +148,12 @@
|
|
|
215
148
|
"content_types": "Content Types",
|
|
216
149
|
"manage_content": "Manage Content",
|
|
217
150
|
"cms": "Knowledge Base",
|
|
218
|
-
"nodes": "Content",
|
|
219
|
-
"entities": "Content types",
|
|
220
151
|
"languages": "Languages",
|
|
221
152
|
"administration": "Administration",
|
|
222
153
|
"audience": "Audience",
|
|
223
154
|
"integrations": "Integrations",
|
|
224
155
|
"manage_localization": "Manage Localization",
|
|
225
156
|
"translations": "Translations",
|
|
226
|
-
"import": "Bulk Import",
|
|
227
157
|
"media_library": "Media Library",
|
|
228
158
|
"broadcast": "Broadcast",
|
|
229
159
|
"labels": "Labels",
|
|
@@ -236,48 +166,32 @@
|
|
|
236
166
|
"channel_sources": "Channels",
|
|
237
167
|
"channels": "Channels",
|
|
238
168
|
"settings": "Settings",
|
|
239
|
-
"event_log": "Events Log",
|
|
240
169
|
"audit_trail": "Audit Trail",
|
|
241
170
|
"home": "Home",
|
|
242
171
|
"admin": "Admin"
|
|
243
172
|
},
|
|
244
173
|
"title": {
|
|
245
174
|
"login": "Sign In",
|
|
246
|
-
"confirm_account": "Confirm your account",
|
|
247
|
-
"registration_success": "Registration has been successful",
|
|
248
|
-
"register": "Register",
|
|
249
175
|
"reset_password": "Reset password",
|
|
250
176
|
"edit_my_account": "Edit my account",
|
|
251
|
-
"fields_map": "Fields Map",
|
|
252
177
|
"user_location": "Geolocation",
|
|
253
|
-
"user_infos": "User Infos",
|
|
254
|
-
"evaluation_report": "Evaluation Report",
|
|
255
178
|
"memory_definitions": "Memory Definitions",
|
|
256
179
|
"new_memory_definition": "New Memory Definition",
|
|
257
180
|
"edit_memory_definition": "Edit Memory Definition",
|
|
258
181
|
"manage_persistent_menu": "Manage Persistent Menu",
|
|
259
182
|
"add_menu_item": "Add Menu Item",
|
|
260
183
|
"edit_menu_item": "Edit Menu Item",
|
|
261
|
-
"content": "Content",
|
|
262
184
|
"new_content": "New Content",
|
|
263
|
-
"edit_content": "Edit Content",
|
|
264
185
|
"entities": "Content Types",
|
|
265
186
|
"new_content_type": "New Content Type",
|
|
266
187
|
"edit_content_type": "Edit Content Type",
|
|
267
|
-
"nodes": "Content",
|
|
268
|
-
"new_node": "New Content",
|
|
269
188
|
"edit_node": "Edit Content",
|
|
270
|
-
"import": "Bulk Import",
|
|
271
189
|
"media_library": "Media Library",
|
|
272
190
|
"languages": "Languages",
|
|
273
191
|
"new_language": "Add Language",
|
|
274
192
|
"edit_language": "Edit Language",
|
|
275
193
|
"translations": "Translations",
|
|
276
194
|
"update_translation": "Update Translation",
|
|
277
|
-
"broadcast": "Broadcast",
|
|
278
|
-
"supported_message_types": "Supported Message Types",
|
|
279
|
-
"new_broadcast_message": "New Broadcast Message",
|
|
280
|
-
"edit_broadcast_message": "Edit Broadcast Message",
|
|
281
195
|
"labels": "Labels",
|
|
282
196
|
"new_label": "New Label",
|
|
283
197
|
"edit_label": "Edit Label",
|
|
@@ -297,22 +211,16 @@
|
|
|
297
211
|
"edit_source": "Edit Source",
|
|
298
212
|
"new_workflow": "New Workflow",
|
|
299
213
|
"edit_workflow": "Edit Workflow",
|
|
300
|
-
"requestlog": "Request Log",
|
|
301
214
|
"manage_permissions": "Manage permissions",
|
|
302
|
-
"active_users": "Active users",
|
|
303
|
-
"inbox": "Inbox",
|
|
304
215
|
"quick_actions": "Quick Actions",
|
|
305
216
|
"all_messages": "All Messages",
|
|
306
217
|
"handled_by_me": "Assigned to me",
|
|
307
218
|
"handled_by_chatbot": "Others",
|
|
308
219
|
"settings": "Settings",
|
|
309
|
-
"event_log": "Events Log",
|
|
310
220
|
"audit_trail": "Audit Trail",
|
|
311
221
|
"audit_log_details": "Audit Log Details",
|
|
312
|
-
"log_entry": "Log entry",
|
|
313
222
|
"dashboard": "Dashboard",
|
|
314
223
|
"warning": "Warning",
|
|
315
|
-
"console": "Admin Chat Console",
|
|
316
224
|
"group_label": "Group Label",
|
|
317
225
|
"default_group": "Default Group",
|
|
318
226
|
"workflow_runs": "Workflow Runs",
|
|
@@ -415,88 +323,36 @@
|
|
|
415
323
|
}
|
|
416
324
|
},
|
|
417
325
|
"label": {
|
|
418
|
-
"terms": "I have read and approve the terms and conditions.",
|
|
419
|
-
"starts_conversation": "Entrypoint",
|
|
420
|
-
"block_event_type": "Type of event",
|
|
421
|
-
"event_type": "Event type",
|
|
422
|
-
"patterns": "Patterns",
|
|
423
|
-
"no_patterns": "- No triggers -",
|
|
424
|
-
"no_quick_replies": "- No quick replies -",
|
|
425
|
-
"text_patterns": " Text Patterns",
|
|
426
|
-
"triggers": "Triggers",
|
|
427
326
|
"trigger_simulator": "Trigger Simulator",
|
|
428
327
|
"triggered_by": "Triggered By",
|
|
429
|
-
"payloads": "Payloads",
|
|
430
|
-
"general_payloads": "General Payloads",
|
|
431
|
-
"exact_match": "Exact Match",
|
|
432
|
-
"pattern_match": "Pattern Match",
|
|
433
|
-
"intent_match": "Intent Match",
|
|
434
|
-
"interaction": "Interaction",
|
|
435
|
-
"outcome_match": "Outcome Match",
|
|
436
|
-
"outcome": "Outcome",
|
|
437
|
-
"any_outcome": "Any Outcome",
|
|
438
|
-
"capture": "Capture?",
|
|
439
|
-
"text_message": "Text message",
|
|
440
|
-
"postback_payload": "Payload",
|
|
441
|
-
"get_started": "Get Started",
|
|
442
|
-
"view_more": "View More",
|
|
443
|
-
"user_location": "User location",
|
|
444
328
|
"messages": "Messages",
|
|
445
|
-
"is_regex": "Is Regex?",
|
|
446
329
|
"message": "Message",
|
|
447
330
|
"message_type": "Message type",
|
|
448
|
-
"no_message": "- No message -",
|
|
449
|
-
"plugin": "Plugin",
|
|
450
331
|
"postback": "Postback",
|
|
451
332
|
"quickReply": "Quick Reply",
|
|
452
|
-
"quick_reply": "Quick Reply",
|
|
453
333
|
"attachment": "Attachment",
|
|
454
334
|
"text": "Text",
|
|
455
335
|
"string": "Text Input",
|
|
456
336
|
"location": "Location",
|
|
457
|
-
"user_phone_number": "User phone number",
|
|
458
337
|
"user_email": "User email address",
|
|
459
338
|
"image": "Image",
|
|
460
339
|
"video": "Video",
|
|
461
340
|
"audio": "Audio",
|
|
462
341
|
"file": "File",
|
|
463
|
-
"upload_from_computer": "Upload From Computer",
|
|
464
|
-
"element_default_action": "Element Default Action",
|
|
465
|
-
"element_buttons": "Element Buttons",
|
|
466
|
-
"list_bottom_buttons": "List Bottom Buttons",
|
|
467
|
-
"webview": "Webview",
|
|
468
342
|
"large": "Large",
|
|
469
343
|
"compact": "Compact",
|
|
470
344
|
"full": "Full",
|
|
471
345
|
"tall": "Tall",
|
|
472
|
-
"top_element_style": "Top Element Style",
|
|
473
346
|
"content": "Content",
|
|
474
347
|
"content_limit": "Limit",
|
|
475
348
|
"load_more": "Enable `View More` Button?",
|
|
476
349
|
"options": "Options",
|
|
477
350
|
"seconds": "Seconds",
|
|
478
|
-
"typing_indicator": "Typing indicator",
|
|
479
|
-
"enable_fallback": "Enable Fallback?",
|
|
480
|
-
"max_fallback_attempts": "Max Fallback Attempts",
|
|
481
|
-
"fallback_message": "Fallback Message",
|
|
482
|
-
"labeled_with": "Target users with labels?",
|
|
483
351
|
"assign_labels": "Assign labels",
|
|
484
|
-
"replacement_tokens": "Replacement Tokens",
|
|
485
|
-
"built_in": "Built-in",
|
|
486
352
|
"permanent": "Permanent",
|
|
487
353
|
"assign_to": "Takeover By",
|
|
488
354
|
"assigned_to": "Assigned To",
|
|
489
355
|
"user_first_name": "First Name",
|
|
490
|
-
"user_last_name": "Last Name",
|
|
491
|
-
"user_location_lat": "Latitude",
|
|
492
|
-
"user_location_lon": "Longitude",
|
|
493
|
-
"user_location_country": "Country",
|
|
494
|
-
"user_location_state": "State",
|
|
495
|
-
"user_location_zipcode": "Zipcode",
|
|
496
|
-
"user_location_streetName": "Street Name",
|
|
497
|
-
"from_channels": "Target channels",
|
|
498
|
-
"simple_text": "Simple Text",
|
|
499
|
-
"quick_replies": "Quick Replies",
|
|
500
356
|
"button": "Button",
|
|
501
357
|
"buttons": "Buttons",
|
|
502
358
|
"web_url": "Web URL",
|
|
@@ -504,8 +360,6 @@
|
|
|
504
360
|
"menu_payloads": "Menu Payloads",
|
|
505
361
|
"button_payloads": "Button Payloads",
|
|
506
362
|
"content_payloads": "Content Payloads",
|
|
507
|
-
"quick_reply_payloads": "Quick Reply Payloads",
|
|
508
|
-
"display_mode": "Display Mode",
|
|
509
363
|
"list": "List",
|
|
510
364
|
"carousel": "Carousel",
|
|
511
365
|
"value": "Value",
|
|
@@ -560,8 +414,6 @@
|
|
|
560
414
|
"tool_count": "Tool Count",
|
|
561
415
|
"error": "Error",
|
|
562
416
|
"operations": "Operations",
|
|
563
|
-
"html_content": "HTML Content",
|
|
564
|
-
"external_url": "External URL",
|
|
565
417
|
"entity": "Type",
|
|
566
418
|
"url": "URL",
|
|
567
419
|
"command": "Command",
|
|
@@ -573,10 +425,8 @@
|
|
|
573
425
|
"scope": "Scope",
|
|
574
426
|
"schema": "Schema (JSON)",
|
|
575
427
|
"input_schema": "Input Schema",
|
|
576
|
-
"output_schema": "Output Schema",
|
|
577
428
|
"annotations": "Annotations",
|
|
578
429
|
"metadata": "Metadata",
|
|
579
|
-
"raw_payload": "Raw Payload",
|
|
580
430
|
"json_schema_object": "JSON Schema (Object)",
|
|
581
431
|
"properties": "Properties",
|
|
582
432
|
"property_name": "Property name",
|
|
@@ -584,26 +434,20 @@
|
|
|
584
434
|
"items": "Items",
|
|
585
435
|
"items_schema": "Items schema",
|
|
586
436
|
"required": "Required",
|
|
587
|
-
"allow_additional_properties": "Allow additional properties",
|
|
588
437
|
"unnamed": "unnamed",
|
|
589
438
|
"ttl_seconds": "TTL (seconds)",
|
|
590
439
|
"global": "Global",
|
|
591
440
|
"workflow": "Workflow",
|
|
592
441
|
"thread": "Thread",
|
|
593
442
|
"run": "Run",
|
|
594
|
-
"textarea": "Text Area",
|
|
595
443
|
"checkbox": "Checkbox",
|
|
596
444
|
"fields": "Fields",
|
|
597
445
|
"image_url": "Image URL",
|
|
598
446
|
"action_title": "Default Action",
|
|
599
|
-
"match_sound": "Equals/Like",
|
|
600
|
-
"regex": "Regex",
|
|
601
447
|
"pattern": "Pattern",
|
|
602
448
|
"preview": "Preview",
|
|
603
449
|
"size": "Size",
|
|
604
|
-
"attachment_channel_sync": "Channels Sync",
|
|
605
450
|
"str": "String",
|
|
606
|
-
"translated": "Translated (%)",
|
|
607
451
|
"translations": "Translations",
|
|
608
452
|
"avatar": "Avatar",
|
|
609
453
|
"first_name": "First name",
|
|
@@ -620,40 +464,13 @@
|
|
|
620
464
|
"credential": "Credential",
|
|
621
465
|
"user": "User",
|
|
622
466
|
"language": "Language",
|
|
623
|
-
"target_users_with_label": "Target subscribers with label",
|
|
624
467
|
"message_tag": "Message Tag",
|
|
625
|
-
"message_tag_shipping_update": "Shipping Update",
|
|
626
|
-
"message_tag_reservation_update": "Reservation Update",
|
|
627
|
-
"message_tag_issue_resolution": "Issue Resolution",
|
|
628
|
-
"message_tag_appointment_update": "Appointment Update",
|
|
629
|
-
"message_tag_game_event": "Game Event",
|
|
630
|
-
"message_tag_transportation_update": "Transportation Update",
|
|
631
|
-
"message_tag_feature_functionality_update": "Feature Functionality Update",
|
|
632
|
-
"message_tag_ticket_update": "Ticket Update",
|
|
633
|
-
"message_tag_account_update": "Account Update",
|
|
634
|
-
"message_tag_payment_update": "Payment Update",
|
|
635
|
-
"message_tag_personal_finance_update": "Personal Finance Update",
|
|
636
|
-
"message_tag_pairing_update": "Pairing Update",
|
|
637
|
-
"message_tag_application_update": "Application Update",
|
|
638
|
-
"message_tag_confirmed_event_reminder": "Confirmed Event Reminder",
|
|
639
|
-
"message_tag_community_alert": "Community Alert",
|
|
640
|
-
"message_tag_non_promotional_subscription": "Non Promotional Subscription",
|
|
641
|
-
"message_block": "Message Block",
|
|
642
|
-
"notification_type": "Notification Type",
|
|
643
|
-
"notification_type_regular": "Regular",
|
|
644
|
-
"notification_type_silent_push": "Silent Push",
|
|
645
|
-
"notification_type_no_push": "No Push",
|
|
646
468
|
"pending": "Pending",
|
|
647
|
-
"sent": "Sent",
|
|
648
469
|
"source": "Source",
|
|
649
|
-
"
|
|
650
|
-
"broadcast_id": "Broadcast ID",
|
|
470
|
+
"source_ref": "Source Ref",
|
|
651
471
|
"label_id": "Label ID",
|
|
652
|
-
"msg_read": "Read",
|
|
653
|
-
"msg_delivered": "Delivered",
|
|
654
472
|
"email": "E-mail",
|
|
655
473
|
"roles": "Roles",
|
|
656
|
-
"ipAddress": "IP",
|
|
657
474
|
"method": "HTTP",
|
|
658
475
|
"model": "DB Model",
|
|
659
476
|
"body": "Body",
|
|
@@ -691,7 +508,6 @@
|
|
|
691
508
|
"owner": "Owner",
|
|
692
509
|
"provider": "Provider",
|
|
693
510
|
"languages": "Available Languages",
|
|
694
|
-
"default_lang": "Default Language",
|
|
695
511
|
"channel": "Channel",
|
|
696
512
|
"entry": "Entry content",
|
|
697
513
|
"thumbnail": "Thumbnail",
|
|
@@ -701,10 +517,8 @@
|
|
|
701
517
|
"gb": "GB",
|
|
702
518
|
"or": "OR",
|
|
703
519
|
"click_or_dragndrop_to_upload": "Click or Drag & Drop to upload a file",
|
|
704
|
-
"button_block_message_label": "What would you like to know about us ?",
|
|
705
520
|
"menu": "Menu",
|
|
706
521
|
"total": "Total",
|
|
707
|
-
"general": "General",
|
|
708
522
|
"settings": "Settings",
|
|
709
523
|
"other": "Other",
|
|
710
524
|
"no_data": "No data",
|
|
@@ -717,7 +531,6 @@
|
|
|
717
531
|
"any": "Any",
|
|
718
532
|
"full_name": "First and last name",
|
|
719
533
|
"password": "Password",
|
|
720
|
-
"current_flow": "Current flow",
|
|
721
534
|
"all_flows": "All flows",
|
|
722
535
|
"types": "Types",
|
|
723
536
|
"triggered_at": "Triggered At",
|
|
@@ -770,63 +583,30 @@
|
|
|
770
583
|
"idle": "Idle",
|
|
771
584
|
"running": "Running",
|
|
772
585
|
"suspended": "Suspended"
|
|
773
|
-
}
|
|
586
|
+
},
|
|
587
|
+
"read_only": "Read only",
|
|
588
|
+
"view": "View",
|
|
589
|
+
"unknown": "Unknown"
|
|
774
590
|
},
|
|
775
591
|
"placeholder": {
|
|
776
|
-
"your_username": "Your username",
|
|
777
|
-
"your_email": "Your E-mail address",
|
|
778
|
-
"your_password": "Your password",
|
|
779
592
|
"username": "Username",
|
|
780
593
|
"email": "E-mail address",
|
|
781
|
-
"password": "Password",
|
|
782
594
|
"password2": "Confirm your password",
|
|
783
|
-
"timezone": "Timezone",
|
|
784
|
-
"language": "Language",
|
|
785
|
-
"date_format": "Date format",
|
|
786
595
|
"first_name": "First name",
|
|
787
596
|
"last_name": "Last name",
|
|
788
|
-
"search": "Search",
|
|
789
|
-
"type_message": "Type your message ...",
|
|
790
597
|
"keywords": "Keywords",
|
|
791
|
-
"label": "Label",
|
|
792
598
|
"type": "Type",
|
|
793
599
|
"name": "Name",
|
|
794
|
-
"entities": "Entities",
|
|
795
|
-
"select": "Select",
|
|
796
|
-
"unselect": "Unselect",
|
|
797
600
|
"title": "Title",
|
|
798
|
-
"url": "URL",
|
|
799
|
-
"payload": "Payload",
|
|
800
|
-
"user_says": "User says ...",
|
|
801
|
-
"select_or_create": "Select or Create new",
|
|
802
|
-
"filter_by_label": "Filter by labels",
|
|
803
|
-
"start_date": "Start Date",
|
|
804
|
-
"end_date": "End Date",
|
|
805
601
|
"type_message_here": "Type message here ....",
|
|
806
|
-
"mark_as_default": "By Default",
|
|
807
|
-
"pattern": "Pattern",
|
|
808
|
-
"full_name": "First and last name",
|
|
809
|
-
"step_trace": "Step Trace",
|
|
810
|
-
"inspector": "Inspector",
|
|
811
602
|
"latest_run": "Latest run",
|
|
812
|
-
"run_at": "Run {{0}}"
|
|
813
|
-
"unknown": "Unknown"
|
|
603
|
+
"run_at": "Run {{0}}"
|
|
814
604
|
},
|
|
815
605
|
"button": {
|
|
816
606
|
"login": "Sign In",
|
|
817
|
-
"register": "Sign Up",
|
|
818
|
-
"next": "Next",
|
|
819
|
-
"previous": "Previous",
|
|
820
|
-
"trash": "Trash",
|
|
821
|
-
"last_created": "Last created",
|
|
822
|
-
"last_modified": "Last modified",
|
|
823
607
|
"rename": "Rename",
|
|
824
608
|
"more": "More",
|
|
825
|
-
"duplicate": "Duplicate",
|
|
826
|
-
"remove": "Remove",
|
|
827
609
|
"remove_property": "Remove property",
|
|
828
|
-
"move": "Move",
|
|
829
|
-
"remove_permanently": "Remove",
|
|
830
610
|
"restore": "Restore",
|
|
831
611
|
"edit": "Edit",
|
|
832
612
|
"save": "Save",
|
|
@@ -843,55 +623,25 @@
|
|
|
843
623
|
"add": "Add",
|
|
844
624
|
"add_option": "Add option",
|
|
845
625
|
"add_property": "Add property",
|
|
846
|
-
"done": "Done",
|
|
847
|
-
"yes": "Yes",
|
|
848
|
-
"no": "No",
|
|
849
|
-
"ok": "OK",
|
|
850
|
-
"load_more": "Load more ...",
|
|
851
|
-
"details": "Details",
|
|
852
|
-
"reset": "Reset",
|
|
853
626
|
"append": "Append",
|
|
854
627
|
"delete": "Delete",
|
|
855
628
|
"download": "Download",
|
|
856
|
-
"send": "Send",
|
|
857
|
-
"fields": "Fields",
|
|
858
629
|
"upload": "Upload",
|
|
859
630
|
"import": "Import",
|
|
860
|
-
"export": "Export",
|
|
861
631
|
"manage": "Manage",
|
|
862
632
|
"view": "View",
|
|
863
633
|
"view_all": "View All",
|
|
864
634
|
"close": "Close",
|
|
865
|
-
"validate": "Validate",
|
|
866
635
|
"back": "Back",
|
|
867
|
-
"
|
|
868
|
-
"labels": "Manage Labels",
|
|
869
|
-
"load_previous_messages": "Load previous messages",
|
|
870
|
-
"roles": "Manage roles",
|
|
636
|
+
"copy_source_ref": "Copy source ref",
|
|
871
637
|
"permissions": "Permissions",
|
|
872
|
-
"requestlog": "Request Log",
|
|
873
|
-
"guess": "Guess",
|
|
874
638
|
"content": "Content",
|
|
875
639
|
"takeover": "Take over",
|
|
876
640
|
"handback": "Hand back",
|
|
877
|
-
"assign": "Assign",
|
|
878
|
-
"evaluate": "Evaluate",
|
|
879
641
|
"refresh": "Refresh",
|
|
880
|
-
"channel_sync": "Sync. Channels",
|
|
881
642
|
"select": "Select",
|
|
882
|
-
"unselect": "Unselect",
|
|
883
643
|
"media_library": "Media Library",
|
|
884
644
|
"manage_roles": "Manage Roles",
|
|
885
|
-
"connect_with_sso": "Connect with SSO",
|
|
886
|
-
"add_pattern": "New Trigger",
|
|
887
|
-
"postback": "Postback",
|
|
888
|
-
"url": "Url",
|
|
889
|
-
"add_button": "New Button",
|
|
890
|
-
"add_quick_reply": "New Quick Reply",
|
|
891
|
-
"text": "Text",
|
|
892
|
-
"location": "Location",
|
|
893
|
-
"mark_as_default": "Mark as Default",
|
|
894
|
-
"toggle": "Toggle",
|
|
895
645
|
"annotate": "Annotate Dataset",
|
|
896
646
|
"continue": "Continue",
|
|
897
647
|
"not_now": "Not now",
|
|
@@ -899,61 +649,18 @@
|
|
|
899
649
|
"enter_license_key": "Enter license key",
|
|
900
650
|
"manage_users": "Manage users"
|
|
901
651
|
},
|
|
902
|
-
"tooltip": {
|
|
903
|
-
"follow_live": "Follow live",
|
|
904
|
-
"export_trace": "Export trace (JSON)",
|
|
905
|
-
"copy_run_id": "Copy run ID",
|
|
906
|
-
"clear": "Clear"
|
|
907
|
-
},
|
|
908
652
|
"input": {
|
|
909
653
|
"search": "Search",
|
|
910
|
-
"jsonata_formula_mode": "JSONata mode (starts with '=')"
|
|
911
|
-
"plain_text_mode": "Plain text"
|
|
654
|
+
"jsonata_formula_mode": "JSONata mode (starts with '=')"
|
|
912
655
|
},
|
|
913
656
|
"link": {
|
|
914
657
|
"reset": "Forgot your password?"
|
|
915
658
|
},
|
|
916
|
-
"help": {
|
|
917
|
-
"fallback_message": "If no fallback block is selected, then one of these messages will be sent.",
|
|
918
|
-
"hit_enter_to_create": "Hit `enter` to create new",
|
|
919
|
-
"permanent": "When enabled, the variable value will be stored in the subscriber's profile and retained for future conversations."
|
|
920
|
-
},
|
|
921
|
-
"charts": {
|
|
922
|
-
"messages": "Messages",
|
|
923
|
-
"conversations": "Conversations",
|
|
924
|
-
"audience": "Audience",
|
|
925
|
-
"popular_blocks": "Popular Blocks",
|
|
926
|
-
"no_data": "There is not enough data for now",
|
|
927
|
-
"loading": "Loading",
|
|
928
|
-
"desc": {
|
|
929
|
-
"messages": "Shows the amount of incoming and outgoing messages handled by your chatbot. Please consider clicking on the legends to filter the results.",
|
|
930
|
-
"conversations": "Compares between new conversations and old ones. Please consider clicking on the legends to filter the results.",
|
|
931
|
-
"audience": "Describes user's engagement by highlighting returning users vs new users. Please consider clicking on the legends to filter the results.",
|
|
932
|
-
"popular_blocks": "Highlights the blocks that were tiggered the most. Please consider clicking on the legends to filter the results."
|
|
933
|
-
},
|
|
934
|
-
"legends": {
|
|
935
|
-
"all_messages": "All Messages",
|
|
936
|
-
"incoming": "Incoming",
|
|
937
|
-
"outgoing": "Outgoing",
|
|
938
|
-
"new_conversations": "New Conversations",
|
|
939
|
-
"existing_conversations": "Existing Conversations",
|
|
940
|
-
"new_users": "New Users",
|
|
941
|
-
"returning_users": "Returning Users",
|
|
942
|
-
"retention": "Retention"
|
|
943
|
-
},
|
|
944
|
-
"error": "Error"
|
|
945
|
-
},
|
|
946
659
|
"datetime": {
|
|
947
660
|
"created_at": "{{val, datetime, dateFormat}}",
|
|
948
661
|
"updated_at": "{{val, datetime, dateFormat}}"
|
|
949
662
|
},
|
|
950
663
|
"visual_editor": {
|
|
951
|
-
"zoom": {
|
|
952
|
-
"in": "Zoom In",
|
|
953
|
-
"out": "Zoom Out",
|
|
954
|
-
"reset": "Reset zoom to default",
|
|
955
|
-
"fitScreen": "Fit to screen"
|
|
956
|
-
},
|
|
957
664
|
"flows_drawer": {
|
|
958
665
|
"title": "Flows",
|
|
959
666
|
"search_placeholder": "Search name or description",
|
|
@@ -965,14 +672,8 @@
|
|
|
965
672
|
"published": "Published"
|
|
966
673
|
},
|
|
967
674
|
"errors": "Errors {{0}}",
|
|
968
|
-
"badge": {
|
|
969
|
-
"input_schema": "Input schema"
|
|
970
|
-
},
|
|
971
675
|
"meta": {
|
|
972
|
-
"cron": "Cron: {{0}}",
|
|
973
676
|
"no_schedule": "No schedule",
|
|
974
|
-
"requires_params": "Requires {{0}} params",
|
|
975
|
-
"no_params": "No params",
|
|
976
677
|
"no_details": "No details"
|
|
977
678
|
},
|
|
978
679
|
"empty": {
|
|
@@ -991,28 +692,20 @@
|
|
|
991
692
|
"form": {
|
|
992
693
|
"section": {
|
|
993
694
|
"input": "Input",
|
|
994
|
-
"settings": "Settings"
|
|
995
|
-
"execution_settings": "Overrides",
|
|
996
|
-
"output": "Output"
|
|
695
|
+
"settings": "Settings"
|
|
997
696
|
},
|
|
998
697
|
"empty_schema": {
|
|
999
698
|
"input": "No input schema available.",
|
|
1000
|
-
"settings": "No settings schema available."
|
|
1001
|
-
"output": "No output schema available."
|
|
699
|
+
"settings": "No settings schema available."
|
|
1002
700
|
},
|
|
1003
701
|
"empty_state": {
|
|
1004
702
|
"no_action": "No action selected.",
|
|
1005
703
|
"no_schema": "No action schema available."
|
|
1006
704
|
},
|
|
1007
|
-
"node_label": {
|
|
1008
|
-
"agent": "Agent",
|
|
1009
|
-
"task": "Task"
|
|
1010
|
-
},
|
|
1011
705
|
"action_label": {
|
|
1012
706
|
"none": "No action selected"
|
|
1013
707
|
},
|
|
1014
708
|
"step_id": {
|
|
1015
|
-
"label": "Step ID",
|
|
1016
709
|
"placeholder": "step_id",
|
|
1017
710
|
"errors": {
|
|
1018
711
|
"required": "Step ID is required.",
|
|
@@ -1031,12 +724,8 @@
|
|
|
1031
724
|
}
|
|
1032
725
|
},
|
|
1033
726
|
"tool_drawer": {
|
|
1034
|
-
"title": "Tool",
|
|
1035
|
-
"description": "Configure this tool binding.",
|
|
1036
727
|
"form": {
|
|
1037
|
-
"action_label": "Action",
|
|
1038
728
|
"tool_id": {
|
|
1039
|
-
"label": "Tool ID",
|
|
1040
729
|
"placeholder": "tool_name",
|
|
1041
730
|
"errors": {
|
|
1042
731
|
"required": "Tool ID is required.",
|
|
@@ -1045,7 +734,6 @@
|
|
|
1045
734
|
}
|
|
1046
735
|
},
|
|
1047
736
|
"description": {
|
|
1048
|
-
"label": "Description",
|
|
1049
737
|
"placeholder": "Optional tool description."
|
|
1050
738
|
},
|
|
1051
739
|
"empty_schema": {
|
|
@@ -1107,7 +795,6 @@
|
|
|
1107
795
|
"title": "Loop",
|
|
1108
796
|
"description": "Configure loop iteration, exit rule, and accumulator settings.",
|
|
1109
797
|
"form": {
|
|
1110
|
-
"empty_state": "No loop configuration available.",
|
|
1111
798
|
"name": {
|
|
1112
799
|
"label": "Name",
|
|
1113
800
|
"helper": "Optional key used to expose loop output."
|
|
@@ -1188,7 +875,8 @@
|
|
|
1188
875
|
},
|
|
1189
876
|
"yaml_editor": {
|
|
1190
877
|
"show": "Show YAML editor",
|
|
1191
|
-
"hide": "Hide YAML editor"
|
|
878
|
+
"hide": "Hide YAML editor",
|
|
879
|
+
"validation_title": "Workflow definition has errors"
|
|
1192
880
|
},
|
|
1193
881
|
"workflow_versions": {
|
|
1194
882
|
"show": "Show workflow versions",
|
|
@@ -1207,7 +895,6 @@
|
|
|
1207
895
|
"update": "Updated",
|
|
1208
896
|
"restore": "Restored",
|
|
1209
897
|
"import": "Imported",
|
|
1210
|
-
"publish": "Published",
|
|
1211
898
|
"unknown": "Updated"
|
|
1212
899
|
}
|
|
1213
900
|
},
|