From d32846daa45e97687d28a0c9d5b0716688061eeb Mon Sep 17 00:00:00 2001 From: shuhaib s <95394061+shuhaib-aot@users.noreply.github.com> Date: Wed, 5 Jun 2024 13:36:04 +0530 Subject: [PATCH] FWF:332 [Bugifx] Removed formio_resource_bundle and all resources bring from micro-front-end service (#2092) --- forms-flow-web/src/components/Draft/Edit.js | 5 +- forms-flow-web/src/components/Form/Create.js | 4 +- .../src/components/Form/Item/Edit.js | 4 +- .../src/components/Form/Item/Preview.js | 4 +- .../Form/Item/Submission/Item/Edit.js | 4 +- .../Form/Item/Submission/Item/View.js | 4 +- .../src/components/Form/Item/View.js | 4 +- .../resourceBundles/formio_resourceBundles.js | 5943 ----------------- forms-flow-web/src/resourceBundles/i18n.js | 7 + 9 files changed, 22 insertions(+), 5957 deletions(-) delete mode 100644 forms-flow-web/src/resourceBundles/formio_resourceBundles.js diff --git a/forms-flow-web/src/components/Draft/Edit.js b/forms-flow-web/src/components/Draft/Edit.js index ac8d01bbca..0f1b575c99 100644 --- a/forms-flow-web/src/components/Draft/Edit.js +++ b/forms-flow-web/src/components/Draft/Edit.js @@ -15,7 +15,8 @@ import LoadingOverlay from "react-loading-overlay-ts"; import { toast } from "react-toastify"; import isEqual from "lodash/isEqual"; -import { formio_resourceBundles } from "../../resourceBundles/formio_resourceBundles"; +import {RESOURCE_BUNDLES_DATA} from "../../resourceBundles/i18n"; + import useInterval from "../../customHooks/useInterval"; import { CUSTOM_EVENT_TYPE } from "../ServiceFlow/constants/customEventTypes"; import selectApplicationCreateAPI from "../Form/Item/apiSelectHelper"; @@ -313,7 +314,7 @@ const View = React.memo((props) => { options={{ ...options, language: lang, - i18n: formio_resourceBundles, + i18n: RESOURCE_BUNDLES_DATA, }} hideComponents={hideComponents} onChange={(formData) => { diff --git a/forms-flow-web/src/components/Form/Create.js b/forms-flow-web/src/components/Form/Create.js index 60ce4dbae8..3a5a41acf9 100644 --- a/forms-flow-web/src/components/Form/Create.js +++ b/forms-flow-web/src/components/Form/Create.js @@ -14,7 +14,7 @@ import { saveFormProcessMapperPost } from "../../apiManager/services/processServ import { useDispatch, useSelector } from "react-redux"; import { toast } from "react-toastify"; import { useTranslation, Translation } from "react-i18next"; -import { formio_resourceBundles } from "../../resourceBundles/formio_resourceBundles"; +import {RESOURCE_BUNDLES_DATA} from "../../resourceBundles/i18n"; import { clearFormError, setFormFailureErrorData, @@ -429,7 +429,7 @@ const Create = React.memo(() => { onChange={formChange} options={{ language: lang, - i18n: formio_resourceBundles, + i18n: RESOURCE_BUNDLES_DATA, }} /> diff --git a/forms-flow-web/src/components/Form/Item/Edit.js b/forms-flow-web/src/components/Form/Item/Edit.js index ef804a401a..58e74b6236 100644 --- a/forms-flow-web/src/components/Form/Item/Edit.js +++ b/forms-flow-web/src/components/Form/Item/Edit.js @@ -21,7 +21,7 @@ import { } from "../../../apiManager/services/processServices"; import Button from "react-bootstrap/Button"; import Modal from "react-bootstrap/Modal"; -import { formio_resourceBundles } from "../../../resourceBundles/formio_resourceBundles"; +import { RESOURCE_BUNDLES_DATA } from "../../../resourceBundles/i18n"; import { clearFormError, setFormFailureErrorData, @@ -811,7 +811,7 @@ const Edit = React.memo(() => { onChange={formChange} options={{ language: lang, - i18n: formio_resourceBundles, + i18n: RESOURCE_BUNDLES_DATA, }} /> diff --git a/forms-flow-web/src/components/Form/Item/Preview.js b/forms-flow-web/src/components/Form/Item/Preview.js index 3d6895d154..0788a322a8 100644 --- a/forms-flow-web/src/components/Form/Item/Preview.js +++ b/forms-flow-web/src/components/Form/Item/Preview.js @@ -5,7 +5,7 @@ import { Form, Errors, Formio } from "react-formio"; import { push } from "connected-react-router"; import Loading from "../../../containers/Loading"; import { Translation } from "react-i18next"; -import { formio_resourceBundles } from "../../../resourceBundles/formio_resourceBundles"; +import { RESOURCE_BUNDLES_DATA } from "../../../resourceBundles/i18n"; import { MULTITENANCY_ENABLED } from "../../../constants/constants"; import { setFormFailureErrorData, @@ -230,7 +230,7 @@ const Preview = ({handleNext, hideComponents, activeStep}) => { }, disableAlerts: true, noAlerts: true, - language: lang, i18n: formio_resourceBundles }} + language: lang, i18n: RESOURCE_BUNDLES_DATA }} /> diff --git a/forms-flow-web/src/components/Form/Item/Submission/Item/Edit.js b/forms-flow-web/src/components/Form/Item/Submission/Item/Edit.js index b6ab5fc5a9..bc1367a912 100644 --- a/forms-flow-web/src/components/Form/Item/Submission/Item/Edit.js +++ b/forms-flow-web/src/components/Form/Item/Submission/Item/Edit.js @@ -9,7 +9,7 @@ import { Errors, } from "react-formio"; import { push } from "connected-react-router"; -import { formio_resourceBundles } from "../../../../../resourceBundles/formio_resourceBundles"; +import { RESOURCE_BUNDLES_DATA } from "../../../../../resourceBundles/i18n"; import Loading from "../../../../../containers/Loading"; import { @@ -143,7 +143,7 @@ const Edit = React.memo((props) => { } options={{ ...options, - i18n: formio_resourceBundles, + i18n: RESOURCE_BUNDLES_DATA, language: lang, }} onCustomEvent={onCustomEvent} diff --git a/forms-flow-web/src/components/Form/Item/Submission/Item/View.js b/forms-flow-web/src/components/Form/Item/Submission/Item/View.js index 09b27c5cdd..d3e097ebfb 100644 --- a/forms-flow-web/src/components/Form/Item/Submission/Item/View.js +++ b/forms-flow-web/src/components/Form/Item/Submission/Item/View.js @@ -13,7 +13,7 @@ import Loading from "../../../../../containers/Loading"; import { setFormSubmissionLoading } from "../../../../../actions/formActions"; import LoadingOverlay from "react-loading-overlay-ts"; import { useTranslation } from "react-i18next"; -import { formio_resourceBundles } from "../../../../../resourceBundles/formio_resourceBundles"; +import { RESOURCE_BUNDLES_DATA } from "../../../../../resourceBundles/i18n"; import { CUSTOM_SUBMISSION_URL, CUSTOM_SUBMISSION_ENABLE, @@ -80,7 +80,7 @@ const View = React.memo((props) => { url={url} hideComponents={hideComponents} onSubmit={onSubmit} - options={{ ...options, i18n: formio_resourceBundles, viewAsHtml: true }} + options={{ ...options, i18n: RESOURCE_BUNDLES_DATA, viewAsHtml: true }} /> diff --git a/forms-flow-web/src/components/Form/Item/View.js b/forms-flow-web/src/components/Form/Item/View.js index 29c6e692f2..a186a1d8f0 100644 --- a/forms-flow-web/src/components/Form/Item/View.js +++ b/forms-flow-web/src/components/Form/Item/View.js @@ -20,7 +20,7 @@ import { getProcessReq, getDraftReqFormat, } from "../../../apiManager/services/bpmServices"; -import { formio_resourceBundles } from "../../../resourceBundles/formio_resourceBundles"; +import { RESOURCE_BUNDLES_DATA } from "../../../resourceBundles/i18n"; import { setFormFailureErrorData, setFormRequestData, @@ -406,7 +406,7 @@ const View = React.memo((props) => { options={{ ...options, language: lang, - i18n: formio_resourceBundles, + i18n: RESOURCE_BUNDLES_DATA, }} hideComponents={hideComponents} onChange={(data) => { diff --git a/forms-flow-web/src/resourceBundles/formio_resourceBundles.js b/forms-flow-web/src/resourceBundles/formio_resourceBundles.js deleted file mode 100644 index fc7ba297d6..0000000000 --- a/forms-flow-web/src/resourceBundles/formio_resourceBundles.js +++ /dev/null @@ -1,5943 +0,0 @@ -/* eslint-disable max-len */ -export const formio_resourceBundles = { - en: { - "Bad Request":"Bad Request", - "Select form version":"Select form version", - "Please remove the special characters...!":"Please remove the special characters...!", - "No histories found":"No histories found", - "Continue":"Continue", - "This will create a new version of the form without changing the path name but with new form id.":"This will create a new version of the form without changing the path name but with new form id.", - "Save as a new version":"Save as a new version", - "Save New Version":"Save New Version", - "Do you want to save a new version of this form?":"Do you want to save a new version of this form?", - "Do you want to create a duplicate form and associated workflow from existing form ?":"Do you want to create a duplicate form and associated workflow from existing form ?", - "New version created":"New version created", - "Create a duplicate form":"Create a duplicate form", - "Show more":"Show more", - "Modified By":"Modified By", - "Created On" : "Created On", - "Formsflow automatically saves your previous form data. Now you can switch to the previous stage and edit.":"Formsflow automatically saves your previous form data. Now you can switch to the previous stage and edit.", - "Duplicate Form":"Duplicate Form", - "Form History":"Form History", - "No file chosen":"No file chosen", - "Choose File":"Choose File", - "Choose any":"Choose any", - "select form type":"select form type", - "Draft Deleted Successfully":"Draft Deleted Successfully", - "Saved to Submissions/Drafts":"Saved to Submissions/Drafts", - "Unfinished Submissions will be saved to Submissions/Drafts.":"Unfinished Submissions will be saved to Submissions/Drafts.", - "with ID":"with ID", - "Are you sure you wish to delete the draft":"Are you sure you wish to delete the draft", - "Discard Draft":"Discard Draft", - "Search by form name": "Search by form name", - "Click to search": "Click to search", - "No submissions found": "No submissions found", - "No submission avaliable in the selected date. Please select another date range": - "No submission avaliable in the selected date. Please select another date range", - "All groups have access to the dashboard": - "All groups have access to the dashboard", - "Form unpublishing Failed": "Form unpublishing Failed", - "Form process failed": "Form process failed", - "Form deleted successfully": "Form deleted successfully", - "Form-Workflow association saved.": "Form-Workflow association saved.", - "Loading...": "Loading...", - "Changing the form workflow will not affect the existing submissions. It will only update in the newly created submissions. Press Save Changes to continue or cancel the changes.": - "Changing the form workflow will not affect the existing submissions. It will only update in the newly created submissions. Press Save Changes to continue or cancel the changes.", - "Save Changes": "Save Changes", - "Are you sure you wish to delete the form ": - "Are you sure you wish to delete the form ", - "Are you sure you wish to delete the form?": - "Are you sure you wish to delete the form?", - "Submissions are made against": "Submissions are made against", - "Submission is made against": "Submission is made against", - ". Are you sure want to delete ?": ". Are you sure want to delete ?", - "Click here to go back": "Click here to go back", - "Error while saving Form": "Error while saving Form", - "Confirmation": "Confirmation", - "Submitted By": "Submitted By", - "Copy anonymous form URL": "Copy anonymous form URL", - "Form field": "Form field", - "Enter Label": "Enter Label", - "Select form field": "Select form field", - "Add form fields to display in task list": - "Add form fields to display in task list", - "Latest Version": "Latest Version", - "Dashboard": "Dashboard", - "Dashboards": "Dashboards", - "Submission Status": "Submission Status", - "No submission status": "No submission status", - "No Public url found": "No Public url found", - "Show in list": "Show in list", - "Select Task Variable": "Select Task Variable", - "Enter your Label": "Enter your Label", - "Please select from one of the following workflows.": - "Please select from one of the following workflows.", - "Select Key": "Select Key", - "Changing the form title will not affect the existing submissions. It will only update in the newly created submissions. Press Save Changes to continue or cancel the changes.": - "Changing the form title will not affect the existing submissions. It will only update in the newly created submissions. Press Save Changes to continue or cancel the changes.", - "Create Your Task Variable": "Create Your Task Variable", - "No task variable selected": "No task variable selected", - "Workflow Associate": "Workflow Associate", - "Task variable": "Task variable", - "Enter pathname": "Enter pathname", - "Text Field": "Text Field", - "Label": "Label", - "saved successfully": "saved successfully", - "Thank you for your response.": "Thank you for your response.", - "Form not available": "Form not available", - "Ok": "Ok", - "No submissions available for the selected date range": - "No submissions available for the selected date range", - "Save Form": "Save Form", - "Cancel": "Cancel", - "Confirm": "Confirm", - "Wizard": "Wizard", - "Please fix the errors before submitting again.": - "Please fix the errors before submitting again.", - "Error in JSON file structure": "Error in JSON file structure", - "Metrics": "Metrics", - "Insights": "Insights", - "Tasks": "Tasks", - "Submissions": "Submissions", - "Forms": "Forms ", - "Admin": "Admin", - "Powered by ": "Powered by ", - "Anonymous Form ": "Anonymous Form ", - "Title": "Title", - "Name": "Name", - "Display as": "Display as", - "Type": "Type", - "Path": "Path", - "Make this form public ?": "Make this form public ?", - "Save & Preview": "Save & Preview", - "Form-Workflow association failed.": "Form-Workflow association failed.", - "Error in getting Workflow Process.": "Error in getting Workflow Process.", - "Form saved": "Form saved.", - "Error while saving Form.": "Error while saving Form.", - "Create Form": "Create Form", - "Design Form": "Design Form", - "Associate this form with a workflow?": - "Associate this form with a workflow?", - "Preview and Confirm": "Preview and Confirm", - "All steps completed - you're finished": - "All steps completed - you're finished", - "Submission Saved": "Submission Saved.", - "Error while Submission.": "Error while Submission.", - "Submission cannot be done.": "Submission cannot be done.", - "No Process Diagram found": "No Process Diagram found", - "Are you sure you wish to delete the form": - "Are you sure you wish to delete the form", - "Edit": "Edit", - "Do you want to associate form with a workflow ?": - "Do you want to associate form with a workflow ?", - "Yes": "Yes", - "No": "No", - "Workflow Name": "Workflow Name", - "Publish this form for Client Users.": - "Publish this form for Client Users.", - "Comments": "Comments", - "Back": "Back", - "Edit Form": "Edit Form", - "Next": "Next", - "Are you sure you wish to delete this submission?": - "Are you sure you wish to delete this submission?", - "Save": "Save", - "Back to Form List": "Back to Form List", - "Submit New": "Submit New", - "View Submissions": "View Submissions", - "View/Edit Form": "View/Edit Form", - "Delete Form": "Delete Form", - "Delete": "Delete", - "Print As PDF": "Print As PDF", - "Logout": "Logout", - "No tasks found": "No tasks found", - "Please change the selected filters to view tasks": - "Please change the selected filters to view tasks", - "Clear all filters": "Clear all filters", - "Created": "Created", - "Task Variables": "Task Variables", - "Process Variables": "Process Variables", - "Process Definition Name": "Process Definition Name", - "Assignee": "Assignee", - "Candidate Group": "Candidate Group", - "Candidate User": "Candidate User", - "Description": "Description", - "Priority": "Priority", - "Due Date": "Due Date", - "Follow up Date": "Follow up Date", - "Task name": "Task name", - "Remove sorting": "Remove sorting", - "Ascending": "Ascending", - "Descending": "Descending", - "Add sorting": "Add sorting", - "of the criteria are met.": "of the criteria are met.", - "For Variable, ignore case of": "For Variable, ignore case of", - "name": "name", - "value": "value", - "No task matching filters found.": "No task matching filters found.", - "Submission Id": "Submission Id", - "Set follow-up Date": "Set follow-up Date", - "Set Due date": "Set Due date", - "Add groups": "Add groups", - "Claim": "Claim", - "Search By Last Name": "Search By Last Name", - "Search By First Name": "Search By First Name", - "Search By Email": "Search By Email", - "You can add a group by typing a group ID into the input field and afterwards clicking the button with the plus sign.": - "You can add a group by typing a group ID into the input field and afterwards clicking the button with the plus sign.", - "Add a group": "Add a group", - "Process Name": "Process Name", - "Set FollowUp Date": "Set FollowUp Date", - "groups": "groups", - "Click to Change Assignee": "Click to Change Assignee", - "Reset Assignee": "Reset Assignee", - "Update User": "Update User", - "Close": "Close", - "Remove search": "Remove search", - "Property": "Property", - "Operator": "Operator", - "Total number of results": "Total number of results", - "Filter Tasks": "Filter Tasks", - "All": "All", - "ANY": "ANY", - "Task assignee": "Task assignee", - "Submission History": "Submission History", - "View Submission": "View Submission", - "Showing": "Showing", - "to": "to", - "results": "results", - "Acknowledge": "Acknowledge", - "View": "View", - "Select a task in the list.": "Select a task in the list.", - "No Filters Found": "No Filters Found", - "Loading": "Loading", - "Form": "Form", - "History": "History", - "Diagram": "Diagram", - "Delete Confirmation": "Delete Confirmation", - "All tasks": "All tasks", - "Manage Groups": "Manage Groups", - "Group ID": "Group ID", - "Due": "Due", - "Follow-up": "Follow-up", - "Form Name": "Form Name", - "Created By": "Created By", - "Submitted On": "Submitted On", - "Modified On": "Modified On", - "No History Found": "No History Found", - "Process Diagram": "Process Diagram", - "history": "history", - "Details": "Details", - "Status": "Status", - "No Submission History found": "No Submission History found", - "Link To Form Submission": "Link To Form Submission", - "Last Modified": "Last Modified", - "No dashboard found": "No dashboard found", - "of": "of", - "Select Dashboard": "Select Dashboard", - "Total Submissions": "Total Submissions", - "Operations": "Operations", - "Access Groups": "Access Groups", - "Action": "Action", - "Add": "Add", - "Upload Form": "Upload Form", - "Download Form": "Download Form", - "Upload json form only": "Upload json form only", - "Select atleast one form": "Select atleast one form", - "Select All": "Select All", - "Created Date": "Created Date", - "Modified Date": "Modified Date", - "File Upload Status": "File Upload Status", - "Forms Completed": "Forms Completed", - "Form Completed": "Form Completed", - "No forms found": "No forms found", - "Press Enter key or click here to search": - "Press Enter key or click here to search", - "Click to clear": "Click to clear", - "Successfully Updated": "Successfully Updated", - "Failed": "Failed", - "Submission Failed.": "Submission Failed.", - "Click here to back": "Click here to back", - "Enter the form machine name": "Enter the form machine name", - "Enter the form title": "Enter the form title", - "Downloaded Successfully": "Downloaded Successfully", - "Export PDF": "Export PDF", - "Something went wrong. Please try again!":"Something went wrong. Please try again!", - "No Dashboards Found":"No Dashboards Found", - "Processes":"Processes", - "Please select an existing workflow.":"Please select an existing workflow.", - "Create New":"Create New", - "Or create new workflow or import a workflow from a local directory.":"Or create new workflow or import a workflow from a local directory.", - "The operation couldn't be completed. Please try after sometime":"The operation couldn't be completed. Please try after sometime", - "Select...":"Select...", - "No Drafts Found": "No Drafts Found", - "Help":"Help", - "Draft Id":"Draft Id", - "Draft Name":"Draft Name", - "Link To Draft Submission":"Link To Draft Submission", - "Drafts":"Drafts", - "You can't submit this form until it is published":"You can't submit this form until it is published", - "Form not published":"Form not published", - "Access Denied" : "Access Denied", - "By default, the tenant key would be prefixed to form":"By default, the tenant key would be prefixed to form", - "go back":"go back", - "No submissions Found":"No submissions Found", - "Submission saved to draft.":"Submission saved to draft.", - "Saved to draft":"Saved to draft", - "Saving...":"Saving...", - "Error in creating form process mapper":"Error in creating form process mapper", - "Select the date":"Select the date", - "Diagram Deployed":"Diagram Deployed", - "Deployment Failed":"Deployment Failed", - "Process name(s) must not be empty":"Process name(s) must not be empty", - "URL copied":"URL copied", - "Click Here to Copy":"Click Here to Copy", - "Revert": "Revert", - "Overview": "Overview", - "Design Permission": "Design Permission", - "All Designers": "All Designers", - "Private(only you)": "Private(only you)", - "Specific Designer Group": "Specific Designer Group", - "Submission Permission": "Submission Permission", - "All Users": "All Users", - "Specific User Group": "Specific User Group", - "Applicable for Designer Roled Users only.": "Applicable for Designer Roled Users only.", - "Applicable for Client and Reviewer Roled Users only.": "Applicable for Client and Reviewer Roled Users only.", - "Create new filter": "Create new filter", - "Filter Name": "Filter Name", - "Enter your text here": "Enter your text here", - "Criteria": "Criteria", - "Add Value": "Add Value", - "Definition Key": "Definition Key", - "Include Assigned task": "Include Assigned task", - "Variable": "Variable", - "Show undefined variables": "Show undefined variables", - "Name of variable": "Name of variable", - "Readable name": "Readable name", - "Permission": "Permission", - "Accessible for all users": "Accessible for all users", - "Private (Only You)": "Private (Only You)", - "Specific User/Group": "Specific User/Group", - "User": "User", - "Group": "Group", - "Identifier": "Identifier", - "Enter role ID": "Enter role ID", - "Create Filter": "Create Filter", - "Select a task in the List":"Select a task in the List", - "Select a specific task from the provided list of options. Your selection will determine the task you will be working on or interacting with.":"Select a specific task from the provided list of options. Your selection will determine the task you will be working on or interacting with." - }, - - "zh-CN": { - "Bad Request":"错误的请求", - "Select form version":"选择表格版本", - "Please remove the special characters...!":"请删除特殊字符...!", - "No histories found":"没有找到历史记录", - "Continue":"继续", - "This will create a new version of the form without changing the path name but with new form id.":"这将创建一个新版本的表单而不更改路径名但具有新的表单 ID。", - "Save as a new version":"另存为新版本", - "Save New Version":"保存新版本", - "Do you want to save a new version of this form?":"您要保存此表单的新版本吗?", - "Do you want to create a duplicate form and associated workflow from existing form ?":"您要从现有表单创建重复表单和关联工作流吗?", - "New version created":"已创建新版本", - "Create a duplicate form":"创建一个重复的表单", - "Show more":"展示更多", - "Modified By":"修改者", - "Created On" : "创建于", - "Formsflow automatically saves your previous form data. Now you can switch to the previous stage and edit.":"Formsflow 会自动保存您以前的表单数据。现在您可以切换到上一个阶段并进行编辑。", - "Duplicate Form":"复制表格", - "Form History":"表单历史", - "No file chosen":"没有选中任何文件", - "Choose File":"选择文件", - "Choose any":"选择任何", - "select form type":"选择表格类型", - "Draft Deleted Successfully":"草稿删除成功", - "with ID":"带身份证", - "Are you sure you wish to delete the draft":"您确定要删除草稿吗", - "Discard Draft":" 丢弃草稿", - "Search by form name": "按表格名称搜索", - "Click to search": "点击搜索", - "No submissions found": "未找到任何提交", - "No submission avaliable in the selected date. Please select another date range": - "在所选日期内没有可用的提交。请选择其他日期范围", - "All groups have access to the dashboard": "所有组都可以访问仪表板", - "Form unpublishing Failed": "表单取消发布失败", - "Form process failed": "表单处理失败", - "Form deletion unsuccessful":"表单删除失败", - "Form deleted successfully": "表格删除成功", - "Loading...": "正在加载...", - - "Save Changes": "保存更改", - - ". Are you sure want to delete ?": ".确定要删除吗?", - "Are you sure you wish to delete the form ": "您确定要删除表格吗 ", - "Are you sure you wish to delete the form?": "您确定要删除表格吗?", - "Click here to go back": "点击此处回去", - "Dashboards": "仪表板", - "Error while saving Form": "保存表单时出错", - "Confirmation": "确认", - "Submitted By": "由...所提交", - "Copy anonymous form URL": "复制匿名表单 URL", - "Form field": "表单域", - "Enter Label": "输入标签", - "Select form field": "选择表单域", - "Add form fields to display in task list": "添加表单域以显示在任务列表中", - "Version": "版本", - "Submission Status": "提交状态", - "No submission status": "无提交状态", - "No Public url found": "未找到公共网址", - "Show in list": "显示在列表中", - "Select Task Variable": "选择任务变量", - "Enter your Label": "输入您的标签", - "Please select from one of the following workflows.": - "请从以下工作流程之一中选择。", - "Select Key": "选择键", - "Create Your Task Variable": "创建您的任务变量", - "No task variable selected": "未选择任务变量", - "Workflow Associate": "工作流助理", - - "Task variable": "任务变量", - "Enter pathname": "输入路径名", - "Label": "标签", - "saved successfully": "保存成功", - "Thank you for your response.": "谢谢您的答复。", - "Form not available": "不适用公式", - "Ok": "好的", - "No submissions available for the selected date range": - "所选日期范围内没有可用的提交", - "Save Form": "保存表格", - "Confirm": "确认", - "Cancel": "取消", - "Wizard": "向导", - "Please fix the errors before submitting again.": - "请在重新提交之前修复错误。", - "Error in JSON file structure": "JSON文件结构错误", - "Form": "形式", - "Downloaded Successfully": "下载成功", - "Submission Saved": "提交已保存。", - "Error while Submission.": "提交时出错。", - "Submission cannot be done.": "无法提交。 ", - "Are you sure you wish to delete the form": "您确定要删除表格吗", - "Forms": "表格 ", - "Edit": "编辑", - "Do you want to associate form with a workflow ?": - "您想将表单与工作流相关联吗?", - "Form-Workflow association saved.": "表单-工作流程关联已保存。", - "Yes": "是的", - "No": "否", - "Form Name": "表格名称 ", - "Workflow Name": "工作流程名称", - "Publish this form for Client Users.": "为客户用户发布此表单.", - "Comments": "评论", - "Back": "返回", - "Edit Form": "编辑表格 ", - "Next": "下一个", - "Are you sure you wish to delete this submission?": - "您确定要删除此提交吗?", - "Save": "保存 ", - "Back to Form List": "返回表格列表 ", - "Submit New": "提交新的 ", - "View Submissions": "查看提交 ", - "View/Edit Form": "查看/编辑表单 ", - "Delete Form": "删除表格 ", - "Delete": "删除", - "Print As PDF": "打印为 PDF ", - - "Tasks": "任务", - "Insights": "洞察力", - "Dashboard": "仪表盘 ", - "Logout": "登出", - "No tasks found": "没有找到任务 ", - "Please change the selected filters to view tasks": - "请更改所选过滤器以查看任务", - "Clear all filters": "清除所有过滤器", - "Created": "已创建", - "Task Variables": "任务变量", - "Process Variables": "过程变量", - "Process Definition Name": "进程定义名称", - "Assignee": "受让人 ", - "Candidate Group": "候选组", - "Candidate User": "候选用户", - "Name": "姓名", - "Description": "描述", - "Priority": "优先事项", - "Due Date": "到期日", - "Follow up Date": "跟进日期", - "Task name": "任务名称", - "Remove sorting": "删除排序", - "Ascending": "上升", - "Descending": "降序", - "Add sorting": "添加排序", - "of the criteria are met.": "的标准得到满足。", - "For Variable, ignore case of": "对于变量,忽略大小写", - "name": "姓名", - "Value": "价值", - "No Filters Found": "未找到匹配过滤器的任务。", - "Set follow-up Date": "设置随访日期", - "Set Due date": "设置截止日期", - "Add groups": "添加群组", - "Claim": "宣称", - "Search By Last Name": "按姓氏搜索", - "Search By First Name": "按名字搜索", - "Search By Email": "通过电子邮件搜索", - "You can add a group by typing a group ID into the input field and afterwards clicking the button with the plus sign.": - "您可以通过在输入字段中输入组 ID,然后单击带加号的按钮来添加组。", - "Add a group": "添加群组", - "Process Name": "进程名称", - "Set FollowUp Date": "设置跟进日期", - "Groups": "团体", - "Click to Change Assignee": "单击以更改受让人", - "Reset Assignee": "重置受让人", - "Update User": "更新用户", - "Close": "关闭", - "Type": "类型", - "Remove search": "删除搜索", - "Property": "财产", - "Operator": "操作员", - "Total number of results": "结果总数", - "Filter Tasks": "过滤任务", - "All": "全部", - "ANY": "任何", - "Task assignee": "任务受让人", - "submission History": "应用历史", - "View Submission": "查看提交", - "Showing": "显示", - "to": "到", - "results": "结果", - "Acknowledge": "承认", - "View": "看法", - "Select a task in the list.": "在列表中选择一个任务。", - "Loading": "加载中", - "History": "历史", - "Diagram": "图表", - "Delete Confirmation": "删除确认", - "All tasks": "所有任务", - "Manage Groups": "管理群组", - "Group ID": "组ID", - "Due": "到期的", - "Follow-up": "跟进", - - "Created By": "由...制作", - - "Submitted On": "提交日期", - "Modified On": "修改时间", - "No History Found": "未找到历史记录", - "Process Diagram": "流程图", - "Details": "细节", - "Status": "地位", - "Link To Form Submission": "表单提交链接", - "Last Modified": "最后修改", - "Metrics": "指标", - "No dashboard found": "未找到仪表板", - "of": "的", - "Select Dashboard": "选择仪表板", - "Total Submissions": "提交总数", - "Operations": "运营", - "Access Groups": "访问组", - "Action": "行动", - 'Add': "添加", - "Admin": "行政", - "Create Form": "创建表格 ", - "Upload Form": "上传表格", - "Download Form": "下载表格", - "Upload json form only": "仅上传 json 表单", - "Select atleast one form": "选择至少一种形式", - "Select All": "全选", - "Created Date": "创建日期", - "Modified Date": "修改日期", - "File Upload Status": "文件上传状态", - "Forms Completed": "完成的表格", - "Form Completed": "表格完成", - "No forms found": "没有找到表格", - "Powered by ": "供电 ", - "No Process Diagram found": "未找到流程图", - "Successfully Updated": "成功更新", - "Failed": "失败的", - "Submission Failed.": "提交失败。", - "Press Enter key or click here to search": "按 Enter 键或点击此处搜索", - "Click to clear": "点击清除", - "Search...": "搜索...", - "Click here to back": "点击这里返回", - "Path": "小路", - "example": "例子", - "Display as": "显示为", - "Anonymous Form ": "匿名表格", - "Make this form public ?": "将此表格公开?", - "Design Form": "设计形式 ", - "Associate this form with a workflow?": "将此表单与工作流相关联?", - "Preview and Confirm": "预览并确认", - "All steps completed - you're finished": "已完成所有步骤 - 您已完成", - "Form-Workflow association failed.": "表单-工作流关联失败。", - "Error in getting Workflow Process.": "获取工作流过程时出错。", - "Form saved": "表格已保存。", - "Error while saving Form.": "保存表单时出错。", - "Enter the form title": "输入表格标题", - "Text Field": "文本域", - "Text Area": "文本区", - "Number": "数字", - "Password": "密码", - "Checkbox": "复选框", - "Select Boxes": "选择框", - "Select": "选择", - "Radio": "收音机", - "Button": "按钮", - "Text Area With Analytics": "带有分析的文本区域", - "Data": "数据", - "Display": "展示", - "Submit": "提交", - "Email": "电子邮件", - "Url": "网址", - "Phone Number": "电话号码", - "Tags": "标签", - "Address": "地址", - "Date / Time": "约会时间", - "Day": "日", - "Time": "时间", - "Currency": "货币", - "Survey": "民意调查", - 'Signature': "签名", - "HTML": "HTML", - "Content": "内容", - "Columns": "列", - "Field Set": "字段集", - "Panel": "控制板", - "Table": "桌子", - "Tabs": "标签", - "Well": "好", - "Hidden": "隐", - "Container": "容器", - "Data Map": "数据地图", - "Data Grid": "数据网格", - "Edit Grid": "编辑网格", - "Tree": "树", - "reCAPTCHA": "验证码", - "Resource": "资源", - "File": "文件", - "Nested": "嵌套", - "Custom": "风俗", - "Basic": "基本的", - "Advanced": "先进的", - "Layout": "布局", - "Premium": "优质的", - "Drag and Drop a form component": "拖放表单组件", - "Preview": "预览", - "The minimum length requirement this field must meet.": - "此字段必须满足的最小长度要求", - "The label for this field that will appear next to it.": - "此字段旁边将显示的标签。", - "Label Position": "标签位置", - "Position for the label for this field.": "此字段的标签位置。", - "Placeholder": "占位符", - "The placeholder text that will appear when this field is empty.": - "此字段为空时将显示的占位符文本。", - "The description is text that will appear below the input field.": - "描述是将出现在输入字段下方的文本。", - "Tooltip": "工具提示", - "Adds a tooltip to the side of this field.": "在此字段的一侧添加工具提示。", - "To add a tooltip to this field, enter text here.": - "要向该字段添加工具提示,请在此处输入文本。", - "Description for this field.": "此字段的说明。", - "Prefix": "字首", - "Suffix": "后缀", - "Widget": "小工具", - "The widget is the display UI used to input the value of the field.": - "小部件是用于输入字段值的显示 UI。", - "Right (Left-aligned)": "右(左对齐)", - "Left (Left-aligned)": "左(左对齐)", - "Left (Right-aligned)": "左(右对齐)", - "Right (Right-aligned)": "右(右对齐)", - "Bottom": " 底部", - "Component": "零件", - "Top": "最佳", - "Label Width": "标签宽度", - "The width of label on line in percentages.": - "在线标签的宽度(以百分比表示)。", - "Label Margin": "标签页边距", - "The width of label margin on line in percentages.": - "线上标签边距的宽度,以百分比表示。", - "Rows": "行", - "Input Field": "输入字段", - "Calendar Picker": "日历选择器", - "Select a widget": "选择一个小部件", - "Input Mask": "输入掩码", - "Widget Settings": "小工具设置", - "Allow Multiple Masks": "允许多个掩码", - "Input Masks": "输入掩码", - "Mask": "面具", - "Add Another": "加上另一个", - "Custom CSS Class": "自定义 CSS 类", - "Custom CSS class to add to this component.": - "要添加到此组件的自定义 CSS 类。", - "Tab Index": "标签索引", - "Sets the tabindex attribute of this component to override the tab order of the form. See the MDN documentation on tabindex for more information.": - "设置此组件的 tabindex 属性以覆盖表单的 Tab 键顺序。有关更多信息,请参阅有关 tabindex 的 MDN 文档。", - "Autocomplete": "自动完成", - "Indicates whether input elements can by default have their values automatically completed by the browser. See the MDN documentation on autocomplete for more information.": - "指示默认情况下输入元素是否可以由浏览器自动完成其值。有关更多信息,请参阅有关自动完成的 MDN 文档。", - "A hidden field is still a part of the form, but is hidden from view.": - "隐藏字段仍然是表单的一部分,但在视图中是隐藏的。", - "Hide Label": "隐藏标签", - "Show Word Counter": "显示字计数器", - "Show a live count of the number of words.": "显示字数的实时计数。", - "Hide the label (title, if no label) of this component. This allows you to show the label in the form builder, but not when it is rendered.": - "隐藏该组件的标签(标题,如果没有标签)。这允许您在表单构建器中显示标签,但在呈现时不显示", - "Show Character Counter": "显示字符计数器", - "Show a live count of the number of characters.": "显示字符数的实时计数。", - "Hide Input": "隐藏输入", - "Hide the input in the browser. This does not encrypt on the server. Do not use for passwords.": - "在浏览器中隐藏输入。这不会在服务器上加密。不要用于密码。", - "Initial Focus": "初始焦点", - "Make this field the initially focused element on this form.": - "使该字段成为此表单上最初关注的元素。", - "Allow Spellcheck": "允许拼写检查", - "Disabled": "残障人士", - "Disable the form input.": "禁用表单输入。", - "Table View": "表格视图", - "Shows this value within the table view of the submissions.": - "在提交的表格视图中显示此值。", - "Modal Edit": "模态编辑", - "Opens up a modal to edit the value of this component.": - "打开一个模式来编辑这个组件的值。", - "Multiple Values": "多个值", - "Allows multiple values to be entered for this field.": - "允许为此字段输入多个值。", - "Default Value": "默认值", - "The will be the value for this field, before user interaction. Having a default value will override the placeholder text.": - "将是用户交互之前该字段的值。具有默认值将覆盖占位符文本。", - "Persistent": "执着的", - "A persistent field will be stored in database when the form is submitted.": - "提交表单时,持久性字段将存储在数据库中。", - "None": "没有任何", - "Server": "服务器", - "Client": "客户", - "Input Format": "输入格式", - "Force the output of this field to be sanitized in a specific format.": - "强制以特定格式清理此字段的输出。", - "Plain": "清楚的", - "Type to search": "输入搜索", - "Raw (Insecure)": "原始(不安全)", - "Protected": "受保护", - "A protected field will not be returned when queried via API.": - "通过 API 查询时不会返回受保护的字段。", - "Database Index": "数据库索引", - "Set this field as an index within the database. Increases performance for submission queries.": - "将此字段设置为数据库中的索引。提高提交查询的性能。", - "Text Case": "文本大小写", - "When data is entered, you can change the case of the value.": - "输入数据时,可以更改值的大小写。", - "Mixed (Allow upper and lower case)": "混合(允许大小写)", - "Uppercase": "大写", - "Lowercase": "小写", - "Encrypted (Enterprise Only)": "加密(仅限企业)", - "Encrypt this field on the server. This is two way encryption which is not suitable for passwords.": - "在服务器上加密此字段。这是不适合密码的双向加密。", - "Redraw On": "重绘", - "Redraw this component if another component changes. This is useful if interpolating parts of the component like the label.": - "如果另一个组件发生变化,则重绘该组件。如果插入组件的部分(如标签),这很有用。", - "Any Change": "任何改变", - "Clear Value When Hidden": "隐藏时清除值", - "When a field is hidden, clear the value.": "隐藏字段时,清除该值。", - "The following variables are available in all scripts.": - "以下变量在所有脚本中都可用。", - "Custom Default Value": "自定义默认值", - "The complete form JSON object": "完整的表单 JSON 对象", - "submission": "提交", - "The complete submission object.": "完整的提交对象。", - "data": "数据", - "The complete submission data object.": "完整的提交数据对象。", - "row": "排", - 'Contextual "row" data, used within DataGrid, EditGrid, and Container components': - "上下文“行”数据,在 DataGrid、EditGrid 和 Container 组件中使用", - "component": "零件", - "The current component JSON": "当前组件 JSON", - "instance": "实例", - "The current component instance.": "当前组件实例。", - "The current value of the component.": "组件的当前值。", - "moment": "片刻", - "The moment.js library for date manipulation.": - "用于日期操作的 moment.js 库。", - "utils": "实用程序", - "util": "实用程序", - 'An alias for "utils".': "“utils”的别名。", - "JavaScript": "JavaScript", - "Enter custom javascript code.": "输入自定义 JavaScript 代码。", - "Example:": "例子:", - "JSONLogic": "JSON逻辑", - "Execute custom logic using ": "使用执行自定义逻辑", - 'support is provided using an "_" before each operation, such as {"_sum": {var: "data.a"}}': - '在每个操作之前使用“_”提供支持,例如 {"_sum": {var: "data.a"}}', - "Full": "满的", - "Calculated Value": "计算值", - "token": "令牌", - "The decoded JWT token for the authenticated user.": - "经过身份验证的用户的解码 JWT 令牌。", - "Calculate Value on server": "在服务器上计算值", - "Checking this will run the calculation on the server. This is useful if you wish to override the values submitted with the calculations performed on the server.": - "选中此项将在服务器上运行计算。如果您希望使用在服务器上执行的计算来覆盖提交的值,这将很有用。", - "Allow Manual Override of Calculated Value": "允许手动覆盖计算值", - "When checked, this will allow the user to manually override the calculated value.": - "选中后,这将允许用户手动覆盖计算值。", - "Remove": "消除", - "Validate On": "验证开启", - "Determines when this component should trigger front-end validation.": - "确定此组件何时应触发前端验证。", - "Change": "改变", - "Blur": "模糊", - "Required": "必需的", - "A required field must be filled in before the form can be submitted.": - "必须先填写必填字段,然后才能提交表格。", - "Unique": "独特的", - "Makes sure the data submitted for this field is unique, and has not been submitted before.": - "确保为此字段提交的数据是唯一的,并且之前没有提交过。", - "Minimum Length": "最小长度", - "The maximum length requirement this field must meet.": - "此字段必须满足的最大长度要求。", - "Maximum Length": "最大长度", - "Minimum Word Length": "最小字长", - "The minimum amount of words that can be added to this field.": - "可以添加到此字段的最小字数。", - "Maximum Word Length": "最大字长", - "The maximum amount of words that can be added to this field.": - "可以添加到该字段的最大字数。", - "Regular Expression Pattern": "正则表达式模式", - "The regular expression pattern test that the field value must pass before the form can be submitted.": - "表单提交前字段值必须通过的正则表达式模式测试。", - "Error Label": "错误标签", - "The label for this field when an error occurs.": - "发生错误时该字段的标签。", - "Custom Error Message": "自定义错误消息", - "Error message displayed if any error occurred.": - "如果发生任何错误,则会显示错误消息。", - "Custom Validation": "自定义验证", - "input": "输入", - "The value that was input into this component": "输入此组件的值", - "Enter custom validation code.": "输入自定义验证码。", - "You must assign the valid variable as either true or an error message if validation fails.": - "如果验证失败,您必须将有效变量分配为 true 或错误消息。", - "Secret Validation": "秘密验证", - "Check this if you wish to perform the validation ONLY on the server side. This keeps your validation logic private and secret.": - "如果您希望仅在服务器端执行验证,请选中此项。这使您的验证逻辑保持私密和保密。", - "JSONLogic Validation": "JSON逻辑验证", - "Execute custom logic using": "使用执行自定义逻辑", - "Help": "帮助", - "Validation": "验证", - "API": "API", - "Property Name": "属性名称", - "The name of this field in the API endpoint.": "API 端点中此字段的名称。", - "Field Tags": "字段标签", - "Tag the field for use in custom logic.": "标记字段以在自定义逻辑中使用。", - "Custom Properties": "自定义属性", - "This allows you to configure any custom properties for this component.": - "这允许您为此组件配置任何自定义属性。", - "Key": "钥匙", - "Conditional": "有条件的", - "Simple": "简单的", - "This component should Display:": "该组件应显示:", - "True": "真的", - "False": "错误的", - "When the form component:": "当表单组件:", - "Submit (submit)": "提交(提交)", - "Has the value:": "具有价值:", - "Advanced Conditions": "高级条件", - "Title": "标题", - "Advanced Logic": "高级逻辑", - "Advanced Logic Configured": "高级逻辑配置", - "Logic": "逻辑", - "Add Logic": "添加逻辑", - "Trigger": "扳机", - "JSON Logic": "JSON 逻辑", - '"row", "data", and "component" variables are available. Return "result".': - "“行”、“数据”和“组件”变量可用。返回“结果”。", - "Actions": "行动", - "Action Name": "动作名称", - "Schema Defenition": "模式定义", - '"row", "data", "component", and "result" variables are available. Return the schema.': - "“行”、“数据”、“组件”和“结果”变量可用。返回架构。", - "Merge Component Schema": "合并组件架构", - "Custom Action": "自定义操作", - "You must assign the show variable a boolean result.": - "您必须为 show 变量分配一个布尔结果。", - "Note: Advanced Conditional logic will override the results of the Simple Conditional logic.": - "注意:高级条件逻辑将覆盖简单条件逻辑的结果。", - "Example": "例子", - '"row", "data", "component" and "_" variables are available. Return the result to be passed to the action if truthy.': - "“行”、“数据”、“组件”和“_”变量可用。如果为真,则返回要传递给操作的结果。", - "Add Action": "添加操作", - "Save Logic": "保存逻辑", - "Logic Name": "逻辑名称", - "Event": "事件", - "The event that will trigger this logic. You can trigger events externally or via a button.": - "将触发此逻辑的事件。您可以在外部或通过按钮触发事件。", - "Save Action": "保存操作", - "HTML Attributes": "HTML 属性", - "Attribute Name": "属性名称", - "Attribute Value": "属性值", - "Add Attribute": "添加属性", - "The settings inside apply only to the PDF forms.": - "里面的设置仅适用于 PDF 表单。", - "PDF Overlay": "PDF 叠加", - "Style": "风格", - "Custom styles that should be applied to this component when rendered in PDF.": - "在 PDF 中呈现时应应用于此组件的自定义样式。", - "Page": "页", - "The PDF page to place this component.": "放置此组件的 PDF 页面。", - "Left": "剩下", - "The left margin within a page to place this component.": - "页面内用于放置此组件的左边距。", - "The top margin within a page to place this component.": - "页面内用于放置此组件的上边距。", - "Width": "宽度", - "The width of the component (in pixels).": "组件的宽度(以像素为单位)。", - "Height": "高度", - "The height of the component (in pixels).": "组件的高度(以像素为单位)。", - "Use Thousands Separator": "使用千位分隔符", - "Separate thousands by local delimiter.": "用本地分隔符分隔数千。", - "Decimal Places": "小数位", - "The maximum number of decimal places.": "最大小数位数。", - "Require Decimal": "需要十进制", - "Always show decimals, even if trailing zeros.": - "始终显示小数,即使尾随零。", - "Minimum Value": "最小值", - "The minimum value this field must have before the form can be submitted.": - "在提交表单之前该字段必须具有的最小值。", - "Maximum Value": "最大值", - "The maximum value this field can have before the form can be submitted.": - "在提交表单之前该字段可以具有的最大值。", - "Editor": "编辑", - "Select the type of WYSIWYG editor to use for this text area.": - "选择用于此文本区域的 WYSIWYG 编辑器类型。", - "ACE": "高手", - "Save As": "另存为", - "This setting determines how the value should be entered and stored in the database.": - "此设置确定应如何输入值并将其存储在数据库中。", - "String": "细绳", - "JSON": "JSON", - "Input Type": "输入类型", - "This is the input type used for this checkbox.": - "这是用于此复选框的输入类型。", - "Shortcut": "捷径", - "Shortcut for this component.": "此组件的快捷方式。", - "Password fields are automatically encrypted using 1-way salted bcrypt hashes. These hashes are also protected and not returned in the API.": - "密码字段使用单向加盐 bcrypt 哈希自动加密。这些哈希值也受到保护,不会在 API 中返回。", - "Options Label Position": "选项标签位置", - "Position for the label for options for this field.": - "此字段选项标签的位置。", - "Right": "对", - "Inline Layout": "内联布局", - "Displays the checkboxes/radios horizontally.": "水平显示复选框/单选框。", - "Allow only available values": "仅允许可用值", - "Minimum checked number": "最小检查数", - "Minimum checkboxes required before form can be submitted.": - "提交表单之前需要最少的复选框。", - "Maximum checked number": "最大检查数", - "Maximum checkboxes possible before form can be submitted.": - "在提交表单之前可能的最大复选框。", - "Minimum checked error message": "最小检查错误消息", - "Error message displayed if minimum number of items not checked.": - "如果未检查最小项目数,则会显示错误消息。", - "Maximum checked error message": "最大检查错误消息", - "Error message displayed if maximum number of items checked.": - "如果检查了最大项目数,则会显示错误消息。", - "ChoicesJS": "选择JS", - "HTML 5": "HTML 5", - "Unique Options": "独特的选择", - "Display only unique dropdown options.": "仅显示唯一的下拉选项。", - "Data Source Type": "数据源类型", - "The source to use for the select data. Values lets you provide your own values and labels. JSON lets you provide raw JSON data. URL lets you provide a URL to retrieve the JSON data from.": - "用于选择数据的源。值允许您提供自己的值和标签。 JSON 允许您提供原始 JSON 数据。 URL 允许您提供一个 URL 以从中检索 JSON 数据。", - "Values": "价值观", - "on": "在", - "Raw JSON": "原始 JSON", - "IndexedDB": "索引数据库", - "Database name": "数据库名称", - "The name of the indexeddb database.": "indexeddb 数据库的名称。", - "Storage Type": "存储类型", - "The type to store the data. If you select something other than autotype, it will force it to that type.": - "存储数据的类型。如果您选择自动输入以外的其他内容,它将强制它使用该类型。", - "Autotype": "复写", - "Boolean": "布尔值", - "Object": "目的", - "ID Path": "标识路径", - "Path to the select option id.": "选择选项 ID 的路径。", - "Table name": "表名", - "The name of table in the indexeddb database.": - "indexeddb 数据库中的表名。", - "Row Filter": "行过滤器", - "Filter table items that match the object.": "筛选与对象匹配的表项。", - "Item Template": "物品模板", - "The HTML template for the result data items.": "结果数据项的 HTML 模板。", - "Enable Static Search ": "启用静态搜索", - "When checked, the select dropdown will allow for searching within the static list of items provided.": - "选中后,选择下拉菜单将允许在提供的静态项目列表中进行搜索。", - "Search Threshold": "搜索阈值", - "At what point does the match algorithm give up. A threshold of 0.0 requires a perfect match, a threshold of 1.0 would match anything.": - "匹配算法在什么时候放弃。 0.0 的阈值需要完美匹配,1.0 的阈值可以匹配任何内容。", - "Read Only Value": "只读值", - "Check this if you would like to show just the value when in Read Only mode.": - "如果您只想在只读模式下显示值,请选中此项。", - "Choices.js options": "Choices.js 选项", - "A raw JSON object to use as options for the Select component (Choices JS).": - "用作 Select 组件 (Choices JS) 选项的原始 JSON 对象。", - "Use exact search": "使用精确搜索", - "Disables search algorithm threshold.": "禁用搜索算法阈值。", - "Theme": "主题", - "The color theme of this button.": "此按钮的颜色主题。", - "Size": "尺寸", - "The size of this button": "此按钮的大小", - "Block Button": "阻止按钮", - "This control should span the full width of the bounding container.": - "此控件应跨越边界容器的整个宽度。", - "Left Icon": "左图标", - "This is the full icon class string to show the icon.": - "这是显示图标的完整图标类字符串。例子:", - "Right Icon": "右图标", - "This is the full icon class string to show the icon. Example:": - "这是显示图标的完整图标类字符串。例子:", - "Primary": "基本的", - "Secondary": "中学", - "Info": "信息", - "Success": "成功", - "Danger": "危险", - "Warning": "警告", - "The size of this button.": "此按钮的大小。", - "Medium": "中等的", - "Extra Small": "超小号", - "Small": "小的", - "Large": "大", - "Disable on Form Invalid": "禁用表单无效", - "This will disable this field if the form is invalid.": - "如果表单无效,这将禁用此字段。", - "Key topics for Sentiment Analysis": "情绪分析的关键主题", - "Enter topics to use in sentiment Analysis": "输入要在情绪分析中使用的主题", - "Kickbox": "跆拳道", - "Enable": "使能够", - "Enable Kickbox validation for this email field.": - "为此电子邮件字段启用 Kickbox 验证。", - "Validate this email using the Kickbox email validation service.": - "使用 Kickbox 电子邮件验证服务验证此电子邮件。", - "Input Mask Placeholder Char": "输入掩码占位符字符", - "Enable Manual Mode": "启用手动模式", - "Should Manual Mode be enabled for that component or not.": - "是否应该为该组件启用手动模式。", - "Switch To Manual Mode Label": "切换到手动模式标签", - "The label for the checkbox used to switch to manual mode.": - "用于切换到手动模式的复选框的标签。", - "Disable Clear Icon": "禁用清除图标", - "Clear Icon allows easily clear components value.": - "清除图标可以轻松清除组件的值。", - "Provider": "提供者", - "Which address search service should be used.": - "应该使用哪个地址搜索服务。", - "Manual Mode View String": "手动模式查看字符串", - "Specify template which should be when quering view string for the component value entered in manual mode. This string is used in table view, CSV export and email rendering. When left blank combined value of all components joined with comma will be used.": - "指定在查询手动模式下输入的组件值的视图字符串时应使用的模板。此字符串用于表格视图、CSV 导出和电子邮件呈现。当留空时,将使用用逗号连接的所有组件的组合值。", - "Azure Maps": "Azure 地图", - "Google Maps": "谷歌地图", - "API Key": "API 密钥", - "Use your Google API key here.": "在此处使用您的 Google API 密钥。", - "Provider options": "提供者选项", - "Delimiter": "分隔符", - "What is used to separate the tags.": "什么是用来分隔标签的。", - "Max Tags": "最大标签", - "The maximum amount of tags that can be added. 0 for infinity.": - "可以添加的最大标签数量。 0 表示无穷大。", - "Store As": "存储为", - "String (CSV)": "字符串 (CSV)", - "Array of Tags": "标签数组", - "Display in Timezone": "时区显示", - "This will display the captured date time in the select timezone.": - "这将在选择的时区显示捕获的日期时间。", - "of Viewer": "观看者", - "of Submission": "提交的", - "of Location": "地点", - "UTC": "世界标准时间", - "Use locale settings to display date and time.": - "使用区域设置显示日期和时间。", - "Use Locale Settings": "使用区域设置", - "Allow Manual Input": "允许手动输入", - "Check this if you would like to allow the user to manually enter in the date.": - "如果您希望允许用户手动输入日期,请​​选中此项。", - "Format": "格式", - "The date format for displaying the datetime value.": - "用于显示日期时间值的日期格式。", - "Shortcut Buttons": "快捷按钮", - "You can specify few buttons which will be shown above the calendar. Use Label to specify the name of the button and onClick to specify which date/time will be set when user clicks the button. ": - "您可以指定几个将显示在日历上方的按钮。使用 Label 指定按钮的名称,使用 onClick 指定用户单击按钮时将设置的日期/时间。", - "onClick": "点击", - "Enable Date Input": "启用日期输入", - "Enables date input for this field.": "启用此字段的日期输入。", - "Use Input to add moment.js for minDate": - "使用 Input 为 minDate 添加 moment.js", - "Enables to use input for moment functions instead of calendar.": - "允许将输入用于时刻功能而不是日历。", - "Use calendar to set minDate": "使用日历设置 minDate", - "Enables to use calendar to set date.": "允许使用日历来设置日期。", - "Use Input to add moment.js for maxDate": - "使用 Input 为 maxDate 添加 moment.js", - "Use calendar to set maxDate": "使用日历设置 maxDate", - "Disable specific dates or dates by range": "按范围禁用特定日期或日期", - "Add dates that you want to blacklist. For example:": - "添加要列入黑名单的日期。例如:", - "Custom Disabled Dates": "自定义禁用日期", - "date": "日期", - "The date object.": "日期对象。", - "Data Format": "数据格式", - "The moment.js format for saving the value of this field.": - "用于保存该字段值的 moment.js 格式。", - "HTML5 Time Input": "HTML5 时间输入", - "Text Input with Mask": "带掩码的文本输入", - "Disable weekends": "禁用周末", - "Disable weekdays": "禁用工作日", - "Check to disable weekends": "检查以禁用周末", - "Check to disable weekdays": "检查以禁用工作日", - "Enable Time Input": "启用时间输入", - "Enables time input for this field": "启用此字段的时间输入", - "Hour Step Size": "小时步长", - "The number of hours to increment/decrement in the time picker.": - "在时间选择器中增加/减少的小时数。", - "Minute Step Size": "分钟步长", - "The number of minutes to increment/decrement in the time picker.": - "在时间选择器中增加/减少的分钟数。", - "Display time in 12 hour time with AM/PM.": - "以上午/下午的 12 小时时间显示时间。", - "12 Hour Time (AM/PM)": "12 小时制(上午/下午)", - "Default Date": "默认日期", - "You can use Moment.js functions to set the default value to a specific date. For example:": - "您可以使用 Moment.js 函数将默认值设置为特定日期。例如:", - "Flatpickr options": "Flatpickr 选项", - "HTML Tag": "HTML 标签", - "The tag of this HTML element.": "此 HTML 元素的标记。", - "CSS Class": "CSS 类", - "Attributes": "属性", - "The attributes for this HTML element. Only safe attributes are allowed, such as src, href, and title.": - "此 HTML 元素的属性。只允许使用安全属性,例如 src、href 和 title。", - "Attribute": "属性", - "Refresh On Change": "更改时刷新", - "HTML Element": "HTML 元素", - "Column Properties": "列属性", - "The width, offset, push, and pull settings for each column.": - "每列的宽度、偏移、推和拉设置。", - "Offset": "抵消", - "Push": "推", - "Pull": "拉", - "Auto adjust columns": "自动调整列", - "Will automatically adjust columns based on if nested components are hidden.": - "将根据嵌套组件是否隐藏自动调整列。", - "Hide Column when Children Hidden": "隐藏子项时隐藏列", - "Check this if you would like to hide any column when the children within that column are also hidden": - "如果您想在该列中的子项也被隐藏时隐藏任何列,请选中此项", - "Legend": "传奇", - "The legend for this Fieldset.": "此字段集的图例。", - "Default": "默认", - "Collapsible": "可折叠", - "If checked, this will turn this Panel into a collapsible panel.": - "如果选中,这将把这个面板变成一个可折叠的面板。", - "Number of Rows": "行数", - "Enter the number or rows that should be displayed by this table.": - "输入此表应显示的数字或行数。", - "Number of Columns": "列数", - "Enter the number or columns that should be displayed by this table.": - "输入此表应显示的数字或列。", - "Clone Row Components": "克隆行组件", - "Check this if you would like to": "如果您愿意,请选中此项", - "Cell Alignment": "单元格对齐", - "Horizontal alignment for cells of the table.": - "表格单元格的水平对齐方式。", - "Center": "中心", - "Striped": "有条纹的", - "This will stripe the table if checked.": - "如果选中,这将对表格进行条带化。", - "Bordered": "有边框的", - "This will border the table if checked.": "如果选中,这将使表格边框。", - "Hover": "徘徊", - "Highlight a row on hover.": "悬停时突出显示一行。", - "Condensed": "浓缩的", - "Condense the size of the table.": "压缩表的大小。", - "Label for Key column": "键列的标签", - "Provide a label text for Key column (otherwise Key will be used)": - "为 Key 列提供标签文本(否则将使用“Key”)", - "Disable Adding / Removing Rows": "禁用添加/删除行", - "Check if you want to hide Add Another button and Remove Row button": - "检查是否要隐藏添加另一个按钮和删除行按钮", - "Show key column before value": "在值之前显示键列", - "Check if you would like to show the Key before the Value column.": - "检查您是否想在 Value 列之前显示 Key。", - "Type of event": "活动类型", - "Specify type of event that this reCAPTCHA would react to": - "指定此 reCAPTCHA 将响应的事件类型", - "Form Load": "表单加载", - "Button Click": "按钮点击", - "The form to load within this form component.": - "要在此表单组件中加载的表单。", - "Form Revision": "表格修订", - "You can lock the nested form to a specific revision by entering the revision number here.": - "您可以通过在此处输入修订号将嵌套表单锁定到特定修订。", - "Use Original Revision while Submissions Viewing": "查看提交时使用原始修订", - "Using this option will make form load the original revision (the one which was used to make a submission) when viewing a submission.": - "使用此选项将使表单在查看提交时加载原始修订(用于提交的修订)。", - "Save as reference": "另存为参考", - "Using this option will save this field as a reference and link its value to the value of the origin record.": - "使用此选项会将此字段保存为参考,并将其值链接到原始记录的值。", - "Select Fields": "选择字段", - "The properties on the resource to return as part of the options. If left blank, all properties will be returned.": - "作为选项的一部分返回的资源的属性。如果留空,将返回所有属性。", - "Search Fields": "搜索字段", - "Filter Query": "过滤查询", - "Use this to provide additional filtering using query parameters.": - "使用它来提供使用查询参数的附加过滤。", - "The filter query for results.": "结果的过滤器查询。", - "Sort Query": "排序查询", - "Use this to provide additional sorting using query parameters": - "使用它来使用查询参数提供额外的排序", - "The sort query for results": "结果的排序查询", - "Add Resource": "添加资源", - "Allows to create a new resource while entering a submission.": - "允许在输入提交时创建新资源。", - "Add Resource Label": "添加资源标签", - "Set the text of the Add Resource button.": "设置添加资源按钮的文本。", - "Auto Expand": "自动展开", - "Save & Preview": "保存和预览", - "Enter the form machine name": "输入表格机器名称", - "Export PDF": "导出 PDF", - "Something went wrong. Please try again!":"出问题了。请再试一次!", - "No Dashboards Found":"未找到仪表板", - "Processes":"流程", - "Please select an existing workflow.":"请选择现有工作流程。", - "Create New":"创建新的", - "Or create new workflow or import a workflow from a local directory.":"或创建新工作流或从本地目录导入工作流。", - "The operation couldn't be completed. Please try after sometime":"操作无法完成。请稍后再试", - "Select...":"选择...", - "No Drafts Found": "未找到草稿", - "Draft Id":"草稿 ID", - "Draft Name":"草稿名称", - "Link To Draft Submission":"链接到草稿提交", - "Drafts":"草稿", - "You can't submit this form until it is published":"在此表单发布之前,您无法提交此表单", - "Form not published":"表格未发布", - "Access Denied" : "拒绝访问", - "By default, the tenant key would be prefixed to form":"默认情况下,租户键的前缀为 form", - "go back":"回去", - - "Submission saved to draft.":"提交已保存到草稿。", - "Saved to draft":"已保存到草稿", - "Saving...":"保存...", - "Error in creating form process mapper":"创建表单流程映射器时出错", - "Select the date":"选择日期", - "Diagram Deployed":"已部署的图表", - "Deployment Failed":"部署失败", - "Process name(s) must not be empty":"进程名称不能为空", - "URL copied":"已复制网址", - "Click Here to Copy":"点击这里复制", - "Revert": "恢复", - "Overview": "概述", - "Design Permission": "设计许可", - "All Designers": "所有设计师", - "Private(only you)": "私人(只有你)", - "Specific Designer Group": "特定设计师组", - "Submission Permission": "提交许可", - "All Users": "全部用户", - "Specific User Group": "特定用户群", - "Applicable for Designer Roled Users only.": "仅适用于设计师角色用户。", - "Applicable for Client and Reviewer Roled Users only.": "仅适用于客户和审阅者角色用户。", - "Saved to Submissions/Drafts": "保存到提交/草稿", - "Unfinished Submissions will be saved to Submissions/Drafts.": "未完成的提交将保存到提交/草稿。", - "Changing the form workflow will not affect the existing submissions. It will only update in the newly created submissions. Press Save Changes to continue or cancel the changes.": "更改表单工作流程不会影响现有的提交。它只会更新在新创建的提交中。按 Save Changes 继续或取消更改。", - "Submissions are made against": "提交是针对的", - "Submission is made against": "提交是针对的", - "Changing the form title will not affect the existing submissions. It will only update in the newly created submissions. Press Save Changes to continue or cancel the changes.": "更改表单标题不会影响现有的提交。它只会在新创建的提交中更新。按 Save Changes 继续或取消更改。", - "Submissions": "提交", - "Submission Id": "提交编号", - "Submission History": "提交历史", - "No Submission History found": "未找到提交历史", - "No submissions Found": "未找到提交", - - }, - - bg: { - "Bad Request":"Неправилна заявка", - "Select form version":"Изберете версия на формуляра", - "Please remove the special characters...!":"Моля, премахнете специалните символи...!", - "No histories found":"Няма намерени истории", - "Continue":"продължи", - "This will create a new version of the form without changing the path name but with new form id.":"Това ще създаде нова версия на формуляра без промяна на името на пътя, но с нов идентификатор на формуляра.", - "Save as a new version":"Запазете като нова версия", - "Save New Version":"Запазване на новата версия", - "Do you want to save a new version of this form?":"Искате ли да запазите нова версия на този формуляр?", - "Do you want to create a duplicate form and associated workflow from existing form ?":"Искате ли да създадете дублиран формуляр и свързан работен процес от съществуващ формуляр?", - "New version created":"Създадена е нова версия", - "Create a duplicate form":"Създайте дублиран формуляр", - "Show more":"Покажи повече", - "Modified By":"Променен от", - "Created On" :"Създадено на", - "Formsflow automatically saves your previous form data. Now you can switch to the previous stage and edit.":"Formsflow автоматично запазва предишните ви данни за формуляри. Сега можете да преминете към предишния етап и да редактирате.", - "Duplicate Form":"Дублиран формуляр", - "Form History":"История на формуляра", - "No file chosen":"Няма избран файл", - "Choose File":"Изберете файл", - "Choose any":"Изберете всяка", - "select form type":"изберете тип формуляр", - "Draft Deleted Successfully":"Черновата е изтрита успешно", - - "with ID":"с лична карта", - "Are you sure you wish to delete the draft":"Сигурни ли сте, че искате да изтриете черновата", - "Discard Draft":"Отхвърлете черновата", - "Search by form name": "Tŭrsene po ime na formulyara", - "Click to search": "Щракнете за търсене", - "No submissions found": "Няма намерени заявки", - "No submission avaliable in the selected date. Please select another date range": - "Няма налично подаване на избраната дата. Моля, изберете друг период от време", - "All groups have access to the dashboard": - "Всички групи имат достъп до таблото", - "Form unpublishing Failed": - "Прекратяването на публикуването на формуляра не бе успешно", - "Form process failed": "Обработката на формуляра не бе успешно", - "Form deletion unsuccessful":"Изтриването на формуляра е неуспешно", - "Form deleted successfully": "Формулярът е изтрит успешно", - "Form-Workflow association saved.": - "Асоциацията на формуляр-работен процес е запазена.", - "Loading...": "Зареждане...", - "Save Changes": "Запазите промените", - ". Are you sure want to delete ?": ". Наистина ли искате да изтриете?", - "Are you sure you wish to delete the form ": - "Сигурни ли сте, че искате да изтриете формуляра", - "Are you sure you wish to delete the form?": - "Сигурни ли сте, че искате да изтриете формуляра?", - "Click here to go back": "Щракнете тук, за да се върнете", - "Dashboards": "Табла за управление", - "Tasks": "Задачи", - "Error while saving Form": "Грешка при запазване на формуляра", - "Confirmation": "Потвърждение", - "Submitted By": "Изпратено от", - "Copy anonymous form URL": "Копирайте URL на анонимен формуляр", - "Form field": "Поле за формуляр", - "Enter Label": "Въведете етикет", - "Select form field": "Изберете поле на формуляра", - "Add form fields to display in task list": - "Добавете полета на формуляра за показване в списъка със задачи", - "Version": "Версия", - "Submission Status": "Състояние на подаване", - "No submission status": "Няма състояние на подаване", - "No Public url found": "Не е намерен публичен URL адрес", - "Show in list": "Показване в списъка", - "Select Task Variable": "Изберете променлива на задачата", - "Enter your Label": "Въведете своя етикет", - "Please select from one of the following workflows.": - "Моля, изберете един от следните работни потоци.", - "Select Key": "Изберете Ключ", - "Create Your Task Variable": "Създайте своята променлива на задачата", - "No task variable selected": "Няма избрана променлива на задачата", - "Workflow Associate": "Работен сътрудник", - "Task variable": "Променлива на задачата", - "Enter pathname": "Въведете име на път", - "saved successfully": "Запазено успешно", - "Thank you for your response.": "Благодаря ви за отговора.", - "Form not available": "Формулярът не е наличен", - "Ok": "Добре", - "No submissions available for the selected date range": - "Няма налични заявки за избрания период от време", - "Save Form": "Запазване на формуляр", - "Confirm": "Потвърдете", - "Cancel": "Отмяна", - "Wizard": "Магьосник", - "Please fix the errors before submitting again.": - "Моля, поправете грешките, преди да изпратите отново.", - "Error in JSON file structure": "Грешка във файловата структура на JSON", - "Downloaded Successfully": "Изтеглено успешно", - "Submission Saved": "Изпращането е запазено.", - "Submission cannot be done.": "Подаването не може да се извърши.", - "Are you sure you wish to delete the form": - "Сигурни ли сте, че искате да изтриете формуляра", - "Forms": "Форми", - "Edit": "редактиране", - "Do you want to associate form with a workflow ?": - "Искате ли да свържете формата с работен поток?", - "Yes": "да", - "No": "Не", - "Form Name": "Име на формуляра", - "Workflow Name": "Име на работния процес", - "Publish this form for Client Users.": - "Публикувайте този формуляр за Клиентски потребители.", - "Comments": "Коментари", - "Back": "обратно", - "Edit Form": "Редактиране на формуляр", - "Next": "Следващия", - "Are you sure you wish to delete this submission?": - "Наистина ли искате да изтриете това изпращане?", - "Save": "Запазете", - "Back to Form List": "Назад към списъка с формуляри", - "Submit New": "Изпратете ново", - "View Submissions": "Преглед на подадените материали", - "View/Edit Form": "Преглед/Редактиране на формуляр", - "Delete Form": "Изтриване на формуляр", - "Delete": "Изтрий", - "Print As PDF": "Печат като PDF", - - "Task": "Задачи", - "Metrics": "Метрика", - "Dashboard": "Табло", - "Logout": "Излез от профила си", - "No tasks found": "Няма намерени задачи", - "Please change the selected filters to view tasks": - "Моля, променете избраните филтри, за да видите задачите", - "Clear all filters": "Изчистете всички филтри", - "Created": "Създаден", - "Task Variables": "Променливи на задачата", - "Process Variables": "Променливи на процеса", - "Process Definition Name": "Име на дефиниция на процеса", - "Assignee": "Цесионер", - "Candidate Group": "Кандидатска група", - "Candidate User": "Кандидат потребител", - "Name": "име", - "Description": "Описание", - "Priority": "Приоритет", - "Due Date": "Краен срок", - "Follow up Date": "Дата на проследяване", - "Task name": "Име на задачата", - "Remove sorting": "Премахване на сортирането", - "Ascending": "Възходящ", - "Descending": "Низходящо", - "Add sorting": "Добавете сортиране", - "of the criteria are met.": "от критериите са изпълнени.", - "For Variable, ignore case of": - "За променлива, пренебрегвайте регистъра на", - "value": "стойност", - "No task matching filters found.": - "Няма намерени филтри за съвпадение на задачи.", - - "Set follow-up Date": "Задайте дата за проследяване", - "Set Due date": "Задайте крайна дата", - "Add groups": "Добавете групи", - "Claim": "Претенция", - "Search By Last Name": "Търсене по фамилно име", - "Search By First Name": "Търсене по собствено име", - "Search By Email": "Търсене по имейл", - "You can add a group by typing a group ID into the input field and afterwards clicking the button with the plus sign.": - "Можете да добавите група, като въведете идентификатор на групата в полето за въвеждане и след това щракнете върху бутона със знака плюс.", - "Add a group": "Добавете група", - "Process Name": "Име на процеса", - "Set FollowUp Date": "Задайте дата на последващо действие", - "Groups": "групи", - "Click to Change Assignee": "Щракнете, за да промените правоприемника", - "Reset Assignee": "Нулиране на назначения", - "Update User": "Актуализирайте потребителя", - "Close": "Близо", - "Type": "Тип", - "Remove search": "Премахнете търсенето", - "Property": "Имот", - "Operator": "Оператор", - "Total number of results": "Общ брой резултати", - "Filter Tasks": "Филтриране на задачи", - "All": "ВСИЧКО", - "ANY": "ВСЕКИ", - "Task assignee": "Възложител на задачата", - - "View Submission": "Вижте подаване", - "Showing": "Показване", - "to": "да се", - "results": "pезултати", - "Acknowledge": "Признайте", - "View": "Преглед", - "Select a task in the list.": "Изберете задача от списъка.", - "No Filters Found": "Няма намерени филтри", - "Loading": "Зареждане", - "Form": "Формуляр", - "History": "История", - "Diagram": "Диаграма", - "Delete Confirmation": "Изтриване на потвърждение", - "All tasks": "Всички задачи", - "Manage Groups": "Управление на групи", - "Group ID": "ID на групата", - "Due": "В следствие", - "Follow-up": "Проследяване", - - "Created By": "Създадено от", - - "Submitted On": "Изпратено на", - "Modified On": "Променено Включено", - "No History Found": "Няма намерена история", - "Process Diagram": "Диаграма на процеса", - "Details": "Подробности", - "Status": "Състояние", - "Link To Form Submission": "Връзка към подаване на формуляр", - "Last Modified": "Последно модифициран", - "Insights": "Прозрения", - "No dashboard found": "Няма намерено табло", - "of": "на", - "Select Dashboard": "Изберете Табло за управление", - "Total Submissions": "Общо представяне", - "Operations": "Операции", - "Access Groups": "Групи за достъп", - "Action": "Действие", - "Add": "Добавете", - "Admin": "Админ", - "Create Form": "Създайте формуляр", - "Upload Form": "Формуляр за качване", - "Download Form": "Изтеглете формуляр", - "Upload json form only": "Качете само json формуляр", - "Select atleast one form": "Изберете поне един формуляр", - "Select All": "Избери всички", - "Created Date": "Дата на създаване", - "Modified Date": "Дата на промяна", - "File Upload Status": "Състояние на качване на файл", - "Forms Completed": "Формулярите са попълнени", - "Form Completed": "Формулярът е попълнен", - "No forms found": "Няма намерени формуляри", - "Powered by ": "Задвижвани от ", - "No Process Diagram found": "Не е намерена диаграма на процеса", - "Successfully Updated": "Актуализирано успешно", - "Failed": "Се провали", - "Press Enter key or click here to search": - "Натиснете клавиша Enter или щракнете тук, за да търсите", - "Click to clear": "Щракнете, за да изчистите", - "Search...": "Търсене...", - "Click here to back": "Щракнете тук, за да се върнете назад", - "Anonymous Form ": "анонимен формуляр", - "Title": "Заглавие", - "Display as": "Показване като", - "Path": "пътека", - "example": "пример", - "Make this form public ?": "Да се ​​направи ли този формуляр публичен?", - "Design Form": "Формуляр за проектиране", - "Associate this form with a workflow?": - "Да се ​​свърже ли този формуляр с работен поток?", - "Preview and Confirm": "Преглед и потвърждение", - "All steps completed - you're finished": - "Всички стъпки завършени - сте готови", - "Form-Workflow association failed.": - "Неуспешно свързване на формуляр-работен процес.", - "Error in getting Workflow Process.": - "Грешка при получаване на процеса на работния процес.", - "Form saved": "Формулярът е запазен.", - "Error while saving Form.": "Грешка при запазване на формуляра.", - "Enter the form title": "Въведете заглавието на формуляра", - "Enter the form machine name": "Въведете името на машината за формуляра", - "Text Field": "текстово поле", - "Text Area": "текстова област", - "Number": "номер", - "Password": "парола", - "Select Boxes": "поле за избор", - "Select": "избирам", - "Radio": "радио", - "Button": "бутон", - "Text Area With Analytics": "текстова област с анализ", - "Data": "данни", - "Display": "експонат", - "Submit": "Изпращане", - "Email": "електронна поща", - "on": "На", - "Url": "URL", - "Phone Number": "телефонен номер", - "Tags": "Етикет", - "Address": "адрес", - "Date / Time": "Време за среща", - "Day": "ден", - "Time": "време", - "Currency": "валута", - "Survey": "анкети", - "Signature": "знак", - "HTML": "HTML", - "Content": "съдържание", - "Columns": "Списък", - "Field Set": "поле набор", - "Panel": "контролен панел", - "Table": "маса", - "Tabs": "Етикет", - "Well": "добре", - "Hidden": "скрит", - "Container": "контейнер", - "Data Map": "карта с данни", - "Data Grid": "решетка с данни", - "Edit Grid": "Редактиране на мрежата", - "Tree": "Дърво", - "reCAPTCHA": "код за потвърждение", - "File": "документ", - "Nested": "вложени", - "Custom": "персонализиран", - "Basic": "основен", - "Advanced": "напреднал", - "Layout": "оформление", - "Premium": "Високо качество", - "Drag and Drop a form component": - "Плъзнете и пуснете компоненти на формуляра", - "Preview": "предварителен преглед", - "The minimum length requirement this field must meet.": - "Изисквания за минимална дължина, на които трябва да отговаря това поле", - "Label": "Етикет", - "The label for this field that will appear next to it.": - "Етикетът, който ще се появи до това поле.", - "Label Position": "позиция на етикета", - "Position for the label for this field.": - "Позицията на етикета за това поле.", - "Placeholder": "Заместител", - "The placeholder text that will appear when this field is empty.": - "Текст за място, който ще се показва, когато това поле е празно.", - "The description is text that will appear below the input field.": - "Описанието е текстът, който ще се появи под полето за въвеждане.", - "Tooltip": "подсказка", - "Adds a tooltip to the side of this field.": - "Добавете подсказка отстрани на това поле.", - "To add a tooltip to this field, enter text here.": - "За да добавите подсказка към това поле, въведете текст тук.", - "Description for this field.": "Описание на това поле.", - "Prefix": "префикс", - "Suffix": "наставка", - "Widget": "малки инструменти", - "The widget is the display UI used to input the value of the field.": - "Уиджетът е потребителски интерфейс на дисплея за въвеждане на стойности на полета.", - "Right (Left-aligned)": "дясно (подравнено вляво)", - "Left (Left-aligned)": "Ляво (подравнено вляво)", - "Left (Right-aligned)": "Ляво (подравнено вдясно)", - "Right (Right-aligned)": "дясно (подравнено вдясно)", - "Bottom": "дъно", - "Component": "Компоненти", - "Top": "оптимален", - "Label Width": "ширина на етикета", - "The width of label on line in percentages.": - "Ширината на онлайн етикета (в проценти).", - "Label Margin": "Поле на раздела", - "The width of label margin on line in percentages.": - "Ширината на полето на етикета на реда, изразена като процент.", - "Rows": "Ред", - "Input Field": "поле за въвеждане", - "Calendar Picker": "Инструмент за избор на календар", - "Select a widget": "Изберете джаджа", - "Input Mask": "маска за въвеждане", - "Widget Settings": "Настройки на притурката", - "Allow Multiple Masks": "Разрешете няколко маски", - "Input Masks": "маска за въвеждане", - "Mask": "маска", - "Add Another": "плюс още един", - "Custom CSS Class": "персонализиран CSS клас", - "Custom CSS class to add to this component.": - "Персонализиран CSS клас за добавяне към този компонент.", - "Tab Index": "Индекс на маркери", - "Sets the tabindex attribute of this component to override the tab order of the form. See the MDN documentation on tabindex for more information.": - "Задайте свойството tabindex на този компонент да отменя реда на разделите на формуляра. За повече информация вижте документацията на MDN за tabindex.", - "Autocomplete": "автоматично завършване", - "Indicates whether input elements can by default have their values automatically completed by the browser. See the MDN documentation on autocomplete for more information.": - "Показва дали входният елемент може автоматично да довършва стойността си от браузъра по подразбиране. За повече информация вижте документацията на MDN относно автоматичното довършване.", - "A hidden field is still a part of the form, but is hidden from view.": - "Скритите полета все още са част от формуляра, но са скрити от погледа.", - "Hide Label": "скрий раздела", - "Show Word Counter": "Показване на брояча на думи", - "Show a live count of the number of words.": - "Показва броя на думите в реално време.", - "Hide the label (title, if no label) of this component. This allows you to show the label in the form builder, but not when it is rendered.": - "Скрийте етикета (заглавие, ако няма етикет) за този компонент. Това ви позволява да покажете етикета в конструктора на формуляри, но не и когато е изобразен", - "Show Character Counter": "Показване на брояча на знаците", - "Show a live count of the number of characters.": - "Показва броя на знаците в реално време.", - "Hide Input": "скрит вход", - "Hide the input in the browser. This does not encrypt on the server. Do not use for passwords.": - "Скриване на въвеждане в браузъра. Това не е криптирано на сървъра. Не използвайте за пароли.", - "Initial Focus": "първоначален фокус", - "Make this field the initially focused element on this form.": - "Направете това поле първоначално фокусиран елемент в този формуляр.", - "Allow Spellcheck": "Разрешете проверка на правописа", - "Disabled": "хора с увреждания", - "Disable the form input.": "Деактивирайте въвеждането на формуляр.", - "Table View": "изглед на таблицата", - "Shows this value within the table view of the submissions.": - "Покажете тази стойност в изпратения изглед на таблица.", - "Modal Edit": "Модално редактиране", - "Opens up a modal to edit the value of this component.": - "Отваря модална програма за редактиране на стойността на този компонент.", - "Multiple Values": "множество стойности", - "Allows multiple values to be entered for this field.": - "За това поле са разрешени множество стойности.", - "Default Value": "По подразбиране", - "The will be the value for this field, before user interaction. Having a default value will override the placeholder text.": - "ще бъде стойността на това поле преди взаимодействието с потребителя. Наличието на стойност по подразбиране ще замени текста на заместителя.", - "Persistent": "постоянен", - "A persistent field will be stored in database when the form is submitted.": - "Постоянните полета ще се съхраняват в базата данни, когато формулярът бъде изпратен.", - "None": "Не всеки", - "Server": "сървър", - "Client": "клиент", - "Input Format": "входен формат", - "Force the output of this field to be sanitized in a specific format.": - "Принуждава изхода на това поле да бъде дезинфекциран в определен формат.", - "Plain": "ясно", - "Type to search": "въведете търсене", - "Raw (Insecure)": "суров (опасно)", - "Protected": "защитени", - "A protected field will not be returned when queried via API.": - "Защитените полета не се връщат при запитване през API.", - "Database Index": "индекс на базата данни", - "Set this field as an index within the database. Increases performance for submission queries.": - "Задайте това поле като индекс в базата данни. Подобрете ефективността на изпратените заявки.", - "Text Case": "текстов случай", - "When data is entered, you can change the case of the value.": - "Когато въвеждате данни, можете да промените главния регистър на стойността.", - "Mixed (Allow upper and lower case)": "смесено (разрешени случаи)", - "Uppercase": "капитал", - "Lowercase": "малки букви", - "Encrypted (Enterprise Only)": "Шифроване (само за предприятия)", - "Encrypt this field on the server. This is two way encryption which is not suitable for passwords.": - "Това поле е криптирано на сървъра. Това е двупосочно криптиране, което не е подходящо за пароли.", - "Redraw On": "преначертавам", - "Redraw this component if another component changes. This is useful if interpolating parts of the component like the label.": - "Ако друг компонент се промени, преначертайте този компонент. Това е полезно при вмъкване на части от компоненти като етикети.", - "Any Change": "Всякакви промени", - "Clear Value When Hidden": "Изчистване на стойността, когато е скрита", - "When a field is hidden, clear the value.": - "Когато полето е скрито, изчистете стойността.", - "The following variables are available in all scripts.": - "Следните променливи са налични във всички скриптове.", - "Custom Default Value": "персонализирано подразбиране", - "The complete form JSON object": "Пълен JSON обект", - "submission": "Изпращане", - "The complete submission object.": "Пълният обект за извършване.", - "data": "данни", - "The complete submission data object.": - "Пълният обект с данни за подаване.", - "row": "Ред", - 'Contextual "row" data, used within DataGrid, EditGrid, and Container components': - 'Контекстни "редови" данни, използвани в компонентите DataGrid, EditGrid и Container', - "component": "Компоненти", - "The current component JSON": "Текущ компонент JSON", - "instance": "пример", - "The current component instance.": "Текущият екземпляр на компонента.", - "The current value of the component.": "Текущата стойност на компонента.", - "moment": "момент", - "The moment.js library for date manipulation.": - "moment.js библиотека за манипулиране на дати.", - "utils": "полезност", - "util": "полезност", - 'An alias for "utils".': 'Псевдоним за "utils".', - "JavaScript": "JavaScript", - "Enter custom javascript code.": "Въведете персонализиран JavaScript код.", - "Example:": "пример:", - "JSONLogic": "JSON логика", - "Execute custom logic using ": - "Изпълнете персонализирана логика с помощта на", - 'support is provided using an "_" before each operation, such as {"_sum": {var: "data.a"}}': - 'Използвайте "_" преди всяка операция, за да осигурите поддръжка, напр. {"_sum": {var: "data.a"}}', - "Full": "пълен", - "Calculated Value": "Изчислено", - "token": "токен", - "The decoded JWT token for the authenticated user.": - "Декодираният JWT маркер на удостоверения потребител.", - "Calculate Value on server": "Изчислете стойността на сървъра", - "Checking this will run the calculation on the server. This is useful if you wish to override the values submitted with the calculations performed on the server.": - "Поставете отметка в това, за да стартирате изчислението на сървъра. Това е полезно, ако искате да замените подадената стойност с изчисление, извършено на сървъра.", - "Allow Manual Override of Calculated Value": - "Разрешете ръчно отмяна на изчислените стойности", - "When checked, this will allow the user to manually override the calculated value.": - "Когато е отметнато, това ще позволи на потребителя ръчно да отмени изчислената стойност.", - "Remove": "премахване", - "Validate On": "Удостоверяването е включено", - "Determines when this component should trigger front-end validation.": - "Определя кога този компонент трябва да задейства проверка на интерфейса.", - "Change": "Промяна", - "Blur": "Неясно", - "Required": "задължително", - "A required field must be filled in before the form can be submitted.": - "Задължителните полета трябва да бъдат попълнени, преди формулярът да може да бъде изпратен.", - "Unique": "Уникален", - "Makes sure the data submitted for this field is unique, and has not been submitted before.": - "Уверете се, че данните, изпратени за това поле, са уникални и не са били изпращани преди.", - "Minimum Length": "Минимална дължина", - "The maximum length requirement this field must meet.": - "Изискването за максимална дължина, на което трябва да отговаря това поле.", - "Maximum Length": "Максимална дължина", - "Minimum Word Length": "Минимална дължина на думата", - "The minimum amount of words that can be added to this field.": - "Минималният брой думи, които могат да бъдат добавени към това поле.", - "Maximum Word Length": "максимална дължина на думата", - "The maximum amount of words that can be added to this field.": - "Максималният брой думи, които могат да бъдат добавени към това поле.", - "Regular Expression Pattern": "модел на регулярни изрази", - "The regular expression pattern test that the field value must pass before the form can be submitted.": - "Тест за модел на регулярен израз, който стойностите на полетата трябва да преминат, преди да бъде изпратен формулярът.", - "Error Label": "грешен етикет", - "The label for this field when an error occurs.": - "Етикетът за това поле, когато е възникнала грешката.", - "Custom Error Message": "персонализирано съобщение за грешка", - "Error message displayed if any error occurred.": - "Ако възникнат грешки, ще се покаже съобщение за грешка.", - "Custom Validation": "персонализирано валидиране", - "input": "въведете", - "The value that was input into this component": - "Въведете стойност за този компонент", - "Enter custom validation code.": - "Въведете персонализиран код за потвърждение.", - "You must assign the valid variable as either true or an error message if validation fails.": - "Въведете персонализиран код за потвърждение.", - "Secret Validation": "тайна проверка", - "Check this if you wish to perform the validation ONLY on the server side. This keeps your validation logic private and secret.": - "Отметнете това, ако искате да извършите валидиране само от страна на сървъра. Това запазва вашата логика за валидиране поверителна и поверителна.", - "JSONLogic Validation": "JSON логическа проверка", - "Execute custom logic using": - "Изпълнете персонализирана логика с помощта на", - "Validation": "проверете", - "API": "API", - "Property Name": "име на собственост", - "The name of this field in the API endpoint.": - "Името на това поле в крайната точка на API.", - "Field Tags": "етикет на полето", - "Tag the field for use in custom logic.": - "Маркирайте полета за използване в персонализирана логика.", - "Custom Properties": "персонализирани свойства", - "This allows you to configure any custom properties for this component.": - "Това ви позволява да конфигурирате всякакви персонализирани свойства за този компонент.", - "Key": "ключ", - "Value": "стойност", - "Conditional": "Условно", - "Simple": "просто", - "This component should Display:": "Компонентът трябва да показва:", - "True": "истински", - "False": "Неправилно", - "When the form component:": "Когато компонентът на формуляра:", - "Submit (submit)": "подавам (предоставям)", - "Has the value:": "Има стойност:", - "Advanced Conditions": "Разширени условия", - "Advanced Logic": "Разширена логика", - "Advanced Logic Configured": "Разширена логическа конфигурация", - "Logic": "логика", - "Add Logic": "добавете логика", - "Trigger": "спусък", - "JSON Logic": "JSON логика", - '"row", "data", and "component" variables are available. Return "result".': - 'Налични са променливи за ред, данни и компонент. Връща "резултат".', - "Actions": "действие", - "Action Name": "Име на действието", - "Schema Defenition": "дефиниция на схемата", - '"row", "data", "component", and "result" variables are available. Return the schema.': - "Налични са променливи за ред, данни, компонент и резултат. Схема за връщане.", - "Merge Component Schema": "Обединяване на архитектура на компонентите", - "Custom Action": "персонализирано действие", - "You must assign the show variable a boolean result.": - "Трябва да присвоите булев резултат на променливата show.", - "Note: Advanced Conditional logic will override the results of the Simple Conditional logic.": - "Забележка: Разширената условна логика ще отмени резултата от проста условна логика.", - "Example": "пример", - '"row", "data", "component" and "_" variables are available. Return the result to be passed to the action if truthy.': - 'Налични са променливите "ред", "данни", "компонент" и "_". Ако е вярно, връща резултата, който трябва да бъде предаден на операцията.', - "Add Action": "Добавете действие", - "Save Logic": "запазете логиката", - "Logic Name": "логическо име", - "Event": "събитие", - "The event that will trigger this logic. You can trigger events externally or via a button.": - "Събитието, което ще задейства тази логика. Можете да задействате събития външно или чрез бутони.", - "Save Action": "операция за запазване", - "HTML Attributes": "HTML атрибути", - "Attribute Name": "име на собственост", - "Attribute Value": "стойност на атрибута", - "Add Attribute": "добавяне на свойства", - "The settings inside apply only to the PDF forms.": - "Настройките вътре важат само за PDF формуляри.", - "PDF Overlay": "PDF наслагване", - "Style": "стил", - "Custom styles that should be applied to this component when rendered in PDF.": - "Персонализирани стилове, които трябва да се прилагат към този компонент при изобразяване в PDF.", - "Page": "Страница", - "The PDF page to place this component.": - "PDF страницата, където е поставен този компонент.", - "Left": "остават", - "The left margin within a page to place this component.": - "Лявото поле на страницата, където е поставен този компонент.", - "The top margin within a page to place this component.": - "Горното поле на страницата, където е поставен този компонент.", - "Width": "ширина", - "The width of the component (in pixels).": - "Ширината на компонента в пиксели.", - "Height": "Високо", - "The height of the component (in pixels).": - "Височината на компонента в пиксели.", - "Use Thousands Separator": "Използвайте разделител за хиляди", - "Separate thousands by local delimiter.": - "Разделете хиляди с локален разделител.", - "Decimal Places": "Десетични знаци", - "The maximum number of decimal places.": "Максимален брой десетични знаци.", - "Require Decimal": "нужда от десетичен знак", - "Always show decimals, even if trailing zeros.": - "Винаги показвайте десетични знаци, дори и с нули в края.", - "Minimum Value": "минимум", - "The minimum value this field must have before the form can be submitted.": - "Минималната стойност, която това поле трябва да има, преди да изпратите формуляра.", - "Maximum Value": "максимална стойност", - "The maximum value this field can have before the form can be submitted.": - "Максималната стойност, която това поле може да има преди изпращане на формуляра.", - "Editor": "редактиране", - "Select the type of WYSIWYG editor to use for this text area.": - "Изберете типа WYSIWYG редактор, който да използвате за тази текстова област.", - "ACE": "майстор", - "Save As": "Запази като", - "This setting determines how the value should be entered and stored in the database.": - "Тази настройка определя как стойността трябва да бъде въведена и съхранена в базата данни.", - "String": "низ", - "JSON": "JSON", - "Input Type": "тип вход", - "This is the input type used for this checkbox.": - "Това е типът на въвеждане, използван за това квадратче за отметка.", - "Shortcut": "пряк път", - "Shortcut for this component.": "Пряк път за този компонент.", - "Password fields are automatically encrypted using 1-way salted bcrypt hashes. These hashes are also protected and not returned in the API.": - "Полетата за парола се криптират автоматично с помощта на еднопосочен осолен bcrypt хеш. Тези хешове също са защитени от връщане в API.", - "Options Label Position": "позиция на етикета на опцията", - "Position for the label for options for this field.": - "Местоположението на етикета на опцията за това поле.", - "Right": "право", - "Inline Layout": "вградено оформление", - "Displays the checkboxes/radios horizontally.": - "Показвайте хоризонтално квадратчетата за отметка/радио.", - // "Checkbox":"квадратче за отметка", - "Allow only available values": "Разрешени са само налични стойности", - "Minimum checked number": "Минимален брой проверки", - "Minimum checkboxes required before form can be submitted.": - "Преди изпращане на формуляра са необходими минимални квадратчета за отметка.", - "Maximum checked number": "Максимален брой проверки", - "Maximum checkboxes possible before form can be submitted.": - "Най-голямото възможно квадратче за отметка преди изпращане на формуляра.", - "Minimum checked error message": - "Съобщение за грешка при минимална проверка", - "Error message displayed if minimum number of items not checked.": - "Ако минималният брой елементи не е отметнат, се показва съобщение за грешка.", - "Maximum checked error message": - "съобщение за грешка при проверка на максималната стойност", - "Error message displayed if maximum number of items checked.": - "Ако е отметнат максималният брой елементи, ще се покаже съобщение за грешка.", - "ChoicesJS": "изберете JS", - "HTML 5": "HTML 5", - "Unique Options": "уникален избор", - "Display only unique dropdown options.": - "Показват се само уникалните падащи опции.", - "Data Source Type": "тип източник на данни", - "The source to use for the select data. Values lets you provide your own values and labels. JSON lets you provide raw JSON data. URL lets you provide a URL to retrieve the JSON data from.": - "Източникът, използван за избор на данните. Стойността ви позволява да предоставите своя собствена стойност и етикет. JSON ви позволява да предоставите необработени JSON данни. URL ви позволява да предоставите URL за извличане на JSON данни.", - "Values": "стойности", - "Raw JSON": "необработен JSON", - "IndexedDB": "индексна база данни", - "Database name": "База данни с имена", - "The name of the indexeddb database.": "Името на базата данни indexeddb.", - "Storage Type": "тип съхранение", - "The type to store the data. If you select something other than autotype, it will force it to that type.": - "Типът на съхраняваните данни. Ако изберете нещо различно от автоматично въвеждане, то ще го принуди да използва този тип.", - "Autotype": "копие", - "Boolean": "Булева стойност", - "Object": "Предназначение", - "ID Path": "Идентифицирайте пътя", - "Path to the select option id.": - "Изберете пътя за идентификатора на опцията.", - "Table name": "Име на таблицата", - "The name of table in the indexeddb database.": - "Името на таблицата в базата данни indexeddb.", - "Row Filter": "редов филтър", - "Filter table items that match the object.": - "Филтрирайте записи, които съответстват на обект.", - "Item Template": "шаблон на артикул", - "The HTML template for the result data items.": - "HTML шаблон за получения елемент от данни.", - "Enable Static Search ": "Активирайте статичното търсене", - "When checked, the select dropdown will allow for searching within the static list of items provided.": - "Когато е отметнато, падащото меню за избор ще позволи търсене в списъка с предоставени статични елементи.", - "Search Threshold": "праг на търсене", - "At what point does the match algorithm give up. A threshold of 0.0 requires a perfect match, a threshold of 1.0 would match anything.": - "Кога алгоритъмът за съвпадение се отказва. Праг от 0.0 изисква перфектно съвпадение, праг от 1.0 отговаря на всичко.", - "Read Only Value": "стойност само за четене", - "Check this if you would like to show just the value when in Read Only mode.": - "Отметнете това, ако искате да покажете стойността само в режим само за четене.", - "Choices.js options": "Опции за Choices.js", - "A raw JSON object to use as options for the Select component (Choices JS).": - "Необработен JSON обект, използван като опции за Избор на компонент (Choices JS).", - "Use exact search": "Използвайте точно търсене", - "Disables search algorithm threshold.": - "Деактивирайте праговете на алгоритъма за търсене.", - "Theme": "тема", - "The color theme of this button.": "Цветна тема за този бутон.", - "Size": "размер", - "The size of this button": "размера на този бутон", - "Block Button": "Бутон за блокиране", - "This control should span the full width of the bounding container.": - "Тази контрола трябва да обхваща цялата ширина на ограничаващия контейнер.", - "Left Icon": "лява икона", - "This is the full icon class string to show the icon.": - "Това е пълният низ за клас на икона за показване на иконата. пример:", - "Right Icon": "дясна икона", - "This is the full icon class string to show the icon. Example:": - "Това е пълният низ за клас на икона за показване на иконата. пример:", - "Primary": "основен", - "Secondary": "средно училище", - "Info": "информация", - "Success": "успех", - "Danger": "Опасност", - "Warning": "предупреди", - "The size of this button.": "Размерът на този бутон.", - "Medium": "умерено", - "Extra Small": "много малко", - "Small": "малък", - "Large": "голям", - "Disable on Form Invalid": "Формулярът за деактивиране не работи", - "This will disable this field if the form is invalid.": - "Това ще деактивира това поле, ако формулярът е невалиден.", - "Key topics for Sentiment Analysis": - "Ключови теми в анализа на настроенията", - "Enter topics to use in sentiment Analysis": - "Въведете теми, които да използвате в анализа на настроенията", - "Kickbox": "Таекуондо", - "Enable": "активиране", - "Enable Kickbox validation for this email field.": - "Активирайте проверката на Kickbox за това поле за имейл.", - "Validate this email using the Kickbox email validation service.": - "Потвърдете този имейл с помощта на услугата за проверка на имейл Kickbox.", - "Input Mask Placeholder Char": - "символ на заместващ символ на маска за въвеждане", - "Enable Manual Mode": "Активирайте ръчния режим", - "Should Manual Mode be enabled for that component or not.": - "Дали ръчният режим трябва да бъде активиран за този компонент.", - "Switch To Manual Mode Label": "Превключете към раздела за ръчен режим", - "The label for the checkbox used to switch to manual mode.": - "Етикет за квадратчето за отметка, за да преминете към ръчен режим.", - "Disable Clear Icon": "Деактивирайте иконата за изчистване", - "Clear Icon allows easily clear components value.": - "Иконата за изчистване улеснява изчистването на стойността на компонента.", - "Provider": "доставчик", - "Which address search service should be used.": - "Коя услуга за търсене на адреси трябва да се използва.", - "Manual Mode View String": "Преглед на низове в ръчен режим", - "Azure Maps": "Azure карта", - "Google Maps": "Гугъл карта", - "API Key": "API ключ", - "Use your Google API key here.": - "Използвайте своя ключ за API на Google тук.", - "Provider options": "опции на доставчика", - "Specify template which should be when quering view string for the component value entered in manual mode. This string is used in table view, CSV export and email rendering. When left blank combined value of all components joined with comma will be used.": - "Указва шаблона, който трябва да се използва при запитване на низове на изглед за стойности на компонента, въведени в ръчен режим. Този низ се използва за изглед на таблица, CSV експортиране и изобразяване на имейл. Когато се остави празно, ще се използва комбинираната стойност на всички компоненти, свързани със запетаи.", - "Delimiter": "разделител", - "What is used to separate the tags.": - "Какво се използва за разделяне на етикетите.", - "Max Tags": "макс. етикет", - "The maximum amount of tags that can be added. 0 for infinity.": - "Максималният брой тагове, които могат да бъдат добавени. 0 означава безкрайност.", - "Store As": "Запази като", - "String (CSV)": "низ (CSV)", - "Array of Tags": "масив от етикети", - "Display in Timezone": "Показване в часова зона", - "This will display the captured date time in the select timezone.": - "Това ще покаже заснетата дата и час в избраната часова зона.", - "of Viewer": "Зрителите", - "of Submission": "подаден", - "of Location": "Място", - "UTC": "UTC", - "Use Locale Settings": "Използвайте локал", - "Use locale settings to display date and time.": - "Показване на дата и час с помощта на локални настройки.", - "Allow Manual Input": "Разрешете ръчно въвеждане", - "Check this if you would like to allow the user to manually enter in the date.": - "Поставете отметка в това, ако искате да позволите на потребителите да въвеждат ръчно дати.", - "Format": "Форматиране", - "The date format for displaying the datetime value.": - "Форматът на датата, използван за показване на стойности за дата и час.", - "Shortcut Buttons": "бутон за бърз достъп", - "You can specify few buttons which will be shown above the calendar. Use Label to specify the name of the button and onClick to specify which date/time will be set when user clicks the button. ": - "Можете да посочите няколко бутона, които ще се показват над календара. Използвайте Label, за да посочите името на бутона и onClick, за да посочите датата/часа, който ще бъде зададен, когато потребителят щракне върху бутона.", - "onClick": "щракнете", - "Enable Date Input": "Активирайте въвеждането на дата", - "Enables date input for this field.": - "Активирайте въвеждането на дата за това поле.", - "Use Input to add moment.js for minDate": - "Добавете moment.js за minDate с въвеждане", - "Enables to use input for moment functions instead of calendar.": - "Позволява въвеждането да се използва за времеви функции вместо за календари.", - "Use calendar to set minDate": "Задайте minDate с помощта на календар", - "Enables to use calendar to set date.": - "Позволява използването на календар за задаване на дати.", - "Use Input to add moment.js for maxDate": - "Добавете moment.js за maxDate с въвеждане", - "Use calendar to set maxDate": "Задайте maxDate с Календар", - "Disable specific dates or dates by range": - "Деактивирайте конкретни дати или дати по диапазон", - "Add dates that you want to blacklist. For example:": - "Добавете дати, които да бъдат в черния списък. Например:", - "Custom Disabled Dates": "персонализирана дата за деактивиране", - "date": "дата", - "The date object.": "обект за дата.", - "Data Format": "Формат на данни", - "The moment.js format for saving the value of this field.": - "Форматът moment.js, използван за запазване на стойността на това поле.", - "HTML5 Time Input": "Въвеждане на време в HTML5", - "Text Input with Mask": "Маскирано въвеждане на текст", - "Disable weekends": "Деактивирайте почивните дни", - "Disable weekdays": "Деактивирайте делничните дни", - "Check to disable weekends": - "Поставете отметка, за да деактивирате уикенда", - "Check to disable weekdays": - "Поставете отметка, за да деактивирате делничните дни", - "Enable Time Input": "Активирайте въвеждането на време", - "Enables time input for this field": - "Активирайте въвеждането на време за това поле", - "Hour Step Size": "Часова стъпка", - "The number of hours to increment/decrement in the time picker.": - "Часове за увеличаване/намаляване в инструмента за избор на време.", - "Minute Step Size": "минута стъпка", - "The number of minutes to increment/decrement in the time picker.": - "Броят минути за увеличаване/намаляване в инструмента за избор на време.", - "Display time in 12 hour time with AM/PM.": - "Показва часа в AM/PM 12-часово време.", - "12 Hour Time (AM/PM)": "12-часов часовник (AM/PM)", - "Default Date": "дата по подразбиране", - "You can use Moment.js functions to set the default value to a specific date. For example:": - "Можете да използвате функциите Moment.js, за да зададете стойности по подразбиране на конкретни дати. Например:", - "Flatpickr options": "Flatpickr Настроики ", - "HTML Tag": "HTML Етикет", - "The tag of this HTML element.": "Маркировката за този HTML елемент.", - "CSS Class": "CSS клас", - "Attributes": "Атрибути", - "The attributes for this HTML element. Only safe attributes are allowed, such as src, href, and title.": - "Атрибути на този HTML елемент. Разрешени са само безопасни атрибути като src, href и title.", - "Attribute": "Атрибути", - "Refresh On Change": "освежете при промяна", - "HTML Element": "HTML елемент", - "Column Properties": "свойства на колоната", - "The width, offset, push, and pull settings for each column.": - "Настройки за ширина, изместване, натискане и изтегляне за всяка колона.", - "Offset": "изместване", - "Push": "натискам", - "Pull": "дръпнете", - "Auto adjust columns": "Автоматизирани колони", - "Will automatically adjust columns based on if nested components are hidden.": - "Колоната ще бъде автоматично коригирана в зависимост от това дали вложеният компонент е скрит или не.", - "Hide Column when Children Hidden": - "Скриване на колоните, когато децата са скрити", - "Check this if you would like to hide any column when the children within that column are also hidden": - "Отметнете това, ако искате да скриете колона, когато децата в тази колона също са скрити", - "Legend": "легенда", - "The legend for this Fieldset.": "Легендата за този набор от полета.", - "Default": "по подразбиране", - "Collapsible": "сгъваем", - "If checked, this will turn this Panel into a collapsible panel.": - "Ако е отметнато, това ще превърне този панел в сгъваем панел.", - "Number of Rows": "Редове", - "Enter the number or rows that should be displayed by this table.": - "Въведете броя или броя на редовете, които тази таблица трябва да показва.", - "Number of Columns": "брой колони", - "Enter the number or columns that should be displayed by this table.": - "Въведете числата или колоните, които тази таблица трябва да показва.", - "Clone Row Components": "Компонент за клониране на ред", - "Check this if you would like to": "Проверете това, ако желаете", - "Cell Alignment": "подравняване на клетките", - "Horizontal alignment for cells of the table.": - "Хоризонтално подравняване на клетките на таблицата. заедно", - "Center": "център", - "Striped": "райе", - "This will stripe the table if checked.": - "Ако е отметнато, това ще очертае масата.", - "Bordered": "граничеща", - "This will border the table if checked.": - "Ако е отметнато, това ще активира границите на таблицата.", - "Hover": "скитащи се", - "Highlight a row on hover.": "Маркирайте ред при задържане на курсора.", - "Condensed": "концентриран", - "Condense the size of the table.": "Размерът на компресираната маса.", - "Label for Key column": "етикет на ключова колона", - "Provide a label text for Key column (otherwise Key will be used)": - "Предоставете текста на етикета за колоната Ключ (в противен случай ще се използва „Ключ“)", - "Disable Adding / Removing Rows": - "Деактивирайте добавянето/изтриването на редове", - "Check if you want to hide Add Another button and Remove Row button": - "Проверете дали искате да скриете добавяне на друг бутон и изтриване на бутони за редове", - "Show key column before value": - "Показване на ключовата колона преди стойността", - "Check if you would like to show the Key before the Value column.": - "Отметнете дали искате да покажете ключа преди колоната Стойност.", - "Type of event": "вид дейност", - "Specify type of event that this reCAPTCHA would react to": - "Определя типа събития, на които ще реагира това reCAPTCHA", - "Form Load": "зареждане на формуляра", - "Button Click": "щракване върху бутона", - "The form to load within this form component.": - "Формулярът за зареждане в този компонент на формуляр.", - "Form Revision": "Ревизия на формуляра", - "You can lock the nested form to a specific revision by entering the revision number here.": - "Можете да заключите вложен формуляр към конкретна ревизия, като въведете номера на ревизията тук.", - "Use Original Revision while Submissions Viewing": - "Използвайте оригиналната ревизия, когато преглеждате комита", - "Using this option will make form load the original revision (the one which was used to make a submission) when viewing a submission.": - "Използването на тази опция ще накара формуляра да зареди оригиналната ревизия (ревизия за подаване) при преглед на подаването.", - "Save as reference": "Запазване като справка", - "Using this option will save this field as a reference and link its value to the value of the origin record.": - "Използването на тази опция запазва това поле като препратка и свързва стойността му със стойността на оригиналния запис.", - "Select Fields": "изберете поле", - "The properties on the resource to return as part of the options. If left blank, all properties will be returned.": - "Свойства на ресурса, върнати като част от опции. Ако се остави празно, всички свойства ще бъдат върнати.", - "Search Fields": "поле за търсене", - "Filter Query": "филтърна заявка", - "Use this to provide additional filtering using query parameters.": - "Използвайте това, за да осигурите допълнително филтриране с помощта на параметри на заявката.", - "The filter query for results.": "Резултатът от заявката за филтър.", - "Sort Query": "Заявка за сортиране", - "Use this to provide additional sorting using query parameters": - "Използвайте това, за да осигурите допълнително сортиране с помощта на параметри на заявката", - "The sort query for results": "Заявка за сортиране за резултати", - "Add Resource": "Добавете ресурси", - "Allows to create a new resource while entering a submission.": - "Позволява създаване на нови ресурси при въвеждане на запис.", - "Add Resource Label": "Добавете маркери за ресурси", - "Set the text of the Add Resource button.": - "Задава текста за бутона Добавяне на ресурс.", - "Auto Expand": "Автоматично разширяване", - "Save & Preview": "Запазване и визуализация", - - - "Export PDF": "Експортиране на PDF", - "Something went wrong. Please try again!":"Нещо се обърка. Моля, опитайте отново!", - "No Dashboards Found":"Няма намерени табла за управление", - "Processes":"процеси", - "Please select an existing workflow.":"Моля, изберете съществуващ работен процес.", - "Create New":"Създай нов", - "Or create new workflow or import a workflow from a local directory.":"Или създайте нов работен поток или импортирайте работен поток от локална директория.", - "The operation couldn't be completed. Please try after sometime":"Операцията не можа да бъде завършена. Моля, опитайте след известно време", - "Select...":"Изберете...", - "No Drafts Found": "Няма намерени чернови", - "Help":"Помогне", - "Draft Id":"Чернова на ID", - "Draft Name":"Име на черновата", - "Link To Draft Submission":"Връзка към изпращане на чернова", - "Drafts":"Чернови", - "You can't submit this form until it is published":"Не можете да изпратите този формуляр, докато не бъде публикуван", - "Form not published":"Формулярът не е публикуван", - "Access Denied" : "Отказан достъп", - "By default, the tenant key would be prefixed to form":"По подразбиране ключът на клиента ще има префикс за форма", - "go back":"Върни се", - "Submission saved to draft.":"Изпращането е запазено в чернова.", - "Saved to draft":"Запазено в чернова", - "Saving...":"Запазва се...", - "Resource":"Ресурс", - "Error in creating form process mapper":"Грешка при създаването на картограф на процес на формуляр", - "Select the date":"Изберете датата", - "Diagram Deployed":"Разгърната диаграма", - "Deployment Failed":"Неуспешно внедряване", - "Process name(s) must not be empty":"Името(ата) на процесите не трябва да са празни", - "URL copied":"URL адресът е копиран", - "Click Here to Copy":"Щракнете тук, за да копирате", - "Revert": "Връщане", - "Overview": "Преглед", - "Design Permission": "Разрешение за проектиране", - "All Designers": "Всички дизайнери", - "Private(only you)": "Лично (само ти)", - "Specific Designer Group": "Специфична дизайнерска група", - "Submission Permission": "Разрешение за подаване", - "All Users": "Всички потребители", - "Specific User Group": "Конкретна потребителска група", - "Applicable for Designer Roled Users only.": "Приложимо само за потребители с права на дизайнер.", - "Applicable for Client and Reviewer Roled Users only.": "Приложимо само за потребители с права на клиент и рецензент.", - "Saved to Submissions/Drafts": "Запазено в Подавания/Чернови", - "Unfinished Submissions will be saved to Submissions/Drafts.": "Незавършените Подавания ще бъдат запазени в Подавания/Чернови.", - "Changing the form workflow will not affect the existing submissions. It will only update in the newly created submissions. Press Save Changes to continue or cancel the changes.": "Промяната на работния процес на формуляра няма да засегне съществуващите подавания. Това ще се актуализира само в новосъздадените подавания. Натиснете Запазване на промените, за да продължите или отмените промените.", - "Submissions are made against": "Подаванията се правят срещу", - "Submission is made against": "Подаването се прави срещу", - "Changing the form title will not affect the existing submissions. It will only update in the newly created submissions. Press Save Changes to continue or cancel the changes.": "Промяната на заглавието на формуляра няма да засегне съществуващите подавания. Това ще се актуализира само в новосъздадените подавания. Натиснете Запазване на промените, за да продължите или отмените промените.", - "Submissions": "Подавания", - "Submission Id": "Идентификационен Номер на Подаване", - "Submission History": "История на Подаването", - "No Submission History found": "Няма Намерен История на Подаването", - "No submissions Found": "Няма Намерени Подавания", - - "Create new filter":"Създайте нов филтър", - "Filter Name":"Име на филтъра", - "Enter your text here":"Въведете своя текст тук", - "Criteria":"Критерии", - "Add Value":"Добави стойност", - "Definition Key":"Ключ за дефиниция", - "Asignee":"Цесионер", - "Include Assigned Task":"Включете възложена задача", - "Variable":"Променлива", - "Show undefined variables":"Показване на недефинирани променливи", - "Name of variable":"Име на променлива", - "Readable name":"Четено име", - "Permission":"разрешение", - "Accessible for all users":"Достъпен за всички потребители", - "Private (Only You)":"Лично (само ти)", - "Specific User/ Group":"Конкретен потребител/група", - "User":"Потребител", - "Group":"Група", - "Identifier":"Идентификатор", - "Enter role ID":"Въведете ID на ролята", - "Create Filter":"Създаване на филтър", - "Select a task in the List":"Изберете задача от списъка", - "Select a specific task from the provided list of options. Your selection will determine the task you will be working on or interacting with.":"Изберете конкретна задача от предоставения списък с опции. Вашият избор ще определи задачата, върху която ще работите или с която ще взаимодействате." - }, - - pt: { - "Bad Request":"Pedido ruim", - "Select form version":"Selecione a versão do formulário", - "Please remove the special characters...!":"Remova os caracteres especiais...!", - "No histories found":"Nenhum histórico encontrado", - "Continue":"Prosseguir", - "This will create a new version of the form without changing the path name but with new form id.":"Isso criará uma nova versão do formulário sem alterar o nome do caminho, mas com o novo ID do formulário.", - "Save as a new version":"Salvar como uma nova versão", - "Save New Version":"Salvar nova versão", - "Do you want to save a new version of this form?":"Deseja salvar uma nova versão deste formulário?", - "Do you want to create a duplicate form and associated workflow from existing form ?":"Deseja criar um formulário duplicado e um fluxo de trabalho associado a partir de um formulário existente?", - "New version created":"New version created", - "Create a duplicate form":"Criar um formulário duplicado", - "Show more":"Mostre mais", - "Modified By":"Modificado por", - "Created On" : "Criado em", - "Formsflow automatically saves your previous form data. Now you can switch to the previous stage and edit.":"O Formsflow salva automaticamente os dados do formulário anterior. Agora você pode mudar para o estágio anterior e editar.", - "Duplicate Form":"Formulário Duplicado", - "Form History":"Histórico do formulário", - "No file chosen":"Nenhum arquivo selecionado", - "Choose File":"Escolher arquivo", - "Choose any":"Escolha qualquer", - "select form type":"selecione o tipo de formulário", - "Draft Deleted Successfully":"Rascunho excluído com sucesso", - - "with ID":"com identidade", - "Are you sure you wish to delete the draft":"Tem certeza de que deseja excluir o rascunho", - "Discard Draft":"Descartar Rascunho", - "Search by form name": "Pesquisar pelo nome do formulário", - "Click to search": "Clique para pesquisar", - "No submissions found": "Nenhum envio encontrado", - "No submission avaliable in the selected date. Please select another date range": - "Nenhuma submissão disponível na data selecionada. Selecione outro intervalo de datas", - "All groups have access to the dashboard": - "Todos os grupos têm acesso ao painel", - "Form unpublishing Failed": "Falha ao cancelar a publicação do formulário", - "Form process failed": "Falha no processo do formulário", - "Form deletion unsuccessful":"Falha na exclusão do formulário", - "Form deleted successfully": "Formulário excluído com sucesso", - "Show in list": "Mostrar na lista", - "Loading...": "Carregando...", - - "Save Changes": "Salvar alterações", - "Are you sure you wish to delete the form ": - "Tem certeza de que deseja excluir o formulário", - "Are you sure you wish to delete the form?": - "Tem certeza de que deseja excluir o formulário?", - - ". Are you sure want to delete ?": ". Tem certeza de que deseja excluir?", - "Click here to go back": "Clique aqui para voltar", - "Dashboards": "Painéis", - "Error while saving Form": "Erro ao salvar o formulário", - "Confirmation": "Confirmação", - "Submitted By": "Enviado por", - "Copy anonymous form URL": "Copiar URL de formulário anônimo", - "Form field": "Campo do formulário", - "Enter Label": "Digite o rótulo", - "Select form field": "Selecione o campo do formulário", - "Add form fields to display in task list": - "Adicionar campos de formulário para exibir na lista de tarefas", - "Version": "Versão", - "Submission Status": "Status de submissão", - "No submission status": "Sem status de envio", - "No Public url found": "Nenhum URL público encontrado", - "Select Task Variable": "Selecione a variável de tarefa", - "Enter your Label": "Digite seu rótulo", - "Please select from one of the following workflows.": - "Selecione um dos fluxos de trabalho a seguir.", - "Select Key": "Selecionar chave", - "Create Your Task Variable": "Crie sua variável de tarefa", - "No task variable selected": "Nenhuma variável de tarefa selecionada", - "Workflow Associate": "Associado de fluxo de trabalho", - - "Task variable": "Variável de tarefa", - "Enter pathname": "Digite o nome do caminho", - "saved successfully": "Salvo com sucesso", - "Thank you for your response.": "Obrigado pela sua resposta.", - "Form not available": "Formulário não disponível", - "Ok": "OK", - "No submissions available for the selected date range": - "Nenhum envio disponível para o período selecionado", - "Save Form": "Salvar formulário", - "Confirm": "confirme", - "Cancel": "Cancelar", - "Wizard": "Mago", - "Error in JSON file structure": "Erro na estrutura do arquivo JSON", - "Downloaded Successfully": "Baixado com sucesso", - "Select Dashboard": "Selecionar painel", - "Dashboard": "Painel", - "Insights": "Intuições", - "Metrics": "Métricas", - "Tasks": "Tarefas", - - "Admin": "Administrador", - "Powered by ": "Distribuído por ", - "Name": "Nome", - "Anonymous Form ": "Formulário anônimo?", - "Title": "Título", - "Display as": "Mostrar como", - "Type": "Tipo", - "Path": "Caminho", - "example": "Exemplo", - "Make this form public ?": "Tornar este formulário público?", - "Create Form": "Criar formulário", - "Design Form": "Formulário de Design", - "Associate this form with a workflow?": - "Associar este formulário a um fluxo de trabalho?", - "Preview and Confirm": "Pré-visualizar e confirmar", - "All steps completed - you're finished": - "Todas as etapas concluídas - você terminou", - "Form-Workflow association failed.": - "Falha na associação Formulário-Fluxo de trabalho.", - - "Created By": "Criado por", - "Enter the form title": "Digite o título do formulário", - "Enter the form machine name": "Digite o nome da máquina do formulário", - "Text Field": "Campo de texto", - "Text Area": "Área de texto", - "Number": "Número", - "Password": "Senha", - "Checkbox": "Caixa de seleção", - "Select Boxes": "Selecionar caixas", - "Select": "Selecionar", - "Radio": "Rádio", - "Button": "Botão", - "Text Area With Analytics": "Área de texto com análise", - "Data": "Dadas", - "Display": "Exibição", - "on": "sobre", - "Submit": "Enviar", - "Email": "E-mail", - "Url": "URL", - "Phone Number": "Número de telefone", - "Tags": "Tags", - "Address": "Endereço", - "Date / Time": "Data hora", - "Day": "Dia", - "Time": "Tempo", - "Currency": "Moeda", - "Survey": "Pesquisa", - "Signature": "Assinatura", - "HTML": "HTML", - "Content": "Contente", - "Columns": "Colunas", - "Field Set": "Conjunto de campos", - "Panel": "Painel", - "Table": "Mesa", - "Tabs": "Abas", - "Well": "Nós vamos", - "Hidden": "Escondida", - "Container": "Recipiente", - "Data Map": "Mapa de dados", - "Data Grid": "Grade de dados", - "Edit Grid": "Editar grade", - "Tree": "Árvore", - "reCAPTCHA": "reCAPTCHA", - "Resource": "Recurso", - "File": "Arquivo", - "Nested": "Aninhada", - "Custom": "Personalizada", - "Basic": "Básica", - "Advanced": "Avançada", - "Layout": "Esquema", - "Premium": "Prêmio", - "Drag and Drop a form component": - "Arraste e solte um componente de formulário", - "Preview": "Visualizar", - "The minimum length requirement this field must meet.": - "O requisito de comprimento mínimo que este campo deve atender.", - "Label": "Etiqueta", - "The label for this field that will appear next to it.": - "O rótulo para este campo que aparecerá ao lado dele.", - "Label Position": "Posição do rótulo", - "Position for the label for this field.": - "Posição do rótulo para este campo.", - "Placeholder": "Espaço reservado", - "The placeholder text that will appear when this field is empty.": - "O texto do espaço reservado que aparecerá quando este campo estiver vazio.", - "Description": "Descrição", - "The description is text that will appear below the input field.": - "A descrição é um texto que aparecerá abaixo do campo de entrada.", - "Tooltip": "Dica de ferramenta", - "Adds a tooltip to the side of this field.": - "Adiciona uma dica de ferramenta ao lado deste campo.", - "To add a tooltip to this field, enter text here.": - "Para adicionar uma dica de ferramenta a este campo, digite o texto aqui.", - "Description for this field.": "Descrição para este campo.", - "Prefix": "Prefixo", - "Suffix": "Sufixo", - "Widget": "Ferramenta", - "The widget is the display UI used to input the value of the field.": - "O widget é a interface do usuário de exibição usada para inserir o valor do campo.", - "Right (Left-aligned)": "Direita (alinhado à esquerda)", - "Left (Left-aligned)": "Esquerda (alinhado à esquerda)", - "Left (Right-aligned)": "Esquerda (alinhado à direita)", - "Right (Right-aligned)": "Direita (alinhado à direita)", - "Bottom": "Fundo", - "Component": "Componente", - "Top": "Principal", - "Label Width": "Largura do rótulo", - "The width of label on line in percentages.": - "A largura do rótulo na linha em porcentagens.", - "Label Margin": "Margem do rótulo", - "The width of label margin on line in percentages.": - "A largura da margem do rótulo na linha em porcentagens.", - "Rows": "Linhas", - "Input Field": "Campo de entrada", - "Calendar Picker": "Seletor de calendário", - "Select a widget": "Selecione um widget", - "Input Mask": "Máscara de entrada", - "Widget Settings": "Configurações do widget", - "Allow Multiple Masks": "Permitir várias máscaras", - "Input Masks": "Máscaras de entrada", - "Mask": "mascarar", - "Add Another": "Adicionar outro", - "Custom CSS Class": "Classe CSS personalizada", - "Custom CSS class to add to this component.": - "Classe CSS personalizada para adicionar a este componente.", - "Tab Index": "Índice da guia", - "Sets the tabindex attribute of this component to override the tab order of the form. See the MDN documentation on tabindex for more information.": - "Define o atributo tabindex deste componente para substituir a ordem de tabulação do formulário. Consulte a documentação do MDN no tabindex para obter mais informações.", - "Autocomplete": "autocompletar", - "Indicates whether input elements can by default have their values automatically completed by the browser. See the MDN documentation on autocomplete for more information.": - "Indica se os elementos de entrada podem, por padrão, ter seus valores preenchidos automaticamente pelo navegador. Consulte a documentação do MDN sobre preenchimento automático para obter mais informações.", - "A hidden field is still a part of the form, but is hidden from view.": - "Um campo oculto ainda faz parte do formulário, mas fica oculto.", - "Hide Label": "Ocultar etiqueta", - "Show Word Counter": "Mostrar contador de palavras", - "Show a live count of the number of words.": - "Mostrar uma contagem ao vivo do número de palavras.", - "Hide the label (title, if no label) of this component. This allows you to show the label in the form builder, but not when it is rendered.": - "Oculte o rótulo (título, se não houver rótulo) deste componente. Isso permite que você mostre o rótulo no construtor de formulários, mas não quando ele é renderizado.", - "Show Character Counter": "Mostrar contador de caracteres", - "Show a live count of the number of characters.": - "Mostrar uma contagem ao vivo do número de caracteres.", - "Hide Input": "Ocultar entrada", - "Hide the input in the browser. This does not encrypt on the server. Do not use for passwords.": - "Oculte a entrada no navegador. Isso não criptografa no servidor. Não use para senhas.", - "Initial Focus": "Foco inicial", - "Make this field the initially focused element on this form.": - "Faça deste campo o elemento inicialmente focado neste formulário.", - "Allow Spellcheck": "Permitir verificação ortográfica", - "Disabled": "Desativada", - "Disable the form input.": "Desabilite a entrada do formulário.", - "Table View": "Vista de mesa", - "Shows this value within the table view of the submissions.": - "Mostra esse valor na exibição de tabela dos envios.", - "Modal Edit": "Edição Modal", - "Opens up a modal to edit the value of this component.": - "Abre um modal para editar o valor deste componente.", - "Multiple Values": "Vários valores", - "Allows multiple values to be entered for this field.": - "Permite que vários valores sejam inseridos para este campo.", - "Default Value": "Valor padrão", - "The will be the value for this field, before user interaction. Having a default value will override the placeholder text.": - "O será o valor para este campo, antes da interação do usuário. Ter um valor padrão substituirá o texto do espaço reservado.", - "Persistent": "Persistente", - "A persistent field will be stored in database when the form is submitted.": - "Um campo persistente será armazenado no banco de dados quando o formulário for enviado.", - "None": "Nenhum", - "Server": "Servidora", - "Client": "Cliente", - "Input Format": "Formato de entrada", - "Force the output of this field to be sanitized in a specific format.": - "Força a saída deste campo a ser higienizada em um formato específico.", - "Plain": "Plana", - "Type to search": "Escreva para pesquisar", - "Raw (Insecure)": "Bruto (inseguro)", - "Protected": "Protegida", - "A protected field will not be returned when queried via API.": - "Um campo protegido não será retornado quando consultado via API.", - "Database Index": "Índice do banco de dados", - "Set this field as an index within the database. Increases performance for submission queries.": - "Defina este campo como um índice no banco de dados. Aumenta o desempenho para consultas de envio.", - "Text Case": "Caixa de texto", - "When data is entered, you can change the case of the value.": - "Quando os dados são inseridos, você pode alterar as maiúsculas e minúsculas do valor.", - "Mixed (Allow upper and lower case)": - "Misto (Permitir maiúsculas e minúsculas)", - "Uppercase": "Maiúsculas", - "Lowercase": "Minúsculas", - "Encrypted (Enterprise Only)": "Criptografado (somente Enterprise)", - "Encrypt this field on the server. This is two way encryption which is not suitable for passwords.": - "Criptografe este campo no servidor. Esta é uma criptografia bidirecional que não é adequada para senhas.", - "Redraw On": "Redesenhado em", - "Redraw this component if another component changes. This is useful if interpolating parts of the component like the label.": - "Redesenhe este componente se outro componente for alterado. Isso é útil ao interpolar partes do componente como o rótulo.", - "Any Change": "Qualquer mudança", - "Clear Value When Hidden": "Limpar valor quando oculto", - "When a field is hidden, clear the value.": - "Quando um campo estiver oculto, limpe o valor.", - "The following variables are available in all scripts.": - "As seguintes variáveis ​​estão disponíveis em todos os scripts.", - "Custom Default Value": "Valor padrão personalizado", - "form": "Formato", - "The complete form JSON object": "O objeto JSON de formulário completo", - "submission": "submissão", - "The complete submission object.": "O objeto de envio completo.", - "data": "dadas", - "The complete submission data object.": - "O objeto de dados de envio completo.", - "row": "fileira", - 'Contextual "row" data, used within DataGrid, EditGrid, and Container components': - 'Dados de "linha" contextuais, usados ​​nos componentes DataGrid, EditGrid e Container', - "component": "component", - "The current component JSON": "O componente atual JSON", - "instance": "instância", - "The current component instance.": "A instância do componente atual.", - "Value": "Valor", - "The current value of the component.": "O valor atual do componente.", - "moment": "momento", - "The moment.js library for date manipulation.": - "A biblioteca moment.js para manipulação de datas.", - "utils": "útil", - "util": "útil", - 'An alias for "utils".': 'Um alias para "utils".。', - "JavaScript": "JavaScript", - "Enter custom javascript code.": - "Insira o código javascript personalizado.", - "Example:": "Exemplo:", - "JSONLogic": "JSONLogic", - "Execute custom logic using ": "Execute a lógica personalizada usando", - 'support is provided using an "_" before each operation, such as {"_sum": {var: "data.a"}}': - 'o suporte é fornecido usando um "_" antes de cada operação, como {"_sum": {var: "data.a"}}', - "Full": "Completa", - "Calculated Value": "Valor calculado", - "token": "símbolo", - "The decoded JWT token for the authenticated user.": - "O token JWT decodificado para o usuário autenticado.", - "Calculate Value on server": "Calcular valor no servidor", - "Checking this will run the calculation on the server. This is useful if you wish to override the values submitted with the calculations performed on the server.": - "Marcar isso executará o cálculo no servidor. Isso é útil se você deseja substituir os valores enviados pelos cálculos realizados no servidor.", - "Allow Manual Override of Calculated Value": - "Permitir substituição manual do valor calculado", - "When checked, this will allow the user to manually override the calculated value.": - "Quando marcado, isso permitirá que o usuário substitua manualmente o valor calculado.", - "Save": "Salve ", - "Remove": "Remover", - "Validate On": "Validar em", - "Determines when this component should trigger front-end validation.": - "Determina quando esse componente deve acionar a validação de front-end.", - "Change": "Mudar", - "Blur": "Borrão", - "Required": "Requeridos", - "A required field must be filled in before the form can be submitted.": - "Um campo obrigatório deve ser preenchido antes que o formulário possa ser enviado.", - "Unique": "Única", - "Makes sure the data submitted for this field is unique, and has not been submitted before.": - "Garante que os dados enviados para este campo sejam exclusivos e não tenham sido enviados antes.", - "Minimum Length": "Comprimento mínimo", - "The maximum length requirement this field must meet.": - "O requisito de comprimento máximo que este campo deve atender.", - "Maximum Length": "Comprimento máximo", - "Minimum Word Length": "Comprimento Mínimo da Palavra", - "The minimum amount of words that can be added to this field.": - "A quantidade mínima de palavras que podem ser adicionadas a este campo.", - "Maximum Word Length": "Comprimento Máximo da Palavra", - "The maximum amount of words that can be added to this field.": - "A quantidade máxima de palavras que podem ser adicionadas a este campo.", - "Regular Expression Pattern": "Padrão de Expressão Regular", - "The regular expression pattern test that the field value must pass before the form can be submitted.": - "O teste padrão de expressão regular que o valor do campo deve passar antes que o formulário possa ser enviado.", - "Error Label": "Etiqueta de erro", - "The label for this field when an error occurs.": - "O rótulo para este campo quando ocorre um erro.", - "Custom Error Message": "Mensagem de erro personalizada", - "Error message displayed if any error occurred.": - "Mensagem de erro exibida se ocorrer algum erro.", - "Custom Validation": "Validação personalizada", - "input": "entrada", - "The value that was input into this component": - "O valor que foi inserido neste componente", - "Enter custom validation code.": - "Insira o código de validação personalizado.", - "You must assign the valid variable as either true or an error message if validation fails.": - "Você deve atribuir a variável válida como verdadeira ou uma mensagem de erro se a validação falhar.", - "Secret Validation": "Validação secreta", - "Check this if you wish to perform the validation ONLY on the server side. This keeps your validation logic private and secret.": - "Marque isso se desejar realizar a validação SOMENTE no lado do servidor. Isso mantém sua lógica de validação privada e secreta.", - "JSONLogic Validation": "Validação JSONLogic", - "Execute custom logic using": "Execute a lógica personalizada usando", - "Help": "Ajuda", - "Validation": "Validação", - "API": "API", - "Property Name": "Nome da propriedade", - "The name of this field in the API endpoint.": - "O nome desse campo no endpoint da API.", - "Field Tags": "Tags de campo", - "Tag the field for use in custom logic.": - "Marque o campo para uso na lógica personalizada.", - "Custom Properties": "Propriedades personalizadas", - "This allows you to configure any custom properties for this component.": - "Isso permite configurar quaisquer propriedades personalizadas para este componente.", - "Key": "Chave", - "Conditional": "Condicional", - "Simple": "Simples", - "This component should Display:": "Este componente deve exibir:", - "True": "Verdadeira", - "False": "Falsa", - "When the form component:": "Quando o componente de formulário::", - "Submit (submit)": "Enviar (enviar)", - "Has the value:": "Tem o valor::", - "Advanced Conditions": "Condições avançadas", - "Advanced Logic": "Lógica avançada", - "Advanced Logic Configured": "Lógica avançada configurada", - "Logic": "Lógica", - "Add Logic": "Adicionar lógica", - "Trigger": "Acionar", - "JSON Logic": "Lógica JSON", - '"row", "data", and "component" variables are available. Return "result".': - 'As variáveis ​​"linha", "dados" e "componente" estão disponíveis. Retorna "resultado".', - "Actions": "Ações", - "Action Name": "Nome da ação", - "Property": "Propriedade", - "Schema Defenition": "Definição do Esquema", - '"row", "data", "component", and "result" variables are available. Return the schema.': - 'As variáveis ​​"linha", "dados", "componente" e "resultado" estão disponíveis. Devolva o esquema.', - "Merge Component Schema": "Mesclar Esquema de Componente", - "Custom Action": "Ação personalizada", - "You must assign the show variable a boolean result.": - "Você deve atribuir à variável show um resultado booleano.", - "Note: Advanced Conditional logic will override the results of the Simple Conditional logic.": - "Observação: a lógica condicional avançada substituirá os resultados da lógica condicional simples.", - "Example": "Exemplo", - '"row", "data", "component" and "_" variables are available. Return the result to be passed to the action if truthy.': - 'As variáveis ​​"row", "data", "component" e "_" estão disponíveis. Retorna o resultado a ser passado para a ação se for verdadeiro.', - "Add Action": "Adicionar ação", - "Save Logic": "Salvar lógica", - "Logic Name": "Nome lógico", - "Event": "Evento", - "The event that will trigger this logic. You can trigger events externally or via a button.": - "O evento que acionará essa lógica. Você pode acionar eventos externamente ou por meio de um botão.", - "Save Action": "Salvar ação", - "HTML Attributes": "Atributos HTML", - "Attribute Name": "Nome do Atributo", - "Attribute Value": "Valor do atributo", - "Add Attribute": "Adicionar atributo", - "The settings inside apply only to the PDF forms.": - "As configurações internas se aplicam apenas aos formulários PDF.", - "PDF Overlay": "Sobreposição de PDF", - "Style": "Estilo", - "Custom styles that should be applied to this component when rendered in PDF.": - "Estilos personalizados que devem ser aplicados a este componente quando renderizados em PDF.", - "Page": "Página", - "The PDF page to place this component.": - "A página PDF para colocar este componente.", - "Left": "Esquerda", - "The left margin within a page to place this component.": - "A margem esquerda dentro de uma página para colocar este componente.", - "The top margin within a page to place this component.": - "A margem superior dentro de uma página para colocar este componente.。", - "Width": "Largura", - "The width of the component (in pixels).": - "A largura do componente (em pixels).", - "Height": "Altura", - "The height of the component (in pixels).": - "A altura do componente (em pixels).", - "Use Thousands Separator": "Use o separador de milhares", - "Separate thousands by local delimiter.": - "Separe milhares por delimitador local.", - "Decimal Places": "Casas decimais", - "The maximum number of decimal places.": - "O número máximo de casas decimais.", - "Require Decimal": "Exigir Decimal", - "Always show decimals, even if trailing zeros.": - "Sempre mostre decimais, mesmo se zeros à direita.", - "Minimum Value": "Valor mínimo", - "The minimum value this field must have before the form can be submitted.": - "O valor mínimo que este campo deve ter antes que o formulário possa ser enviado.", - "Maximum Value": "Valor máximo", - "The maximum value this field can have before the form can be submitted.": - "O valor máximo que este campo pode ter antes que o formulário possa ser enviado.", - "Editor": "Editora", - "Select the type of WYSIWYG editor to use for this text area.": - "Selecione o tipo de editor WYSIWYG a ser usado para esta área de texto.", - "ACE": "ÁS", - "Save As": "Salvar como", - "This setting determines how the value should be entered and stored in the database.": - "Essa configuração determina como o valor deve ser inserido e armazenado no banco de dados.", - "String": "Corda", - "JSON": "JSON", - "Input Type": "Tipo de entrada", - "This is the input type used for this checkbox.": - "Este é o tipo de entrada usado para esta caixa de seleção.", - "Shortcut": "Atalho", - "Shortcut for this component.": "Atalho para este componente.", - "Password fields are automatically encrypted using 1-way salted bcrypt hashes. These hashes are also protected and not returned in the API.": - "Os campos de senha são criptografados automaticamente usando hashes bcrypt salgados unidirecionais. Esses hashes também são protegidos e não são retornados na API.", - "Options Label Position": "Posição do rótulo de opções", - "Position for the label for options for this field.": - "Posição para o rótulo de opções para este campo.", - "Right": "Certa", - "Inline Layout": "Layout embutido", - "Displays the checkboxes/radios horizontally.": - "Exibe as caixas de seleção/rádios horizontalmente.", - "Allow only available values": "Permitir apenas valores disponíveis", - "Minimum checked number": "Número mínimo verificado", - "Minimum checkboxes required before form can be submitted.": - "Caixas de seleção mínimas necessárias antes que o formulário possa ser enviado.", - "Maximum checked number": "Número máximo verificado", - "Maximum checkboxes possible before form can be submitted.": - "Máximo de caixas de seleção possíveis antes que o formulário possa ser enviado.", - "Minimum checked error message": "Mensagem de erro mínima verificada", - "Error message displayed if minimum number of items not checked.": - "Mensagem de erro exibida se o número mínimo de itens não for verificado.", - "Maximum checked error message": "Máximo de mensagens de erro verificadas", - "Error message displayed if maximum number of items checked.": - "Mensagem de erro exibida se o número máximo de itens for verificado.", - "ChoicesJS": "ChoicesJS", - "HTML 5": "HTML 5", - "Unique Options": "Opções únicas", - "Display only unique dropdown options.": - "Exiba apenas opções de lista suspensa exclusivas.", - "Data Source Type": "Tipo de fonte de dados", - "The source to use for the select data. Values lets you provide your own values and labels. JSON lets you provide raw JSON data. URL lets you provide a URL to retrieve the JSON data from.": - "fonte a ser usada para os dados selecionados. Valores permite que você forneça seus próprios valores e rótulos. JSON permite fornecer dados JSON brutos. URL permite que você forneça um URL para recuperar os dados JSON.", - "Values": "Valores", - "Raw JSON": "JSON bruto", - "IndexedDB": "BD indexado", - "Database name": "Nome do banco de dados", - "The name of the indexeddb database.": - "O nome do banco de dados indexeddb.", - "Storage Type": "Tipo de armazenamento", - "The type to store the data. If you select something other than autotype, it will force it to that type.": - "O tipo para armazenar os dados. Se você selecionar algo diferente de autotype, ele o forçará a esse tipo.", - "Autotype": "Autotipo", - "Boolean": "boleano", - "Object": "Objeto", - "ID Path": "Caminho de ID", - "Path to the select option id.": "Caminho para o ID da opção de seleção.", - "Table name": "Nome da tabela", - "The name of table in the indexeddb database.": - "O nome da tabela no banco de dados indexeddb.", - "Row Filter": "Filtro de linha", - "Filter table items that match the object.": - "Filtre os itens da tabela que correspondem ao objeto.", - "Item Template": "Modelo de item", - "The HTML template for the result data items.": - "O modelo HTML para os itens de dados de resultado.", - "Enable Static Search ": "Ativar pesquisa estática", - "When checked, the select dropdown will allow for searching within the static list of items provided.": - "Quando marcada, a lista suspensa de seleção permitirá a pesquisa na lista estática de itens fornecidos.", - "Search Threshold": "Limite de pesquisa", - "At what point does the match algorithm give up. A threshold of 0.0 requires a perfect match, a threshold of 1.0 would match anything.": - "Em que ponto o algoritmo de correspondência desiste. Um limite de 0,0 requer uma correspondência perfeita, um limite de 1,0 corresponderia a qualquer coisa.", - "Read Only Value": "Valor somente leitura", - "Check this if you would like to show just the value when in Read Only mode.": - "Marque isso se você quiser mostrar apenas o valor quando estiver no modo Somente leitura.", - "Choices.js options": "Opções de Choices.js", - "A raw JSON object to use as options for the Select component (Choices JS).": - "Um objeto JSON bruto para usar como opções para o componente Select (Choices JS).", - "Use exact search": "Usar pesquisa exata", - "Disables search algorithm threshold.": - "Desativa o limite do algoritmo de pesquisa.", - "Theme": "Tema", - "The color theme of this button.": "O tema de cores deste botão.", - "Size": "Tamanho", - "The size of this button": "O tamanho deste botão", - "Block Button": "Botão de bloqueio", - "This control should span the full width of the bounding container.": - "Esse controle deve abranger toda a largura do contêiner delimitador.", - "Left Icon": "Ícone esquerdo", - "This is the full icon class string to show the icon.": - "Esta é a string de classe de ícone completa para mostrar o ícone.", - "Right Icon": "Ícone direito", - "This is the full icon class string to show the icon. Example:": - "Esta é a string de classe de ícone completa para mostrar o ícone. Exemplo:", - "Primary": "Primária", - "Secondary": "Secundária", - "Info": "Informações", - "Success": "Sucesso", - "Danger": "Perigo", - "Warning": "Warning", - "The size of this button.": "O tamanho deste botão.", - "Medium": "Média", - "Extra Small": "Muito pequeno", - "Small": "Pequena", - "Large": "Grande", - "Disable on Form Invalid": "Desativar no formulário inválido", - "This will disable this field if the form is invalid.": - "Isso desativará este campo se o formulário for inválido.", - "Key topics for Sentiment Analysis": - "Tópicos-chave para Análise de Sentimentos", - "Enter topics to use in sentiment Analysis": - "Insira os tópicos a serem usados ​​na Análise de sentimento", - "Kickbox": "Kickbox", - "Enable": "Habilitar", - "Enable Kickbox validation for this email field.": - "Habilite a validação Kickbox para este campo de e-mail.", - "Validate this email using the Kickbox email validation service.": - "Valide este e-mail usando o serviço de validação de e-mail Kickbox.", - "Input Mask Placeholder Char": - "Caractere de espaço reservado para máscara de entrada", - "Enable Manual Mode": "Ativar modo manual", - "Should Manual Mode be enabled for that component or not.": - "O modo manual deve estar habilitado para esse componente ou não.", - "Switch To Manual Mode Label": "Mudar para o rótulo do modo manual", - "The label for the checkbox used to switch to manual mode.": - "O rótulo da caixa de seleção usada para alternar para o modo manual.", - "Disable Clear Icon": "Desativar ícone Limpar", - "Clear Icon allows easily clear components value.": - "Clear Icon permite limpar facilmente o valor dos componentes.", - "Provider": "Fornecedor", - "Which address search service should be used.": - "Qual serviço de pesquisa de endereços deve ser usado.", - "Manual Mode View String": "Cadeia de visualização do modo manual", - "Specify template which should be when quering view string for the component value entered in manual mode. This string is used in table view, CSV export and email rendering. When left blank combined value of all components joined with comma will be used.": - "Especifique o modelo que deve ser ao consultar a string de visualização para o valor do componente inserido no modo manual. Essa string é usada na visualização de tabela, exportação CSV e renderização de e-mail. Quando deixado em branco, o valor combinado de todos os componentes unidos por vírgula será usado.", - "Azure Maps": "Mapas do Azure", - "Google Maps": "Google Maps", - "API Key": "Chave API", - "Use your Google API key here.": "Use sua chave de API do Google aqui.", - "Provider options": "Opções do provedor", - "Delimiter": "Delimitador", - "What is used to separate the tags.": "O que é usado para separar as tags.", - "Max Tags": "Máximo de tags", - "The maximum amount of tags that can be added. 0 for infinity.": - "A quantidade máxima de tags que podem ser adicionadas. 0 para infinito.", - "Store As": "Armazenar como", - "String (CSV)": "Cadeia de caracteres (CSV)", - "Array of Tags": "Matriz de tags", - "Display in Timezone": "Exibir no fuso horário", - "This will display the captured date time in the select timezone.": - "Isso exibirá a data e hora capturada no fuso horário selecionado.", - "of Viewer": "do Visualizador", - "of Submission": "de submissão", - "of Location": "de Localização", - "UTC": "UTC", - "Use Locale Settings": "Usar configurações de localidade", - "Use locale settings to display date and time.": - "Use as configurações de localidade para exibir data e hora.", - "Allow Manual Input": "Permitir entrada manual", - "Check this if you would like to allow the user to manually enter in the date.": - "Marque esta opção se desejar permitir que o usuário insira manualmente a data.", - "Format": "Formato", - "The date format for displaying the datetime value.": - "O formato de data para exibir o valor de data e hora.", - "Shortcut Buttons": "Botões de atalho", - "You can specify few buttons which will be shown above the calendar. Use Label to specify the name of the button and onClick to specify which date/time will be set when user clicks the button. ": - "Você pode especificar alguns botões que serão mostrados acima do calendário. Use Label para especificar o nome do botão e onClick para especificar qual data/hora será definida quando o usuário clicar no botão.", - "onClick": "ao clicar", - "Enable Date Input": "Ativar entrada de data", - "Enables date input for this field.": - "Habilita a entrada de data para este campo.", - "Use Input to add moment.js for minDate": - "Use Input para adicionar moment.js para minDate", - "Enables to use input for moment functions instead of calendar.": - "Permite usar entrada para funções de momento em vez de calendário.", - "Use calendar to set minDate": "Use o calendário para definir minDate", - "Enables to use calendar to set date.": - "Permite usar o calendário para definir a data.", - "Use Input to add moment.js for maxDate": - "Use Input para adicionar moment.js para maxDate", - "Use calendar to set maxDate": "Use o calendário para definir maxDate", - "Disable specific dates or dates by range": - "Desativar datas ou datas específicas por intervalo", - "Add dates that you want to blacklist. For example:": - "Adicione datas que você deseja colocar na lista negra. Por exemplo:", - "Custom Disabled Dates": "Datas de desativação personalizadas", - "date": "encontro", - "The date object.": "O objeto de data.", - "Data Format": "Formato de dados", - "The moment.js format for saving the value of this field.": - "O formato moment.js para salvar o valor deste campo.", - "HTML5 Time Input": "Entrada de hora HTML5", - "Text Input with Mask": "Entrada de texto com máscara", - "Disable weekends": "Desativar fins de semana", - "Disable weekdays": "Desativar dias da semana", - "Check to disable weekends": "Marque para desativar fins de semana", - "Check to disable weekdays": "Marque para desativar os dias da semana", - "Enable Time Input": "Ativar entrada de tempo", - "Enables time input for this field": - "Habilita a entrada de tempo para este campo", - "Hour Step Size": "Tamanho do passo de hora", - "The number of hours to increment/decrement in the time picker.": - "O número de horas para incrementar/diminuir no seletor de tempo.", - "Minute Step Size": "Tamanho do Passo Minuto", - "The number of minutes to increment/decrement in the time picker.": - "O número de minutos para incrementar/diminuir no seletor de tempo.", - "Display time in 12 hour time with AM/PM.": - "Exibe o tempo em 12 horas com AM/PM.", - "12 Hour Time (AM/PM)": "Horário de 12 horas (AM/PM)", - "Default Date": "Data padrão", - "You can use Moment.js functions to set the default value to a specific date. For example:": - "Você pode usar as funções Moment.js para definir o valor padrão para uma data específica. Por exemplo:", - "Flatpickr options": "Opções do Flatpickr", - "HTML Tag": "Tag HTML", - "The tag of this HTML element.": "A tag deste elemento HTML.", - "CSS Class": "Classe CSS", - "Attributes": "Atributos", - "The attributes for this HTML element. Only safe attributes are allowed, such as src, href, and title.": - "Os atributos para este elemento HTML. Apenas atributos seguros são permitidos, como src, href e title.", - "Attribute": "Atributo", - "Refresh On Change": "Atualizar na mudança", - "HTML Element": "Elemento HTML", - "Column Properties": "Propriedades da coluna", - "The width, offset, push, and pull settings for each column.": - "As configurações de largura, deslocamento, empurrar e puxar para cada coluna.", - "Offset": "Desvio", - "Push": "Empurre", - "Pull": "Puxar", - "Auto adjust columns": "Colunas de ajuste automático", - "Will automatically adjust columns based on if nested components are hidden.": - "Ajustará automaticamente as colunas com base se os componentes aninhados estiverem ocultos.", - "Hide Column when Children Hidden": - "Ocultar coluna quando os filhos estiverem ocultos", - "Check this if you would like to hide any column when the children within that column are also hidden": - "Assinale isto se desejar ocultar alguma coluna quando os filhos dessa coluna também estiverem ocultos", - "Legend": "Lenda", - "The legend for this Fieldset.": "A legenda para este Fieldset.", - "Default": "Padrão", - "Collapsible": "Dobrável", - "If checked, this will turn this Panel into a collapsible panel.": - "Se marcado, isso transformará este Painel em um painel dobrável.", - "Number of Rows": "Numero de linhas", - "Enter the number or rows that should be displayed by this table.": - "Insira o número ou as linhas que devem ser exibidas por esta tabela.", - "Number of Columns": "Numero de colunas", - "Enter the number or columns that should be displayed by this table.": - "Insira o número ou colunas que devem ser exibidas por esta tabela.", - "Clone Row Components": "Clonar componentes de linha", - "Check this if you would like to": "Marque isso se você quiser", - "Cell Alignment": "Alinhamento de Células", - "Horizontal alignment for cells of the table.": - "Alinhamento horizontal para células da tabela.", - "Center": "Centro", - "Striped": "Listrado", - "This will stripe the table if checked.": - "Isso irá riscar a tabela se estiver marcado.", - "Bordered": "Delimitada", - "This will border the table if checked.": - "Isso fará a borda da tabela se estiver marcado.", - "Hover": "Flutuar", - "Highlight a row on hover.": "Realce uma linha ao passar o mouse.", - "Condensed": "Condensada", - "Condense the size of the table.": "Condense o tamanho da mesa.", - "Label for Key column": "Rótulo para a coluna Chave", - "Provide a label text for Key column (otherwise Key will be used)": - "Forneça um texto de rótulo para a coluna Chave (caso contrário, a chave será usada)", - "Disable Adding / Removing Rows": "Desativar adição/remoção de linhas", - "Check if you want to hide Add Another button and Remove Row button": - "Verifique se você deseja ocultar o botão Adicionar outro e o botão Remover linha", - "Show key column before value": "Mostrar coluna chave antes do valor", - "Check if you would like to show the Key before the Value column.": - "Verifique se você gostaria de mostrar a Chave antes da coluna Valor.", - "Type of event": "Tipo de evento", - "Specify type of event that this reCAPTCHA would react to": - "Especifique o tipo de evento ao qual este reCAPTCHA reagiria", - "Form Load": "Carregamento de formulário", - "Button Click": "Clique no botão", - "Form": "Forma", - "The form to load within this form component.": - "O formulário a ser carregado nesse componente de formulário.", - "Form Revision": "Revisão do formulário", - "You can lock the nested form to a specific revision by entering the revision number here.": - "Você pode bloquear o formulário aninhado para uma revisão específica inserindo o número da revisão aqui.", - "Use Original Revision while Submissions Viewing": - "Use a revisão original durante a visualização de envios", - "Using this option will make form load the original revision (the one which was used to make a submission) when viewing a submission.": - "Usar esta opção fará com que o formulário carregue a revisão original (a que foi usada para fazer um envio) ao visualizar um envio.", - "Save as reference": "Salvar como referência", - "Using this option will save this field as a reference and link its value to the value of the origin record.": - "O uso desta opção salvará este campo como referência e vinculará seu valor ao valor do registro de origem.", - "Select Fields": "Selecionar campos", - "The properties on the resource to return as part of the options. If left blank, all properties will be returned.": - "As propriedades no recurso a serem retornadas como parte das opções. Se deixado em branco, todas as propriedades serão retornadas.", - "Search Fields": "Campos de pesquisa", - "Filter Query": "Filtrar consulta", - "Use this to provide additional filtering using query parameters.": - "Use isso para fornecer filtragem adicional usando parâmetros de consulta.", - "The filter query for results.": "A consulta de filtro para resultados.", - "Sort Query": "Classificar consulta", - "Use this to provide additional sorting using query parameters": - "Use isso para fornecer classificação adicional usando parâmetros de consulta", - "The sort query for results": "A consulta de classificação para resultados", - "Add Resource": "Adicionar recurso", - "Allows to create a new resource while entering a submission.": - "Permite criar um novo recurso ao inserir um envio.", - "Add Resource Label": "Adicionar rótulo de recurso", - "Set the text of the Add Resource button.": - "Defina o texto do botão Adicionar recurso.", - "Auto Expand": "Expansão automática", - "Save & Preview": "Salvar e visualizar", - "Submission Saved": "Envio salvo.", - "Error while Submission.": "Erro durante o envio.", - "Submission cannot be done.": "O envio não pode ser feito.", - "Error in getting Workflow Process.": - "Erro ao obter o processo de fluxo de trabalho.", - "Form saved": "Formulário salvo.", - "Error while saving Form.": "Erro ao salvar o formulário.", - "Are you sure you wish to delete the form": - "Tem certeza que deseja deletar o formulário", - "Forms": "Formulários", - "Edit": "Editar", - "Do you want to associate form with a workflow ?": - "Você deseja associar o formulário a um fluxo de trabalho?", - "Yes": "sim", - "No": "Não", - "Form Name": "Nome do formulario ", - "Workflow Name": "Nome do fluxo de trabalho", - "Publish this form for Client Users.": - "Publique este formulário para usuários clientes.", - "Comments": "Comentários", - "Back": "Voltar", - "Edit Form": "Editar Formulário", - "Next": "Próxima", - "Are you sure you wish to delete this submission?": - "Tem certeza de que deseja excluir este envio?", - "Back to Form List": "Voltar para a lista de formulários", - "Submit New": "Enviar novo", - "View Submissions": "Ver os envios", - "View/Edit Form": "Ver / Editar Formulário", - "Delete Form": "Apagar Formulário", - "Delete": "Excluir", - "Print As PDF": "Imprimir como PDF", - "Logout": "Sair", - "No tasks found": "Nenhuma tarefa encontrada", - "Please change the selected filters to view tasks": - "Por favor, mude os filtros selecionados para ver as tarefas", - "Clear all filters": "Limpar todos os filtros", - "Created": "Criada", - "Task Variables": "Variáveis de Tarefa", - "Process Variables": "Variáveis de Processo", - "Process Definition Name": "Nome da Definição do Processo", - 'Assignee': "Cessionária", - "Candidate Group": "Grupo de Candidatos", - "Candidate User": "Usuário candidato", - "Priority": "Prioridade", - "Due Date": "Data de vencimento", - "Follow up Date": "Data de Acompanhamento", - "Task name": "Nome da tarefa", - "Remove sorting": "Remover classificação", - "Ascending": "Ascendente", - "Descending": "descendente", - "Add sorting": "Adicionar classificação", - "of the criteria are met.": "dos critérios são atendidos.", - "For Variable, ignore case of": "Para variável, ignore o caso de", - "name": "nome", - "value": "valor", - "No task matching filters found.": - "Nenhum filtro de correspondência de tarefa encontrado.", - "Set follow-up Date": "Definir data de acompanhamento", - "Set Due date": "Definir data de vencimento", - "Add groups": "Adicionar grupos", - "Claim": "Alegar", - "Search By Last Name": "Pesquisar por Sobrenome", - "Search By First Name": "Pesquisar pelo primeiro nome", - "Search By Email": "Pesquisa por e-mail", - "You can add a group by typing a group ID into the input field and afterwards clicking the button with the plus sign.": - "Você pode adicionar um grupo digitando um ID de grupo no campo de entrada e, em seguida, clicando no botão com o sinal de mais.", - "Add a group": "Adicionar um grupo", - "Process Name": "Nome do processo", - "Set FollowUp Date": "Definir data de acompanhamento", - "groups": "grupos", - "Click to Change Assignee": "Clique para alterar o responsável", - "Reset Assignee": "Reiniciar cessionário", - "Update User": "Atualizar usuário", - "Close": "Fechar", - "Remove search": "Remover pesquisa", - "Operator": "Operadora", - "Total number of results": "Número total de resultados", - "Filter Tasks": "Filtrar tarefas", - "ANY": "ALGUMA", - "Task assignee": "Responsável pela tarefa", - - "View Submission": "Ver o envio", - "Showing": "Mostrando", - "results": "resultados", - "Acknowledge": "Reconhecer", - "Select a task in the list.": "Selecione uma tarefa na lista.", - "No Filters Found": "Nenhum filtro encontrado", - "Loading": "Carregando", - "History": "História", - "Diagram": "Diagrama", - "Delete Confirmation": "Confirmação de exclusão", - "All tasks": "Todas as tarefas", - "Manage Groups": "Gerenciar grupos", - "Group ID": "ID do grupo", - "Due": "Devida", - "Follow-up": "Acompanhamento", - "Please fix the errors before submitting again.": - "Corrija os erros antes de enviar novamente.", - "Form-Workflow association saved.": - "Associação formulário-fluxo de trabalho salva.", - - "Submitted On": "Enviado em", - "Modified On": "Modificado em", - "No History Found": "Nenhum histórico encontrado", - "Process Diagram": "Diagrama de Processo", - "Details": "Detalhes", - "Status": "Status", - "Link To Form Submission": "Link para o envio do formulário", - "Last Modified": "Última modificação", - "All": "Tudo", - "View": "Visualizar", - "No dashboard found": "Nenhum painel encontrado", - "to": "para", - "of": "do", - "Total Submissions": "Total de inscrições", - "Operations": "Operações", - "Access Groups": "Grupos de acesso", - "Action": "Açao", - "Add": "Adicionar", - "Upload Form": "Carregar formulário", - "Download Form": "Baixar formulário", - "Upload json form only": "Carregar apenas o formulário json", - "Select atleast one form": "Selecione pelo menos um formulário", - "Select All": "Selecionar tudo", - "Created Date": "Data de criação", - "Modified Date": "Data modificada", - "File Upload Status": "Status de upload de arquivo", - "Forms Completed": "Formulários preenchidos", - "Form Completed": "Formulário preenchido", - "No forms found": "Nenhum formulário encontrado", - "No Process Diagram found": "Nenhum diagrama de processo encontrado", - "Successfully Updated": "Atualizado com sucesso", - "Failed": "Fracassada", - "Press Enter key or click here to search": - "Pressione a tecla Enter ou clique aqui para pesquisar", - "Click to clear": "Clique para limpar", - "Search...": "Procurar...", - "Click here to back": "Clique aqui para voltar", - "Something went wrong. Please try again!":"Algo deu errado. Por favor, tente novamente!", - "No Dashboards Found":"Nenhum painel encontrado", - "Processes":"Processos", - "Please select an existing workflow.":"Selecione um fluxo de trabalho existente.", - "Create New":"Crie um novo", - "Or create new workflow or import a workflow from a local directory.":"Ou crie um novo fluxo de trabalho ou importe um fluxo de trabalho de um diretório local.", - "The operation couldn't be completed. Please try after sometime":"A operação não pôde ser concluída. Por favor, tente depois de algum tempo", - "Select...":"Selecionar...", - "No Drafts Found": "Nenhum rascunho encontrado", - "Draft Id":"ID de rascunho", - "Draft Name":"Nome do rascunho", - "Link To Draft Submission":"Link para envio de rascunho", - "Drafts":"Rascunhos", - "You can't submit this form until it is published":"Você não pode enviar este formulário até que ele seja publicado", - "Form not published":"Formulário não publicado", - "Access Denied" : "Acesso negado", - "By default, the tenant key would be prefixed to form":"Por padrão, a chave do locatário seria prefixada para formar", - "go back":"volte", - - "Submission saved to draft.":"Envio salvo como rascunho.", - "Saved to draft":"Salvo no rascunho", - "Saving...":"Salvando...", - "Error in creating form process mapper":"Erro ao criar mapeador de processo de formulário", - "Select the date":"Selecione a data", - "Diagram Deployed":"Diagrama implantado", - "Deployment Failed":"Falha na implantação", - "Process name(s) must not be empty":"O(s) nome(s) do processo não deve(m) estar vazio(s)", - "URL copied":"URL copiado", - "Click Here to Copy":"Clique aqui para copiar", - "Revert": "Reverter", - "Overview": "Visão geral", - "Design Permission": "Permissão de design", - "All Designers": "Todos os Designers", - "Private(only you)": "Privado(só você)", - "Specific Designer Group": "Grupo específico de designers", - "Submission Permission": "Permissão de envio", - "All Users": "Todos os usuários", - "Specific User Group": "Grupo de usuários específico", - "Applicable for Designer Roled Users only.": "Aplicável apenas para usuários com função de designer.", - "Applicable for Client and Reviewer Roled Users only.": "Aplicável apenas para usuários com função de cliente e revisor.", - "Saved to Submissions/Drafts": "Salvo em Submissões/Rascunhos", - "Unfinished Submissions will be saved to Submissions/Drafts.": "As Submissões não concluídas serão salvas em Submissões/Rascunhos.", - "Changing the form workflow will not affect the existing submissions. It will only update in the newly created submissions. Press Save Changes to continue or cancel the changes.": "Mudar o fluxo de trabalho do formulário não afetará as submissões existentes. Isso só será atualizado nas submissões recém-criadas. Pressione Salvar Alterações para continuar ou cancelar as alterações.", - "Submissions are made against": "As Submissões são feitas contra", - "Submission is made against": "A Submissão é feita contra", - "Changing the form title will not affect the existing submissions. It will only update in the newly created submissions. Press Save Changes to continue or cancel the changes.": "Mudar o título do formulário não afetará as submissões existentes. Isso só será atualizado nas submissões recém-criadas. Pressione Salvar Alterações para continuar ou cancelar as alterações.", - "Submissions": "Submissões", - "Submission Id": "ID da Submissão", - "Submission History": "Histórico da Submissão", - "No Submission History found": "Nenhum Histórico de Submissão Encontrado", - "No submissions Found": "Nenhuma submissão encontrada", - - "Create new filter": "Criar novo filtro", - "Filter Name": "Nome do filtro", - "Enter your text here": "Digite seu texto aqui", - "Criteria": "Critério", - "Add Value": "Adicionar valor", - "Definition Key": "Chave de definição", - "Asignee": "Cessionário", - "Include Assigned Task": "Incluir tarefa atribuída", - "Variable": "Variável", - "Show undefined variables": "Mostrar variáveis indefinidas", - "Name of variable": "Nome da variável", - "Readable name": "nome legível", - "Permission": "Permissão", - "Accessible for all users": "Acessível para todos os usuários", - "Private (Only You)": "Privado (só você)", - "Specific User/ Group": "Usuário/Grupo Específico", - "User": "Do utilizador", - "Group": "Grupo", - "Identifier": "identificador", - "Enter role ID": "Digite o ID da função", - "Create Filter": "Criar filtro", - "Select a task in the List":"Selecione uma tarefa na Lista", - "Select a specific task from the provided list of options. Your selection will determine the task you will be working on or interacting with.":"Selecione uma tarefa específica na lista de opções fornecida. Sua seleção determinará a tarefa na qual você estará trabalhando ou interagindo." - }, - - fr: { - "Bad Request":"Bad Request", - "Select form version":"Sélectionnez la version du formulaire", - "Please remove the special characters...!":"Veuillez supprimer les caractères spéciaux... !", - "No histories found":"Aucun historique trouvé", - "Continue":"Continuez", - "This will create a new version of the form without changing the path name but with new form id.":"Cela créera une nouvelle version du formulaire sans changer le nom du chemin mais avec un nouvel identifiant de formulaire.", - "Save as a new version":"Enregistrer en tant que nouvelle version", - "Save New Version":"Enregistrer la nouvelle version", - "Do you want to save a new version of this form?":"Voulez-vous enregistrer une nouvelle version de ce formulaire ?", - "Do you want to create a duplicate form and associated workflow from existing form ?":"Vous souhaitez créer un formulaire dupliqué et un workflow associé à partir d'un formulaire existant ?", - "New version created":"Nouvelle version créée", - "Create a duplicate form":"Créer un formulaire en double", - "Show more":"Montre plus", - "Modified By":"Modifié par", - "Created On" : "Créé sur", - "Formsflow automatically saves your previous form data. Now you can switch to the previous stage and edit.":"Formsflow enregistre automatiquement vos données de formulaire précédentes. Vous pouvez maintenant passer à l'étape précédente et modifier.", - "Duplicate Form":"Formulaire en double", - "Form History":"Historique du formulaire", - "No file chosen":"Aucun fichier choisi", - "Choose File":"Choisir le fichier", - "Choose any":"Choisissez n'importe quel", - "select form type":"sélectionner le type de formulaire", - "Draft Deleted Successfully":"Brouillon supprimé avec succès", - - "with ID":"avec pièce d'identité", - "Are you sure you wish to delete the draft":"Êtes-vous sûr de vouloir supprimer le brouillon", - "Discard Draft":" Supprimer le brouillon", - "Search by form name": "Rechercher par nom de formulaire", - "Click to search": "Cliquez pour rechercher", - "No submissions found": "Aucune soumission trouvée", - "No submission avaliable in the selected date. Please select another date range": - "Aucune soumission disponible à la date sélectionnée. Veuillez sélectionner une autre plage de dates", - "All groups have access to the dashboard": - "Tous les groupes ont accès au tableau de bord", - "Form unpublishing Failed": "Échec de la dépublication du formulaire", - "Form process failed": "Le processus de formulaire a échoué", - "Form deleted successfully": "Formulaire supprimé avec succèsy", - "Form deletion unsuccessful":"Échec de la suppression du formulaire", - "Loading...": "Chargement...", - - "Save Changes": "Save Changes", - "Are you sure you wish to delete the form ": - "Êtes-vous sûr de vouloir supprimer le formulaire", - "Are you sure you wish to delete the form?": - "Êtes-vous sûr de vouloir supprimer le formulaire?", - - ". Are you sure want to delete ?": ". Voulez-vous vraiment supprimer ?", - "Click here to go back": "Cliquez ici pour revenir en arrière", - "Dashboards": "Tableaux de bord", - "Tasks": "Tâches", - "Error while saving Form": "Erreur lors de l'enregistrement du formulaire", - "Confirmation": "Confirmation", - "Search...": "Recherche...", - "Submitted By": "Proposé par", - "Copy anonymous form URL": "Copier l'URL du formulaire anonyme", - "Form field": "Champ de formulaire", - "Enter Label": "Entrez l'étiquette", - "Select form field": "Sélectionnez le champ du formulaire", - "Add form fields to display in task list": - "Ajouter des champs de formulaire à afficher dans la liste des tâches", - "Version": "Version", - "Submission Status": "État de la soumission", - "No submission status": "Aucun statut de soumission", - "No Public url found": "Aucune URL publique trouvée", - "Show in list": "Afficher dans la liste", - "Select Task Variable": "Sélectionnez la variable de tâche", - "Enter your Label": "Entrez votre étiquette", - "Please select from one of the following workflows.": - "Veuillez sélectionner l'un des workflows suivants.", - "Select Key": "Sélectionnez la clé", - "Create Your Task Variable": "Créez votre variable de tâche", - "No task variable selected": "Aucune variable de tâche sélectionnée", - "Workflow Associate": "Associé au flux de travail", - - "Task variable": "Variable de tâche", - "Enter pathname": "Entrez le nom du chemin", - "saved successfully": "enregistré avec succès", - "Thank you for your response.": "Merci pour votre réponse.", - "Form not available": "Formulaire non disponible", - "Ok": "D'accord", - "No submissions available for the selected date range": - "Aucune soumission disponible pour la plage de dates sélectionnée", - "Save Form": "Enregistrer le formulaire", - "Confirm": "Confirmer", - "Cancel": "Annuler", - "Wizard": "Magier", - "Please fix the errors before submitting again.": - "Veuillez corriger les erreurs avant de soumettre à nouveau.", - "Error in JSON file structure": "Erreur dans la structure du fichier JSON", - "Downloaded Successfully": "Téléchargé avec succès", - "Select Dashboard": "Sélectionnez Tableau de bord", - "Metrics": "Métrique", - "Insights": "Connaissances", - "Dashboard": "Tableau de bord", - "Task": "Tâches", - - "Forms": "Formes", - "Admin": "Administrateur", - "Powered by ": "Alimenté par ", - "Name": "Nom", - "Anonymous Form ": "Formulaire anonyme ", - "Title": "Titre", - "Display as": "Afficher comme", - "Type": "Taper", - "Path": "Chemin", - "example": "Exemple", - "Make this form public ?": "Rendre ce formulaire public ?", - "Design Form": "Formulaire de conception", - "Associate this form with a workflow?": - "Associer ce formulaire à un workflow ?", - "Preview and Confirm": "Aperçu et confirmation", - "Form-Workflow association failed.": - "L'association formulaire-workflow a échoué.", - "Error in getting Workflow Process.": - "Erreur lors de l'obtention du processus de workflow.", - "Form saved": "Formulaire enregistré.", - "Error while saving Form.": - "Erreur lors de l'enregistrement du formulaire.", - "Create Form": "Créer un formulaire", - "Enter the form machine name": "Entrez le nom de la machine de formulaire", - "Text Field": "champ de texte", - "Text Area": "zone de texte", - "Number": "numéro", - "Password": "le mot de passe", - "Select Boxes": "champ de sélection", - "Select": "choisir", - "Radio": "radio", - "Button": "bouton", - "Text Area With Analytics": "zone de texte avec analyse", - "Data": "Les données", - "Display": "exposition", - "Submit": "Envoi en cours", - "Email": "E-mail", - "Url": "URL", - "Phone Number": "numéro de téléphone", - "Tags": "Étiquette", - "Address": "adresse", - "Date / Time": "Heure de réunion", - "Day": "journée", - "Time": "temps", - "Currency": "devise", - "Survey": "enquêtes", - "Signature": "signe", - "HTML": "HTML", - "Content": "contenu", - "on": "au", - "Columns": "Lister", - "Field Set": "jeu de champs", - "Panel": "panneau de commande", - "Table": "Masse", - "Tabs": "Étiquette", - "Well": "bon", - "Hidden": "caché", - "Container": "récipient", - "Data Map": "carte de données", - "Data Grid": "grille de données", - "Edit Grid": "Modifier le réseau", - "Tree": "Bois", - "reCAPTCHA": "code de confirmation", - "Resource": "Ressource", - "File": "document", - "Nested": "investi", - "Custom": "personnalisé", - "Basic": "de base", - "Advanced": "Avancée", - "Layout": "conception", - "Premium": "Haute qualité", - "Drag and Drop a form component": - "Glisser-déposer des composants de formulaire", - "Preview": "Aperçu", - "The minimum length requirement this field must meet.": - "Exigences de longueur minimale que ce champ doit respecter", - "Label": "Étiquette", - "The label for this field that will appear next to it.": - "L'étiquette qui apparaîtra à côté de ce champ.", - "Label Position": "position de l'étiquette", - "Position for the label for this field.": - "La position de l'étiquette pour ce champ.", - "Placeholder": "Remplacer", - "The placeholder text that will appear when this field is empty.": - "Placez le texte à afficher lorsque ce champ est vide.", - "Description": "décris", - "The description is text that will appear below the input field.": - "La description est le texte qui apparaîtra sous le champ de saisie.", - "Tooltip": "indice", - "Adds a tooltip to the side of this field.": - "Ajoutez une info-bulle sur le côté de ce champ.", - "To add a tooltip to this field, enter text here.": - "Pour ajouter un indice à ce champ, saisissez du texte ici.", - "Description for this field.": "Description de ce champ.", - "Prefix": "préfixe", - "Suffix": "extension", - "Widget": "petits outils", - "The widget is the display UI used to input the value of the field.": - "Le widget est une interface utilisateur sur l'écran pour entrer des valeurs de champ.", - "Right (Left-aligned)": "droite (aligné à gauche)", - "Left (Left-aligned)": "Gauche (aligné à gauche)", - "Left (Right-aligned)": "Gauche (aligné à droite)", - "Right (Right-aligned)": "droite (aligné à droite)", - "Bottom": "bas", - "Component": "Composants", - "Top": "optimal", - "Label Width": "largeur de l'étiquette", - "The width of label on line in percentages.": - "La largeur de l'étiquette en ligne (en pourcentage).", - "Label Margin": "Champ de rubrique", - "The width of label margin on line in percentages.": - "Largeur de ligne de l'étiquette de ligne, exprimée en pourcentage.", - "Rows": "Éd", - "Input Field": "champ de saisie", - "Calendar Picker": "Outil de sélection de calendrier", - "Select a widget": "Sélectionnez le widget", - "Input Mask": "masque de saisie", - "Widget Settings": "Paramètres des gadgets", - "Allow Multiple Masks": "Autoriser quelques masques", - "Input Masks": "masque de saisie", - "Mask": "masque", - "Add Another": "plus un autre", - "Custom CSS Class": "classe CSS personnalisée", - "Custom CSS class to add to this component.": - "Classe CSS personnalisée à ajouter à ce composant.", - "Tab Index": "Index des marqueurs", - "Sets the tabindex attribute of this component to override the tab order of the form. See the MDN documentation on tabindex for more information.": - "Définissez la propriété tabindex de ce composant pour annuler l'ordre des sections du formulaire. Voir la documentation tabindex MDN pour plus d'informations.", - "Autocomplete": "Saisie automatique", - "Indicates whether input elements can by default have their values automatically completed by the browser. See the MDN documentation on autocomplete for more information.": - "ndique si l'élément d'entrée peut compléter automatiquement sa valeur à partir du navigateur par défaut. Pour plus d'informations, consultez la documentation MDN de l'unité semi-automatique.", - "A hidden field is still a part of the form, but is hidden from view.": - "Les champs masqués font toujours partie du formulaire, mais sont masqués.", - "Hide Label": "Section cachée", - "Show Word Counter": "Afficher le compteur de mots", - "Show a live count of the number of words.": - "Affiche le nombre de mots en temps réel.", - "Hide the label (title, if no label) of this component. This allows you to show the label in the form builder, but not when it is rendered.": - "Cachez l'étiquette (titre si pas d'étiquette) pour ce composant. Cela vous permet d'afficher l'étiquette dans le concepteur de formulaire, mais pas lorsqu'elle est affichée", - "Show Character Counter": "Afficher le compteur de caractères", - "Show a live count of the number of characters.": - "Affiche le nombre de caractères en temps réel.", - "Hide Input": "entrée cachée", - "Hide the input in the browser. This does not encrypt on the server. Do not use for passwords.": - "Masquer l'entrée du navigateur. Ce n'est pas crypté sur le serveur. Ne pas utiliser pour les mots de passe.", - "Initial Focus": "mise au point initial", - "Make this field the initially focused element on this form.": - "Faites de ce champ l'élément ciblé initialement dans ce formulaire.", - "Allow Spellcheck": "Activer la vérification orthographique", - "Disabled": "Désactivée", - "Disable the form input.": "Désactiver la saisie de formulaire.", - "Table View": "Vue de tableau", - "Shows this value within the table view of the submissions.": - "Affichez cette valeur dans la vue de tableau soumise.", - "Modal Edit": "Édition modale", - "Opens up a modal to edit the value of this component.": - "Ouvre un programme modal pour modifier la valeur de ce composant.", - "Multiple Values": "ensemble de valeurs", - "Allows multiple values to be entered for this field.": - "Plusieurs valeurs sont autorisées pour ce champ.", - "Default Value": "Défaut", - "The will be the value for this field, before user interaction. Having a default value will override the placeholder text.": - "sera la valeur de ce champ avant d'interagir avec l'utilisateur. Avoir une valeur par défaut remplacera le texte de remplacement.", - "Persistent": "permanent", - "A persistent field will be stored in database when the form is submitted.": - "Les champs permanents seront stockés dans la base de données lors de la soumission du formulaire.", - "None": "Pas tout le monde", - "Server": "serveur", - "Client": "client", - "Input Format": "format d'entrée", - "Force the output of this field to be sanitized in a specific format.": - "Force la sortie de ce champ à être désinfectée dans un certain format.", - "Plain": "dégager", - "Type to search": "entrer une recherche", - "Raw (Insecure)": "cru (dangereux)", - "Protected": "protégé", - "A protected field will not be returned when queried via API.": - "Les champs protégés ne sont pas retournés sur demande via l'API.", - "Database Index": "indice de base de données", - "Set this field as an index within the database. Increases performance for submission queries.": - "Définissez ce champ comme un index dans la base de données. Améliorer l'efficacité des requêtes envoyées.", - "Text Case": "cas de texte", - "When data is entered, you can change the case of the value.": - "Lorsque vous saisissez des données, vous pouvez modifier le registre de valeurs maître.", - "Mixed (Allow upper and lower case)": "mixte (cas autorisés)", - "Uppercase": "Capitale", - "Lowercase": "minuscules", - "Encrypted (Enterprise Only)": "Chiffrement (Entreprise uniquement)", - "Encrypt this field on the server. This is two way encryption which is not suitable for passwords.": - "Ce champ est chiffré sur le serveur. Il s'agit d'un cryptage bidirectionnel, qui ne convient pas aux mots de passe.", - "Redraw On": "redessiner", - "Redraw this component if another component changes. This is useful if interpolating parts of the component like the label.": - "Si un autre composant change, redessinez ce composant. Ceci est utile lors de l'insertion de parties de composants telles que des étiquettes.", - "Any Change": "Tout changement", - "Clear Value When Hidden": "Effacer la valeur lorsqu'elle est masquée", - "When a field is hidden, clear the value.": - "Lorsque le champ est masqué, effacez la valeur.", - "The following variables are available in all scripts.": - "Les variables suivantes sont disponibles dans tous les scripts.", - "Custom Default Value": "personnalisée par défaut", - "form": "former", - "The complete form JSON object": "Objet JSON complet", - "submission": "Envoi en cours", - "The complete submission object.": "L'objet complet à réaliser.", - "data": "Les données", - "The complete submission data object.": - "L'objet complet avec les données de soumission.", - "row": "Éd", - 'Contextual "row" data, used within DataGrid, EditGrid, and Container components': - 'Données contextuelles "lignes" utilisées dans les composants DataGrid, EditGrid et Container', - "component": "Composants", - "The current component JSON": "Composant JSON actuel", - "instance": "Exemple", - "The current component instance.": "L'instance actuelle du composant.", - "The current value of the component.": "La valeur actuelle du composant.", - "moment": "moment", - "The moment.js library for date manipulation.": - "Bibliothèque moment.js pour manipuler les dates.", - "utils": "utilitaire", - "util": "utilitaire", - 'An alias for "utils".': 'Surnom pour "utils".', - "JavaScript": "Javascript", - "Enter custom javascript code.": "Entrez un code JavaScript personnalisé.", - "Example:": "Exemple:", - "JSONLogic": "Logique JSON", - "Execute custom logic using ": - "Exécuter une logique personnalisée à l'aide de", - 'support is provided using an "_" before each operation, such as {"_sum": {var: "data.a"}}': - 'Utilisez "_" avant chaque opération pour fournir un support, par ex. {"_sum": {var : "data.a"}}', - "Full": "complet", - "Calculated Value": "Calculé", - "token": "jeton", - "The decoded JWT token for the authenticated user.": - "La balise JWT décodée de l'utilisateur authentifié.", - "Calculate Value on server": "Calculer la valeur du serveur", - "Checking this will run the calculation on the server. This is useful if you wish to override the values submitted with the calculations performed on the server.": - "Cochez cette case pour démarrer le calcul du serveur. Ceci est utile si vous souhaitez remplacer la valeur soumise par un calcul effectué sur le serveur.", - "Allow Manual Override of Calculated Value": - "Autoriser l'annulation manuelle des valeurs calculées", - "When checked, this will allow the user to manually override the calculated value.": - "Lorsqu'elle est cochée, cela permettra à l'utilisateur d'annuler manuellement la valeur calculée.", - "Save": "sauver", - "Remove": "suppression", - "Validate On": "L'authentification est activée", - "Determines when this component should trigger front-end validation.": - "Détermine quand ce composant doit déclencher une vérification d'interface.", - "Change": "Changer", - "Blur": "Pas clair", - "Required": "obligatoire", - "A required field must be filled in before the form can be submitted.": - "Les champs obligatoires doivent être remplis avant que le formulaire puisse être envoyé.", - "Unique": "Unique", - "Makes sure the data submitted for this field is unique, and has not been submitted before.": - "Assurez-vous que les données soumises pour ce champ sont uniques et n'ont pas été soumises auparavant.", - "Minimum Length": "Longueur minimale", - "The maximum length requirement this field must meet.": - "L'exigence de longueur maximale que ce champ doit respecter.", - "Maximum Length": "Longueur maximale", - "Minimum Word Length": "Longueur minimale des mots", - "The minimum amount of words that can be added to this field.": - "Le nombre minimum de mots pouvant être ajoutés à ce champ.", - "Maximum Word Length": "longueur maximale des mots", - "The maximum amount of words that can be added to this field.": - "Le nombre maximum de mots pouvant être ajoutés à ce champ.", - "Regular Expression Pattern": "modèle d'expression régulière", - "The regular expression pattern test that the field value must pass before the form can be submitted.": - "Testez un modèle d'expression régulière que les valeurs de champ doivent passer avant que le formulaire ne soit soumis.", - "Error Label": "mauvaise étiquette", - "The label for this field when an error occurs.": - "Libellé de ce champ lorsque l'erreur s'est produite.", - "Custom Error Message": "message d'erreur personnalisé", - "Error message displayed if any error occurred.": - "Si des erreurs se produisent, un message d'erreur s'affiche.", - "Custom Validation": "validation personnalisée", - "input": "Entrer", - "The value that was input into this component": - "Entrez une valeur pour ce composant", - "Enter custom validation code.": - "Entrez un code de vérification personnalisé.", - "You must assign the valid variable as either true or an error message if validation fails.": - "Entrez un code de vérification personnalisé.", - "Secret Validation": "chèque secret", - "Check this if you wish to perform the validation ONLY on the server side. This keeps your validation logic private and secret.": - "Cochez cette case si vous souhaitez effectuer une validation serveur uniquement. Cela permet de garder votre logique de validation confidentielle et confidentielle.", - "JSONLogic Validation": "Vérification logique JSON", - "Execute custom logic using": - "Exécuter une logique personnalisée à l'aide de", - "Help": "aider", - "Validation": "Chèque", - "API": "API", - "Property Name": "nom de la propriété", - "The name of this field in the API endpoint.": - "Le nom de ce champ au point de terminaison de l'API.", - "Field Tags": "étiquette de champ", - "Tag the field for use in custom logic.": - "Cochez les champs à utiliser dans la logique personnalisée.", - "Custom Properties": "propriétés personnalisées", - "This allows you to configure any custom properties for this component.": - "Cela vous permet de configurer toutes les propriétés personnalisées pour ce composant.", - "Key": "clé", - "Value": "valeur", - "Conditional": "Conditionnellement", - "Simple": "juste", - "This component should Display:": "Le composant doit afficher :", - "True": "réel", - "False": "Tort", - "When the form component:": "Lorsque le composant de formulaire :", - "Submit (submit)": "nous faire parvenir", - "Has the value:": "Il a valeur :", - "Advanced Conditions": "Conditions étendues", - "Advanced Logic": "Logique avancée", - "Advanced Logic Configured": "Configuration logique avancée", - "Logic": "logique", - "Add Logic": "ajouter une logique", - "Trigger": "gâchette", - "JSON Logic": "Logique JSON", - '"row", "data", and "component" variables are available. Return "result".': - 'Des variables pour la ligne, les données et le composant sont disponibles. Renvoie le "résultat".', - "Actions": "action", - "Action Name": "Nom de l'action", - "Property": "Propriété", - "Schema Defenition": "définition du régime", - '"row", "data", "component", and "result" variables are available. Return the schema.': - "Des variables pour l'ordre, les données, le composant et le résultat sont disponibles. Régime de retour.", - "Merge Component Schema": "Combiner l'architecture des composants", - "Custom Action": "action personnalisée", - "You must assign the show variable a boolean result.": - "Vous devez affecter un résultat booléen à la variable show.", - "Note: Advanced Conditional logic will override the results of the Simple Conditional logic.": - "Remarque : La logique conditionnelle avancée remplacera le résultat de la logique conditionnelle simple.", - "Example": "Exemple", - '"row", "data", "component" and "_" variables are available. Return the result to be passed to the action if truthy.': - "Les variables 'ligne',' données',' composante 'et' _ sont disponibles. Si c'est le cas, renvoyez le résultat à l'opération.", - "Add Action": "Ajouter une action", - "Save Logic": "garder la logique", - "Logic Name": "nom logique", - "Event": "un évènement", - "The event that will trigger this logic. You can trigger events externally or via a button.": - "L'événement qui déclenchera cette logique. Vous pouvez déclencher des événements en externe ou via des boutons.", - "Save Action": "enregistrer l'opération", - "HTML Attributes": "Attributs HTML", - "Attribute Name": "nom de la propriété", - "Attribute Value": "valeur d'attribut", - "Add Attribute": "ajouter des propriétés", - "The settings inside apply only to the PDF forms.": - "Les paramètres à l'intérieur s'appliquent uniquement aux formulaires PDF.", - "PDF Overlay": "Superposition PDF", - "Style": "style", - "Custom styles that should be applied to this component when rendered in PDF.": - "Styles personnalisés à appliquer à ce composant lors de l'affichage au format PDF.", - "Page": "Page", - "The PDF page to place this component.": - "La page PDF où ce composant est placé.", - "Left": "rester", - "The left margin within a page to place this component.": - "La marge gauche de la page où ce composant est placé.", - "The top margin within a page to place this component.": - "Le champ supérieur de la page où ce composant est placé.", - "Width": "largeur", - "The width of the component (in pixels).": - "La largeur du composant en pixels.", - "Height": "Haut", - "The height of the component (in pixels).": - "La hauteur du composant en pixels.", - "Use Thousands Separator": "Utiliser un séparateur de milliers", - "Separate thousands by local delimiter.": - "Divisez les milliers par le séparateur local.", - "Decimal Places": "Caractères décimaux", - "The maximum number of decimal places.": "Nombre maximal de décimales.", - "Require Decimal": "besoin d'un point décimal", - "Always show decimals, even if trailing zeros.": - "Affichez toujours les décimales, même avec des zéros à la fin.", - "Minimum Value": "le minimum", - "The minimum value this field must have before the form can be submitted.": - "La valeur minimale que ce champ doit avoir avant de soumettre le formulaire.", - "Maximum Value": "valeur maximum", - "The maximum value this field can have before the form can be submitted.": - "La valeur maximale que ce champ peut avoir avant de soumettre le formulaire.", - "Editor": "montage", - "Select the type of WYSIWYG editor to use for this text area.": - "Sélectionnez le type d'éditeur WYSIWYG à utiliser pour cette zone de texte.", - "ACE": "Maître", - "Save As": "Enregistrer sous", - "This setting determines how the value should be entered and stored in the database.": - "Ce paramètre détermine comment la valeur doit être entrée et stockée dans la base de données.", - "String": "chaîne de caractères", - "JSON": "JSON", - "Input Type": "type d'entrée", - "This is the input type used for this checkbox.": - "Il s'agit du type d'entrée utilisé pour cette case à cocher.", - "Shortcut": "raccourci", - "Shortcut for this component.": "Raccourci pour ce composant.", - "Password fields are automatically encrypted using 1-way salted bcrypt hashes. These hashes are also protected and not returned in the API.": - "'Les champs de mot de passe sont chiffrés automatiquement à l'aide d'un hachage bcrypt salé unidirectionnel. Ces hachages sont également protégés contre le retour à l'API.", - "Options Label Position": "position sur l'étiquette de l'option", - "Position for the label for options for this field.": - "L'emplacement de l'étiquette d'option pour ce champ.", - "Right": "à droite", - "Inline Layout": "mise en page intégrée", - "Displays the checkboxes/radios horizontally.": - "Afficher les cases radio / radio horizontalement.", - "Allow only available values": - "Seules les valeurs disponibles sont autorisées", - "Minimum checked number": "Nombre minimal d'inspections", - "Minimum checkboxes required before form can be submitted.": - "Un minimum de cases à cocher est requis avant de soumettre le formulaire.", - "Maximum checked number": "Nombre maximal d'inspections", - "Maximum checkboxes possible before form can be submitted.": - "La plus grande case à cocher possible avant de soumettre le formulaire.", - "Minimum checked error message": - "Message d'erreur de vérification minimale", - "Error message displayed if minimum number of items not checked.": - "Si le nombre minimum d'éléments n'est pas coché, un message d'erreur s'affiche.", - "Maximum checked error message": - "message d'erreur lors de la vérification de la valeur maximale", - "Error message displayed if maximum number of items checked.": - "Si le nombre maximum d'éléments est coché, un message d'erreur s'affichera.", - "ChoicesJS": "sélectionnez JS", - "HTML 5": "HTML 5", - "Unique Options": "choix unique", - "Display only unique dropdown options.": - "Seules les options déroulantes uniques sont affichées.", - "Data Source Type": "type de source de données", - "The source to use for the select data. Values lets you provide your own values and labels. JSON lets you provide raw JSON data. URL lets you provide a URL to retrieve the JSON data from.": - "La source utilisée pour sélectionner les données. La valeur vous permet de fournir votre propre valeur et étiquette. JSON vous permet de fournir des données JSON brutes. URL vous permet de fournir une URL pour récupérer les données JSON.", - "Values": "valeurs", - "Raw JSON": "JSON brut", - "IndexedDB": "base de données d'index", - "Database name": "Base de données de noms", - "The name of the indexeddb database.": - "Le nom de la base de données est indexeddb.", - "Storage Type": "type de stockage", - "The type to store the data. If you select something other than autotype, it will force it to that type.": - "Le type de données stockées. Si vous choisissez autre chose que la saisie automatique, cela l'obligera à utiliser ce type.", - "Autotype": "copie", - "Boolean": "Valeur booléenne", - "Object": "But", - "ID Path": "Identifier le chemin", - "Path to the select option id.": "Sélectionnez le chemin de l'ID d'option.", - "Table name": "Nom de la table", - "The name of table in the indexeddb database.": - "Le nom de la table dans la base de données indexeddb.", - "Row Filter": "filtre en ligne", - "Filter table items that match the object.": - "Filtrez les enregistrements qui correspondent à un objet.", - "Item Template": "modèle d'article", - "The HTML template for the result data items.": - "Modèle HTML pour l'élément de données résultant.", - "Enable Static Search ": "Activer la recherche statique", - "When checked, the select dropdown will allow for searching within the static list of items provided.": - "Lorsqu'il est coché, le menu déroulant permet de rechercher dans la liste des éléments statiques fournis.", - "Search Threshold": "seuil de recherche", - "At what point does the match algorithm give up. A threshold of 0.0 requires a perfect match, a threshold of 1.0 would match anything.": - "Lorsque l'algorithme de correspondance échoue. Un seuil de 0,0 nécessite une correspondance parfaite, un seuil de 1,0 répond à tout.", - "Read Only Value": "valeur en lecture seule", - "Check this if you would like to show just the value when in Read Only mode.": - "Cochez cette case si vous souhaitez afficher la valeur en mode lecture seule.", - "Choices.js options": "Options de Choices.js", - "A raw JSON object to use as options for the Select component (Choices JS).": - "Objet JSON brut utilisé comme options de sélection de composants (Choices JS).", - "Use exact search": "Utiliser une recherche précise", - "Disables search algorithm threshold.": - "Désactivez les seuils de l'algorithme de recherche.", - "Theme": "sujet", - "The color theme of this button.": "Thème de couleur pour ce bouton.", - "The size of this button": "la taille de ce bouton", - "Block Button": "Bouton de verrouillage", - "This control should span the full width of the bounding container.": - "Ce contrôle doit couvrir toute la largeur du conteneur de contention.", - "Left Icon": "icône de gauche", - "This is the full icon class string to show the icon.": - "l s'agit de la chaîne complète de la classe d'icônes pour afficher l'icône. Exemple:", - "Right Icon": "icône de droite", - "This is the full icon class string to show the icon. Example:": - "Il s'agit de la chaîne complète de la classe d'icônes pour afficher l'icône. Exemple:", - "Primary": "de base", - "Secondary": "lycée", - "Info": "information", - "Success": "Bonne chance", - "Danger": "Danger", - "Warning": "prévenir", - "The size of this button.": "La taille de ce bouton", - "Medium": "modérer", - "Extra Small": "très peu", - "Small": "petit", - "Large": "grand", - "Disable on Form Invalid": - "Le formulaire de désactivation ne fonctionne pas", - "This will disable this field if the form is invalid.": - "Cela désactivera ce champ si le formulaire n'est pas valide.", - "Key topics for Sentiment Analysis": "Thèmes clés de l'analyse de l'humeur", - "Enter topics to use in sentiment Analysis": - "Entrez les sujets à utiliser dans l'analyse de l'humeur", - "Kickbox": "Taekwondo", - "Enable": "Activation", - "Enable Kickbox validation for this email field.": - "Activez la vérification de Kickbox pour ce champ d'e-mail.", - "Validate this email using the Kickbox email validation service.": - "Confirmez cet e-mail avec le service de vérification des e-mails Kickbox.", - "Input Mask Placeholder Char": - "symbole de remplacement du masque de saisie", - "Enable Manual Mode": "Activer le mode manuel", - "Should Manual Mode be enabled for that component or not.": - "Indique si le mode manuel doit être activé pour ce composant.", - "Switch To Manual Mode Label": "Passer à l'onglet du mode manuel", - "The label for the checkbox used to switch to manual mode.": - "Cochez la case pour passer en mode manuel. Pour le mode manuel", - "Disable Clear Icon": - "Désactiver l'icône d'effacement du mode manuel pour le mode manuel", - "Clear Icon allows easily clear components value.": - "L'icône d'effacement permet d'effacer facilement la valeur du composant.", - "Provider": "fournisseur", - "Which address search service should be used.": - "Quel service de recherche d'adresse doit être utilisé.", - "Manual Mode View String": "Afficher les chaînes en mode manuel", - "Specify template which should be when quering view string for the component value entered in manual mode. This string is used in table view, CSV export and email rendering. When left blank combined value of all components joined with comma will be used.": - "Spécifie le modèle à utiliser lors de l'interrogation des chaînes de vue pour les valeurs de composant saisies en mode manuel. Cette chaîne est utilisée pour l'affichage du tableau, l'exportation CSV et l'affichage des e-mails. Lorsqu'il est laissé vide, la valeur combinée de tous les composants liés à la virgule sera utilisée.", - "Azure Maps": "Carte azur", - "Google Maps": "Google Map", - "API Key": "Clé API", - "Use your Google API key here.": "Utilisez votre clé API Google ici.", - "Provider options": "choix du fournisseur", - "Delimiter": "séparateur", - "What is used to separate the tags.": - "Ce qui est utilisé pour séparer les étiquettes.", - "Max Tags": "max. étiquette", - "The maximum amount of tags that can be added. 0 for infinity.": - "Le nombre maximum de balises pouvant être ajoutées. 0 signifie infini.", - "Store As": "Enregistrer sous", - "String (CSV)": "chaîne (CSV)", - "Array of Tags": "un ensemble d'étiquettes", - "Display in Timezone": "affichage du fuseau horaire", - "This will display the captured date time in the select timezone.": - "Cela affichera la date et l'heure capturées dans le fuseau horaire sélectionné.", - "of Viewer": "Les spectateurs", - "of Submission": "déposé", - "of Location": "Lieu", - "UTC": "UTC", - "Use Locale Settings": "Utiliser un paramètre régional", - "Use locale settings to display date and time.": - "Afficher la date et l'heure à l'aide des paramètres locaux.", - "Allow Manual Input": "Autoriser la saisie manuelle", - "Check this if you would like to allow the user to manually enter in the date.": - "Cochez cette case si vous souhaitez autoriser les utilisateurs à entrer des dates manuellement.", - "Format": "Mise en page", - "The date format for displaying the datetime value.": - "Format de date utilisé pour afficher les valeurs de date et d'heure.", - "Shortcut Buttons": "bouton de raccourci", - "You can specify few buttons which will be shown above the calendar. Use Label to specify the name of the button and onClick to specify which date/time will be set when user clicks the button. ": - "Vous pouvez spécifier plusieurs boutons qui seront affichés au-dessus du calendrier. Utilisez Label pour spécifier le nom du bouton et onClick pour spécifier la date/l'heure qui sera définie lorsque l'utilisateur cliquera sur le bouton.", - "onClick": "Cliquez sur", - "Enable Date Input": "Activer la saisie de date", - "Enables date input for this field.": - "Activer la saisie de date pour ce champ.", - "Use Input to add moment.js for minDate": - "Ajoutez moment.js à minDate au fur et à mesure que vous tapez", - "Enables to use input for moment functions instead of calendar.": - "Permet d'utiliser l'entrée pour les fonctions temporelles au lieu des calendriers.", - "Use calendar to set minDate": "Définir minDate à l'aide d'un calendrier", - "Enables to use calendar to set date.": - "Vous permet d'utiliser un calendrier pour définir des dates", - "Use Input to add moment.js for maxDate": - "Ajouter moment.js pour maxDate avec entrée", - "Use calendar to set maxDate": "Définir maxDate avec le calendrier", - "Disable specific dates or dates by range": - "Désactiver des dates spécifiques ou des dates par plage", - "Add dates that you want to blacklist. For example:": - "Ajoutez des dates à mettre sur liste noire. Par example:", - "Custom Disabled Dates": "date de désactivation personnalisée", - "date": "Date", - "The date object.": "objet pour la date.", - "Data Format": "Format de données", - "The moment.js format for saving the value of this field.": - "Le format moment.js utilisé pour conserver la valeur de ce champ.", - "HTML5 Time Input": "Saisir l'heure en HTML5", - "Text Input with Mask": "Saisie de texte masqué", - "Disable weekends": "Désactiver les week-ends", - "Disable weekdays": "Désactiver les jours de la semaine", - "Check to disable weekends": "Cochez pour désactiver le week-end", - "Check to disable weekdays": - "Cochez pour désactiver les jours de la semaine", - "Enable Time Input": "Активирайте въвеждането на време", - "Enables time input for this field": - "Activer la saisie de temps pour ce champ", - "Hour Step Size": "Pas horaire", - "The number of hours to increment/decrement in the time picker.": - "Augmenter / diminuer les heures dans l'outil de sélection de temps.", - "Minute Step Size": "petit pas", - "The number of minutes to increment/decrement in the time picker.": - "Le nombre de minutes à augmenter/diminuer dans l'outil de sélection de temps.", - "Display time in 12 hour time with AM/PM.": - "Affiche l'heure en AM/PM sur 12 heures.", - "12 Hour Time (AM/PM)": "Horloge de 12 heures (AM / PM)", - "Default Date": "date par défaut", - "You can use Moment.js functions to set the default value to a specific date. For example:": - "Vous pouvez utiliser les fonctions Moment.js pour définir des valeurs par défaut pour des dates spécifiques. Par example:", - "Flatpickr options": "Paramètres de Flat Pickr", - "HTML Tag": "Étiquette HTML", - "The tag of this HTML element.": "La balise de cet élément HTML.", - "CSS Class": "Classe CSS", - "Attributes": "Les attributs", - "The attributes for this HTML element. Only safe attributes are allowed, such as src, href, and title.": - "Attributs de cet élément HTML. Seuls les attributs sécurisés tels que src, href et title sont autorisés.", - "Attribute": "Attribut", - "Refresh On Change": "rafraîchir lors du changement", - "HTML Element": "élément HTML", - "Column Properties": "propriétés de la colonne", - "The width, offset, push, and pull settings for each column.": - "Paramètres de largeur, de décalage, de poussée et de glissement pour chaque colonne.", - "Offset": "déplacement", - "Push": "j'appuie", - "Pull": "tirer", - "Auto adjust columns": "Colonnes automatisées", - "Will automatically adjust columns based on if nested components are hidden.": - "La colonne sera automatiquement ajustée selon que le composant inséré est masqué ou non.", - "Hide Column when Children Hidden": - "Masquer les colonnes lorsque les enfants sont masqués", - "Check this if you would like to hide any column when the children within that column are also hidden": - "Cochez cette case si vous souhaitez masquer une colonne lorsque les enfants de cette colonne sont également masqués", - "Legend": "Légende", - "The legend for this Fieldset.": "La légende de cet ensemble de champs.", - "Default": "défaut", - "Collapsible": "pliant", - "If checked, this will turn this Panel into a collapsible panel.": - "Si coché, cela transformera ce panneau en un panneau pliable.", - "Number of Rows": "Lignes", - "Enter the number or rows that should be displayed by this table.": - "Saisissez le nombre ou le nombre de lignes que ce tableau doit afficher.", - "Number of Columns": "le nombre de colonnes", - "Enter the number or columns that should be displayed by this table.": - "Entrez les nombres ou les colonnes que ce tableau doit afficher.", - "Clone Row Components": "Commander le composant de clonage", - "Check this if you would like to": "Vérifiez ceci si vous le souhaitez", - "Cell Alignment": "alignement des cellules", - "Horizontal alignment for cells of the table.": - "Alignement horizontal des cellules du tableau. ensemble", - "Center": "centre", - "Striped": "paradis", - "This will stripe the table if checked.": - "Si cette case est cochée, cela décrira le tableau.", - "Bordered": "en bordure", - "This will border the table if checked.": - "Si coché, cela activera les limites de la table.", - "Hover": "errant", - "Highlight a row on hover.": - "Mettez une ligne en surbrillance lorsque vous maintenez le curseur.", - "Condensed": "concentré", - "Condense the size of the table.": "La taille de la masse comprimée.", - "Label for Key column": "étiquette de la colonne clé", - "Provide a label text for Key column (otherwise Key will be used)": - "Fournissez le texte de l'étiquette pour la colonne Clé (sinon 'Clé' sera utilisé)", - "Disable Adding / Removing Rows": - "Désactiver l'ajout/la suppression de lignes", - "Check if you want to hide Add Another button and Remove Row button": - "Assurez-vous que vous souhaitez masquer l'ajout d'un autre bouton et la suppression des boutons de ligne", - "Show key column before value": "Afficher la colonne clé avant la valeur", - "Check if you would like to show the Key before the Value column.": - "Indiquez si vous souhaitez afficher la clé avant la colonne Valeur.", - "Type of event": "type d'activité", - "Specify type of event that this reCAPTCHA would react to": - "Spécifie le type d'événements auxquels ce reCAPTCHA répondra", - "Form Load": "chargement du formulaire", - "Button Click": "cliquez sur le bouton", - "Form": "former", - "The form to load within this form component.": - "Le formulaire de chargement dans ce composant de formulaire.", - "Form Revision": "Révision du formulaire", - "You can lock the nested form to a specific revision by entering the revision number here.": - "Vous pouvez verrouiller un formulaire joint à une révision spécifique en entrant le numéro de révision ici.", - "Use Original Revision while Submissions Viewing": - "Utilisez la révision originale lors de la consultation du comité", - "Using this option will make form load the original revision (the one which was used to make a submission) when viewing a submission.": - "L'utilisation de cette option entraînera le chargement de la révision d'origine (révision de la soumission) lors de la révision de la soumission.", - "Save as reference": "Запазване като справка", - "Using this option will save this field as a reference and link its value to the value of the origin record.": - "L'utilisation de cette option enregistre ce champ en tant que référence et associe sa valeur à la valeur de l'enregistrement d'origine.", - "Select Fields": "изберете поле", - "The properties on the resource to return as part of the options. If left blank, all properties will be returned.": - "Propriétés de ressource renvoyées dans le cadre des options. Si laissé vide, toutes les propriétés seront restaurées.", - "Search Fields": "Barre de recherche", - "Filter Query": "demande de filtre", - "Use this to provide additional filtering using query parameters.": - "Utilisez ceci pour fournir un filtrage supplémentaire à l'aide de paramètres de requête.", - "The filter query for results.": "Le résultat de la demande de filtre.", - "Sort Query": "Demande de tri", - "Use this to provide additional sorting using query parameters": - "Utilisez ceci pour fournir un tri supplémentaire à l'aide des paramètres de requête", - "The sort query for results": "Trier la requête pour les résultats", - "Add Resource": "Ajouter des ressources", - "Allows to create a new resource while entering a submission.": - "Permet de créer de nouvelles ressources lors de la saisie d'un enregistrement.", - "Add Resource Label": "Ajouter des balises de ressources", - "Set the text of the Add Resource button.": - "Définit le texte du bouton Ajouter une ressource.", - "Auto Expand": "Extension automatique", - "Enter the form title": "Entrez le titre du formulaire", - "Save & Preview": "Enregistrer et prévisualiser", - "Submission Saved": "Soumission enregistrée.", - "Error while Submission.": "Erreur lors de la soumission.", - "Message": "Veuillez corriger les erreurs avant de soumettre à nouveau.", - "Submission cannot be done.": "La soumission ne peut pas être faite.", - "Form-Workflow association saved.": - "Association formulaire-workflow enregistrée.", - "No Process Diagram found": "Aucun diagramme de processus trouvé", - "No forms found": "Aucun formulaire trouvé", - "All steps completed - you're finished": - "Toutes les étapes terminées - vous avez terminé", - "Are you sure you wish to delete the form": - "Êtes-vous sûr de vouloir supprimer le formulaire", - "Edit": "Éditer", - "Do you want to associate form with a workflow ?": - "Vous souhaitez associer un formulaire à un workflow ?", - "Yes": "Oui", - "No": "Non", - "Form Name": "Nom de forme ", - "Workflow Name": "Nom du flux de travail ", - "Publish this form for Client Users.": - "Publiez ce formulaire pour les utilisateurs clients.", - "Comments": "commentaires", - "Back": "Arrière", - "Edit Form": "Modifier le formulaire", - "Next": "Prochaine", - "Are you sure you wish to delete this submission?": - "Êtes-vous sûr de vouloir supprimer cette soumission ?", - "Back to Form List": "Retour à la liste des formulaires", - "Submit New": "Soumettre Nouveau", - "View Submissions": "Voir les soumissions", - "View/Edit Form": "Afficher/Modifier le formulaire", - "Delete Form": "Supprimer le formulaire", - "Delete": "Effacer", - "Print As PDF": "Imprimer en PDF", - "Logout": "Se déconnecter", - "No tasks found": "Aucune tâche trouvée", - "Please change the selected filters to view tasks": - "Veuillez modifier les filtres sélectionnés pour afficher les tâches", - "Clear all filters": "Effacer tous les filtres", - "Created": "Créé", - "Task Variables": "Variables de tâche", - "Process Variables": "Variables de processus", - "Process Definition Name": "Nom de la définition de processus", - "Assigne": "Cessionnaire", - "Candidate Group": "Groupe de candidats", - "Candidate User": "Utilisateur candidat", - "Priority": "Priorité", - "Due Date": "Date d'échéance", - "Follow up Date": "Date de suivi", - "Task name": "Nom de la tâche", - "Remove sorting": "Supprimer le tri", - "Ascending": "Ascendante", - "Descending": "Descendante", - "Add sorting": "Ajouter un tri", - "of the criteria are met.": "des critères sont remplis.", - "For Variable, ignore case of": "Pour Variable, ignorez la casse de", - "name": "Nom", - "No task matching filters found.": - "Aucun filtre de correspondance de tâche trouvé.", - "Set follow-up Date": "Définir la date de suivi", - "Set Due date": "Définir la date d'échéance", - "Add groups": "Ajouter des groupes", - "Claim": "Réclamer", - "Search By Last Name": "Recherche par nom de famille", - "Search By First Name": "Recherche par prénom", - "Search By Email": "Recherche par e-mail", - "You can add a group by typing a group ID into the input field and afterwards clicking the button with the plus sign.": - "Vous pouvez ajouter un groupe en saisissant un identifiant de groupe dans le champ de saisie, puis en cliquant sur le bouton avec le signe plus.", - "Add a group": "Ajouter un groupe", - "Process Name": "Nom du processus", - "Set FollowUp Date": "Définir la date de suivi", - "Groups": "groupes", - "Click to Change Assignee": "Cliquez pour changer de cessionnaire", - "Reset Assignee": "Réinitialiser le cessionnaire", - "Update User": "Mettre à jour l'utilisateur", - "Close": "proche", - "Remove search": "Supprimer la recherche", - "Operator": "Opératrice", - "Total number of results": "Nombre total de résultats", - "Filter Tasks": "Filtrer les tâches", - "ANY": "TOUTE", - "Task assignee": "Responsable de la tâche", - - "View Submission": "Voir la soumission", - "Showing": "Affichage", - "to": "à", - "of": "de", - "results": "résultats", - "Acknowledge": "Accuser réception", - "Select a task in the list.": "Sélectionnez une tâche dans la liste.", - "No Filters Found": "Aucun filtre trouvé", - "Loading": "Chargement", - "History": "Histoire", - "Diagram": "Diagramme", - "Delete Confirmation": "Confirmation de suppression", - "All tasks": "Toutes les tâches", - "Manage Groups": "Gérer les groupes", - "Group ID": "Identifiant du groupe", - "Due": "Dû", - "Follow-up": "Suivre", - - "Created By": "Créé par", - - "Submitted On": "Soumis le", - "Modified On": "Modifié le", - "No History Found": "Aucun historique trouvé", - "Process Diagram": "Diagramme de processus", - "Details": "Des détails", - "Status": "Statut", - "Link To Form Submission": "Lien vers la soumission de formulaire", - "Last Modified": "Dernière modification", - "All": "Toute", - "View": "Vue", - "No dashboard found": "Aucun tableau de bord trouvé", - "Total Submissions": "Nombre total de soumissions", - "Operations": "Opérations", - "Access Groups": "Groupes d'accès", - "Action": "Action", - "Add": "Ajouter", - "Upload Form": "Télécharger le formulaire", - "Download Form": "Télécharger le formulaire", - "Upload json form only": "Télécharger le formulaire json uniquement", - "Select atleast one form": "Sélectionnez au moins un formulaire", - "Select All": "Tout sélectionner", - "Created Date": "Date de création", - "Modified Date": "Date modifiée", - "File Upload Status": "État du téléchargement du fichier", - "Forms Completed": "Formulaires remplis", - "Form Completed": "Formulaire complété", - "Successfully Updated": "Mise à jour réussie", - "Failed": "Manquée", - "Submission Failed.": "Изпращането не бе успешно.", - "Press Enter key or click here to search": - "Appuyez sur la touche Entrée ou cliquez ici pour rechercher", - "Click to clear": "Cliquez pour effacer", - "Click here to back": "Cliquez ici pour revenir", - "Export PDF": "Exporter PDF", - "Something went wrong. Please try again!":"Quelque chose s'est mal passé. Veuillez réessayer!", - "No Dashboards Found":"Aucun tableau de bord trouvé", - "Processes":"Processus", - "Please select an existing workflow.":"Veuillez sélectionner un workflow existant.", - "Create New":"Créer un nouveau", - "Or create new workflow or import a workflow from a local directory.":"Ou créez un nouveau flux de travail ou importez un flux de travail à partir d'un répertoire local.", - "The operation couldn't be completed. Please try after sometime":"L'opération n'a pas pu être terminée. Veuillez essayer après un certain temps", - "Select...":"Sélectionner...", - "No Drafts Found": "Aucun brouillon trouvé", - "Draft Id":"ID brouillon", - "Draft Name":"Nom provisoire", - "Link To Draft Submission":"Lien vers la soumission de brouillon", - "Drafts":"Brouillons", - "You can't submit this form until it is published":"Vous ne pouvez pas soumettre ce formulaire tant qu'il n'est pas publié", - "Form not published":"Formulaire non publié", - "Access Denied" : "Accès refusé", - "By default, the tenant key would be prefixed to form":"Par défaut, la clé du locataire serait préfixée pour former", - "go back":"retourner", - - "Submission saved to draft.":"Soumission enregistrée comme brouillon.", - "Saved to draft":"Enregistré comme brouillon", - "Saving...":"Économie...", - "Error in creating form process mapper":"Erreur lors de la création du mappeur de processus de formulaire", - "Select the date":"Sélectionnez la date", - "Diagram Deployed":"Diagramme déployé", - "Deployment Failed":"Échec du déploiement", - "Process name(s) must not be empty":"Le(s) nom(s) de processus ne doivent pas être vides", - "URL copied":"URL copiée", - "Click Here to Copy":"Cliquez ici pour copier", - "Revert":"Revenir", - "Overview": "Aperçu", - "Design Permission": "Autorisation de conception", - "All Designers": "Tous les créateurs", - "Private(only you)": "Privé (seulement vous)", - "Specific Designer Group": "Groupe de concepteurs spécifiques", - "Submission Permission": "Autorisation de soumission", - "All Users": "Tous les utilisateurs", - "Specific User Group": "Groupe d'utilisateurs spécifique", - "Applicable for Designer Roled Users only.": "Applicable uniquement aux utilisateurs avec rôle de concepteur.", - "Applicable for Client and Reviewer Roled Users only.": "Applicable uniquement aux utilisateurs avec rôle de client et de réviseur.", - "Saved to Submissions/Drafts": "Enregistré dans Soumissions/Brouillons", - "Unfinished Submissions will be saved to Submissions/Drafts.": "Les Soumissions inachevées seront enregistrées dans Soumissions/Brouillons.", - "Changing the form workflow will not affect the existing submissions. It will only update in the newly created submissions. Press Save Changes to continue or cancel the changes.": "Changer le flux de travail du formulaire n'affectera pas les soumissions existantes. Il ne sera mis à jour que dans les nouvelles soumissions créées. Appuyez sur Enregistrer les modifications pour continuer ou annuler les modifications.", - "Submissions are made against": "Les Soumissions sont faites contre", - "Submission is made against": "La Soumission est faite contre", - "Changing the form title will not affect the existing submissions. It will only update in the newly created submissions. Press Save Changes to continue or cancel the changes.": "Changer le titre du formulaire n'affectera pas les soumissions existantes. Il ne sera mis à jour que dans les nouvelles soumissions créées. Appuyez sur Enregistrer les modifications pour continuer ou annuler les modifications.", - "Submissions": "Soumissions", - "Submission Id": "ID de Soumission", - "Submission History": "Historique de Soumission", - "No Submission History found": "Aucun Historique de Soumission Trouvé", - "No submissions Found": "Aucune soumission trouvée", - "Create new filter": "Créer un nouveau filtre", - "Filter Name": "Nom du filtre", - "Enter your text here": "Entrez votre texte ici", - "Criteria": "Critère", - "Add Value": "Ajouter de la valeur", - "Definition Key": "Clé de définition", - "Asignee": "Cessionnaire", - "Include Assigned Task": "Inclure la tâche assignée", - "Variable": "Variable", - "Show undefined variables": "Afficher les variables non définies", - "Name of variable": "Nom de variable", - "Readable name": "Nom lisible", - "Permission": "Autorisation", - "Accessible for all users": "Accessible pour tous les utilisateurs", - "Private (Only You)": "Privé (seulement vous)", - "Specific User/ Group": "Utilisateur/groupe spécifique", - "User": "Utilisateur", - "Group": "Groupe", - "Identifier": "Identifiant", - "Enter role ID": "Entrez l'ID du rôle", - "Create Filter": "Créer un filtre", - "Select a task in the List":"Sélectionnez une tâche dans la liste", - "Select a specific task from the provided list of options. Your selection will determine the task you will be working on or interacting with.":"Sélectionnez une tâche spécifique dans la liste d'options fournie. Votre sélection déterminera la tâche sur laquelle vous travaillerez ou avec laquelle vous interagirez." - - - }, - - de: { - "Bad Request":"Ungültige Anforderung", - "Select form version":"Formularversion auswählen", - "Please remove the special characters...!":"Bitte entfernen Sie die Sonderzeichen...!", - "No histories found":"Keine Historien gefunden", - "Continue":"Fortfahren", - "This will create a new version of the form without changing the path name but with new form id.":"Dadurch wird eine neue Version des Formulars erstellt, ohne den Pfadnamen zu ändern, aber mit einer neuen Formular-ID.", - "Save as a new version":"Als neue Version speichern", - "Save New Version":"Neue Version speichern", - "Do you want to save a new version of this form?":"Möchten Sie eine neue Version dieses Formulars speichern?", - "Do you want to create a duplicate form and associated workflow from existing form ?":"Möchten Sie ein Duplikat des Formulars und des zugehörigen Workflows aus einem vorhandenen Formular erstellen?", - "New version created":"Neue Version erstellt", - "Create a duplicate form":"Erstellen Sie ein Duplikat des Formulars", - "Show more":"Mehr anzeigen", - "Modified By":"Verändert von", - "Created On" : "Erstellt am", - "Formsflow automatically saves your previous form data. Now you can switch to the previous stage and edit.":"Formsflow speichert automatisch Ihre vorherigen Formulardaten. Jetzt können Sie zur vorherigen Stufe wechseln und bearbeiten.", - "Duplicate Form":"Doppeltes Formular", - "Form History":"Formulargeschichte", - "No file chosen":"Keine Datei ausgewählt", - "Choose File":"Datei auswählen", - "Choose any":"Wählen Sie eine aus", - "select form type":"Formulartyp auswählen", - "Draft Deleted Successfully":"Entwurf erfolgreich gelöscht", - "with ID":"mit ID", - "Are you sure you wish to delete the draft":"Möchten Sie den Entwurf wirklich löschen", - "Discard Draft":"Entwurf verwerfen", - "Search by form name": "Suche nach Formularnamen", - "Click to search": "Klicken Sie hier, um zu suchen", - "No submissions found": "Keine Einreichungen gefunden", - "No submission avaliable in the selected date. Please select another date range": - "Für das ausgewählte Datum ist keine Einreichung verfügbar. Bitte wählen Sie einen anderen Zeitraum aus", - "All groups have access to the dashboard": - "Alle Gruppen haben Zugriff auf das Dashboard", - "Form unpublishing Failed": - "Das Aufheben der Veröffentlichung des Formulars ist fehlgeschlagen", - "Form process failed": "Formularprozess fehlgeschlagen", - "Form deleted successfully": "Formular erfolgreich gelöscht", - "Form deletion unsuccessful":"Formularlöschung fehlgeschlagen", - "Form-Workflow association saved.": - "Formular-Workflow-Zuordnung gespeichert.", - "Loading...": "Wird geladen...", - "Save Changes": "Änderungen speichern", - "Are you sure you wish to delete the form ": - "Möchten Sie das Formular wirklich löschen ", - "Are you sure you wish to delete the form?": - "Möchten Sie das Formular wirklich löschen? ", - - ". Are you sure want to delete ?": ". Möchten Sie wirklich löschen?", - "Click here to go back": "Klicken Sie hier um zurück zu kommen", - "Dashboards": "Dashboards", - "Error while saving Form": "Fehler beim Speichern des Formulars", - "Confirmation": "Bestätigung", - "Submitted By": "Eingereicht von", - "Copy anonymous form URL": "Kopieren Sie die anonyme Formular-URL", - "Form field": "Formularfeld", - "Enter Label": "Bezeichnung eingeben", - "Select form field": "Formularfeld auswählen", - "Add form fields to display in task list": - "Fügen Sie Antragsfelder hinzu, die in der Aufgabenliste angezeigt werden sollen", - "Version": "Version", - "Submission Status": "Statusübersicht", - "No submission status": "Kein Übermittlungsstatus", - "No Public url found": "Keine öffentliche URL gefunden", - "Show in list": "In der Liste anzeigen", - "Select Task Variable": "Wählen Sie eine Aufgabenvariable aus", - "Enter your Label": "Bezeichnung eingeben", - "Please select from one of the following workflows.": - "Bitte wählen Sie einen der folgenden Workflows aus.", - "Select Key": "Wählen Sie einen Identifikationsschlüssel aus", - "Create Your Task Variable": "Erstellen Sie Ihre Aufgabenvariable", - "No task variable selected": "Keine Aufgabenvariable ausgewählt", - "Workflow Associate": "Workflow-Mitarbeiter", - - "Task variable": "Aufgabenvariable", - "Enter pathname": "Geben Sie den Pfadnamen ein", - "saved successfully": "Erfolgreich gespeichert", - "Thank you for your response.": "Danke für Ihre Antwort.", - "Form not available": "Formular nicht verfügbar", - "Save Form": "Formular speichern", - "Confirm": "Bestätigen", - "Cancel": "Stornieren", - "Metrics": "Metriken", - "Dashboard": "Dashboard", - "Insights": "Einblicke", - "Task": "Aufgaben", - "Forms": "Formulare", - "Admin": "Administrator", - "Powered by ": "Bereitgestellt von ", - "Anonymous Form ": "Anonymes Formular", - "Title": "Titel", - "Name": "Name", - "Display as": "Darstellen als", - "Type": "Art", - "Path": "Pfad", - "Make this form public ?": "Dieses Formular öffentlich machen?", - "Save & Preview": "Speichern & Vorschau", - "Form-Workflow association failed.": - "Die Formular-Workflow-Zuordnung ist fehlgeschlagen.", - "Error in getting Workflow Process.": - "Fehler beim Abrufen des Workflow-Prozesses.", - "Form saved": "Formular gespeichert.", - "Error while saving Form.": "Fehler beim Speichern des Formulars.", - "Create Form": "Formular erstellen", - "Design Form": "Formular entwerfen", - "Associate this form with a workflow?": - "Dieses Formular einem Workflow zuordnen?", - "Preview and Confirm": "Vorschau und bestätigen", - "All steps completed - you're finished": - "Alle Schritte abgeschlossen - Sie sind fertig", - "Submission Saved": "Einreichung gespeichert.", - "Error while Submission.": "Fehler beim Senden.", - "Message": "Bitte beheben Sie die Fehler, bevor Sie sie es erneut senden.", - "Submission cannot be done.": "Übermittlungsfehler.", - "No Process Diagram found": "Kein Prozessdiagramm gefunden", - "Are you sure you wish to delete the form": - "Möchten Sie das Formular wirklich löschen?", - "Edit": "Bearbeiten", - "Do you want to associate form with a workflow ?": - "Möchten Sie ein Formular mit einem Workflow verknüpfen?", - "Yes": "Ja", - "No": "Nein", - "Form Name": "Formularname ", - "Workflow Name": "Workflow-Name", - "Publish this form for Client Users.": - "Veröffentlichen Sie dieses Formular für Clientbenutzer.", - "Comments": "Bemerkungen", - "Back": "Zurück", - "Edit Form": "Formular bearbeiten", - "Next": "Weiter", - "Are you sure you wish to delete this submission?": - "Möchten Sie diesen Beitrag wirklich löschen?", - "Save": "Speichern", - "Back to Form List": "Zurück zur Formularliste", - "Submit New": "Neu einreichen", - "View Submissions": "Einsendungen anzeigen", - "View/Edit Form": "Formular anzeigen/bearbeiten", - "Delete Form": "Formular löschen", - "Delete": "Löschen", - "Print As PDF": "Als PDF drucken", - "Logout": "Ausloggen", - "No tasks found": "Keine Aufgaben gefunden", - "Please change the selected filters to view tasks": - "Bitte ändern Sie die ausgewählten Filter, um Aufgaben anzuzeigen", - "Clear all filters": "Alle Filter löschen", - "Created": "Erstellt", - "Task Variables": "Task-Variablen", - "Process Variables": "Prozessvariablen", - "Process Definition Name": "Name der Prozessdefinition", - "Assignee": "Zugewiesen an", - "Candidate Group": "Gruppe", - "Candidate User": "Benutzer", - "Description": "Beschreibung", - "Priority": "Priorität", - "Due Date": "Fälligkeitsdatum", - "Follow up Date": "Wiedervorlagedatum", - "Task name": "Aufgabennname", - "Remove sorting": "Sortierung entfernen", - "AsCending": "Aufsteigend", - "Descending": "Absteigend", - "Add sorting": "Sortierung hinzufügen", - "of the criteria are met.": "der Kriterien erfüllt sind.", - "For Variable, ignore case of": - "Ignorieren Sie für Variable die Groß- und Kleinschreibung", - "name": "Name", - "value": "Wert", - "No Filters Found": - "Keine Aufgabe gefunden, die mit Filtern übereinstimmt.", - - "Set follow-up Date": "Wiedervorlagedatum festlegen", - "Set Due date": "Fälligkeitsdatum festlegen", - "Add groups": "Gruppen hinzufügen", - "Claim": "Zuordnen", - "Search By Last Name": "Suche nach Nachnamen", - "Search By First Name": "Suche nach Vornamen", - "Search By Email": "Suche nach E-Mail-Adresse", - "You can add a group by typing a group ID into the input field and afterwards clicking the button with the plus sign.": - "Sie können eine Gruppe hinzufügen, indem Sie eine Gruppen-ID in das Eingabefeld eingeben und anschließend auf die Schaltfläche mit dem Pluszeichen klicken.", - "Add a group": "Gruppe hinzufügen", - "Process Name": "Prozessname", - "Set FollowUp Date": "Wiedervorlagedatum festlegen", - "Groups": "Gruppen", - "Click to Change Assignee": "Zuordnung ändern", - "Reset Assignee": "Zuordnung zurücksetzen", - "Update User": "Benutzer aktualisieren", - "Close": "Schließen", - "Remove search": "Suche entfernen", - "Property": "Eigenschaft", - "Operator": "Operator", - "Total number of results": "Gesamtzahl der Ergebnisse", - "Filter Tasks": "Aufgaben filtern", - "All": "Alle", - "ANY": "IRGENDEIN", - "Task assignee": "Aufgabenzuständiger", - - "View Submission": "Einreichung anzeigen", - "Showing": "Anzeigen", - "to": "zu", - "results": "Ergebnisse", - "Acknowledge": "Anerkennen", - "View": "Anzeigen", - "Select a task in the list.": "Wählen Sie eine Aufgabe in der Liste aus.", - "Loading": "Wird geladen", - "Form": "Formular", - "History": "Historie", - " Diagram": " Diagramm", - "Delete Confirmation": "Bestätigung löschen", - "All tasks": "Alle Aufgaben", - "Manage Groups": "Gruppen verwalten", - "Group ID": "Gruppen-ID", - "Due": "Fällig", - "Follow-up": "Wiedervorlage", - "Created By": "Erstellt von", - - "Submitted On": "Eingereicht am", - "Modified On": "Geändert am", - "No History Found": "Keine Historie gefunden", - "Process Diagram": "Prozessdiagramm", - "Details": "Einzelheiten", - "Status": "Status", - "Submissions": "Einreichungen", - - "Link To Form Submission": "Link zur Formularübermittlung", - "Last Modified": "Zuletzt geändert", - "No dashboard found": "Kein Dashboard gefunden", - "of": "von", - "Select Dashboard": "Wählen Sie Dashboard aus", - "Total Submissions": "Einreichungen insgesamt", - "Operations": "Atkionen", - "Access Groups": "Nutzergruppen", - "Action": "Aktion", - "Add": "Addieren", - "Upload Form": "Formular hochladen", - "Download Form": "Formular herunterladen", - "Upload json form only": "Laden Sie nur das JSON-Formular hoch", - "Select atleast one form": "Wählen Sie mindestens ein Formular aus", - "Select All": "Wählen Sie alle", - "Created Date": "Erstellungsdatum", - "Modified Date": "Änderungsdatum", - "File Upload Status": "Datei-Upload-Status", - "Forms Completed": "Formulare ausgefüllt", - "Form Completed": "Formular ausgefüllt", - "No forms found": "Keine Formulare gefunden", - "Press Enter key or click here to search": - "Drücken Sie die Eingabetaste oder klicken Sie hier, um zu suchen", - "Click to clear": "Zum Löschen klicken", - "Search...": "Suche...", - "Successfully Updated": "Erfolgreich aktualisiert", - "Failed": "Gescheitert", - "Submission Failed.": "Übermittlung fehlgeschlagen.", - "Click here to back": "Klicken Sie hier, um zurück zu gelangen", - "Enter the form machine name": - "Geben Sie den Maschinennamen ein", - "Enter the form title": "Geben Sie den Formulartitel ein", - "Drag and Drop a form component": - "Ziehen Sie eine Formularkomponente per Drag-and-Drop", - "Text Area": "Textbereich", - "Number": "Anzahl", - "Password": "Passwort", - "Checkbox": "Kontrollkästchen", - "Select Boxes": "Wählen Sie Boxen aus", - "Select": "Auswählen", - "Radio": "Radio", - "Button": "Button", - "Text Area With Analytics": "Textbereich mit Analytics", - "Data": "Daten", - "Display": "Anzeige", - "on": "an", - "Submit": "Einreichen", - "Email": "Email", - "Url": "URL", - "Phone Number": "Telefonnummer", - "Tags": "Stichworte", - "Address": "Adresse", - "Date / Time": "Terminzeit", - "Day": "Tag", - "Time": "Zeit", - "Currency": "Währung", - "Survey": "Umfrage", - "Signature": "Unterschrift", - "HTML": "HTML", - "Content": "Inhalt", - "Columns": "Spalten", - "Field Set": "Feldsatz", - "Panel": "Feld", - "Table": "Tabelle", - "Tabs": "Registerkarten", - "Well": "Gut!", - "Hidden": "Versteckt", - "Container": "Container", - "Data Map": "Datenkarte", - "Data Grid": "Datenraster", - "Edit Grid": "Raster bearbeiten", - "Tree": "Baum", - "reCAPTCHA": "reCaptcha", - "Resource": "Ressource", - "File": "Datei", - "Nested": "Verschachtelt", - "Custom": "Benutzerdefiniert", - "Basic": "Basic", - "Advanced": "Fortschrittlich", - "Layout": "Layout", - "Premium": "Premium", - "Preview": "Vorschau", - "The minimum length requirement this field must meet.": - "Die Mindestlänge, die dieses Feld erfüllen muss.", - "Label": "Etikette", - "The label for this field that will appear next to it.": - "Die Bezeichnung für dieses Feld, die daneben angezeigt wird.", - "Label Position": "Bezeichnungsposition", - "Position for the label for this field.": - "Position für die Beschriftung dieses Feldes.", - "Placeholder": "Platzhalter", - "The placeholder text that will appear when this field is empty.": - "Der Platzhaltertext, der angezeigt wird, wenn dieses Feld leer ist.", - "The description is text that will appear below the input field.": - "Die Beschreibung ist Text, der unter dem Eingabefeld erscheint.", - "Tooltip": "Kurzinfo", - "Adds a tooltip to the side of this field.": - "Fügt eine Kurzinformation an der Seite dieses Felds hinzu.", - "To add a tooltip to this field, enter text here.": - "Um diesem Feld eine Kurzinformation hinzuzufügen, geben Sie hier Text ein.", - "Description for this field.": "Beschreibung für dieses Feld.", - "Prefix": "Präfix", - "Suffix": "Suffix", - "Widget": "Widget", - "The widget is the display UI used to input the value of the field.": - "Das Widget ist die Anzeige-UI, die verwendet wird, um den Wert des Felds einzugeben.", - "Right (Left-aligned)": "Rechts (linksbündig)", - "Left (Left-aligned)": "Links (linksbündig)", - "Left (Right-aligned)": "Links (rechtsbündig)", - "Right (Right-aligned)": "Rechts (rechtsbündig)", - "Bottom": "Unten", - "Component": "Komponente", - "Top": "oben", - "Label Width": "Beschriftungsbreite", - "The width of label on line in percentages.": - "Die Breite der Beschriftung auf der Linie in Prozent.", - "Label Margin": "Beschriftungsrand", - "The width of label margin on line in percentages.": - "Die Breite der Beschriftung auf der Linie in Prozent.", - "Rows": "Reihen", - "Input Field": "Eingabefeld", - "Calendar Picker": "Kalenderauswahl", - "Select a widget": "Wählen Sie ein Widget aus", - "Input Mask": "Eingabemaske", - "Widget Settings": "Widget-Einstellungen", - "Allow Multiple Masks": "Mehrere Masken zulassen", - "Input Masks": "Eingabemasken", - "Mask": "Maske", - "Add Another": "Neue hinzufügen", - "Custom CSS Class": "Benutzerdefinierte CSS-Klasse", - "Custom CSS class to add to this component.": - "Benutzerdefinierte CSS-Klasse, die dieser Komponente hinzugefügt werden soll.", - "Tab Index": "Tab-Index", - "Sets the tabindex attribute of this component to override the tab order of the form. See the MDN documentation on tabindex for more information.": - "Legt das tabindex-Attribut dieser Komponente fest, um die Tab-Reihenfolge des Formulars zu überschreiben. Weitere Informationen finden Sie in der MDN-Dokumentation auf tabindex.", - "Autocomplete": "Automatische Vervollständigung", - "Indicates whether input elements can by default have their values automatically completed by the browser. See the MDN documentation on autocomplete for more information.": - "Gibt an, ob die Werte von Eingabeelementen standardmäßig automatisch vom Browser vervollständigt werden können. Weitere Informationen finden Sie in der MDN-Dokumentation zur automatischen Vervollständigung.", - "A hidden field is still a part of the form, but is hidden from view.": - "Ein ausgeblendetes Feld ist immer noch Teil des Formulars, aber nicht sichtbar.", - "Hide Label": "Beschriftung ausblenden", - "Show Word Counter": "Wortzähler anzeigen", - "Show a live count of the number of words.": - "Zeigen Sie eine Live-Zählung der Anzahl der Wörter an.", - "Hide the label (title, if no label) of this component. This allows you to show the label in the form builder, but not when it is rendered.": - "Blenden Sie die Bezeichnung (Titel, falls keine Bezeichnung) dieser Komponente aus. Dadurch können Sie die Beschriftung im Form Builder anzeigen, aber nicht, wenn es gerendert wird.", - "Show Character Counter": "Zeichenzähler anzeigen", - "Show a live count of the number of characters.": - "Zeigen Sie eine Live-Zählung der Anzahl der Zeichen an.", - "Hide Input": "Eingabe ausblenden", - "Hide the input in the browser. This does not encrypt on the server. Do not use for passwords.": - "Hide the input in the browser. This does not encrypt on the server. Do not use for passwords.", - "Initial Focus": "Anfänglicher Fokus", - "Make this field the initially focused element on this form.": - "Machen Sie dieses Feld zum anfänglich fokussierten Element in diesem Formular.", - "Allow Spellcheck": "Rechtschreibprüfung zulassen", - "Disabled": "Deaktiviert", - "Disable the form input.": "Deaktivieren Sie die Formulareingabe.", - "Table View": "Tabellenansicht", - "Shows this value within the table view of the submissions.": - "Zeigt diesen Wert in der Tabellenansicht der Übermittlungen an.", - "Modal Edit": "Modale Bearbeitung", - "Opens up a modal to edit the value of this component.": - "Öffnet ein Modal zum Bearbeiten des Werts dieser Komponente.", - "Multiple Values": "Mehrere Werte", - "Allows multiple values to be entered for this field.": - "Ermöglicht die Eingabe mehrerer Werte für dieses Feld.", - "Default Value": "Standardwert", - "The will be the value for this field, before user interaction. Having a default value will override the placeholder text.": - "Dies ist der Wert für dieses Feld vor der Benutzerinteraktion. Ein Standardwert überschreibt den Platzhaltertext.", - "Persistent": "Persistent", - "A persistent field will be stored in database when the form is submitted.": - "Beim Absenden des Formulars wird ein persistentes Feld in der Datenbank gespeichert.", - "None": "Keiner", - "Server": "Server", - "Client": "Kunde", - "Input Format": "Eingabeformat", - "Force the output of this field to be sanitized in a specific format.": - "Erzwingen Sie, dass die Ausgabe dieses Felds in einem bestimmten Format bereinigt wird.", - "Plain": "Einfach", - "Type to search": "Tippe um zu suchen", - "Raw (Insecure)": "Roh (unsicher)", - "Protected": "gesichert", - "A protected field will not be returned when queried via API.": - "Ein geschütztes Feld wird nicht zurückgegeben, wenn es über die API abgefragt wird.", - "Database Index": "Datenbankindex", - "Set this field as an index within the database. Increases performance for submission queries.": - "Legen Sie dieses Feld als Index innerhalb der Datenbank fest. Erhöht die Leistung für Übermittlungsabfragen.", - "Text Case": "Textfall", - "When data is entered, you can change the case of the value.": - "Wenn Daten eingegeben werden, können Sie die Groß-/Kleinschreibung des Werts ändern.", - "Mixed (Allow upper and lower case)": - "Gemischt (Groß- und Kleinschreibung zulassen)", - "Uppercase": "Großbuchstaben", - "Lowercase": "Kleinbuchstaben", - "Encrypted (Enterprise Only)": "Verschlüsselt (nur Enterprise)", - "Encrypt this field on the server. This is two way encryption which is not suitable for passwords.": - "Verschlüsseln Sie dieses Feld auf dem Server. Dies ist eine Zwei-Wege-Verschlüsselung, die für Passwörter nicht geeignet ist.", - "Redraw On": "Neuzeichnen an", - "Redraw this component if another component changes. This is useful if interpolating parts of the component like the label.": - "Zeichnen Sie diese Komponente neu, wenn sich eine andere Komponente ändert. Dies ist nützlich, wenn Teile der Komponente wie die Beschriftung interpoliert werden.", - "Any Change": "Jede Änderung", - "Clear Value When Hidden": "Wert löschen, wenn ausgeblendet", - "When a field is hidden, clear the value.": - "Wenn ein Feld ausgeblendet ist, löschen Sie den Wert.", - "The following variables are available in all scripts.": - "Die folgenden Variablen sind in allen Skripten verfügbar.", - "Custom Default Value": "Benutzerdefinierter Standardwert", - "The complete form JSON object": "Das vollständige Formular-JSON-Objekt", - "submission": "Einreichung", - "The complete submission object.": "Das vollständige Einreichungsobjekt.", - "data": "Daten", - "The complete submission data object.": - "Das vollständige Einreichungsdatenobjekt.", - "row": "Reihe", - 'Contextual "row" data, used within DataGrid, EditGrid, and Container components': - "Kontextbezogene „Zeilen“-Daten, die in DataGrid-, EditGrid- und Container-Komponenten verwendet werden", - "component": "Komponente", - "The current component JSON": "Die aktuelle Komponenten JSON", - "instance": "Instanz", - "The current component instance.": "Die aktuelle Komponenteninstanz.", - "Value": "Wert", - "The current value of the component.": "Der aktuelle Wert der Komponente.", - "moment": "Moment", - "The moment.js library for date manipulation.": - "Die moment.js-Bibliothek zur Datumsmanipulation.", - "utils": "Dienstprogramme", - "util": "Dienst", - 'An alias for "utils".': 'Ein Alias für "utils".', - "JavaScript": "JavaScript", - "Enter custom javascript code.": - "Geben Sie einen benutzerdefinierten Javascript-Code ein.", - "Example:": "Beispiel:", - "JSONLogic": "JSON-Logik", - "Execute custom logic using ": - "Führen Sie benutzerdefinierte Logik aus", - 'support is provided using an "_" before each operation, such as {"_sum": {var: "data.a"}}': - 'Unterstützung wird durch ein "_" vor jeder Operation bereitgestellt, z. B. {"_sum": {var: "data.a"}}', - "Full": "Voll", - "Calculated Value": "Berechneter Wert", - "token": "Zeichen", - "The decoded JWT token for the authenticated user.": - "Das entschlüsselte JWT-Token für den authentifizierten Benutzer.", - "Calculate Value on server": "Wert auf dem Server berechnen", - "Checking this will run the calculation on the server. This is useful if you wish to override the values submitted with the calculations performed on the server.": - "Wenn Sie dies aktivieren, wird die Berechnung auf dem Server ausgeführt. Dies ist nützlich, wenn Sie die übermittelten Werte mit den auf dem Server durchgeführten Berechnungen überschreiben möchten.", - "Allow Manual Override of Calculated Value": - "Manuelles Überschreiben des berechneten Werts zulassen", - "When checked, this will allow the user to manually override the calculated value.": - "Wenn diese Option aktiviert ist, kann der Benutzer den berechneten Wert manuell überschreiben.", - "Remove": "Entfernen", - "Validate On": "Validierung ein", - "Determines when this component should trigger front-end validation.": - "Legt fest, wann diese Komponente die Front-End-Validierung auslösen soll.", - "Change": "Ändern", - "Blur": "Verwischen", - "Required": "Erforderlich", - "A required field must be filled in before the form can be submitted.": - "Ein Pflichtfeld muss ausgefüllt werden, bevor das Formular abgeschickt werden kann..", - "Unique": "Einzigartig", - "Makes sure the data submitted for this field is unique, and has not been submitted before.": - "Stellt sicher, dass die für dieses Feld übermittelten Daten einzigartig sind und noch nie zuvor übermittelt wurden.", - "Minimum Length": "Minimale Länge", - "The maximum length requirement this field must meet.": - "Die maximale Länge, die dieses Feld erfüllen muss.", - "Maximum Length": "Maximale Länge", - "Minimum Word Length": "Minimale Wortlänge", - "The minimum amount of words that can be added to this field.": - "Die Mindestanzahl an Wörtern, die diesem Feld hinzugefügt werden können.", - "Maximum Word Length": "Maximale Wortlänge", - "The maximum amount of words that can be added to this field.": - "Die maximale Anzahl an Wörtern, die diesem Feld hinzugefügt werden können.", - "Regular Expression Pattern": "Reguläres Ausdrucksmuster", - "The regular expression pattern test that the field value must pass before the form can be submitted.": - "Der Mustertest für reguläre Ausdrücke, den der Feldwert bestehen muss, bevor das Formular gesendet werden kann.", - "Error Label": "Fehlerbeschriftung", - "The label for this field when an error occurs.": - "Die Bezeichnung für dieses Feld, wenn ein Fehler auftritt.", - "Custom Error Message": "Benutzerdefinierte Fehlermeldung", - "Error message displayed if any error occurred.": - "Fehlermeldung, die angezeigt wird, wenn ein Fehler aufgetreten ist.", - "Custom Validation": "Benutzerdefinierte Validierung", - "input": "Eingabe", - "The value that was input into this component": - "Der Wert, der in diese Komponente eingegeben wurde", - "Enter custom validation code.": - "Geben Sie einen benutzerdefinierten Validierungscode ein.", - "You must assign the valid variable as either true or an error message if validation fails.": - "Sie müssen die gültige Variable entweder als wahr oder als Fehlermeldung zuweisen, wenn die Validierung fehlschlägt.", - "Secret Validation": "Geheime Validierung", - "Check this if you wish to perform the validation ONLY on the server side. This keeps your validation logic private and secret.": - "Aktivieren Sie dies, wenn Sie die Validierung NUR serverseitig durchführen möchten. Dadurch bleibt Ihre Validierungslogik privat und geheim.", - "JSONLogic Validation": "JSON-Logik-Validierung", - "Execute custom logic using": "Führen Sie benutzerdefinierte Logik mit aus", - "Help": "Hilfe", - "Validation": "Validierung", - "API": "API", - "Property Name": "Eigenschaftsname", - "The name of this field in the API endpoint.": - "Der Name dieses Felds im API-Endpunkt.", - "Field Tags": "Feldstichworte", - "Tag the field for use in custom logic.": - "Stichwort des Felds für benutzerdefinierte Logik", - "Custom Properties": "Benutzerdefinierte Eigenschaften", - "This allows you to configure any custom properties for this component.": - "Auf diese Weise können Sie beliebige benutzerdefinierte Eigenschaften für diese Komponente konfigurieren.", - "Key": "Taste", - "Conditional": "Bedingt", - "Simple": "Einfach", - "This component should Display:": - "Diese Komponente sollte Folgendes anzeigen:", - "True": "Wahr", - "False": "Falsch", - "When the form component:": "Wenn die Formularkomponente:", - "Submit (submit)": "Absenden (submit)", - "Has the value:": "Hat den Wert::", - "Advanced Conditions": "Erweiterte Bedingungen", - "Advanced Logic": "Erweiterte Logik", - "Advanced Logic Configured": "Erweiterte Logik konfiguriert", - "Logic": "Logik", - "Add Logic": "Logik hinzufügen", - "Trigger": "Auslöser", - "JSON Logic": "JSON-Logik", - '"row", "data", and "component" variables are available. Return "result".': - 'Die Variablen "row", "data" und "component" sind verfügbar. Geben Sie "result" zurück.', - "Actions": "Aktionen", - "Action Name": "Aktionsname", - "Schema Defenition": "Schema-Definition", - '"row", "data", "component", and "result" variables are available. Return the schema.': - 'Die Variablen "row", "data", "component" und "result" sind verfügbar. Geben Sie das Schema zurück.', - "Merge Component Schema": "Komponentenschema zusammenführen", - "Custom Action": "Benutzerdefinierte Aktion", - "You must assign the show variable a boolean result.": - "Sie müssen der Show-Variablen ein boolesches Ergebnis zuweisen.", - "Note: Advanced Conditional logic will override the results of the Simple Conditional logic.": - "Hinweis: Die erweiterte bedingte Logik überschreibt die Ergebnisse der einfachen bedingten Logik.", - "example": "Beispiel", - '"row", "data", "component" and "_" variables are available. Return the result to be passed to the action if truthy.': - 'Die Variablen "row", "data", "component" und "_" sind verfügbar. Gibt das an die Aktion zu übergebende Ergebnis zurück, wenn es wahr ist.', - "Add Action": "Aktion hinzufügen", - "Save Logic": "Logik speichern", - "Logic Name": "Logikname", - "Event": "Ereignis", - "The event that will trigger this logic. You can trigger events externally or via a button.": - "Das Ereignis, das diese Logik auslöst. Sie können Ereignisse extern oder über eine Schaltfläche auslösen.", - "Save Action": "Aktion speichern", - "HTML Attributes": "HTML-Attribute", - "Attribute Name": "Attributname", - "Attribute Value": "Attributwert", - "Add Attribute": "Attribute hinzufügen", - "The settings inside apply only to the PDF forms.": - "Die darin enthaltenen Einstellungen gelten nur für die PDF-Formulare.", - "PDF Overlay": "PDF-Überlagerung", - "Style": "Stil", - "Custom styles that should be applied to this component when rendered in PDF.": - "Benutzerdefinierte Stile, die auf diese Komponente angewendet werden sollen, wenn sie in PDF gerendert werden.", - "Page": "Seite", - "The PDF page to place this component.": - "Die PDF-Seite zum Platzieren dieser Komponente.", - "Left": "Links", - "The left margin within a page to place this component.": - "Der linke Rand innerhalb einer Seite, um diese Komponente zu platzieren.", - "The top margin within a page to place this component.": - "Der obere Rand innerhalb einer Seite, um diese Komponente zu platzieren.", - "Width": "Breite", - "The width of the component (in pixels).": - "Die Breite der Komponente (in Pixel).", - "Height": "Höhe", - "The height of the component (in pixels).": - "Die Höhe der Komponente (in Pixel).", - "Use Thousands Separator": "Verwenden Sie das Tausendertrennzeichen", - "Separate thousands by local delimiter.": - "Trennen Sie Tausender durch lokales Trennzeichen.", - "Decimal Places": "Nachkommastellen", - "The maximum number of decimal places.": - "Die maximale Anzahl von Dezimalstellen.", - "Require Decimal": "Dezimalzahl erforderlich", - "Always show decimals, even if trailing zeros.": - "Dezimalstellen immer anzeigen, auch bei nachgestellten Nullen.", - "Minimum Value": "Mindestwert", - "The minimum value this field must have before the form can be submitted.": - "Der Mindestwert, den dieses Feld haben muss, bevor das Formular gesendet werden kann.", - "Maximum Value": "Maximaler Wert", - "The maximum value this field can have before the form can be submitted.": - "Der maximale Wert, den dieses Feld haben kann, bevor das Formular gesendet werden kann.", - "Editor": "Editor", - "Select the type of WYSIWYG editor to use for this text area.": - "Wählen Sie den Typ des WYSIWYG-Editors aus, der für diesen Textbereich verwendet werden soll.", - "ACE": "ACE", - "Save As": "Speichern als", - "This setting determines how the value should be entered and stored in the database.": - "Diese Einstellung legt fest, wie der Wert eingegeben und in der Datenbank gespeichert werden soll.", - "String": "String", - "JSON": "JSON", - "Input Type": "Eingabetyp", - "This is the input type used for this checkbox.": - "Dies ist der Eingabetyp, der für dieses Kontrollkästchen verwendet wird.", - "Shortcut": "Abkürzung", - "Shortcut for this component.": "Abkürzung für diese Komponente.", - "Password fields are automatically encrypted using 1-way salted bcrypt hashes. These hashes are also protected and not returned in the API.": - "Passwortfelder werden automatisch mit 1-Way-Salted-Bcrypt-Hashes verschlüsselt. Diese Hashes sind ebenfalls geschützt und werden nicht in der API zurückgegeben.", - "Options Label Position": "Position der Optionsbeschriftung", - "Position for the label for options for this field.": - "Position für die Bezeichnung für Optionen für dieses Feld.", - "Right": "Rechts", - "Inline Layout": "Inline Layout", - "Displays the checkboxes/radios horizontally.": - "Zeigt die Kontrollkästchen/Radios horizontal an.", - "Allow only available values": "Nur verfügbare Werte zulassen", - "Minimum checked number": "Mindest ausgewählte Anzahl", - "Minimum checkboxes required before form can be submitted.": - "Mindestens Kontrollkästchen erforderlich, bevor das Formular gesendet werden kann.", - "Maximum checked number": "Maximal ausgewählte Anzahl", - "Maximum checkboxes possible before form can be submitted.": - "Maximale Anzahl der möglichen Kontrollkästchen, bevor das Formular gesendet werden kann.", - "Minimum checked error message": "Minimum geprüfte Fehlermeldung", - "Error message displayed if minimum number of items not checked.": - "Fehlermeldung wird angezeigt, wenn die Mindestanzahl von Artikeln nicht angekreuzt ist.", - "Maximum checked error message": "Maximal überprüfte Fehlermeldung", - "Error message displayed if maximum number of items checked.": - "Fehlermeldung wird angezeigt, wenn die maximale Anzahl von Elementen überprüft wird.", - "ChoicesJS": "ChoicesJS", - "HTML 5": "HTML55", - "Unique Options": "Einzigartige Optionens", - "Display only unique dropdown options.": - "Nur einzigartige Dropdown-Optionen anzeigen", - "Data Source Type": "Datenquellentyp", - "The source to use for the select data. Values lets you provide your own values and labels. JSON lets you provide raw JSON data. URL lets you provide a URL to retrieve the JSON data from.": - "Die Quelle, die für die ausgewählten Daten verwendet werden soll. Mit Werte können Sie Ihre eigenen Werte und Labels bereitstellen. Mit JSON können Sie JSON-Rohdaten bereitstellen. Mit URL können Sie eine URL angeben, von der die JSON-Daten abgerufen werden.", - "Values": "Werte", - "Raw JSON": "Rohes JSON", - "IndexedDB": "IndexedDB", - "Database name": "Name der Datenbank", - "The name of the indexeddb database.": "Der Name der Indexeddb-Datenbank.", - "Storage Type": "Speichertyp", - "The type to store the data. If you select something other than autotype, it will force it to that type.": - "Der Typ zum Speichern der Daten. Wenn Sie etwas anderes als Autotyp auswählen, wird dieser Typ erzwungen.", - "Autotype": "Autotyp", - "Boolean": "Boolesch", - "Object": "Objekt", - "ID Path": "ID-Pfad", - "Path to the select option id.": "Pfad zur ausgewählten Options-ID.", - "Table name": "Tabellenname", - "The name of table in the indexeddb database.": - "Der Name der Tabelle in der Indexeddb-Datenbank.", - "Row Filter": "Zeilenfilter", - "Filter table items that match the object.": - "Filtern Sie Tabellenelemente, die mit dem Objekt übereinstimmen.", - "Item Template": "Elementvorlage", - "The HTML template for the result data items.": - "Die HTML-Vorlage für die Ergebnisdatenelemente.", - "Enable Static Search ": "Statische Suche aktivieren", - "When checked, the select dropdown will allow for searching within the static list of items provided.": - "Wenn diese Option aktiviert ist, ermöglicht die Auswahl-Dropdown-Liste die Suche in der statischen Liste der bereitgestellten Elemente.", - "Search Threshold": "Suchschwelle", - "At what point does the match algorithm give up. A threshold of 0.0 requires a perfect match, a threshold of 1.0 would match anything.": - "An welchem Punkt gibt der Match-Algorithmus auf? Ein Schwellenwert von 0,0 erfordert eine perfekte Übereinstimmung, ein Schwellenwert von 1,0 würde alles abgleichen.", - "Read Only Value": "Schreibgeschützter Wert", - "Check this if you would like to show just the value when in Read Only mode.": - "Aktivieren Sie dies, wenn Sie im schreibgeschützten Modus nur den Wert anzeigen möchten.", - "Choices.js options": "Choices.js-Optionen", - "A raw JSON object to use as options for the Select component (Choices JS).": - "Ein rohes JSON-Objekt, das als Optionen für die Select-Komponente (Choices JS) verwendet werden soll.", - "Use exact search": "Verwenden Sie die exakte Suche", - "Disables search algorithm threshold.": - "Deaktiviert den Schwellenwert für den Suchalgorithmus.", - "Theme": "Thema", - "The color theme of this button.": "Das Farbthema dieser Schaltfläche.", - "Size": "Größe", - "The size of this button": "Die Größe dieser Schaltfläche", - "Block Button": "Sperrtaste", - "This control should span the full width of the bounding container.": - "Dieses Steuerelement sollte sich über die gesamte Breite des Begrenzungscontainers erstrecken.", - "Left Icon": "Linkes Symbol", - "This is the full icon class string to show the icon.": - "Dies ist die vollständige Symbolklassenzeichenfolge zum Anzeigen des Symbols.", - "Right Icon": "Rechtes Symbol", - "This is the full icon class string to show the icon. Example:": - "Dies ist die vollständige Symbolklassenzeichenfolge zum Anzeigen des Symbols. Beispiel:", - "Primary": "Primär", - "Secondary": "Sekundär", - "Info": "Info", - "Success": "Erfolg", - "Danger": "Achtung", - "Warning": "Warnung", - "The size of this button.": "Die Größe dieser Schaltfläche.", - "Medium": "Mittel", - "Extra Small": "Extra klein", - "Small": "Klein", - "Large": "Groß", - "Disable on Form Invalid": "Deaktivieren bei ungültigem Formular", - "This will disable this field if the form is invalid.": - "Dadurch wird dieses Feld deaktiviert, wenn das Formular ungültig ist.", - "Key topics for Sentiment Analysis": - "Schlüsselthemen für die Stimmungsanalyse", - "Enter topics to use in sentiment Analysis": - "Geben Sie Themen ein, die in der Stimmungsanalyse verwendet werden sollen", - "Kickbox": "Kick-Box", - "Enable": "Aktivierenr", - "Enable Kickbox validation for this email field.": - "Kickbox-Validierung für dieses E-Mail-Feld aktivieren.", - "Validate this email using the Kickbox email validation service.": - "Validieren Sie diese E-Mail mit dem Kickbox-E-Mail-Validierungsdienst.", - "Input Mask Placeholder Char": "Eingabemaske Platzhalterzeichen", - "Enable Manual Mode": "Manuellen Modus aktivieren", - "Should Manual Mode be enabled for that component or not.": - "Soll der manuelle Modus für diese Komponente aktiviert sein oder nicht.", - "Switch To Manual Mode Label": - "Wechseln Sie zur Beschriftung für den manuellen Modus", - "The label for the checkbox used to switch to manual mode.": - "Die Bezeichnung für das Kontrollkästchen zum Umschalten in den manuellen Modus.", - "Disable Clear Icon": "Deaktivieren Sie das Löschsymbol", - "Clear Icon allows easily clear components value.": - "Löschsymbol ermöglicht das einfache Löschen des Komponentenwerts.", - "Provider": "Anbieter", - "Which address search service should be used.": - "Welcher Adresssuchdienst soll verwendet werden.", - "Manual Mode View String": - "Zeichenfolge für die Ansicht im manuellen Modus", - "Specify template which should be when quering view string for the component value entered in manual mode. This string is used in table view, CSV export and email rendering. When left blank combined value of all components joined with comma will be used.": - "Geben Sie die Vorlage an, die beim Abfragen der Ansichtszeichenfolge für den im manuellen Modus eingegebenen Komponentenwert verwendet werden soll. Diese Zeichenfolge wird in der Tabellenansicht, beim CSV-Export und beim Rendern von E-Mails verwendet. Wenn das Feld leer gelassen wird, wird der kombinierte Wert aller mit Komma verbundenen Komponenten verwendet.", - "Azure Maps": "Azure-Karten", - "Google Maps": "Google Maps", - "API Key": "API-Schlüssel", - "Use your Google API key here.": - "Verwenden Sie hier Ihren Google-API-Schlüssel.", - "Provider options": "Anbieteroptionen", - "Delimiter": "Trennzeichen", - "What is used to separate the tags.": - "Was wird verwendet, um die Tags zu trennen.", - "Max Tags": "Max-Tags", - "The maximum amount of tags that can be added. 0 for infinity.": - "Die maximale Anzahl an Tags, die hinzugefügt werden können. 0 für unendlich.", - "Store As": "Speichern als", - "String (CSV)": "Zeichenfolge (CSV)", - "Array of Tags": "Array von Tags", - "Display in Timezone": "Anzeige in Zeitzone", - "This will display the captured date time in the select timezone.": - "Dadurch wird die erfasste Datumszeit in der ausgewählten Zeitzone angezeigt.", - "of Viewer": "des Betrachters", - "of Submission": "der Einreichung", - "of Location": "des Standorts", - "UTC": "UTC", - "Use Locale Settings": "Verwenden Sie Gebietsschemaeinstellungen", - "Use locale settings to display date and time.": - "Verwenden Sie Gebietsschemaeinstellungen, um Datum und Uhrzeit anzuzeigen.", - "Allow Manual Input": "Manuelle Eingabe zulassen", - "Check this if you would like to allow the user to manually enter in the date.": - "Aktivieren Sie dies, wenn Sie dem Benutzer erlauben möchten, das Datum manuell einzugeben.", - "Format": "Format", - "The date format for displaying the datetime value.": - "Das Datumsformat zum Anzeigen des datetime-Werts.", - "Shortcut Buttons": "Shortcut-Schaltflächen", - "You can specify few buttons which will be shown above the calendar. Use Label to specify the name of the button and onClick to specify which date/time will be set when user clicks the button. ": - "Sie können einige Schaltflächen angeben, die über dem Kalender angezeigt werden. Verwenden Sie Label, um den Namen der Schaltfläche anzugeben, und onClick, um anzugeben, welches Datum/welche Uhrzeit festgelegt wird, wenn der Benutzer auf die Schaltfläche klickt.", - "onClick": "onClick", - "Enable Date Input": "Datumseingabe aktivieren", - "Enables date input for this field.": - "Aktiviert die Datumseingabe für dieses Feld.", - "Use Input to add moment.js for minDate": - "Verwenden Sie Input, um moment.js für minDate hinzuzufügen", - "Enables to use input for moment functions instead of calendar.": - "Ermöglicht die Verwendung von Eingaben für Momentfunktionen anstelle des Kalenders.", - "Use calendar to set minDate": - "Verwenden Sie den Kalender, um minDate festzulegen", - "Enables to use calendar to set date.": - "Ermöglicht die Verwendung des Kalenders zum Festlegen des Datums.", - "Use Input to add moment.js for maxDate": - "Verwenden Sie Input, um moment.js für maxDate hinzuzufügen", - "Use calendar to set maxDate": - "Verwenden Sie den Kalender, um maxDate festzulegen", - "Disable specific dates or dates by range": - "Deaktivieren Sie bestimmte Daten oder Daten nach Bereich", - "Add dates that you want to blacklist. For example:": - "Fügen Sie Daten hinzu, die Sie auf die schwarze Liste setzen möchten. Zum Beispiel:", - "Custom Disabled Dates": "Benutzerdefinierte deaktivierte Daten", - "date": "Datum", - "The date object.": "Das Datumsobjekt.", - "Data Format": "Dateiformat", - "The moment.js format for saving the value of this field.": - "Das moment.js-Format zum Speichern des Werts dieses Felds.", - "HTML5 Time Input": "HTML5-Zeiteingabe", - "Text Input with Mask": "Texteingabe mit Maske", - "Disable weekends": "Wochenenden deaktivieren", - "Disable weekdays": "Wochentage deaktivieren", - "Check to disable weekends": "Aktivieren Sie diese Option, um Wochendtage zu deaktivieren", - "Check to disable weekdays": - "Aktivieren Sie diese Option, um Wochentage zu deaktivieren", - "Enable Time Input": "Zeiteingabe aktivieren", - "Enables time input for this field": - "Aktiviert die Zeiteingabe für dieses Feld", - "Hour Step Size": "Stundenschrittgröße", - "The number of hours to increment/decrement in the time picker.": - "Die Anzahl der Stunden, um die in der Zeitauswahl erhöht/verringert werden soll.", - "Minute Step Size": "Minute Schrittgröße", - "The number of minutes to increment/decrement in the time picker.": - "Die Anzahl der Minuten, um die in der Zeitauswahl erhöht/verringert werden soll.", - "Display time in 12 hour time with AM/PM.": - "Anzeigezeit im 12-Stunden-Format mit AM/PM.", - "12 Hour Time (AM/PM)": "12-Stunden-Zeit (AM/PM)", - "Default Date": "Standarddatum", - "You can use Moment.js functions to set the default value to a specific date. For example:": - "Sie können moment.js-Funktionen verwenden, um den Standardwert auf ein bestimmtes Datum festzulegen. Zum Beispiel:", - "Flatpickr options": "Flatpickr-Optionen", - "HTML Tag": "HTML-Tag", - "The tag of this HTML element.": "Das Tag dieses HTML-Elements.", - "CSS Class": "CSS-Klasse", - "Attributes": "Attribute", - "The attributes for this HTML element. Only safe attributes are allowed, such as src, href, and title.": - "Die Attribute für dieses HTML-Element. Nur sichere Attribute sind erlaubt, wie src, href und title.", - "Attribute": "Attribut", - "Refresh On Change": "Bei Änderung aktualisieren", - "HTML Element": "HTML-Element", - "Column Properties": "Spalteneigenschaften", - "The width, offset, push, and pull settings for each column.": - "Die Einstellungen für Breite, Offset, Push und Pull für jede Spalte.", - "Offset": "Versatz", - "Push": "Drücken", - "Pull": "Ziehen", - "Auto adjust columns": "Spalten automatisch anpassen", - "Will automatically adjust columns based on if nested components are hidden.": - "Passt Spalten automatisch an, je nachdem, ob verschachtelte Komponenten ausgeblendet sind.", - "Hide Column when Children Hidden": - "Spalte ausblenden, wenn untergeordnete Elemente ausgeblendet sind", - "Check this if you would like to hide any column when the children within that column are also hidden": - "Aktivieren Sie dies, wenn Sie eine Spalte ausblenden möchten, wenn die untergeordneten Elemente in dieser Spalte ebenfalls ausgeblendet sind", - "Legend": "Legende", - "The legend for this Fieldset.": "Die Legende für dieses Fieldset.", - "Default": "Standard", - "Collapsible": "zusammenklappbar", - "If checked, this will turn this Panel into a collapsible panel.": - "Wenn diese Option aktiviert ist, wird dieses Panel zu einem zusammenklappbaren Panel.", - "Number of Rows": "anzahl der Zeilen", - "Enter the number or rows that should be displayed by this table.": - "Geben Sie die Anzahl oder Zeilen ein, die von dieser Tabelle angezeigt werden sollen.", - "Number of Columns": "Anzahl der Spalten", - "Enter the number or columns that should be displayed by this table.": - "Geben Sie die Anzahl oder Spalten ein, die von dieser Tabelle angezeigt werden sollen.", - "Clone Row Components": "Linienkomponenten klonen", - "Check this if you would like to": "Überprüfen Sie dies, wenn Sie möchten", - "Cell Alignment": "Zellausrichtung", - "Horizontal alignment for cells of the table.": - "Horizontale Ausrichtung für Zellen der Tabelle.", - "Center": "Zentriert", - "Striped": "Gestreift", - "This will stripe the table if checked.": - "Wenn dies aktiviert ist, wird die Tabelle gestreift.", - "Bordered": "Abgegrenzt", - "This will border the table if checked.": - "Wenn dies aktiviert ist, wird die Tabelle umrandet.", - "Hover": "Hover", - "Highlight a row on hover.": "Markieren Sie eine Zeile beim Hover.", - "Condensed": "Zusammengefasst", - "Condense the size of the table.": - "Fassen Sie die Größe der Tabelle zusammen.", - "Label for Key column": "Beschriftung für die Schlüsselspalte", - "Provide a label text for Key column (otherwise Key will be used)": - "Geben Sie einen Beschriftungstext für die Schlüsselspalte an (andernfalls wird der Schlüssel verwendet)", - "Disable Adding / Removing Rows": - "Deaktivieren Sie das Hinzufügen/Entfernen von Zeilen", - "Check if you want to hide Add Another button and Remove Row button": - "Stellen Sie sicher, dass Sie die Schaltflächen „Andere hinzufügen“ und „Zeile entfernen“ ausblenden möchten", - "Show key column before value": "Schlüsselspalte vor Wert anzeigen", - "Check if you would like to show the Key before the Value column.": - "Aktivieren Sie, ob Sie den Schlüssel vor der Spalte Wert anzeigen möchten.", - "Type of event": "Ereignistyp", - "Specify type of event that this reCAPTCHA would react to": - "Geben Sie den Ereignistyp an, auf den dieses reCAPTCHA reagieren würde", - "Form Load": "Formular laden", - "Button Click": "Schaltfläche Klicken", - "The form to load within this form component.": - "Das Formular, das in diese Formularkomponente geladen werden soll.", - "Form Revision": "Formularüberarbeitung", - "You can lock the nested form to a specific revision by entering the revision number here.": - "Sie können das verschachtelte Formular für eine bestimmte Revision sperren, indem Sie hier die Revisionsnummer eingeben.", - "Use Original Revision while Submissions Viewing": - "Verwenden Sie die Originalbewertung, wenn Sie sich Einsendungen ansehen", - "Using this option will make form load the original revision (the one which was used to make a submission) when viewing a submission.": - "Wenn Sie diese Option verwenden, lädt das Formular beim Anzeigen einer Einreichung die ursprüngliche Revision (die zum Erstellen einer Einreichung verwendet wurde).", - "Save as reference": "Als Referenz speichern", - "Using this option will save this field as a reference and link its value to the value of the origin record.": - "Mit dieser Option wird dieses Feld als Referenz gespeichert und sein Wert mit dem Wert des Quelldatensatzes verknüpft.", - "Select Fields": "Felder auswählen", - "The properties on the resource to return as part of the options. If left blank, all properties will be returned.": - "Die Eigenschaften der Ressource, die als Teil der Optionen zurückgegeben werden sollen. Wenn das Feld leer gelassen wird, werden alle Eigenschaften zurückgegeben.", - "Search Fields": "Suchfelder", - "Filter Query": "Filterabfrage", - "Use this to provide additional filtering using query parameters.": - "Verwenden Sie dies, um eine zusätzliche Filterung mithilfe von Abfrageparametern bereitzustellen.", - "The filter query for results.": "Die Filterabfrage für Ergebnisse.", - "Sort Query": "Abfrage sortieren", - "Use this to provide additional sorting using query parameters": - "Verwenden Sie dies, um eine zusätzliche Sortierung mithilfe von Abfrageparametern bereitzustellen", - "The sort query for results": "Die Sortierabfrage für Ergebnisse", - "Add Resource": "Ressource hinzufügen", - "Allows to create a new resource while entering a submission.": - "Ermöglicht das Erstellen einer neuen Ressource während der Eingabe einer Einreichung.", - "Add Resource Label": "Ressourcenbezeichnung hinzufügen", - "Set the text of the Add Resource button.": - "Legen Sie den Text für die Funktionsschaltfläche hinzufügen fest.", - "Auto Expand": "Automatisch erweitern", - "Wizard": "Wizard", - "Text Field": "Textfeld", - "Downloaded Successfully": "Erfolgreich heruntergeladen", - "Error in JSON file structure": "Fehler in der JSON-Dateistruktur", - "Please fix the errors before submitting again.": - "Bitte beheben Sie die Fehler, bevor Sie sie erneut senden.", - "No submissions available for the selected date range": - "Für den ausgewählten Zeitraum sind keine Einreichungen verfügbar", - "OK": "OK", - "Export PDF": "PDF exportieren", - "Something went wrong. Please try again!":"Etwas ist schief gelaufen. Bitte versuche es erneut!", - "No Dashboards Found":"Keine Dashboards gefunden", - "Processes":"Prozesse", - "Please select an existing workflow.":"Bitte wählen Sie einen bestehenden Workflow aus.", - "Create New":"Neu erstellen", - "Or create new workflow or import a workflow from a local directory.":"Oder erstellen Sie einen neuen Workflow oder importieren Sie einen Workflow aus einem lokalen Verzeichnis.", - "The operation couldn't be completed. Please try after sometime":"Der Vorgang konnte nicht abgeschlossen werden. Bitte versuchen Sie es nach einiger Zeit erneut", - "Select...":"Auswählen...", - "No Drafts Found": "Keine Entwürfe gefunden", - "Draft Id":"Entwurfs-ID", - "Draft Name":"Entwurfsname", - "Link To Draft Submission":"Link zur Entwurfsübermittlung", - "Drafts":"Entwürfe", - "You can't submit this form until it is published":"Sie können dieses Formular erst absenden, wenn es veröffentlicht wurde", - "Form not published":"Formular nicht veröffentlicht", - "Access Denied" : "Zugriff abgelehnt", - "By default, the tenant key would be prefixed to form":"Standardmäßig wird dem Mandantenschlüssel form vorangestellt", - "go back":"zurück", - "Submission saved to draft.":"Einsendung als Entwurf gespeichert.", - "Saved to draft":"Als Entwurf gespeichert", - "Saving...":"Speichern...", - "Error in creating form process mapper":"Fehler beim Erstellen des Formularprozess-Mappers", - "Select the date":"Wählen Sie das Datum aus", - "Diagram Deployed":"Diagramm bereitgestellt", - "Deployment Failed":"Bereitstellung fehlgeschlagen", - "Process name(s) must not be empty":"Prozessname(n) dürfen nicht leer sein", - "URL copied":"URL kopiert", - "Click Here to Copy":"Klicken Sie hier, um zu kopieren", - "Revert":"Zurückkehren", - "Overview": "Überblick", - "Design Permission": "Designgenehmigung", - "All Designers": "Alle Designer", - "Private(only you)": "Privat (nur Sie)", - "Specific Designer Group": "Spezifische Designergruppe", - "Submission Permission": "Einreichungserlaubnis", - "All Users": "Alle Nutzer", - "Specific User Group": "Spezifische Benutzergruppe", - "Applicable for Designer Roled Users only.": "Gilt nur für Benutzer mit Designer-Rolle.", - "Applicable for Client and Reviewer Roled Users only.": "Gilt nur für Benutzer mit Kunden- und Prüferrollen.", - "Saved to Submissions/Drafts": "Gespeichert in Einreichungen/Entwürfe", - "Unfinished Submissions will be saved to Submissions/Drafts.": "Unvollständige Einreichungen werden in Einreichungen/Entwürfe gespeichert.", - "Changing the form workflow will not affect the existing submissions. It will only update in the newly created submissions. Press Save Changes to continue or cancel the changes.": "Die Änderung des Formular-Workflows wird die bestehenden Einreichungen nicht beeinflussen. Es wird nur in den neu erstellten Einreichungen aktualisiert. Drücken Sie Speichern Sie die Änderungen, um fortzufahren oder die Änderungen abzubrechen.", - "Submissions are made against": "Einreichungen werden gemacht gegen", - "Submission is made against": "Einreichung wird gemacht gegen", - "Changing the form title will not affect the existing submissions. It will only update in the newly created submissions. Press Save Changes to continue or cancel the changes.": "Die Änderung des Formulartitels wird die bestehenden Einreichungen nicht beeinflussen. Es wird nur in den neu erstellten Einreichungen aktualisiert. Drücken Sie Speichern Sie die Änderungen, um fortzufahren oder die Änderungen abzubrechen.", - "Submission Id": "Einreichungs-ID", - "Submission History": "Einreichungshistorie", - "No Submission History found": "Keine Einreichungshistorie gefunden", - "No submissions Found": "Keine Einreichungen gefunden", - "Create new filter":"Neuen Filter erstellen", - "Filter Name":"Filtername", - "Enter your text here":"Gib deinen Text hier ein", - "Criteria":"Kriterien", - "Add Value":"Mehrwert", - "Definition Key":"Definitionsschlüssel", - "Asignee":"Bevollmächtigter", - "Include Assigned Task":"Zugewiesene Aufgabe einschließen", - "Variable":"Variable", - "Show undefined variables":"Undefinierte Variablen anzeigen", - "Name of variable":"Name der Variablen", - "Readable name":"Lesbarer Name", - "Permission":"Erlaubnis", - "Accessible for all users":"Für alle Benutzer zugänglich", - "Private (Only You)":"Privat (nur Sie)", - "Specific User/ Group":"Bestimmter Benutzer/Gruppe", - "User":"Benutzer", - "Group":"Gruppe", - "Identifier":"Kennung", - "Enter role ID":"Geben Sie die Rollen-ID ein", - "Create Filter":"Filter erstellen", - "Select a task in the List":"Wählen Sie eine Aufgabe in der Liste aus", - "Select a specific task from the provided list of options. Your selection will determine the task you will be working on or interacting with.":"Wählen Sie eine bestimmte Aufgabe aus der bereitgestellten Optionsliste aus. Ihre Auswahl bestimmt die Aufgabe, an der Sie arbeiten oder mit der Sie interagieren." - - - - - }, - es:{ - "No histories found":"No se encontraron historias", - "Continue":"Continuar", - "This will create a new version of the form without changing the path name but with new form id.":"Esto creará una nueva versión del formulario sin cambiar el nombre de la ruta pero con un nuevo ID de formulario.", - "Save as a new version":"Guardar como una nueva versión", - "Save New Version":"Guardar Nueva Versión", - "Do you want to save a new version of this form?":"¿Quieres guardar una nueva versión de este formulario?", - "Do you want to create a duplicate form and associated workflow from existing form ?":"¿Quieres crear un formulario duplicado y un flujo de trabajo asociado a partir de un formulario existente?", - "New version created":"Nueva versión creada", - "Create a duplicate form":"Crear un formulario duplicado", - "Show more":"Mostrar más", - "Modified By":"Modificado por", - "Created On" : "Creado el", - "Formsflow automatically saves your previous form data. Now you can switch to the previous stage and edit.":"Formsflow guarda automáticamente los datos de su formulario anterior. Ahora puede cambiar a la etapa anterior y editar.", - "Duplicate Form":"Formulario Duplicado", - "Form History":"Historial del Formulario", - "No file chosen":"Ningún archivo seleccionado", - "Choose File":"Seleccionar Archivo", - "Choose any":"Seleccionar cualquiera", - "Sort by form name":"Ordenar por nombre de formulario", - "select form type":"seleccionar tipo de formulario", - "Draft Deleted Successfully":"Borrador eliminado correctamente", - "Saved to Applications/Drafts":"Guardado en Aplicaciones/Borradores", - "Unfinished applications will be saved to Applications/Drafts.":"Las aplicaciones no finalizadas se guardarán en Aplicaciones/Borradores.", - "Discard Draft":"Descartar borrador", - "Are you sure you wish to delete the draft":"¿Estás seguro de que deseas eliminar el borrador", - "with ID":"con ID", - "Please change the selected filters to view Forms":"Por favor, cambie los filtros seleccionados para ver Formularios", - "Search by form name":"Buscar por nombre de formulario", - "Click to search":"Click to search", - "No submissions found":"No submissions found", - "Form field":"Campo de formulario", - "Enter Label":"Ingresar etiqueta", - "Select form field":"Seleccionar campo de formulario", - "Add form fields to display in task list":"Agregar campos de formulario para mostrar en la lista de tareas", - "Version":"Versión", - "Submission Status":"Estado de envío", - "No submission status":"Sin estado de envío", - "No Public url found":"No se encontró URL pública", - "Show in list":"Mostrar en la lista", - "Select Task Variable":"Seleccionar variable de tarea", - "Enter your Label":"Ingresar etiqueta", - "Please select from one of the following workflows.":"Por favor seleccione uno de los siguientes flujos de trabajo.", - "Select Key":"Seleccionar clave", - "Create Your Task Variable":"Crear su variable de tarea", - "No Task variable selected":"No se ha seleccionado ninguna variable de tarea", - "Workflow Associate":"Asociar flujo de trabajo", - "Task variable":"Variable de tarea", - "Enter pathname":"Ingresar nombre de ruta", - "Name": "Nombre", - "Title": "Título", - "Display as": "Mostrar como", - "Anonymous Form ": "Formulario anónimo", - "Submission Saved": "Envío guardado.", - "Error while Submission.": "Error durante el envío.", - "Message": "Por favor corrija los errores antes de volver a enviar.", - "Submission cannot be done.": "No se puede realizar el envío.", - "No Process Diagram found": "No se encontró diagrama de proceso", - "Are you sure you wish to delete the form": "¿Está seguro que desea eliminar el formulario?", - "Are you sure you wish to delete the form?":"¿Está seguro que desea eliminar el formulario?", - 'Forms': "Formularios", - 'Form':"Formulario", - "Downloaded Successfully":"Descargado exitosamente", - "Edit": "Editar", - "Do you want to associate form with a workflow ?": "¿Desea asociar el formulario con un flujo de trabajo?", - "Yes": "Sí", - "No": "No", - "Form Name": "Nombre del Formulario", - "Workflow Name": "Nombre del Flujo de Trabajo", - "Publish this form for Client Users.": "Publicar este formulario para usuarios del cliente.", - "Comments":"Comentarios", - "Back": "Volver", - "Edit Form": "Editar formulario", - "Next": "Siguiente", - "Are you sure you wish to delete this submission?": "¿Está seguro de que desea eliminar esta presentación?", - "Save": "Guardar", - "Back to Form List": "Volver a la lista de formularios", - "Submit New": "Enviar nuevo", - "View Submissions": "Ver envíos", - "View/Edit Form": "Ver/Editar formulario", - "Delete Form": "Eliminar formulario", - "Delete": "Eliminar", - "Print As PDF": "Imprimir como PDF", - "Applications": "Aplicaciones", - "Tasks": "Tareas", - "Metrics": "Métricas", - "Logout": "Cerrar sesión", - "No tasks found": "No se encontraron tareas", - "Please change the selected filters to view tasks": "Por favor, cambie los filtros seleccionados para ver las tareas", - "Clear all filters": "Limpiar todos los filtros", - "Created": "Creado", - "Task Variables": "Variables de tarea", - "Process Variables": "Variables de proceso", - "Process Definition Name": "Nombre de la definición de proceso", - "Assigne": "Asignado", - "Candidate Group": "Grupo de candidatos", - "Candidate User": "Usuario candidato", - "Description": "Descripción", - "Priority": "Prioridad", - "Due Date": "Fecha de vencimiento", - "Follow up Date": "Fecha de seguimiento", - "Task name": "Nombre de la tarea", - "Remove sorting": "Eliminar ordenamiento", - "Ascending": "Ascendente", - "Descending": "Descendente", - "Add sorting": "Agregar ordenamiento", - "of the criteria are met.": "si se cumplen los criterios.", - "For Variable, ignore case of": "Para la variable, ignorar mayúsculas y minúsculas de", - "name": "nombre", - "value": "valor", - "No task matching filters found.": "No se encontraron tareas que coincidan con los filtros.", - "Application Id": "Id. de aplicación", - "Set follow-up Date": "Establecer fecha de seguimiento", - "Set Due date": "Establecer fecha límite", - "Add groups": "Agregar grupos", - "Claim": "Reclamar", - "Search By Last Name": "Buscar por apellido", - "Search By First Name": "Buscar por nombre", - "Search By Email": "Buscar por correo electrónico", - "You can add a group by typing a group ID into the input field and afterwards clicking the button with the plus sign.": "Puede agregar un grupo escribiendo un ID de grupo en el campo de entrada y haciendo clic en el botón con el signo más después.", - "Add a group": "Agregar un grupo", - "Process Name": "Nombre del proceso", - "Set FollowUp Date": "Establecer fecha de seguimiento", - "Groups": "grupos", - "Click to Change Assignee": "Haga clic para cambiar el asignatario", - "Reset Assignee": "Restablecer asignatario", - "Update User": "Actualizar usuario", - "Close": "Cerrar", - "Type": "Tipo", - "Remove search": "Eliminar búsqueda", - "Property": "Propiedad", - "Operator": "Operador", - "Total number of results": "Número total de resultados", - "Filter Tasks": "Filtrar tareas", - "All": "Todos", - "ANY": "Cualquiera", - "Task assignee": "Asignado a", - "Application History": "Historial de aplicación", - "View Submission": "Ver envío", - "Showing": "Mostrando", - "to": "a", - "Results": "Resultados", - "Acknowledge": "Aceptar", - "View": "Ver", - "Select a task in the list.": "Seleccione una tarea en la lista.", - "No Filters Found": "No se encontraron filtros", - "Loading": "Cargando", - "Loading...": "Cargando...", - "History": "Historial", - "Diagram": "Diagrama", - "Delete Confirmation": "Confirmación de eliminación", - "All tasks": "Todas las tareas", - "Manage Groups": "Administrar grupos", - "Group ID": "ID de grupo", - "Due": "Fecha límite", - "Follow-up": "Seguimiento", - "Application Name": "Nombre de la aplicación", - "Created By": "Creado por", - "Application Status": "Estado de la aplicación", - "Submitted On": "Enviado en", - "Modified On": "Modificado en", - "No History Found": "No se encontró historial", - "Process Diagram": "Diagrama del proceso", - "Details": "Detalles", - "Status": "Estado", - "Submissions": "Envíos", - "No Application History found": "No se encontró historial de la aplicación", - "Link To Form Submission": "Enlace al envío del formulario", - "Last Modified": "Última modificación", - "Insights": "Perspectivas", - "No dashboard found": "No se encontró ningún panel de control", - "of": "de", - "results": "resultados", - "Dashboards": "Paneles de control", - "Select Dashboard": "Seleccionar panel de control", - "Total Submissions": "Total de envíos", - "Save & Preview": "Guardar y previsualizar", - "Operations": "Operaciones", - "Access Groups": "Grupos de acceso", - "Action": "Acción", - "Add": "Agregar", - "Admin": "Administrador", - "Create Form": "Crear formulario", - "Upload Form": "Subir formulario", - "Download Form": "Descargar formulario", - "Upload json form only": "Solo cargar formulario json", - "Select atleast one form": "Seleccionar al menos un formulario", - "Select All": "Seleccionar todo", - "Created Date": "Fecha de creación", - "Modified Date": "Fecha de modificación", - "File Upload Status": "Estado de carga de archivos", - "Forms Completed": "Formularios completados", - "Form Completed": "Formulario completado", - "No forms found": "No se encontraron formularios", - "Powered by ": "Desarrollado por ", - "Press Enter key or click here to search": "Presionar la tecla Enter o hacer clic aquí para buscar", - "Click to clear": "Hacer clic para limpiar", - "No applications found": "No se encontraron aplicaciones", - "Successfully Updated": "Actualizado exitosamente", - "Failed": "Falló", - "Submission Failed.": "Falló la presentación.", - "Click here to back": "Hacer clic aquí para volver", - "Path": "Ruta", - "Make this form public ?": "¿Hacer público este formulario?", - "Design Form": "Diseñar formulario", - "Associate this form with a workflow?": "¿Asociar este formulario con un flujo de trabajo?", - "Preview and Confirm": "Previsualizar y confirmar", - "All steps completed - you're finished": "Todos los pasos completados - has terminado", - "Enter the form machine name": "Ingrese el nombre de la máquina del formulario", - "Enter the form title": "Ingrese el título del formulario", - "Error in JSON file structure": "Error en la estructura del archivo JSON", - "example": "ejemplo", - "Please fix the errors before submitting again.": "Por favor, corrija los errores antes de volver a enviar.", - "Wizard": "Asistente", - "Save Form": "Guardar formulario", - "Confirm": "Confirmar", - "Cancel": "Cancelar", - "Please change the selected filters to view applications": "Por favor, cambie los filtros seleccionados para ver las aplicaciones", - "No submissions available for the selected date range": "No hay envíos disponibles para el rango de fechas seleccionado", - "Ok": "Aceptar", - "Form not available": "Formulario no disponible", - "Thank you for your response.": "Gracias por su respuesta.", - "saved successfully": "guardado exitosamente", - "Copy anonymous form URL": "Copiar URL del formulario anónimo", - "Submitted By": "Enviado por", - "Confirmation": "Confirmación", - "Changing the form title will not affect the existing applications. It will only update in the newly created applications. Press Save Changes to continue or cancel the changes.": "Cambiar el título del formulario no afectará las aplicaciones existentes. Solo se actualizará en las aplicaciones recién creadas. Presione Guardar cambios para continuar o cancelar los cambios.", - "Error while saving Form": "Error al guardar el formulario", - "Click here to go back": "Haga clic aquí para volver", - "Are you sure you wish to delete the form ": "¿Está seguro de que desea eliminar el formulario ", - ". Are you sure want to delete ?": ". ¿Está seguro de que desea eliminar?", - "Save Changes": "Guardar cambios", - "Changing the form workflow will not affect the existing applications. It will only update in the newly created applications. Press Save Changes to continue or cancel the changes.": "Cambiar el flujo de trabajo del formulario no afectará las aplicaciones existentes. Solo se actualizará en las aplicaciones recién creadas. Presione Guardar cambios para continuar o cancelar los cambios.", - "Form Workflow Association Saved.": "Asociación de flujo de trabajo del formulario guardada.", - "Form deleted successfully": "Formulario eliminado correctamente", - "Form process failed": "Proceso de formulario fallido", - "Form unpublishing Failed": "La eliminación de publicación del formulario falló", - "All groups have access to the dashboard": "Todos los grupos tienen acceso al panel", - "Export PDF": "Exportar a PDF", - "Something went wrong. Please try again!": "Algo salió mal. ¡Por favor, inténtelo de nuevo!", - "No Dashboards Found": "No se encontraron paneles", - "Processes": "Procesos", - "Please select an existing workflow.": "Por favor, seleccione un flujo de trabajo existente.", - "Create New": "Crear nuevo", - "Or create new workflow or import a workflow from a local directory.": "O cree un nuevo flujo de trabajo o importe un flujo de trabajo desde un directorio local.", - "The operation couldn't be completed. Please try after sometime":"La operación no se pudo completar. Por favor, inténtalo de nuevo más tarde.", - "Select...":"Seleccionar...", - "No Drafts Found": "No se encontraron borradores", - "Help":"Ayuda", - "Draft Id":"ID del borrador", - "Draft Name":"Nombre del borrador", - "Link To Draft Submission":"Enlace al envío del borrador", - "Drafts":"Borradores", - "You can't submit this form until it is published":"No puedes enviar este formulario hasta que sea publicado", - "Form not published":"Formulario no publicado", - "Access Denied" : "Acceso denegado", - "By default, the tenant key would be prefixed to form":"Por defecto, la clave del inquilino se prefijará al formulario", - "go back":"Volver", - "No Applications Found":"No se encontraron aplicaciones", - "Submission saved to draft.":"El envío se guardó en borrador.", - "Saved to draft":"Guardado en borrador", - "Saving...":"Guardando...", - "Resource":"Recurso", - "Error in creating form process mapper":"Error al crear el mapeador de procesos del formulario", - "Select the date":"Seleccionar la fecha", - "Diagram Deployed":"Diagrama desplegado", - "Deployment Failed":"Error al desplegar", - "Process name(s) must not be empty":"El nombre del proceso no debe estar vacío", - "URL copied":"URL copiada", - "Click Here to Copy":"Haz clic aquí para copiar", - "Resources":"Recursos", - "Duplicate form created successfully":"Formulario duplicado creado exitosamente", - "Submit Form": "Enviar Formulario", - "Changes Applied Successfully": "Cambios Aplicados Exitosamente", - "Filter Deleted Successfully": "Filtro Eliminado Exitosamente", - "Save Filter": "Guardar Filtro", - "Filter Name": "Nombre del Filtro", - "Create new filter": "Crear Nuevo Filtro", - "Definition Key": "Clave de Definición", - "Permission": "Permiso", - "Enter your text here": "Ingrese su texto aquí", - "Accessible for all users": "Accesible para todos los usuarios", - "Private (Only You)": "Privado (Solo Tú)", - "Specific Group": "Grupo Específico", - "Select Elements": "Seleccionar Elementos", - "Task Attributes Selected": "Atributos de Tarea Seleccionados", - "Delete Filter": "Eliminar Filtro", - "Add Value": "Agregar Valor", - "Show only current user assigned task": "Mostrar solo tareas asignadas al usuario actual", - "Show task based on logged user roles": "Mostrar tareas según los roles del usuario registrado", - "Create Filter": "Crear Filtro", - "Task Attributes": "Atributos de Tarea", - "Only selected task attributes will be available on task list view": "Solo los atributos de tarea seleccionados estarán disponibles en la vista de lista de tareas", - "Show undefined variables": "Mostrar variables indefinidas", - "Label": "Etiqueta", - "Variables": "Variables", - "Task Title": "Título de la Tarea", - "List View": "Vista de Lista", - "Card View": "Vista de Tarjetas", - "Create New Filter": "Crear Nuevo Filtro", - "Sort by": "Ordenar por", - "Collapse All": "Colapsar Todo", - "Expand All": "Expandir Todo", - "Back to task": "Volver a la tarea", - "Filters": "Filtros", - "Assignee": "Asignado a", - "Select a user": "Seleccionar un usuario", - "Create DMN": "Crear DMN", - "Create Process": "Crear Proceso", - "Edit DMN": "Editar DMN", - "More options": "Más opciones", - "Form Description": "Descripción del Formulario", - "Saved to Submissions/Drafts": "Guardado en Envíos/Borradores", - "Unfinished submissions will be saved to Submissions/Drafts.": "Las presentaciones incompletas se guardarán en Envíos/Borradores.", - "Edit Process": "Editar Proceso", - "Add filter name": "Agregar nombre del filtro", - "This section is aimed to set the parameters\nused to filter the tasks": "Esta sección está destinada a establecer los parámetros\nutilizados para filtrar las tareas", - "This section is aimed to set read\npermissions for the filter": "Esta sección está destinada a establecer permisos de lectura\npara el filtro", - "This section is aimed to set select\ntask attributes that will be visible in\nthe task list view": "Esta sección está destinada a establecer los atributos de tarea seleccionados\nque serán visibles en la vista de lista de tareas", - "Task Attribute": "Atributo de Tarea", - "You can define variables shown in the list": "Puede definir las variables que se mostrarán en la lista", - "Enter role name": "Ingrese el nombre del rol", - "Public": "Público", - "View Submitted Form": "Ver Formulario Enviado", - "View Draft Details": "Ver Detalles del Borrador", - "Edit Draft": "Editar Borrador", - "Draft Title": "Título del Borrador", - "Filter": "Filtro", - "Advanced Options": "Opciones Avanzadas", - "Enter the path name": "Ingrese el nombre del camino", - "Search by form title": "Buscar por título del formulario", - "Associate Workflow": "Asociar Flujo de Trabajo", - "Search by workflow name": "Buscar por nombre del flujo de trabajo", - "View Details": "Ver Detalles", - "Visibility": "Visibilidad", - "Form Title": "Título del Formulario", - "Access restricted by its designer..!": "Acceso restringido por su diseñador..!", - "and you will no longer have the access to this form in bundles": "y ya no tendrá acceso a este formulario en paquetes", - "You will no longer have the access to this form in bundles": "Ya no tendrá acceso a este formulario en paquetes", - "Bad Request": "Solicitud Incorrecta", - "Select the form to be displayed based on the above criteria": "Seleccione el formulario que se mostrará según los criterios anteriores", - "Create the criteria using the API key of any form component and a conditional notation. For example, 'age > 18' where 'age' is the API key of a form component": "Cree los criterios utilizando la clave API de cualquier componente del formulario y una notación condicional. Por ejemplo, 'edad > 18' donde 'edad' es la clave API de un componente del formulario", - "Select form version": "Seleccionar versión del formulario", - "Please remove the special characters...!": "¡Por favor, elimine los caracteres especiales...!", - "No submission available in the selected date. Please select another date range": "No hay envíos disponibles en la fecha seleccionada. Por favor, seleccione otro rango de fechas", - "Latest Version": "Última Versión", - "No task variable selected": "No se ha seleccionado ninguna variable de tarea", - "Form saved": "Formulario guardado.", - "Request Status": "Estado de la Solicitud", - "Request Name": "Nombre de la Solicitud", - "Applications are submitted against": "Las solicitudes se presentan contra", - "Application is submitted against": "La solicitud se presenta contra", - "Are you sure to delete the": "¿Está seguro de eliminar el", - "Are you sure to delete the draft": "¿Está seguro de que desea eliminar el borrador", - "Are you sure to delete this submission ?": "¿Está seguro de que desea eliminar este envío?", - "Submissions are made against": "Las presentaciones se realizan contra", - "Submission is made against": "La presentación se realiza contra", - "Form-Workflow association saved.": "Asociación Formulario-Flujo de Trabajo guardada.", - "Form-Workflow association failed.": "Fallo en la asociación Formulario-Flujo de Trabajo.", - "Form deletion unsuccessful": "Eliminación del formulario fallida", - "Bundle deleted successfully": "Paquete eliminado con éxito", - "Diagram deployed": "Diagrama desplegado", - "Deployment failed": "Despliegue fallido", - "form uploaded": "formulario subido", - "forms uploaded": "formularios subidos", - "Failed to upload": "Error al subir", - "forms...!": "¡formularios...!", - "form...!": "¡formulario...!", - "Revert": "Revertir", - "Criteria": "Criterios", - "Select Form": "Seleccionar Formulario", - "Create Condition": "Crear Condición", - "Enter criteria": "Ingresar criterios", - "Make this form public": "Hacer este formulario público", - "Enable bundling": "Habilitar agrupamiento", - "Bundle Name": "Nombre del Paquete", - "View/Edit": "Ver/Editar", - "Create Bundle": "Crear Paquete", - "Rows per page": "Filas por página", - "Items per page": "Ítems por página", - "entries": "entradas", - "Form Bundle": "Paquete de Formularios", - "No bundles found": "No se encontraron paquetes", - "Please change the selected filters to view Bundles": "Por favor, cambie los filtros seleccionados para ver Paquetes", - "Select all to download forms": "Seleccionar todo para descargar formularios", - "Select for download": "Seleccionar para descargar", - "Bundle Description": "Descripción del Paquete", - "Conditions": "Condiciones", - "Enter name": "Ingresar nombre", - "Enter Description": "Ingresar Descripción", - "You can change the form order by drag and drop": "Puede cambiar el orden del formulario arrastrando y soltando", - "Form Order": "Orden del Formulario", - "Form Type": "Tipo de Formulario", - "Add Forms Launch together": "Agregar Formularios Lanzados Juntos", - "Form bundles can save your time by grouping forms together": "Los paquetes de formularios pueden ahorrar tiempo agrupando formularios", - "Add Forms": "Agregar Formularios", - "Create Conditions": "Crear Condiciones", - "Add Conditions": "Agregar Condiciones", - "Select Forms": "Seleccionar Formularios", - "Insert": "Insertar", - "View Form": "Ver Formulario", - "Publish this Bundle for Client Users.": "Publicar este Paquete para Usuarios Clientes.", - "Total Forms": "Total de Formularios", - "Edit Bundle": "Editar Paquete", - "Next Form": "Formulario Siguiente", - "Previous Form": "Formulario Anterior", - "Forms included under the package": "Formularios incluidos en el paquete", - "Submit": "Enviar", - "Reset Zoom": "Restablecer Zoom", - "Zoom In": "Acercar", - "Zoom Out": "Alejar", - "Deploy": "Desplegar", - "Export": "Exportar", - "Overview": "Visión General", - "Design Permission": "Permiso de Diseño", - "Application Permission": "Permiso de Aplicación", - "All Designers": "Todos los Diseñadores", - "Private(only you)": "Privado(solo tú)", - "Specific Designer Group": "Grupo de Diseñadores Específico", - "Submission Permission": "Permiso de Envío", - "All Users": "Todos los Usuarios", - "Specific User Group": "Grupo de Usuarios Específico", - "Specific Reviewers": "Revisores Específicos", - "All Reviewers": "Todos los Revisores", - "Permission for application tracking.": "Permiso para el seguimiento de aplicaciones.", - "Design Bundle": "Diseñar Paquete", - "Workflow": "Flujo de Trabajo", - "Bundle Name and Description is Required": "Se Requiere Nombre y Descripción del Paquete", - "Bundle Description is Required": "Se Requiere Descripción del Paquete", - "Bundle Create Successfully": "Paquete Creado Exitosamente", - "Bundle updated successfully": "Paquete actualizado exitosamente", - "Select": "Seleccionar", - "Unselect": "Deseleccionar", - "Applicable for Designer Roled Users only.": "Aplicable solo para Usuarios con Rol de Diseñador.", - "Applicable for Client and Reviewer Roled Users only.": "Aplicable solo para Usuarios con Rol de Cliente y Revisor.", - "Done": "Hecho", - "Failed to update permission!": "¡Fallo al actualizar el permiso!", - "Failed to fetch roles!": "¡Fallo al obtener roles!", - "Failed to update role!": "¡Fallo al actualizar el rol!", - "Permission updated successfully!": "¡Permiso actualizado con éxito!", - "Role updated successfully!": "¡Rol actualizado con éxito!", - "Update failed!": "¡Actualización fallida!", - "Clear": "Limpiar", - "Are you sure deleting the role": "¿Está seguro de eliminar el rol", - "Confirm Delete": "Confirmar Eliminación", - "All roles": "Todos los roles", - "Filter By:": "Filtrar Por:", - "Create": "Crear", - "Eg: Account Manager": "Ej: Gerente de Cuenta", - "Search by name, username or email": "Buscar por nombre, nombre de usuario o correo electrónico", - "No data Found": "No se encontraron datos", - "Dashboard": "Tablero", - "Roles": "Roles", - "Users": "Usuarios", - "Create New Role": "Crear Nuevo Rol", - "Search by role name": "Buscar por nombre del rol", - "Role Name": "Nombre del Rol", - "Actions": "Acciones", - "Create Role": "Crear Rol", - "Email": "Correo Electrónico", - "Role": "Rol", - "Add Role": "Agregar Rol", - "Role deleted successfully!": "¡Rol eliminado con éxito!", - "Failed to delete role!": "¡Fallo al eliminar el rol!", - "Role created successfully!": "¡Rol creado con éxito!", - "Failed to create role!": "¡Fallo al crear el rol!", - "Update success!": "¡Actualización exitosa!", - "No results found": "No se encontraron resultados", - "Edit Role": "Editar Rol", - "Failed to fetch users!": "¡Fallo al obtener usuarios!", - "Role names cannot contain special characters except _ , -": "Los nombres de rol no pueden contener caracteres especiales excepto _ , -", - "Role names cannot contain special characters except _ , - , / ": "Los nombres de rol no pueden contener caracteres especiales excepto _ , - , / ", - "Rules deployed successfully": "Reglas desplegadas con éxito", - "Choose From Template": "Elegir de la Plantilla", - "Back to forms": "Volver a los formularios", - "Choose From Templates": "Elegir de las Plantillas", - "Explore our Template Library to find the perfect combination of forms and workflows. Click to preview a template and, if it fits your needs, customize it to your liking. Once you've tailored it to your specific requirements, you're all set to create your business case": "Explore nuestra Biblioteca de Plantillas para encontrar la combinación perfecta de formularios y flujos de trabajo. Haga clic para ver una plantilla y, si se ajusta a sus necesidades, personalícela a su gusto. Una vez que la haya adaptado a sus requisitos específicos, estará listo para crear su caso de negocio", - "All templates": "Todas las plantillas", - "Template count": "Cantidad de plantillas", - "Learn more": "Aprender más", - "Template Details": "Detalles de la Plantilla", - "Template Title": "Título de la Plantilla", - "Preview Form": "Vista Previa del Formulario", - "Connected Workflow": "Flujo de Trabajo Conectado", - "Delete Template": "Eliminar Plantilla", - "Use Template": "Usar Plantilla", - "Template created successfully": "Plantilla creada con éxito", - "Template deleted successfully": "Plantilla eliminada con éxito", - "Template updated successfully": "Plantilla actualizada con éxito", - "Category": "Categoría", - "Search category...": "Buscar categoría...", - "Save as Template": "Guardar como Plantilla", - "Create Template": "Crear Plantilla", - "Select or Create Category": "Seleccionar o Crear Categoría", - "Short Intro": "Breve Introducción", - "Enter short intro": "Ingresar breve introducción", - "Enter description": "Ingresar descripción", - "Select or create": "Seleccionar o crear", - "Update Template": "Actualizar Plantilla", - "Form created successfully": "Formulario creado con éxito", - "select or create": "Seleccionar o crear", - "Update Associated Form": "Actualizar Formulario Asociado", - "Update Associated Workflow": "Actualizar Flujo de Trabajo Asociado", - "Enter title": "Ingresar título", - "No Templates Found": "No se encontraron plantillas", - "No Category Found": "No se encontró la categoría", - "Save Template": "Guardar Plantilla", - "You can type and click the": "Puede escribir y hacer clic en", - "to create the category.": "para crear la categoría.", - "select or type to create": "Seleccionar o escribir para crear", - "BPMN": "BPMN", - "DMN": "DMN", - "Advanced Designer": "Diseñador Avanzado", - "Basic Designer": "Diseñador Básico", - "Search": "Buscar", - "Key": "Clave", - "No Process Found": "No se encontró proceso", - "Search workflow": "Buscar flujo de trabajo", - "No Dmn Found": "No se encontró DMN", - "Submission ID": "ID de Envío", - "Submission Name": "Nombre de Envío", - "Submission History": "Historial de Envío", - "No Submission History found": "No se encontró historial de envío", - "Error in submission count": "Error en el recuento de envíos", - "Permission for submission tracking.": "Permiso para el seguimiento de envíos.", - "Reviewer permission to view submissions": "Permiso de revisor para ver envíos", - "Permission to create new submission": "Permiso para crear nuevo envío", - "Back to Bundle List": "Volver a la Lista de Paquetes", - "Bundle": "Paquete", - "You can drag these nodes to the pane on the right.": "Puede arrastrar estos nodos al panel de la derecha.", - "You can delete the element by select and click the backspace": "Puede eliminar el elemento seleccionándolo y haciendo clic en la tecla de retroceso", - "Workflow Id": "ID del Flujo de Trabajo", - "Enter Workflow Id": "Ingresar ID del Flujo de Trabajo", - "Back to Submissions": "Volver a Envíos", - "Back to Drafts": "Volver a Borradores", - "Choose Your Workflow Option": "Elija Su Opción de Flujo de Trabajo", - "Create New Workflow": "Crear Nuevo Flujo de Trabajo", - "Choose this option when you want to create a fresh workflow based on the template. System will generate and deploy a new workflow, then connect it to the selected form. Opt for this if your form requires a distinct set of workflow steps tailored to its specific needs.": "Elija esta opción cuando desee crear un nuevo flujo de trabajo basado en la plantilla. El sistema generará y desplegará un nuevo flujo de trabajo, luego lo conectará al formulario seleccionado. Opte por esta opción si su formulario requiere un conjunto distinto de pasos de flujo de trabajo adaptados a sus necesidades específicas.", - "Reuse Existing Workflow": "Reutilizar Flujo de Trabajo Existente", - "Select this option to link the form with an already established workflow. Any modifications made to the existing workflow will automatically reflect in this form as well. This is ideal when you want to leverage the existing workflow for your form's requirements.": "Seleccione esta opción para vincular el formulario con un flujo de trabajo ya establecido. Cualquier modificación realizada en el flujo de trabajo existente se reflejará automáticamente en este formulario también. Esto es ideal cuando desea aprovechar el flujo de trabajo existente para los requisitos de su formulario.", - "Are you sure you wish to delete the Template?": "¿Está seguro de que desea eliminar la Plantilla?", - "Enter Workflow Name": "Ingresar Nombre del Flujo de Trabajo", - "Create Workflow": "Crear Flujo de Trabajo", - "Upload Workflow": "Subir Flujo de Trabajo", - "Edit Workflow": "Editar Flujo de Trabajo", - "Published": "Publicado", - "Unpublished": "No Publicado", - "Private": "Privado", - "Anonymous": "Anónimo", - "Edit Processes": "Editar Procesos", - "Create Processes": "Crear Procesos", - "tasks": "tareas", - "Submission Id": "ID de Envío", - "Clear All Filters": "Limpiar Todos los Filtros", - "Show results": "Mostrar resultados", - "Delete Draft": "Eliminar Borrador", - "I can help you design forms effortlessly- all you have to do is give me a clear and concise description of what the form is meant to do. I will build out the fields and layout for you,which you can further customize.": "Puedo ayudarte a diseñar formularios sin esfuerzo, todo lo que tienes que hacer es darme una descripción clara y concisa de lo que se supone que debe hacer el formulario. Construiré los campos y el diseño para ti, que luego podrás personalizar más.", - "I am": "Yo soy", - "For example 'Give us a form that will serve as a patient intake form for walk-in clinics'": "Por ejemplo 'Danos un formulario que sirva como formulario de admisión de pacientes para clínicas sin cita previa'", - "Enter your prompt here": "Ingrese su solicitud aquí", - "Would you like to continue?": "¿Te gustaría continuar?", - "Restart": "Reiniciar", - "I'm here to provide further assistance. Thank you!": "Estoy aquí para brindarte más asistencia. ¡Gracias!", - "Generate Form Design": "Generar Diseño de Formulario", - "Preview": "Vista Previa", - "Your form is now ready!": "¡Tu formulario está listo!", - "Please tell me all the specifications and requirements you have in mind for your form. After you have finished the description, hit send.": "Por favor, dime todas las especificaciones y requisitos que tienes en mente para tu formulario. Después de que hayas terminado la descripción, presiona enviar.", - "Choose template": "Elegir plantilla", - "Search by bundle name": "Buscar por nombre del paquete", - "Save Bundle": "Guardar Paquete", - "Id": "Id", - "Enable bundling ?": "¿Habilitar agrupamiento?", - "Select a task in the List.": "Seleccione una tarea en la Lista.", - "Add Date": "Agregar Fecha", - "Assign to Me": "Asignar a Mí", - "Filter count:": "Conteo de filtros:", - "Selected Forms": "Formularios Seleccionados", - "Template Used:": "Plantilla Utilizada:", - "Select a task from the List.": "Seleccione una tarea de la Lista.", - "Choose a task from the list; your selection directs your current activity.": "Elija una tarea de la lista; su selección dirige su actividad actual.", - "Please change the selected filters to view submissions": "Por favor, cambie los filtros seleccionados para ver los envíos", - "Please change the selected filters to view drafts": "Por favor, cambie los filtros seleccionados para ver los borradores", - "No drafts found": "No se encontraron borradores", - "Flow-E helps to build faster": "Flow-E ayuda a construir más rápido", - "Flow-E is not available for demonstration in the trial instance. You can experience Flow-E in any of the premium packages of the product": "Flow-E no está disponible para demostración en la instancia de prueba. Puede experimentar Flow-E en cualquiera de los paquetes premium del producto", - "Get in touch with formsflow.ai team": "Póngase en contacto con el equipo de formsflow.ai", - "Premium": "Premium", - "Select a status": "Seleccionar un estado", - "Group": "Grupo", - "Form description": "Descripción del formulario", - "Select all forms": "Seleccionar todos los formularios", - "Bold": "Negrita", - "Italic": "Cursiva", - "Underline": "Subrayado", - "Align left": "Alinear a la izquierda", - "Align center": "Alinear al centro", - "Align right": "Alinear a la derecha", - "Align justify": "Justificar", - "Insert Link": "Insertar Enlace", - "Clean": "Limpiar", - "Click for task variables": "Hacer clic para variables de tarea", - "Upload DMN": "Subir DMN", - "DMN Name": "Nombre del DMN", - "Search by DMN name": "Buscar por nombre de DMN", - "Display authorized tasks based on user roles": "Mostrar tareas autorizadas según roles de usuario", - "You are currently using a test instance.The trial period ends in": "Actualmente está utilizando una instancia de prueba. El período de prueba termina en", - "days.": "días.", - "Are you sure to delete": "¿Está seguro de eliminar", - "filter?": "filtro?", - "Select Workflow": "Seleccionar Flujo de Trabajo", - "Select Assignee": "Seleccionar Asignado", - "Click here to select attributes": "Haga clic aquí para seleccionar atributos", - "Select the predefined attributes and custom task variables created as part of form submission you wish to display in the task list": "Seleccione los atributos predefinidos y las variables de tarea personalizadas creadas como parte de la presentación del formulario que desea mostrar en la lista de tareas", - "Task variables": "Variables de tarea", - "User Role": "Rol del Usuario", - "User Group": "Grupo de Usuarios", - "Select User Role": "Seleccionar Rol del Usuario", - "Select User Group": "Seleccionar Grupo de Usuarios", - "To display task variables, select a form as part of the filter": "Para mostrar variables de tarea, seleccione un formulario como parte del filtro", - "select a form": "seleccionar un formulario", - "No task variables found": "No se encontraron variables de tarea", - "Edit filter": "Editar filtro", - "Select form fields to display in task list": "Seleccionar campos de formulario para mostrar en la lista de tareas", - "Select all fields": "Seleccionar todos los campos", - "Edit Label": "Editar Etiqueta", - "Selecting all form fields may affect performance. For the best performance, just pick the form fields you really need.": "Seleccionar todos los campos del formulario puede afectar el rendimiento. Para un mejor rendimiento, elija solo los campos del formulario que realmente necesita.", - "User Added successfully!": "¡Usuario agregado con éxito!", - "Failed to create user!": "¡Error al crear el usuario!", - "Add Registered Users": "Agregar Usuarios Registrados", - "Username or Email": "Nombre de usuario o correo electrónico", - "Add User": "Agregar Usuario", - "User doesn't exist!": "¡El usuario no existe!", - "Success": "Éxito", - "User added": "Usuario agregado", - "From": "De", - "To": "A", - "Premium Subscription": "Suscripción Premium", - "For further insights on this exclusive premium feature, kindly connect": "Para más información sobre esta exclusiva función premium, por favor contacte", - "with our dedicated marketing team for detailed information.": "con nuestro equipo de marketing dedicado para obtener información detallada.", - "Get Connected With Us Now!": "¡Conéctese con nosotros ahora!", - "Visit our": "Visite nuestro", - "Pricing page": "Página de precios", - "for more details.": "para más detalles.", - "Integration": "Integración", - "Recipes": "Recetas", - "Connected Apps": "Aplicaciones Conectadas", - "Library": "Biblioteca", - "Add group": "Agregar grupo", - "Add task label": "Agregar etiqueta de tarea", - "Integrations": "Integraciones", - "We facilitate hundreds of native integrations via our ‘Native Integrations Pro’ package.": "Facilitamos cientos de integraciones nativas a través de nuestro paquete ‘Native Integrations Pro’.", - "This feature is not available by default in the 14 day trial. If your trial requires this feature, you can let us know and we can enable this for you.": "Esta función no está disponible por defecto en la prueba de 14 días. Si su prueba requiere esta función, puede informarnos y podemos habilitarla para usted.", - "Upgrade to unlock Native Integrations Pro": "Actualice para desbloquear Native Integrations Pro", - "We facilitate hundreds of native integrations via our ": "Facilitamos cientos de integraciones nativas a través de nuestro ", - "Native Integrations Pro": "Native Integrations Pro", - "package. This feature is not available by default in the 14 day trial. If your trial requires this feature, you can let us know and we can enable this for you.": "paquete. Esta función no está disponible por defecto en la prueba de 14 días. Si su prueba requiere esta función, puede informarnos y podemos habilitarla para usted.", - "To learn more about Native Integrations Pro": "Para obtener más información sobre Native Integrations Pro", - "Check out Integrations Feature": "Consulte la Función de Integraciones", - "Connect with": "Conéctese con", - "team for requests or queries.": "equipo para solicitudes o consultas.", - "Learn more about the feature": "Aprender más sobre la función", - "team.": "equipo.", - "Connect with formsflow.ai team.": "Conéctese con el equipo de formsflow.ai." - } -}; diff --git a/forms-flow-web/src/resourceBundles/i18n.js b/forms-flow-web/src/resourceBundles/i18n.js index 2d17712b3c..09dcbe99b6 100644 --- a/forms-flow-web/src/resourceBundles/i18n.js +++ b/forms-flow-web/src/resourceBundles/i18n.js @@ -5,4 +5,11 @@ i18nService?.use(LanguageDetector).use(initReactI18next).init({ fallbackLng: "en", }); +const resources = (i18nService && i18nService.options.resources) || {}; +export const RESOURCE_BUNDLES_DATA = Object.entries(resources) +.reduce((data, [lang, { translation }]) => { + data[lang] = translation; + return data; +}, {}); + export default i18nService;