From 16262284fccadb3a98a0bc564e84b47e51b50c48 Mon Sep 17 00:00:00 2001 From: Copenhagen Theme Bot Date: Thu, 3 Oct 2024 11:54:15 +0000 Subject: [PATCH] chore(release): 4.2.0 # [4.2.0](https://github.com/zendesk/copenhagen_theme/compare/v4.1.0...v4.2.0) (2024-10-03) ### Features * validate CC tag when leaving the field ([2729a35](https://github.com/zendesk/copenhagen_theme/commit/2729a3553cc1b3a24a1f39c16b1f782c271b5cde)) --- CHANGELOG.md | 7 + assets/flash-notifications-bundle.js | 32 +- assets/new-request-form-bundle.js | 1458 +- .../new-request-form-translations-bundle.js | 3482 +- assets/shared-bundle.js | 35285 +--------------- assets/wysiwyg-bundle.js | 35 +- manifest.json | 2 +- 7 files changed, 73 insertions(+), 40228 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a7630c115..ef7d810a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# [4.2.0](https://github.com/zendesk/copenhagen_theme/compare/v4.1.0...v4.2.0) (2024-10-03) + + +### Features + +* validate CC tag when leaving the field ([2729a35](https://github.com/zendesk/copenhagen_theme/commit/2729a3553cc1b3a24a1f39c16b1f782c271b5cde)) + # [4.1.0](https://github.com/zendesk/copenhagen_theme/compare/v4.0.11...v4.1.0) (2024-09-23) diff --git a/assets/flash-notifications-bundle.js b/assets/flash-notifications-bundle.js index 81801d956..c7f44c09d 100644 --- a/assets/flash-notifications-bundle.js +++ b/assets/flash-notifications-bundle.js @@ -1,31 +1 @@ -import { u as useToast, r as reactExports, j as jsxRuntimeExports, N as Notification, T as Title, C as Close, a9 as FLASH_NOTIFICATIONS_KEY, a6 as reactDomExports, a7 as ThemeProviders, a8 as createTheme } from 'shared'; - -function FlashNotifications({ notifications, closeLabel, }) { - const { addToast } = useToast(); - reactExports.useEffect(() => { - for (const notification of notifications) { - const { type, title, message } = notification; - addToast(({ close }) => (jsxRuntimeExports.jsxs(Notification, { type: type, children: [title && jsxRuntimeExports.jsx(Title, { children: title }), message, jsxRuntimeExports.jsx(Close, { "aria-label": closeLabel, onClick: close })] }))); - } - }, [addToast, notifications, closeLabel]); - return jsxRuntimeExports.jsx(jsxRuntimeExports.Fragment, {}); -} - -function renderFlashNotifications(settings, closeLabel) { - const flashNotifications = window.sessionStorage.getItem(FLASH_NOTIFICATIONS_KEY); - if (flashNotifications === null) { - return; - } - window.sessionStorage.removeItem(FLASH_NOTIFICATIONS_KEY); - try { - const parsedNotifications = JSON.parse(flashNotifications); - const container = document.createElement("div"); - document.body.appendChild(container); - reactDomExports.render(jsxRuntimeExports.jsx(ThemeProviders, { theme: createTheme(settings), children: jsxRuntimeExports.jsx(FlashNotifications, { notifications: parsedNotifications, closeLabel: closeLabel }) }), container); - } - catch (e) { - console.error("Cannot render flash notifications", e); - } -} - -export { renderFlashNotifications }; +import{u as e,r as s,j as o,N as n,T as t,C as a,a9 as r,a6 as i,a7 as c,a8 as l}from"shared";function d({notifications:r,closeLabel:i}){const{addToast:c}=e();return s.useEffect((()=>{for(const e of r){const{type:s,title:r,message:l}=e;c((({close:e})=>o.jsxs(n,{type:s,children:[r&&o.jsx(t,{children:r}),l,o.jsx(a,{"aria-label":i,onClick:e})]})))}}),[c,r,i]),o.jsx(o.Fragment,{})}function f(e,s){const n=window.sessionStorage.getItem(r);if(null!==n){window.sessionStorage.removeItem(r);try{const t=JSON.parse(n),a=document.createElement("div");document.body.appendChild(a),i.render(o.jsx(c,{theme:l(e),children:o.jsx(d,{notifications:t,closeLabel:s})}),a)}catch(e){console.error("Cannot render flash notifications",e)}}}export{f as renderFlashNotifications}; diff --git a/assets/new-request-form-bundle.js b/assets/new-request-form-bundle.js index 98a3e9b6c..2e888e90c 100644 --- a/assets/new-request-form-bundle.js +++ b/assets/new-request-form-bundle.js @@ -1,1457 +1,83 @@ -import { j as jsxRuntimeExports, F as Field, L as Label, S as Span, H as Hint, I as Input$1, M as Message, r as reactExports, u as useToast, a as useTranslation, N as Notification, T as Title, C as Close, s as styled, b as Textarea, d as Field$1, e as Label$1, f as Hint$1, h as Combobox, O as Option, i as Message$1, k as Checkbox$1, l as OptGroup, p as purify, m as FileList, n as File, o as Tooltip, P as Progress, A as Anchor, q as mime, t as useDropzone, v as FileUpload, D as Datepicker, w as useGrid, x as focusStyles, y as FauxInput, z as Tag, B as SvgAlertWarningStroke, E as MediaInput, G as SvgCreditCardStroke, $ as $e, J as getColorV8, K as Header, Q as SvgCheckCircleStroke, R as useModalContainer, U as Modal, V as Body, W as Accordion, X as Paragraph, Y as Footer$1, Z as FooterItem, _ as Button, a0 as Close$1, a1 as addFlashNotification, a2 as debounce, a3 as Alert, a4 as initI18next, a5 as loadTranslations, a6 as reactDomExports, a7 as ThemeProviders, a8 as createTheme } from 'shared'; - -function Input({ field, onChange }) { - const { label, error, value, name, required, description, type } = field; - const stepProp = {}; - const inputType = type === "integer" || type === "decimal" ? "number" : "text"; - if (type === "integer") - stepProp.step = "1"; - if (type === "decimal") - stepProp.step = "any"; - const autocomplete = type === "anonymous_requester_email" ? "email" : undefined; - return (jsxRuntimeExports.jsxs(Field, { children: [jsxRuntimeExports.jsxs(Label, { children: [label, required && jsxRuntimeExports.jsx(Span, { "aria-hidden": "true", children: "*" })] }), description && (jsxRuntimeExports.jsx(Hint, { dangerouslySetInnerHTML: { __html: description } })), jsxRuntimeExports.jsx(Input$1, { name: name, type: inputType, defaultValue: value, validation: error ? "error" : undefined, required: required, onChange: (e) => { - onChange && onChange(e.target.value); - }, autoComplete: autocomplete, ...stepProp }), error && jsxRuntimeExports.jsx(Message, { validation: "error", children: error })] })); -} - -function useWysiwyg({ hasWysiwyg, baseLocale, hasAtMentions, userRole, brandId, }) { - const isInitializedRef = reactExports.useRef(false); - const { addToast } = useToast(); - const { t } = useTranslation(); - return reactExports.useCallback(async (ref) => { - if (hasWysiwyg && ref && !isInitializedRef.current) { - isInitializedRef.current = true; - const { createEditor } = await import('wysiwyg').then(function (n) { return n.m; }); - const editor = await createEditor(ref, { - editorType: "supportRequests", - hasAtMentions, - userRole, - brandId, - baseLocale, - }); - const notifications = editor.plugins.get("Notification"); - // Handle generic notifications and errors with "toast" notifications - notifications.on("show", (event, data) => { - event.stop(); // Prevent the default notification from being shown via window.alert - const message = data.message instanceof Error - ? data.message.message - : data.message; - const { type, title } = data; - addToast(({ close }) => (jsxRuntimeExports.jsxs(Notification, { type: type, children: [jsxRuntimeExports.jsx(Title, { children: title }), message, jsxRuntimeExports.jsx(Close, { "aria-label": t("new-request-form.close-label", "Close"), onClick: close })] }))); - }); - } - }, [hasWysiwyg, baseLocale, hasAtMentions, userRole, brandId, addToast, t]); -} - -const StyledField = styled(Field) ` +import{j as e,F as n,L as t,S as s,H as r,I as a,M as o,r as i,u as l,a as u,N as c,T as d,C as m,s as f,b as h,d as p,e as j,f as g,h as b,O as x,i as w,k as v,l as q,p as y,m as k,n as _,o as C,P as S,A as I,q as T,t as F,v as P,D as R,w as L,x as $,y as E,z as D,B as M,E as V,G as z,$ as A,J as G,K as H,Q as X,R as N,U,V as O,W as B,X as W,Y as K,Z as Y,_ as J,a0 as Z,a1 as Q,a2 as ee,a3 as ne,a4 as te,a5 as se,a6 as re,a7 as ae,a8 as oe}from"shared";function ie({field:i,onChange:l}){const{label:u,error:c,value:d,name:m,required:f,description:h,type:p}=i,j={},g="integer"===p||"decimal"===p?"number":"text";"integer"===p&&(j.step="1"),"decimal"===p&&(j.step="any");const b="anonymous_requester_email"===p?"email":void 0;return e.jsxs(n,{children:[e.jsxs(t,{children:[u,f&&e.jsx(s,{"aria-hidden":"true",children:"*"})]}),h&&e.jsx(r,{dangerouslySetInnerHTML:{__html:h}}),e.jsx(a,{name:m,type:g,defaultValue:d,validation:c?"error":void 0,required:f,onChange:e=>{l&&l(e.target.value)},autoComplete:b,...j}),c&&e.jsx(o,{validation:"error",children:c})]})}const le=f(n)` .ck.ck-editor { - margin-top: ${(props) => props.theme.space.xs}; + margin-top: ${e=>e.theme.space.xs}; } -`; -const StyledMessage = styled(Message) ` +`,ue=f(o)` .ck.ck-editor + & { - margin-top: ${(props) => props.theme.space.xs}; + margin-top: ${e=>e.theme.space.xs}; } -`; -function TextArea({ field, hasWysiwyg, baseLocale, hasAtMentions, userRole, brandId, onChange, }) { - const { label, error, value, name, required, description } = field; - const ref = useWysiwyg({ - hasWysiwyg, - baseLocale, - hasAtMentions, - userRole, - brandId, - }); - return (jsxRuntimeExports.jsxs(StyledField, { children: [jsxRuntimeExports.jsxs(Label, { children: [label, required && jsxRuntimeExports.jsx(Span, { "aria-hidden": "true", children: "*" })] }), description && (jsxRuntimeExports.jsx(Hint, { dangerouslySetInnerHTML: { __html: description } })), jsxRuntimeExports.jsx(Textarea, { ref: ref, name: name, defaultValue: value, validation: error ? "error" : undefined, required: required, onChange: (e) => onChange(e.target.value), rows: 6, isResizable: true }), error && jsxRuntimeExports.jsx(StyledMessage, { validation: "error", children: error })] })); -} - -function EmptyValueOption() { - const { t } = useTranslation(); - return (jsxRuntimeExports.jsxs(jsxRuntimeExports.Fragment, { children: [jsxRuntimeExports.jsx(Span, { "aria-hidden": "true", children: "-" }), jsxRuntimeExports.jsx(Span, { hidden: true, children: t("new-request-form.dropdown.empty-option", "Select an option") })] })); -} - -function DropDown({ field, onChange }) { - const { label, options, error, value, name, required, description } = field; - const selectionValue = value == null ? "" : value.toString(); - const wrapperRef = reactExports.useRef(null); - reactExports.useEffect(() => { - if (wrapperRef.current && required) { - const combobox = wrapperRef.current.querySelector("[role=combobox]"); - combobox?.setAttribute("aria-required", "true"); - } - }, [wrapperRef, required]); - return (jsxRuntimeExports.jsxs(Field$1, { children: [jsxRuntimeExports.jsxs(Label$1, { children: [label, required && jsxRuntimeExports.jsx(Span, { "aria-hidden": "true", children: "*" })] }), description && (jsxRuntimeExports.jsx(Hint$1, { dangerouslySetInnerHTML: { __html: description } })), jsxRuntimeExports.jsxs(Combobox, { ref: wrapperRef, inputProps: { name, required }, isEditable: false, validation: error ? "error" : undefined, inputValue: selectionValue, selectionValue: selectionValue, renderValue: ({ selection }) => selection?.label || jsxRuntimeExports.jsx(EmptyValueOption, {}), onChange: ({ selectionValue }) => { - if (selectionValue !== undefined) { - onChange(selectionValue); - } - }, children: [!required && (jsxRuntimeExports.jsx(Option, { value: "", label: "-", children: jsxRuntimeExports.jsx(EmptyValueOption, {}) })), options.map((option) => (jsxRuntimeExports.jsx(Option, { value: option.value.toString(), label: option.name }, option.value)))] }), error && jsxRuntimeExports.jsx(Message$1, { validation: "error", children: error })] })); -} - -function Checkbox({ field, onChange }) { - const { label, error, value, name, required, description } = field; - const [checkboxValue, setCheckboxValue] = reactExports.useState(value); - const handleChange = (e) => { - const { checked } = e.target; - setCheckboxValue(checked); - onChange(checked); - }; - return (jsxRuntimeExports.jsxs(Field, { children: [jsxRuntimeExports.jsx("input", { type: "hidden", name: name, value: "off" }), jsxRuntimeExports.jsxs(Checkbox$1, { name: name, required: required, defaultChecked: value, value: checkboxValue ? "on" : "off", onChange: handleChange, children: [jsxRuntimeExports.jsxs(Label, { children: [label, required && jsxRuntimeExports.jsx(Span, { "aria-hidden": "true", children: "*" })] }), description && (jsxRuntimeExports.jsx(Hint, { dangerouslySetInnerHTML: { __html: description } }))] }), error && jsxRuntimeExports.jsx(Message, { validation: "error", children: error })] })); -} - -/** - * The root group is identified by an empty string, to avoid possible clashes with a level with - * a "Root" name. - */ -const ROOT_GROUP_IDENTIFIER = "[]"; -function getGroupIdentifier(names) { - return `[${names.join("::")}]`; -} -function isGroupIdentifier(name) { - return name.startsWith("[") && name.endsWith("]"); -} -function getGroupAndOptionNames(input) { - const namesList = input.split("::"); - return [namesList.slice(0, -1), namesList.slice(-1)[0]]; -} -function buildSubGroupOptions(groupNames) { - const parentGroupNames = groupNames.slice(0, -1); - const parentGroupIdentifier = getGroupIdentifier(parentGroupNames); - const name = groupNames[groupNames.length - 1]; - return { - type: "SubGroup", - name, - backOption: { - type: "previous", - label: "Back", - value: parentGroupIdentifier, - }, - options: [], - }; -} -/** - * Maps a flat list of options to a nested structure - * - * For example, given the following options: - * [ - * { "name": "Bass::Fender::Precision", "value": "bass__fender__precision" }, - * { "name": "Bass::Fender::Jazz", "value": "bass__fender__jazz" } - * { "name": "Drums", "value": "drums" }, - * ] - * - * The following nested structure will be returned: - * { - * "[]": { - * "type": "RootGroup", - * "options": [ - * { "label": "Bass", "value": "[Bass]", type: "next" }, - * { "label": "Drums", "value": "drums" }, - * ] - * }, - * "[Bass]": { - * "type": "SubGroup", - * "name": "Bass", - * "backOption": { "type": "previous", "label": "Back", "value": "[]" }, - * "options": [ - * { "label": "Fender", "value": "[Bass::Fender]", type: "next" }, - * ] - * }, - * "[Bass::Fender]": { - * "type": "SubGroup", - * "name": "Fender", - * "backOption": { "type": "previous", "label": "Back", "value": "[Bass]" }, - * "options": [ - * { "menuLabel": "Precision", "label": "Bass > Fender > Precision", "value": "bass__fender__precision" }, - * { "menuLabel": "Jazz", "label": "Bass > Fender > Jazz", "value": "bass__fender__jazz" }, - * ] - * } - * } - * - * @param options original field options - * @param hasEmptyOption if true, adds an empty option to the root group - * @returns nested options - */ -function buildNestedOptions(options, hasEmptyOption) { - const result = { - [ROOT_GROUP_IDENTIFIER]: { - type: "RootGroup", - options: hasEmptyOption ? [{ label: "-", value: "" }] : [], - }, - }; - options.forEach((option) => { - const { name, value } = option; - if (!name.includes("::")) { - result[ROOT_GROUP_IDENTIFIER].options.push({ - value, - label: name, - }); - } - else { - const [groupNames, optionName] = getGroupAndOptionNames(name); - const groupIdentifier = getGroupIdentifier(groupNames); - if (!result[groupIdentifier]) { - result[groupIdentifier] = buildSubGroupOptions(groupNames); - } - result[groupIdentifier]?.options.push({ - value, - label: name.split("::").join(" > "), - menuLabel: optionName, - }); - // creates next options for each parent group, if they don't already exists - for (let i = 0; i < groupNames.length; i++) { - const parentGroupNames = groupNames.slice(0, i); - const nextGroupNames = groupNames.slice(0, i + 1); - const parentGroupIdentifier = getGroupIdentifier(parentGroupNames); - const nextGroupIdentifier = getGroupIdentifier(nextGroupNames); - if (!result[parentGroupIdentifier]) { - result[parentGroupIdentifier] = - buildSubGroupOptions(parentGroupNames); - } - if (result[parentGroupIdentifier]?.options.find((o) => o.value === nextGroupIdentifier) === undefined) { - result[parentGroupIdentifier]?.options.push({ - type: "next", - label: nextGroupNames[nextGroupNames.length - 1], - value: nextGroupIdentifier, - }); - } - } - } - }); - return result; -} -/** - * When one or more options are selected, the Combobox component renders the label - * for an option in the input, searching for an option passed as a child with the - * same value as the selected option. - * - * In the first render we are passing only the root group options as children, - * and if we already have some selected values from a SubGroup, the component is not - * able to find the label for the selected option. - * - * We therefore need to pass all the non-navigation options as children in the first render. - * The passed options are cached by the Combobox component, so we can safely remove them - * after the first render and pass only the root group options. - */ -function getInitialGroup(nestedOptions) { - const result = { - type: "RootGroup", - options: [], - }; - Object.values(nestedOptions).forEach(({ options }) => { - result.options.push(...options.filter(({ type }) => type === undefined)); - }); - return result; -} -function useNestedOptions({ options, hasEmptyOption, }) { - const nestedOptions = reactExports.useMemo(() => buildNestedOptions(options, hasEmptyOption), [options, hasEmptyOption]); - const [currentGroup, setCurrentGroup] = reactExports.useState(getInitialGroup(nestedOptions)); - reactExports.useEffect(() => { - setCurrentGroup(nestedOptions[ROOT_GROUP_IDENTIFIER]); - }, [nestedOptions]); - const setCurrentGroupByIdentifier = (identifier) => { - const group = nestedOptions[identifier]; - if (group) { - setCurrentGroup(group); - } - }; - return { - currentGroup, - isGroupIdentifier, - setCurrentGroupByIdentifier, - }; -} - -function MultiSelect({ field }) { - const { label, options, error, value, name, required, description } = field; - const { currentGroup, isGroupIdentifier, setCurrentGroupByIdentifier } = useNestedOptions({ - options, - hasEmptyOption: false, - }); - const [selectedValues, setSelectValues] = reactExports.useState(value || []); - const wrapperRef = reactExports.useRef(null); - reactExports.useEffect(() => { - if (wrapperRef.current && required) { - const combobox = wrapperRef.current.querySelector("[role=combobox]"); - combobox?.setAttribute("aria-required", "true"); - } - }, [wrapperRef, required]); - const handleChange = (changes) => { - if (Array.isArray(changes.selectionValue)) { - const lastSelectedItem = changes.selectionValue.slice(-1).toString(); - if (isGroupIdentifier(lastSelectedItem)) { - setCurrentGroupByIdentifier(lastSelectedItem); - } - else { - setSelectValues(changes.selectionValue); - } - } - }; - return (jsxRuntimeExports.jsxs(Field$1, { children: [selectedValues.map((selectedValue) => (jsxRuntimeExports.jsx("input", { type: "hidden", name: `${name}[]`, value: selectedValue }, selectedValue))), jsxRuntimeExports.jsxs(Label$1, { children: [label, required && jsxRuntimeExports.jsx(Span, { "aria-hidden": "true", children: "*" })] }), description && (jsxRuntimeExports.jsx(Hint$1, { dangerouslySetInnerHTML: { __html: description } })), jsxRuntimeExports.jsxs(Combobox, { ref: wrapperRef, isMultiselectable: true, inputProps: { required }, isEditable: false, validation: error ? "error" : undefined, onChange: handleChange, selectionValue: selectedValues, maxHeight: "auto", children: [currentGroup.type === "SubGroup" && (jsxRuntimeExports.jsx(Option, { ...currentGroup.backOption })), currentGroup.type === "SubGroup" ? (jsxRuntimeExports.jsx(OptGroup, { "aria-label": currentGroup.name, children: currentGroup.options.map((option) => (jsxRuntimeExports.jsx(Option, { ...option, children: option.menuLabel ?? option.label }, option.value))) })) : (currentGroup.options.map((option) => (jsxRuntimeExports.jsx(Option, { ...option }, option.value))))] }), error && jsxRuntimeExports.jsx(Message$1, { validation: "error", children: error })] })); -} - -const key = "return-focus-to-ticket-form-field"; -function TicketFormField({ field, newRequestPath, }) { - const ref = reactExports.createRef(); - const handleChange = ({ selectionValue }) => { - if (selectionValue && typeof selectionValue === "number") { - const url = new URL(window.location.href); - const searchParams = url.searchParams; - searchParams.set("ticket_form_id", selectionValue); - sessionStorage.setItem(key, "true"); - window.location.assign(`${newRequestPath}${url.search}`); - } - }; - reactExports.useEffect(() => { - if (sessionStorage.getItem(key)) { - sessionStorage.removeItem(key); - // return focus to the ticket form field dropdown - // after the page reloads for better a11y - ref.current?.firstChild?.focus(); - } - }, []); // eslint-disable-line react-hooks/exhaustive-deps - return (jsxRuntimeExports.jsxs(jsxRuntimeExports.Fragment, { children: [jsxRuntimeExports.jsx("input", { type: "hidden", name: field.name, value: field.value }), field.options.length > 1 && (jsxRuntimeExports.jsxs(Field$1, { children: [jsxRuntimeExports.jsx(Label$1, { children: field.label }), jsxRuntimeExports.jsx(Combobox, { isEditable: false, onChange: handleChange, ref: ref, children: field.options.map((option) => (jsxRuntimeExports.jsx(Option, { value: option.value, label: option.name, isSelected: field.value === option.value, children: option.name }, option.value))) })] }))] })); -} - -function ParentTicketField({ field, }) { - const { value, name } = field; - return jsxRuntimeExports.jsx("input", { type: "hidden", name: name, value: value }); -} - -// NOTE: This is a temporary handling of the CSRF token -async function fetchCsrfToken$1() { - const response = await fetch("/api/v2/help_center/sessions.json"); - const { current_session } = await response.json(); - return current_session.csrf_token; -} - -/** - * This hook creates a ref callback used to override the submit method of the form - * that uses the callback. - * Before submitting the form, it fetches the CSRF token from the backend and appends it to the form, - * and redacts the value of the eventual credit card field - * @param ticketFields array of ticket fields for the form - * @returns a Ref callback and a submit handler - */ -function useFormSubmit(ticketFields) { - const initialized = reactExports.useRef(false); - const isSubmitting = reactExports.useRef(false); - const formRefCallback = reactExports.useCallback((ref) => { - if (ref && !initialized.current) { - initialized.current = true; - /* We are monkey patching the submit method of the form, since this behavior is what - other scripts in Help Center are intercepting the submit event, stopping the event propagation and - calling the submit method directly */ - ref.submit = async () => { - /* We are performing an async call to fetch the CSRF token and for this reason - the submit is not immediate, and the user can click the submit button multiple times. - We don't want to disable the submit button for A11Y, so we use the isSubmitting ref - to stop subsequent submits after the first one. */ - if (isSubmitting.current === false) { - isSubmitting.current = true; - const token = await fetchCsrfToken$1(); - const hiddenInput = document.createElement("input"); - hiddenInput.type = "hidden"; - hiddenInput.name = "authenticity_token"; - hiddenInput.value = token; - ref.appendChild(hiddenInput); - // The backend expects the credit card field to have a length at least of 13 characters. - // We are prefixing the 4 digits with 9 Xs to make sure the value has the expected length - const creditCardFields = ticketFields.filter((field) => field.type === "partialcreditcard"); - for (const creditCardField of creditCardFields) { - const creditCardInput = ref.querySelector(`input[name="${creditCardField.name}"]`); - if (creditCardInput && - creditCardInput instanceof HTMLInputElement && - creditCardInput.value.length === 4) { - creditCardInput.value = `XXXXXXXXX${creditCardInput.value}`; - } - } - HTMLFormElement.prototype.submit.call(ref); - } - }; - } - }, [ticketFields]); - const handleSubmit = (e) => { - e.preventDefault(); - e.target.submit(); - }; - return { formRefCallback, handleSubmit }; -} - -const MAX_URL_LENGTH = 2048; -const TICKET_FIELD_PREFIX = "tf_"; -const ALLOWED_BOOLEAN_VALUES = ["true", "false"]; -const ALLOWED_HTML_TAGS = [ - "pre", - "strong", - "b", - "p", - "blockquote", - "ul", - "ol", - "li", - "h2", - "h3", - "h4", - "i", - "em", - "br", -]; -function getFieldFromId(id, prefilledTicketFields) { - const isCustomField = !Number.isNaN(Number(id)); - if (isCustomField) { - const name = `request[custom_fields][${id}]`; - return prefilledTicketFields.ticketFields.find((field) => field.name === name); - } - switch (id) { - case "anonymous_requester_email": - return prefilledTicketFields.emailField; - case "due_at": - return prefilledTicketFields.dueDateField; - case "collaborators": - return prefilledTicketFields.ccField; - case "organization_id": - return prefilledTicketFields.organizationField; - default: - return prefilledTicketFields.ticketFields.find((field) => field.name === `request[${id}]`); - } -} -function getPrefilledTicketFields(fields) { - const { href } = location; - const params = new URL(href).searchParams; - const prefilledFields = { - ...fields, - ticketFields: [...fields.ticketFields], - }; - if (href.length > MAX_URL_LENGTH) - return fields; - if (params.get("parent_id")) - return fields; - for (const [key, value] of params) { - if (!key.startsWith(TICKET_FIELD_PREFIX)) - continue; - const ticketFieldId = key.substring(TICKET_FIELD_PREFIX.length); - const field = getFieldFromId(ticketFieldId, prefilledFields); - if (!field) - continue; - const sanitizedValue = purify.sanitize(value, { - ALLOWED_TAGS: ALLOWED_HTML_TAGS, - }); - switch (field.type) { - case "partialcreditcard": - continue; - case "multiselect": - field.value = sanitizedValue - .split(",") - // filter out prefilled options that don't exist - .filter((value) => field.options.some((option) => option.value === value)); - break; - case "checkbox": - if (ALLOWED_BOOLEAN_VALUES.includes(sanitizedValue)) { - field.value = - sanitizedValue === "true" - ? "on" - : sanitizedValue === "false" - ? "off" - : ""; - } - break; - default: - field.value = sanitizedValue; - } - } - return prefilledFields; -} -function usePrefilledTicketFields({ ticketFields, ccField, dueDateField, emailField, organizationField, }) { - return reactExports.useMemo(() => getPrefilledTicketFields({ - ticketFields, - ccField, - dueDateField, - emailField, - organizationField, - }), [ticketFields, ccField, dueDateField, emailField, organizationField]); -} - -const FileNameWrapper = styled.div ` +`;function ce({field:n,hasWysiwyg:a,baseLocale:o,hasAtMentions:f,userRole:p,brandId:j,onChange:g}){const{label:b,error:x,value:w,name:v,required:q,description:y}=n,k=function({hasWysiwyg:n,baseLocale:t,hasAtMentions:s,userRole:r,brandId:a}){const o=i.useRef(!1),{addToast:f}=l(),{t:h}=u();return i.useCallback((async i=>{if(n&&i&&!o.current){o.current=!0;const{createEditor:n}=await import("wysiwyg").then((function(e){return e.m}));(await n(i,{editorType:"supportRequests",hasAtMentions:s,userRole:r,brandId:a,baseLocale:t})).plugins.get("Notification").on("show",((n,t)=>{n.stop();const s=t.message instanceof Error?t.message.message:t.message,{type:r,title:a}=t;f((({close:n})=>e.jsxs(c,{type:r,children:[e.jsx(d,{children:a}),s,e.jsx(m,{"aria-label":h("new-request-form.close-label","Close"),onClick:n})]})))}))}}),[n,t,s,r,a,f,h])}({hasWysiwyg:a,baseLocale:o,hasAtMentions:f,userRole:p,brandId:j});return e.jsxs(le,{children:[e.jsxs(t,{children:[b,q&&e.jsx(s,{"aria-hidden":"true",children:"*"})]}),y&&e.jsx(r,{dangerouslySetInnerHTML:{__html:y}}),e.jsx(h,{ref:k,name:v,defaultValue:w,validation:x?"error":void 0,required:q,onChange:e=>g(e.target.value),rows:6,isResizable:!0}),x&&e.jsx(ue,{validation:"error",children:x})]})}function de(){const{t:n}=u();return e.jsxs(e.Fragment,{children:[e.jsx(s,{"aria-hidden":"true",children:"-"}),e.jsx(s,{hidden:!0,children:n("new-request-form.dropdown.empty-option","Select an option")})]})}function me({field:n,onChange:t}){const{label:r,options:a,error:o,value:l,name:u,required:c,description:d}=n,m=null==l?"":l.toString(),f=i.useRef(null);return i.useEffect((()=>{if(f.current&&c){const e=f.current.querySelector("[role=combobox]");e?.setAttribute("aria-required","true")}}),[f,c]),e.jsxs(p,{children:[e.jsxs(j,{children:[r,c&&e.jsx(s,{"aria-hidden":"true",children:"*"})]}),d&&e.jsx(g,{dangerouslySetInnerHTML:{__html:d}}),e.jsxs(b,{ref:f,inputProps:{name:u,required:c},isEditable:!1,validation:o?"error":void 0,inputValue:m,selectionValue:m,renderValue:({selection:n})=>n?.label||e.jsx(de,{}),onChange:({selectionValue:e})=>{void 0!==e&&t(e)},children:[!c&&e.jsx(x,{value:"",label:"-",children:e.jsx(de,{})}),a.map((n=>e.jsx(x,{value:n.value.toString(),label:n.name},n.value)))]}),o&&e.jsx(w,{validation:"error",children:o})]})}function fe({field:a,onChange:l}){const{label:u,error:c,value:d,name:m,required:f,description:h}=a,[p,j]=i.useState(d);return e.jsxs(n,{children:[e.jsx("input",{type:"hidden",name:m,value:"off"}),e.jsxs(v,{name:m,required:f,defaultChecked:d,value:p?"on":"off",onChange:e=>{const{checked:n}=e.target;j(n),l(n)},children:[e.jsxs(t,{children:[u,f&&e.jsx(s,{"aria-hidden":"true",children:"*"})]}),h&&e.jsx(r,{dangerouslySetInnerHTML:{__html:h}})]}),c&&e.jsx(o,{validation:"error",children:c})]})}const he="[]";function pe(e){return`[${e.join("::")}]`}function je(e){return e.startsWith("[")&&e.endsWith("]")}function ge(e){const n=pe(e.slice(0,-1));return{type:"SubGroup",name:e[e.length-1],backOption:{type:"previous",label:"Back",value:n},options:[]}}function be({options:e,hasEmptyOption:n}){const t=i.useMemo((()=>function(e,n){const t={[he]:{type:"RootGroup",options:n?[{label:"-",value:""}]:[]}};return e.forEach((e=>{const{name:n,value:s}=e;if(n.includes("::")){const[e,r]=function(e){const n=e.split("::");return[n.slice(0,-1),n.slice(-1)[0]]}(n),a=pe(e);t[a]||(t[a]=ge(e)),t[a]?.options.push({value:s,label:n.split("::").join(" > "),menuLabel:r});for(let n=0;ne.value===o))&&t[a]?.options.push({type:"next",label:r[r.length-1],value:o})}}else t[he].options.push({value:s,label:n})})),t}(e,n)),[e,n]),[s,r]=i.useState(function(e){const n={type:"RootGroup",options:[]};return Object.values(e).forEach((({options:e})=>{n.options.push(...e.filter((({type:e})=>void 0===e)))})),n}(t));i.useEffect((()=>{r(t[he])}),[t]);return{currentGroup:s,isGroupIdentifier:je,setCurrentGroupByIdentifier:e=>{const n=t[e];n&&r(n)}}}function xe({field:n}){const{label:t,options:r,error:a,value:o,name:l,required:u,description:c}=n,{currentGroup:d,isGroupIdentifier:m,setCurrentGroupByIdentifier:f}=be({options:r,hasEmptyOption:!1}),[h,v]=i.useState(o||[]),y=i.useRef(null);i.useEffect((()=>{if(y.current&&u){const e=y.current.querySelector("[role=combobox]");e?.setAttribute("aria-required","true")}}),[y,u]);return e.jsxs(p,{children:[h.map((n=>e.jsx("input",{type:"hidden",name:`${l}[]`,value:n},n))),e.jsxs(j,{children:[t,u&&e.jsx(s,{"aria-hidden":"true",children:"*"})]}),c&&e.jsx(g,{dangerouslySetInnerHTML:{__html:c}}),e.jsxs(b,{ref:y,isMultiselectable:!0,inputProps:{required:u},isEditable:!1,validation:a?"error":void 0,onChange:e=>{if(Array.isArray(e.selectionValue)){const n=e.selectionValue.slice(-1).toString();m(n)?f(n):v(e.selectionValue)}},selectionValue:h,maxHeight:"auto",children:["SubGroup"===d.type&&e.jsx(x,{...d.backOption}),"SubGroup"===d.type?e.jsx(q,{"aria-label":d.name,children:d.options.map((n=>e.jsx(x,{...n,children:n.menuLabel??n.label},n.value)))}):d.options.map((n=>e.jsx(x,{...n},n.value)))]}),a&&e.jsx(w,{validation:"error",children:a})]})}const we="return-focus-to-ticket-form-field";function ve({field:n,newRequestPath:t}){const s=i.createRef();return i.useEffect((()=>{sessionStorage.getItem(we)&&(sessionStorage.removeItem(we),s.current?.firstChild?.focus())}),[]),e.jsxs(e.Fragment,{children:[e.jsx("input",{type:"hidden",name:n.name,value:n.value}),n.options.length>1&&e.jsxs(p,{children:[e.jsx(j,{children:n.label}),e.jsx(b,{isEditable:!1,onChange:({selectionValue:e})=>{if(e&&"number"==typeof e){const n=new URL(window.location.href);n.searchParams.set("ticket_form_id",e),sessionStorage.setItem(we,"true"),window.location.assign(`${t}${n.search}`)}},ref:s,children:n.options.map((t=>e.jsx(x,{value:t.value,label:t.name,isSelected:n.value===t.value,children:t.name},t.value)))})]})]})}function qe({field:n}){const{value:t,name:s}=n;return e.jsx("input",{type:"hidden",name:s,value:t})}function ye(e){const n=i.useRef(!1),t=i.useRef(!1);return{formRefCallback:i.useCallback((s=>{s&&!n.current&&(n.current=!0,s.submit=async()=>{if(!1===t.current){t.current=!0;const n=await async function(){const e=await fetch("/api/v2/help_center/sessions.json"),{current_session:n}=await e.json();return n.csrf_token}(),r=document.createElement("input");r.type="hidden",r.name="authenticity_token",r.value=n,s.appendChild(r);const a=e.filter((e=>"partialcreditcard"===e.type));for(const e of a){const n=s.querySelector(`input[name="${e.name}"]`);n&&n instanceof HTMLInputElement&&4===n.value.length&&(n.value=`XXXXXXXXX${n.value}`)}HTMLFormElement.prototype.submit.call(s)}})}),[e]),handleSubmit:e=>{e.preventDefault(),e.target.submit()}}}const ke=2048,_e="tf_",Ce=["true","false"],Se=["pre","strong","b","p","blockquote","ul","ol","li","h2","h3","h4","i","em","br"];function Ie(e,n){if(!Number.isNaN(Number(e))){const t=`request[custom_fields][${e}]`;return n.ticketFields.find((e=>e.name===t))}switch(e){case"anonymous_requester_email":return n.emailField;case"due_at":return n.dueDateField;case"collaborators":return n.ccField;case"organization_id":return n.organizationField;default:return n.ticketFields.find((n=>n.name===`request[${e}]`))}}function Te({ticketFields:e,ccField:n,dueDateField:t,emailField:s,organizationField:r}){return i.useMemo((()=>function(e){const{href:n}=location,t=new URL(n).searchParams,s={...e,ticketFields:[...e.ticketFields]};if(n.length>ke)return e;if(t.get("parent_id"))return e;for(const[e,n]of t){if(!e.startsWith(_e))continue;const t=Ie(e.substring(_e.length),s);if(!t)continue;const r=y.sanitize(n,{ALLOWED_TAGS:Se});switch(t.type){case"partialcreditcard":continue;case"multiselect":t.value=r.split(",").filter((e=>t.options.some((n=>n.value===e))));break;case"checkbox":Ce.includes(r)&&(t.value="true"===r?"on":"false"===r?"off":"");break;default:t.value=r}}return s}({ticketFields:e,ccField:n,dueDateField:t,emailField:s,organizationField:r})),[e,n,t,s,r])}const Fe=f.div` flex: 1; -`; -function FileListItem({ file, onRemove, }) { - const { t } = useTranslation(); - const handleFileKeyDown = (e) => { - if (e.code === "Delete" || e.code === "Backspace") { - e.preventDefault(); - onRemove(); - } - }; - const handleCloseKeyDown = (e) => { - if (e.code === "Enter" || - e.code === "Space" || - e.code === "Delete" || - e.code === "Backspace") { - e.preventDefault(); - onRemove(); - } - }; - const fileName = file.status === "pending" ? file.file_name : file.value.file_name; - const stopUploadLabel = t("new-request-form.attachments.stop-upload", "Stop upload"); - const removeFileLabel = t("new-request-form.attachments.remove-file", "Remove file"); - return (jsxRuntimeExports.jsx(FileList.Item, { children: jsxRuntimeExports.jsx(File, { type: "generic", title: fileName, onKeyDown: handleFileKeyDown, children: file.status === "pending" ? (jsxRuntimeExports.jsxs(jsxRuntimeExports.Fragment, { children: [jsxRuntimeExports.jsx(FileNameWrapper, { children: fileName }), jsxRuntimeExports.jsx(Tooltip, { content: stopUploadLabel, children: jsxRuntimeExports.jsx(File.Close, { "aria-label": stopUploadLabel, onClick: () => { - onRemove(); - }, onKeyDown: handleCloseKeyDown }) }), jsxRuntimeExports.jsx(Progress, { value: file.progress, "aria-label": t("new-request-form.attachments.uploading", "Uploading {{fileName}}", { fileName }) })] })) : (jsxRuntimeExports.jsxs(jsxRuntimeExports.Fragment, { children: [jsxRuntimeExports.jsx(FileNameWrapper, { children: jsxRuntimeExports.jsx(Anchor, { isExternal: true, href: file.value.url, target: "_blank", children: fileName }) }), jsxRuntimeExports.jsx(Tooltip, { content: removeFileLabel, children: jsxRuntimeExports.jsx(File.Delete, { "aria-label": removeFileLabel, onClick: () => { - onRemove(); - }, onKeyDown: handleCloseKeyDown }) }), jsxRuntimeExports.jsx(Progress, { value: 100, "aria-hidden": "true" })] })) }) })); -} - -function useAttachedFiles(initialValue) { - const [files, setFiles] = reactExports.useState(initialValue); - const addPendingFile = reactExports.useCallback((id, file_name, xhr) => { - setFiles((current) => [ - ...current, - { status: "pending", id, file_name, progress: 0, xhr }, - ]); - }, []); - const setPendingFileProgress = reactExports.useCallback((id, progress) => { - setFiles((current) => current.map((file) => file.status === "pending" && file.id === id - ? { ...file, progress } - : file)); - }, []); - const removePendingFile = reactExports.useCallback((id) => { - setFiles((current) => current.filter((file) => file.status !== "pending" || file.id !== id)); - }, []); - const removeUploadedFile = reactExports.useCallback((id) => { - setFiles((current) => current.filter((file) => file.status !== "uploaded" || file.value.id !== id)); - }, []); - const setUploaded = reactExports.useCallback((pendingId, value) => { - setFiles((current) => current.map((file) => file.status === "pending" && file.id === pendingId - ? { status: "uploaded", value } - : file)); - }, []); - return { - files, - addPendingFile, - setPendingFileProgress, - removePendingFile, - removeUploadedFile, - setUploaded, - }; -} - -async function fetchCsrfToken() { - const response = await fetch("/api/v2/users/me.json"); - const { user: { authenticity_token }, } = await response.json(); - return authenticity_token; -} -function Attachments({ field }) { - const { label, error, name, attachments } = field; - const { files, addPendingFile, setPendingFileProgress, setUploaded, removePendingFile, removeUploadedFile, } = useAttachedFiles(attachments.map((value) => ({ - status: "uploaded", - value, - })) ?? []); - const { addToast } = useToast(); - const { t } = useTranslation(); - const notifyError = reactExports.useCallback((fileName) => { - addToast(({ close }) => (jsxRuntimeExports.jsxs(Notification, { type: "error", children: [jsxRuntimeExports.jsx(Title, { children: t("new-request-form.attachments.upload-error-title", "Upload error") }), t("new-request-form.attachments.upload-error-description", "There was an error uploading {{fileName}}. Try again or upload another file.", { fileName }), jsxRuntimeExports.jsx(Close, { "aria-label": t("new-request-form.close-label", "Close"), onClick: close })] }))); - }, [addToast, t]); - const onDrop = reactExports.useCallback(async (acceptedFiles) => { - const csrfToken = await fetchCsrfToken(); - for (const file of acceptedFiles) { - // fetch doesn't support upload progress, so we use XMLHttpRequest - const xhr = new XMLHttpRequest(); - const url = new URL(`${window.location.origin}/api/v2/uploads.json`); - url.searchParams.append("filename", file.name); - xhr.open("POST", url); - // If the browser returns a type for the file, use it as the Content-Type header, - // otherwise try to determine the mime type from the file extension using the mime - // library. If we can't determine the mime type, we'll fall back to a generic - // application/octet-stream. - if (file.type) { - xhr.setRequestHeader("Content-Type", file.type); - } - else { - const mimeType = mime.getType(file.name); - xhr.setRequestHeader("Content-Type", mimeType || "application/octet-stream"); - } - xhr.setRequestHeader("X-CSRF-Token", csrfToken); - xhr.responseType = "json"; - const pendingId = crypto.randomUUID(); - addPendingFile(pendingId, file.name, xhr); - xhr.upload.addEventListener("progress", ({ loaded, total }) => { - const progress = Math.round((loaded / total) * 100); - // There is a bit of delay between the upload ending and the - // load event firing, so we don't want to set the progress to 100 - // otherwise it is not clear that the upload is still in progress. - if (progress <= 90) { - setPendingFileProgress(pendingId, progress); - } - }); - xhr.addEventListener("load", () => { - if (xhr.status >= 200 && xhr.status < 300) { - const { upload: { attachment: { file_name, content_url }, token, }, } = xhr.response; - setUploaded(pendingId, { id: token, file_name, url: content_url }); - } - else { - notifyError(file.name); - removePendingFile(pendingId); - } - }); - xhr.addEventListener("error", () => { - notifyError(file.name); - removePendingFile(pendingId); - }); - xhr.send(file); - } - }, [ - addPendingFile, - removePendingFile, - setPendingFileProgress, - setUploaded, - notifyError, - ]); - const { getRootProps, getInputProps, isDragActive } = useDropzone({ - onDrop, - }); - const handleRemove = async (file) => { - if (file.status === "pending") { - file.xhr.abort(); - removePendingFile(file.id); - } - else { - const csrfToken = await fetchCsrfToken(); - const token = file.value.id; - removeUploadedFile(file.value.id); - await fetch(`/api/v2/uploads/${token}.json`, { - method: "DELETE", - headers: { "X-CSRF-Token": csrfToken }, - }); - } - }; - return (jsxRuntimeExports.jsxs(Field, { children: [jsxRuntimeExports.jsx(Label, { children: label }), error && jsxRuntimeExports.jsx(Message, { validation: "error", children: error }), jsxRuntimeExports.jsxs(FileUpload, { ...getRootProps(), isDragging: isDragActive, children: [isDragActive ? (jsxRuntimeExports.jsx("span", { children: t("new-request-form.attachments.drop-files-label", "Drop files here") })) : (jsxRuntimeExports.jsx("span", { children: t("new-request-form.attachments.choose-file-label", "Choose a file or drag and drop here") })), jsxRuntimeExports.jsx(Input$1, { ...getInputProps() })] }), files.map((file) => (jsxRuntimeExports.jsx(FileListItem, { file: file, onRemove: () => { - handleRemove(file); - } }, file.status === "pending" ? file.id : file.value.id))), files.map((file) => file.status === "uploaded" && (jsxRuntimeExports.jsx("input", { type: "hidden", name: name, value: JSON.stringify(file.value) }, file.value.id)))] })); -} - -function getFieldConditions(fieldId, endUserConditions) { - return endUserConditions.filter((condition) => { - return condition.child_fields.some((child) => child.id === fieldId); - }); -} -function getAppliedConditions(fieldConditions, allConditions, fields) { - return fieldConditions.filter((condition) => { - const parentField = fields.find((field) => field.id === condition.parent_field_id); - if (!parentField) { - return false; - } - const parentFieldConditions = getFieldConditions(parentField.id, allConditions); - // the condition is applied if the parent field value matches the condition value - // and if the parent field has no conditions or if the parent field conditions are met - return (parentField.value === condition.value && - (parentFieldConditions.length === 0 || - getAppliedConditions(parentFieldConditions, allConditions, fields) - .length > 0)); - }); -} -function getVisibleFields(fields, endUserConditions) { - if (endUserConditions.length === 0) { - return fields; - } - return fields.reduce((acc, field) => { - const fieldConditions = getFieldConditions(field.id, endUserConditions); - if (fieldConditions.length === 0) { - return [...acc, field]; - } - const appliedConditions = getAppliedConditions(fieldConditions, endUserConditions, fields); - if (appliedConditions.length > 0) { - return [ - ...acc, - { - ...field, - required: appliedConditions.some((condition) => condition.child_fields.some((child) => child.id == field.id && child.is_required)), - }, - ]; - } - return acc; - }, []); -} - -function DatePicker({ field, locale, valueFormat, onChange, }) { - const { label, error, value, name, required, description } = field; - const [date, setDate] = reactExports.useState(value ? new Date(value) : undefined); - const formatDate = (value) => { - if (value === undefined) { - return ""; - } - const isoString = value.toISOString(); - return valueFormat === "dateTime" ? isoString : isoString.split("T")[0]; - }; - const handleChange = (date) => { - // Set the time to 12:00:00 as this is also the expected behavior across Support and the API - const newDate = new Date(Date.UTC(date.getFullYear(), date.getMonth(), date.getDate(), 12, 0, 0)); - setDate(newDate); - const dateString = formatDate(newDate); - if (dateString !== undefined) { - onChange(dateString); - } - }; - const handleInputChange = (e) => { - // Allow field to be cleared - if (e.target.value === "") { - setDate(undefined); - onChange(""); - } - }; - return (jsxRuntimeExports.jsxs(Field, { children: [jsxRuntimeExports.jsxs(Label, { children: [label, required && jsxRuntimeExports.jsx(Span, { "aria-hidden": "true", children: "*" })] }), description && (jsxRuntimeExports.jsx(Hint, { dangerouslySetInnerHTML: { __html: description } })), jsxRuntimeExports.jsx(Datepicker, { value: date, onChange: handleChange, locale: locale, children: jsxRuntimeExports.jsx(Input$1, { required: required, lang: locale, onChange: handleInputChange, validation: error ? "error" : undefined }) }), error && jsxRuntimeExports.jsx(Message, { validation: "error", children: error }), jsxRuntimeExports.jsx("input", { type: "hidden", name: name, value: formatDate(date) })] })); -} - -function useTagsInputContainer({ tags, onTagsChange, inputValue, onInputValueChange, inputRef, gridRowRef, i18n, }) { - const [selectedIndex, setSelectedIndex] = reactExports.useState(0); - const [announcement, setAnnouncement] = reactExports.useState(""); - const gridOnChange = reactExports.useCallback((_, colIndex) => { - setSelectedIndex(colIndex); - }, [setSelectedIndex]); - const { getGridProps, getGridCellProps } = useGrid({ - matrix: [tags], - rowIndex: 0, - colIndex: selectedIndex, - onChange: gridOnChange, - }); - const hasTag = (tag) => { - return tags.includes(tag); - }; - const addTag = (tag) => { - onTagsChange([...tags, tag]); - setAnnouncement(i18n.addedTag(tag)); - }; - const removeTagAt = (at) => { - const tag = tags[at]; - onTagsChange(tags.filter((_, index) => index !== at)); - setAnnouncement(i18n.removedTag(tag)); - setSelectedIndex(0); - /* Move focus to the first tag once a tag has been removed, after 100ms to let screen reader read the - announcement first */ - setTimeout(() => { - const selectedTag = gridRowRef.current?.querySelector(`[tabindex="0"]`); - selectedTag?.focus(); - }, 100); - }; - const handleContainerClick = (e) => { - if (e.target === e.currentTarget) { - inputRef.current?.focus(); - } - }; - const handleContainerBlur = () => { - setSelectedIndex(0); - }; - const handleInputKeyDown = (e) => { - const target = e.target; - const tag = target.value; - if (tag && - (e.code === "Space" || - e.code === "Enter" || - e.code === "Comma" || - e.code === "Tab")) { - e.preventDefault(); - if (!hasTag(tag)) { - addTag(tag); - } - onInputValueChange(""); - } - }; - const handleInputChange = (e) => { - const currentValue = e.target.value; - /* On mobile browsers, the keyDown event doesn't provide the code - of the pressed key: https://www.w3.org/TR/uievents/#determine-keydown-keyup-keyCode, - so we need to check for spaces or commas on the change event to let the user - adds a tag */ - const [tag, separator] = [ - currentValue.slice(0, -1), - currentValue.slice(-1), - ]; - if (separator === " " || separator === ",") { - if (tag.length > 0 && !hasTag(tag)) { - addTag(tag); - } - onInputValueChange(""); - } - else { - onInputValueChange(currentValue); - } - }; - const handleInputPaste = (e) => { - e.preventDefault(); - const data = e.clipboardData.getData("text"); - const values = new Set(data.split(/[\s,;]+/).filter((value) => !tags.includes(value))); - onTagsChange([...tags, ...values]); - setAnnouncement(i18n.addedTags([...values])); - }; - const handleInputOnBlur = (e) => { - const target = e.target; - const tag = target.value; - if (tag) { - if (!hasTag(tag)) { - addTag(tag); - } - onInputValueChange(""); - } - }; - const handleTagKeyDown = (index) => (e) => { - if (e.code === "Backspace") { - e.preventDefault(); - removeTagAt(index); - } - }; - const handleTagCloseClick = (index) => () => { - removeTagAt(index); - }; - const getContainerProps = () => ({ - onClick: handleContainerClick, - onBlur: handleContainerBlur, - tabIndex: -1, - }); - const getGridRowProps = () => ({ - role: "row", - }); - const getTagCloseProps = (index) => ({ - onClick: handleTagCloseClick(index), - }); - const getInputProps = () => ({ - value: inputValue, - onChange: handleInputChange, - onKeyDown: handleInputKeyDown, - onPaste: handleInputPaste, - onBlur: handleInputOnBlur, - }); - const getAnnouncementProps = () => ({ - "aria-live": "polite", - "aria-relevant": "text", - }); - return { - getContainerProps, - getGridProps, - getGridRowProps, - getGridCellProps: (index) => getGridCellProps({ - rowIndex: 0, - colIndex: index, - onKeyDown: handleTagKeyDown(index), - }), - getTagCloseProps, - getInputProps, - announcement, - getAnnouncementProps, - }; -} - -const EMAIL_REGEX = /^(([^<>()[\]\\.,;:\s@"]+(\.[^<>()[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/; -const Container$1 = styled(FauxInput) ` - padding: ${(props) => `${props.theme.space.xxs} ${props.theme.space.sm}`}; +`;function Pe({file:n,onRemove:t}){const{t:s}=u(),r=e=>{"Enter"!==e.code&&"Space"!==e.code&&"Delete"!==e.code&&"Backspace"!==e.code||(e.preventDefault(),t())},a="pending"===n.status?n.file_name:n.value.file_name,o=s("new-request-form.attachments.stop-upload","Stop upload"),i=s("new-request-form.attachments.remove-file","Remove file");return e.jsx(k.Item,{children:e.jsx(_,{type:"generic",title:a,onKeyDown:e=>{"Delete"!==e.code&&"Backspace"!==e.code||(e.preventDefault(),t())},children:"pending"===n.status?e.jsxs(e.Fragment,{children:[e.jsx(Fe,{children:a}),e.jsx(C,{content:o,children:e.jsx(_.Close,{"aria-label":o,onClick:()=>{t()},onKeyDown:r})}),e.jsx(S,{value:n.progress,"aria-label":s("new-request-form.attachments.uploading","Uploading {{fileName}}",{fileName:a})})]}):e.jsxs(e.Fragment,{children:[e.jsx(Fe,{children:e.jsx(I,{isExternal:!0,href:n.value.url,target:"_blank",children:a})}),e.jsx(C,{content:i,children:e.jsx(_.Delete,{"aria-label":i,onClick:()=>{t()},onKeyDown:r})}),e.jsx(S,{value:100,"aria-hidden":"true"})]})})})}async function Re(){const e=await fetch("/api/v2/users/me.json"),{user:{authenticity_token:n}}=await e.json();return n}function Le({field:s}){const{label:r,error:f,name:h,attachments:p}=s,{files:j,addPendingFile:g,setPendingFileProgress:b,setUploaded:x,removePendingFile:w,removeUploadedFile:v}=function(e){const[n,t]=i.useState(e);return{files:n,addPendingFile:i.useCallback(((e,n,s)=>{t((t=>[...t,{status:"pending",id:e,file_name:n,progress:0,xhr:s}]))}),[]),setPendingFileProgress:i.useCallback(((e,n)=>{t((t=>t.map((t=>"pending"===t.status&&t.id===e?{...t,progress:n}:t))))}),[]),removePendingFile:i.useCallback((e=>{t((n=>n.filter((n=>"pending"!==n.status||n.id!==e))))}),[]),removeUploadedFile:i.useCallback((e=>{t((n=>n.filter((n=>"uploaded"!==n.status||n.value.id!==e))))}),[]),setUploaded:i.useCallback(((e,n)=>{t((t=>t.map((t=>"pending"===t.status&&t.id===e?{status:"uploaded",value:n}:t))))}),[])}}(p.map((e=>({status:"uploaded",value:e})))??[]),{addToast:q}=l(),{t:y}=u(),k=i.useCallback((n=>{q((({close:t})=>e.jsxs(c,{type:"error",children:[e.jsx(d,{children:y("new-request-form.attachments.upload-error-title","Upload error")}),y("new-request-form.attachments.upload-error-description","There was an error uploading {{fileName}}. Try again or upload another file.",{fileName:n}),e.jsx(m,{"aria-label":y("new-request-form.close-label","Close"),onClick:t})]})))}),[q,y]),_=i.useCallback((async e=>{const n=await Re();for(const t of e){const e=new XMLHttpRequest,s=new URL(`${window.location.origin}/api/v2/uploads.json`);if(s.searchParams.append("filename",t.name),e.open("POST",s),t.type)e.setRequestHeader("Content-Type",t.type);else{const n=T.getType(t.name);e.setRequestHeader("Content-Type",n||"application/octet-stream")}e.setRequestHeader("X-CSRF-Token",n),e.responseType="json";const r=crypto.randomUUID();g(r,t.name,e),e.upload.addEventListener("progress",(({loaded:e,total:n})=>{const t=Math.round(e/n*100);t<=90&&b(r,t)})),e.addEventListener("load",(()=>{if(e.status>=200&&e.status<300){const{upload:{attachment:{file_name:n,content_url:t},token:s}}=e.response;x(r,{id:s,file_name:n,url:t})}else k(t.name),w(r)})),e.addEventListener("error",(()=>{k(t.name),w(r)})),e.send(t)}}),[g,w,b,x,k]),{getRootProps:C,getInputProps:S,isDragActive:I}=F({onDrop:_});return e.jsxs(n,{children:[e.jsx(t,{children:r}),f&&e.jsx(o,{validation:"error",children:f}),e.jsxs(P,{...C(),isDragging:I,children:[I?e.jsx("span",{children:y("new-request-form.attachments.drop-files-label","Drop files here")}):e.jsx("span",{children:y("new-request-form.attachments.choose-file-label","Choose a file or drag and drop here")}),e.jsx(a,{...S()})]}),j.map((n=>e.jsx(Pe,{file:n,onRemove:()=>{(async e=>{if("pending"===e.status)e.xhr.abort(),w(e.id);else{const n=await Re(),t=e.value.id;v(e.value.id),await fetch(`/api/v2/uploads/${t}.json`,{method:"DELETE",headers:{"X-CSRF-Token":n}})}})(n)}},"pending"===n.status?n.id:n.value.id))),j.map((n=>"uploaded"===n.status&&e.jsx("input",{type:"hidden",name:h,value:JSON.stringify(n.value)},n.value.id)))]})}function $e(e,n){return n.filter((n=>n.child_fields.some((n=>n.id===e))))}function Ee(e,n,t){return e.filter((e=>{const s=t.find((n=>n.id===e.parent_field_id));if(!s)return!1;const r=$e(s.id,n);return s.value===e.value&&(0===r.length||Ee(r,n,t).length>0)}))}function De(e,n){return 0===n.length?e:e.reduce(((t,s)=>{const r=$e(s.id,n);if(0===r.length)return[...t,s];const a=Ee(r,n,e);return a.length>0?[...t,{...s,required:a.some((e=>e.child_fields.some((e=>e.id==s.id&&e.is_required))))}]:t}),[])}function Me({field:l,locale:u,valueFormat:c,onChange:d}){const{label:m,error:f,value:h,name:p,required:j,description:g}=l,[b,x]=i.useState(h?new Date(h):void 0),w=e=>{if(void 0===e)return"";const n=e.toISOString();return"dateTime"===c?n:n.split("T")[0]};return e.jsxs(n,{children:[e.jsxs(t,{children:[m,j&&e.jsx(s,{"aria-hidden":"true",children:"*"})]}),g&&e.jsx(r,{dangerouslySetInnerHTML:{__html:g}}),e.jsx(R,{value:b,onChange:e=>{const n=new Date(Date.UTC(e.getFullYear(),e.getMonth(),e.getDate(),12,0,0));x(n);const t=w(n);void 0!==t&&d(t)},locale:u,children:e.jsx(a,{required:j,lang:u,onChange:e=>{""===e.target.value&&(x(void 0),d(""))},validation:f?"error":void 0})}),f&&e.jsx(o,{validation:"error",children:f}),e.jsx("input",{type:"hidden",name:p,value:w(b)})]})}const Ve=/^(([^<>()[\]\\.,;:\s@"]+(\.[^<>()[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/,ze=f(E)` + padding: ${e=>`${e.theme.space.xxs} ${e.theme.space.sm}`}; // Removes white spaces for inline elements font-size: 0; // Same as height of Tag size="large" + base space (4px) // to give some vertical space between tags - --line-height: ${(props) => props.theme.space.base * 8 + props.theme.space.base}px; + --line-height: ${e=>8*e.theme.space.base+e.theme.space.base}px; line-height: var(--line-height); -`; -const GridCell = styled.span ` +`,Ae=f.span` display: inline-block; - margin-right: ${(props) => props.theme.space.sm}; -`; -const StyledTag = styled(Tag) ` - ${(props) => focusStyles({ - theme: props.theme, - shadowWidth: "sm", - selector: "&:focus", -})} -`; -const InputWrapper = styled.div ` + margin-right: ${e=>e.theme.space.sm}; +`,Ge=f(D)` + ${e=>$({theme:e.theme,shadowWidth:"sm",selector:"&:focus"})} +`,He=f.div` display: inline-block; position: relative; -`; -const InputMirror = styled(FauxInput) ` +`,Xe=f(E)` display: inline-block; min-width: 200px; opacity: 0; user-select: none; height: var(--line-height); line-height: var(--line-height); -`; -const StyledInput = styled(Input$1) ` +`,Ne=f(a)` position: absolute; top: 0; left: 0; height: var(--line-height); line-height: var(--line-height); -`; -function CcField({ field }) { - const { label, value, name, error, description } = field; - const { t } = useTranslation(); - const initialValue = value - ? value.split(",").map((email) => email.trim()) - : []; - const [tags, setTags] = reactExports.useState(initialValue); - const [inputValue, setInputValue] = reactExports.useState(""); - const inputRef = reactExports.useRef(null); - const gridRowRef = reactExports.useRef(null); - const { getContainerProps, getGridProps, getGridRowProps, getGridCellProps, getTagCloseProps, getInputProps, getAnnouncementProps, announcement, } = useTagsInputContainer({ - tags, - onTagsChange: setTags, - inputValue, - onInputValueChange: setInputValue, - inputRef, - gridRowRef, - i18n: { - addedTag: (email) => t("new-request-form.cc-field.email-added", "{{email}} has been added", { - email, - }), - removedTag: (email) => t("new-request-form.cc-field.email-removed", "{{email}} has been removed", { email }), - addedTags: (emails) => t("new-request-form.cc-field.emails-added", "{{emails}} have been added", { emails }), - }, - }); - const renderTag = (index, isValid, email) => (jsxRuntimeExports.jsxs(StyledTag, { size: "large", "aria-label": t("new-request-form.cc-field.email-label", "{{email}} - Press Backspace to remove", { email }), hue: isValid ? undefined : "red", children: [!isValid && (jsxRuntimeExports.jsx(Tag.Avatar, { children: jsxRuntimeExports.jsx(SvgAlertWarningStroke, {}) })), jsxRuntimeExports.jsx("span", { children: email }), jsxRuntimeExports.jsx(Tag.Close, { ...getTagCloseProps(index) })] })); - return (jsxRuntimeExports.jsxs(Field, { children: [jsxRuntimeExports.jsx(Label, { children: label }), description && jsxRuntimeExports.jsx(Hint, { children: description }), jsxRuntimeExports.jsxs(Container$1, { ...getContainerProps(), children: [tags.length > 0 && (jsxRuntimeExports.jsx("span", { ...getGridProps({ - "aria-label": t("new-request-form.cc-field.container-label", "Selected CC emails"), - }), children: jsxRuntimeExports.jsx("span", { ref: gridRowRef, ...getGridRowProps(), children: tags.map((email, index) => { - const isValid = EMAIL_REGEX.test(email); - return isValid ? (jsxRuntimeExports.jsx(GridCell, { ...getGridCellProps(index), children: renderTag(index, isValid, email) }, index)) : (jsxRuntimeExports.jsx(Tooltip, { content: t("new-request-form.cc-field.invalid-email", "Invalid email address"), children: jsxRuntimeExports.jsx(GridCell, { ...getGridCellProps(index), children: renderTag(index, isValid, email) }) }, index)); - }) }) })), jsxRuntimeExports.jsxs(InputWrapper, { children: [jsxRuntimeExports.jsx(InputMirror, { isBare: true, "aria-hidden": "true", tabIndex: -1, children: inputValue }), jsxRuntimeExports.jsx(StyledInput, { ref: inputRef, isBare: true, ...getInputProps() })] })] }), error && jsxRuntimeExports.jsx(Message, { validation: "error", children: error }), tags.map((email) => (jsxRuntimeExports.jsx("input", { type: "hidden", name: name, value: email }, email))), jsxRuntimeExports.jsx(Span, { hidden: true, ...getAnnouncementProps(), children: announcement })] })); -} - -/** - * When there is an error in the credit card field, the backend returns a redacted value with the last 4 digits prefixed with some Xs. - * This function removes the Xs from the value and returns the last 4 digits of the credit card - * - * @param value The value returned by the backend with last 4 digits prefixed with some Xs - * @returns The last 4 digits of the credit card - */ -function getLastDigits(value) { - return value ? value.replaceAll("X", "") : ""; -} -const DigitsHintSpan = styled(Span) ` - margin-left: ${(props) => props.theme.space.xxs}; - font-weight: ${(props) => props.theme.fontWeights.medium}; -`; -function CreditCard({ field, onChange }) { - const { t } = useTranslation(); - const { label, error, value, name, required, description } = field; - const digits = getLastDigits(value); - return (jsxRuntimeExports.jsxs(Field, { children: [jsxRuntimeExports.jsxs(Label, { children: [label, required && jsxRuntimeExports.jsx(Span, { "aria-hidden": "true", children: "*" }), jsxRuntimeExports.jsx(DigitsHintSpan, { children: t("new-request-form.credit-card-digits-hint", "(Last 4 digits)") })] }), description && (jsxRuntimeExports.jsx(Hint, { dangerouslySetInnerHTML: { __html: description } })), jsxRuntimeExports.jsx(MediaInput, { start: jsxRuntimeExports.jsx(SvgCreditCardStroke, {}), name: name, type: "text", value: digits, onChange: (e) => onChange(e.target.value), validation: error ? "error" : undefined, required: required, maxLength: 4, placeholder: "XXXX" }), error && jsxRuntimeExports.jsx(Message, { validation: "error", children: error })] })); -} - -function Tagger({ field, onChange }) { - const { label, options, error, value, name, required, description } = field; - const { currentGroup, isGroupIdentifier, setCurrentGroupByIdentifier } = useNestedOptions({ - options, - hasEmptyOption: true, - }); - const selectionValue = value ?? ""; - const [isExpanded, setIsExpanded] = reactExports.useState(false); - const wrapperRef = reactExports.useRef(null); - reactExports.useEffect(() => { - if (wrapperRef.current && required) { - const combobox = wrapperRef.current.querySelector("[role=combobox]"); - combobox?.setAttribute("aria-required", "true"); - } - }, [wrapperRef, required]); - const handleChange = (changes) => { - if (typeof changes.selectionValue === "string" && - isGroupIdentifier(changes.selectionValue)) { - setCurrentGroupByIdentifier(changes.selectionValue); - return; - } - if (typeof changes.selectionValue === "string") { - onChange(changes.selectionValue); - } - if (changes.isExpanded !== undefined) { - setIsExpanded(changes.isExpanded); - } - }; - return (jsxRuntimeExports.jsxs(Field$1, { children: [jsxRuntimeExports.jsxs(Label$1, { children: [label, required && jsxRuntimeExports.jsx(Span, { "aria-hidden": "true", children: "*" })] }), description && (jsxRuntimeExports.jsx(Hint$1, { dangerouslySetInnerHTML: { __html: description } })), jsxRuntimeExports.jsxs(Combobox, { ref: wrapperRef, inputProps: { required, name }, isEditable: false, validation: error ? "error" : undefined, onChange: handleChange, selectionValue: selectionValue, inputValue: selectionValue, renderValue: ({ selection }) => selection?.label ?? jsxRuntimeExports.jsx(EmptyValueOption, {}), isExpanded: isExpanded, children: [currentGroup.type === "SubGroup" && (jsxRuntimeExports.jsx(Option, { ...currentGroup.backOption })), currentGroup.type === "SubGroup" ? (jsxRuntimeExports.jsx(OptGroup, { "aria-label": currentGroup.name, children: currentGroup.options.map((option) => (jsxRuntimeExports.jsx(Option, { ...option, children: option.menuLabel ?? option.label }, option.value))) })) : (currentGroup.options.map((option) => option.value === "" ? (jsxRuntimeExports.jsx(Option, { ...option, children: jsxRuntimeExports.jsx(EmptyValueOption, {}) }, option.value)) : (jsxRuntimeExports.jsx(Option, { ...option }, option.value))))] }), error && jsxRuntimeExports.jsx(Message$1, { validation: "error", children: error })] })); -} - -function useDebounce(value, delayMs) { - const [debouncedValue, setDebouncedValue] = reactExports.useState(value); - reactExports.useEffect(() => { - const timer = setTimeout(() => setDebouncedValue(value), delayMs); - return () => { - clearTimeout(timer); - }; - }, [value, delayMs]); - return debouncedValue; -} - -const slideIn = $e ` +`;function Ue({field:a}){const{label:l,value:c,name:d,error:m,description:f}=a,{t:h}=u(),p=c?c.split(",").map((e=>e.trim())):[],[j,g]=i.useState(p),[b,x]=i.useState(""),w=i.useRef(null),v=i.useRef(null),{getContainerProps:q,getGridProps:y,getGridRowProps:k,getGridCellProps:_,getTagCloseProps:S,getInputProps:I,getAnnouncementProps:T,announcement:F}=function({tags:e,onTagsChange:n,inputValue:t,onInputValueChange:s,inputRef:r,gridRowRef:a,i18n:o}){const[l,u]=i.useState(0),[c,d]=i.useState(""),m=i.useCallback(((e,n)=>{u(n)}),[u]),{getGridProps:f,getGridCellProps:h}=L({matrix:[e],rowIndex:0,colIndex:l,onChange:m}),p=n=>e.includes(n),j=t=>{n([...e,t]),d(o.addedTag(t))},g=t=>{const s=e[t];n(e.filter(((e,n)=>n!==t))),d(o.removedTag(s)),u(0),setTimeout((()=>{const e=a.current?.querySelector('[tabindex="0"]');e?.focus()}),100)},b=e=>{e.target===e.currentTarget&&r.current?.focus()},x=()=>{u(0)},w=e=>{const n=e.target.value;!n||"Space"!==e.code&&"Enter"!==e.code&&"Comma"!==e.code&&"Tab"!==e.code||(e.preventDefault(),p(n)||j(n),s(""))},v=e=>{const n=e.target.value,[t,r]=[n.slice(0,-1),n.slice(-1)];" "===r||","===r?(t.length>0&&!p(t)&&j(t),s("")):s(n)},q=t=>{t.preventDefault();const s=t.clipboardData.getData("text"),r=new Set(s.split(/[\s,;]+/).filter((n=>!e.includes(n))));n([...e,...r]),d(o.addedTags([...r]))},y=e=>{const n=e.target.value;n&&(p(n)||j(n),s(""))},k=e=>n=>{"Backspace"===n.code&&(n.preventDefault(),g(e))},_=e=>()=>{g(e)};return{getContainerProps:()=>({onClick:b,onBlur:x,tabIndex:-1}),getGridProps:f,getGridRowProps:()=>({role:"row"}),getGridCellProps:e=>h({rowIndex:0,colIndex:e,onKeyDown:k(e)}),getTagCloseProps:e=>({onClick:_(e)}),getInputProps:()=>({value:t,onChange:v,onKeyDown:w,onPaste:q,onBlur:y}),announcement:c,getAnnouncementProps:()=>({"aria-live":"polite","aria-relevant":"text"})}}({tags:j,onTagsChange:g,inputValue:b,onInputValueChange:x,inputRef:w,gridRowRef:v,i18n:{addedTag:e=>h("new-request-form.cc-field.email-added","{{email}} has been added",{email:e}),removedTag:e=>h("new-request-form.cc-field.email-removed","{{email}} has been removed",{email:e}),addedTags:e=>h("new-request-form.cc-field.emails-added","{{emails}} have been added",{emails:e})}}),P=(n,t,s)=>e.jsxs(Ge,{size:"large","aria-label":h("new-request-form.cc-field.email-label","{{email}} - Press Backspace to remove",{email:s}),hue:t?void 0:"red",children:[!t&&e.jsx(D.Avatar,{children:e.jsx(M,{})}),e.jsx("span",{children:s}),e.jsx(D.Close,{...S(n)})]});return e.jsxs(n,{children:[e.jsx(t,{children:l}),f&&e.jsx(r,{children:f}),e.jsxs(ze,{...q(),children:[j.length>0&&e.jsx("span",{...y({"aria-label":h("new-request-form.cc-field.container-label","Selected CC emails")}),children:e.jsx("span",{ref:v,...k(),children:j.map(((n,t)=>{const s=Ve.test(n);return s?e.jsx(Ae,{..._(t),children:P(t,s,n)},t):e.jsx(C,{content:h("new-request-form.cc-field.invalid-email","Invalid email address"),children:e.jsx(Ae,{..._(t),children:P(t,s,n)})},t)}))})}),e.jsxs(He,{children:[e.jsx(Xe,{isBare:!0,"aria-hidden":"true",tabIndex:-1,children:b}),e.jsx(Ne,{ref:w,isBare:!0,...I()})]})]}),m&&e.jsx(o,{validation:"error",children:m}),j.map((n=>e.jsx("input",{type:"hidden",name:d,value:n},n))),e.jsx(s,{hidden:!0,...T(),children:F})]})}const Oe=f(s)` + margin-left: ${e=>e.theme.space.xxs}; + font-weight: ${e=>e.theme.fontWeights.medium}; +`;function Be({field:a,onChange:i}){const{t:l}=u(),{label:c,error:d,value:m,name:f,required:h,description:p}=a,j=function(e){return e?e.replaceAll("X",""):""}(m);return e.jsxs(n,{children:[e.jsxs(t,{children:[c,h&&e.jsx(s,{"aria-hidden":"true",children:"*"}),e.jsx(Oe,{children:l("new-request-form.credit-card-digits-hint","(Last 4 digits)")})]}),p&&e.jsx(r,{dangerouslySetInnerHTML:{__html:p}}),e.jsx(V,{start:e.jsx(z,{}),name:f,type:"text",value:j,onChange:e=>i(e.target.value),validation:d?"error":void 0,required:h,maxLength:4,placeholder:"XXXX"}),d&&e.jsx(o,{validation:"error",children:d})]})}function We({field:n,onChange:t}){const{label:r,options:a,error:o,value:l,name:u,required:c,description:d}=n,{currentGroup:m,isGroupIdentifier:f,setCurrentGroupByIdentifier:h}=be({options:a,hasEmptyOption:!0}),v=l??"",[y,k]=i.useState(!1),_=i.useRef(null);i.useEffect((()=>{if(_.current&&c){const e=_.current.querySelector("[role=combobox]");e?.setAttribute("aria-required","true")}}),[_,c]);return e.jsxs(p,{children:[e.jsxs(j,{children:[r,c&&e.jsx(s,{"aria-hidden":"true",children:"*"})]}),d&&e.jsx(g,{dangerouslySetInnerHTML:{__html:d}}),e.jsxs(b,{ref:_,inputProps:{required:c,name:u},isEditable:!1,validation:o?"error":void 0,onChange:e=>{"string"==typeof e.selectionValue&&f(e.selectionValue)?h(e.selectionValue):("string"==typeof e.selectionValue&&t(e.selectionValue),void 0!==e.isExpanded&&k(e.isExpanded))},selectionValue:v,inputValue:v,renderValue:({selection:n})=>n?.label??e.jsx(de,{}),isExpanded:y,children:["SubGroup"===m.type&&e.jsx(x,{...m.backOption}),"SubGroup"===m.type?e.jsx(q,{"aria-label":m.name,children:m.options.map((n=>e.jsx(x,{...n,children:n.menuLabel??n.label},n.value)))}):m.options.map((n=>""===n.value?e.jsx(x,{...n,children:e.jsx(de,{})},n.value):e.jsx(x,{...n},n.value)))]}),o&&e.jsx(w,{validation:"error",children:o})]})}const Ke=A` from { grid-template-rows: 0fr; } to { grid-template-rows: 1fr; } -`; -const Container = styled.div ` +`,Ye=f.div` display: grid; - animation: ${slideIn} 200ms forwards; -`; -const InnerContainer = styled.div ` + animation: ${Ke} 200ms forwards; +`,Je=f.div` overflow: hidden; -`; -const UnstyledList = styled.ul ` +`,Ze=f.ul` list-style: none; padding: 0; margin: 0; -`; -const ListItem = styled.li ` - margin: ${(props) => props.theme.space.sm} 0; -`; -function hasMinLength(value) { - const firstLetter = value.charCodeAt(0); - /* - * Special case considering CJK characters. Since ideographs represent - * whole words, we want to start searching when just two has been typed. - * - * Unicode range reference: - * http://www.unicode.org/versions/Unicode5.0.0/ch12.pdf#G16616 - */ - if (firstLetter >= 0x4e00 && firstLetter <= 0x2fa1f) { - return value.length >= 2; - } - else { - return value.length >= 3; - } -} -function SuggestedArticles({ query: inputQuery, locale, }) { - const debouncedQuery = useDebounce(inputQuery, 500); - const [articles, setArticles] = reactExports.useState([]); - const requestsCache = reactExports.useRef({}); - const { t } = useTranslation(); - reactExports.useEffect(() => { - const query = debouncedQuery?.trim().toLocaleLowerCase(); - if (!query || !hasMinLength(query)) { - setArticles([]); - return; - } - const requestUrl = new URL(`${window.location.origin}/api/v2/help_center/deflection/suggestions.json`); - requestUrl.searchParams.append("locale", locale); - requestUrl.searchParams.append("query", query); - const cachedResponse = requestsCache.current[requestUrl.toString()]; - if (cachedResponse) { - setArticles(cachedResponse); - return; - } - fetch(requestUrl) - .then((response) => response.json()) - .then(({ results }) => { - requestsCache.current[requestUrl.toString()] = results; - setArticles(results); - }); - }, [debouncedQuery, locale]); - return articles.length > 0 ? (jsxRuntimeExports.jsx(Container, { "data-test-id": "suggested-articles", children: jsxRuntimeExports.jsxs(InnerContainer, { children: [jsxRuntimeExports.jsx("h2", { children: t("new-request-form.suggested-articles", "Suggested articles") }), jsxRuntimeExports.jsx(UnstyledList, { children: articles.map((article) => (jsxRuntimeExports.jsx(ListItem, { children: jsxRuntimeExports.jsx(Anchor, { href: article.html_url, children: article.name }) }, article.html_url))) })] }) })) : null; -} - -const H3 = styled.h3 ` - font-size: ${(props) => props.theme.fontSizes.md}; - font-weight: ${(props) => props.theme.fontWeights.bold}; -`; -const StyledHeader = styled(Header) ` - color: ${(props) => getColorV8("successHue", 700, props.theme)}; -`; -const StyledSuccessIcon = styled(SvgCheckCircleStroke) ` +`,Qe=f.li` + margin: ${e=>e.theme.space.sm} 0; +`;function en({query:n,locale:t}){const s=function(e,n){const[t,s]=i.useState(e);return i.useEffect((()=>{const t=setTimeout((()=>s(e)),n);return()=>{clearTimeout(t)}}),[e,n]),t}(n,500),[r,a]=i.useState([]),o=i.useRef({}),{t:l}=u();return i.useEffect((()=>{const e=s?.trim().toLocaleLowerCase();if(!e||!function(e){const n=e.charCodeAt(0);return n>=19968&&n<=195103?e.length>=2:e.length>=3}(e))return void a([]);const n=new URL(`${window.location.origin}/api/v2/help_center/deflection/suggestions.json`);n.searchParams.append("locale",t),n.searchParams.append("query",e);const r=o.current[n.toString()];r?a(r):fetch(n).then((e=>e.json())).then((({results:e})=>{o.current[n.toString()]=e,a(e)}))}),[s,t]),r.length>0?e.jsx(Ye,{"data-test-id":"suggested-articles",children:e.jsxs(Je,{children:[e.jsx("h2",{children:l("new-request-form.suggested-articles","Suggested articles")}),e.jsx(Ze,{children:r.map((n=>e.jsx(Qe,{children:e.jsx(I,{href:n.html_url,children:n.name})},n.html_url)))})]})}):null}const nn=f.h3` + font-size: ${e=>e.theme.fontSizes.md}; + font-weight: ${e=>e.theme.fontWeights.bold}; +`,tn=f(H)` + color: ${e=>G("successHue",700,e.theme)}; +`,sn=f(X)` position: absolute; - top: ${(props) => props.theme.space.base * 5.5}px; - inset-inline-start: ${(props) => `${props.theme.space.base * 4}px`}; -`; -const ArticleLink = styled(Anchor) ` + top: ${e=>5.5*e.theme.space.base}px; + inset-inline-start: ${e=>4*e.theme.space.base+"px"}; +`,rn=f(I)` display: inline-block; - margin-top: ${(props) => props.theme.space.sm}; -`; -function AnswerBotModal({ authToken, interactionAccessToken, articles, requestId, hasRequestManagement, isSignedIn, helpCenterPath, requestsPath, requestPath, }) { - const [expandedIndex, setExpandedIndex] = reactExports.useState(0); - const modalContainer = useModalContainer(); - const { t } = useTranslation(); - const getExpandedArticleId = () => { - return String(articles[expandedIndex]?.article_id); - }; - const getUnsolvedRedirectUrl = () => { - if (!isSignedIn) { - const searchParams = new URLSearchParams(); - searchParams.set("return_to", requestsPath); - return `${helpCenterPath}?${searchParams.toString()}`; - } - else if (hasRequestManagement) { - return requestPath; - } - else { - return helpCenterPath; - } - }; - const addUnsolvedNotificationAndRedirect = () => { - addFlashNotification({ - type: "success", - message: t("new-request-form.answer-bot-modal.request-submitted", "Your request was successfully submitted"), - }); - window.location.assign(getUnsolvedRedirectUrl()); - }; - const solveRequest = async () => { - const response = await fetch("/api/v2/answer_bot/resolution", { - method: "POST", - body: JSON.stringify({ - article_id: getExpandedArticleId(), - interaction_access_token: interactionAccessToken, - }), - headers: { - "Content-Type": "application/json", - }, - }); - if (response.ok) { - addFlashNotification({ - type: "success", - message: t("new-request-form.answer-bot-modal.request-closed", "Nice. Your request has been closed."), - }); - } - else { - addFlashNotification({ - type: "error", - message: t("new-request-form.answer-bot-modal.solve-error", "There was an error closing your request"), - }); - } - window.location.href = helpCenterPath; - }; - const markArticleAsIrrelevant = async () => { - await fetch("/api/v2/answer_bot/rejection", { - method: "POST", - body: JSON.stringify({ - article_id: getExpandedArticleId(), - interaction_access_token: interactionAccessToken, - reason_id: 0, - }), - headers: { - "Content-Type": "application/json", - }, - }); - addUnsolvedNotificationAndRedirect(); - }; - return (jsxRuntimeExports.jsxs(Modal, { appendToNode: modalContainer, onClose: () => { - addUnsolvedNotificationAndRedirect(); - }, children: [jsxRuntimeExports.jsxs(StyledHeader, { tag: "h2", children: [jsxRuntimeExports.jsx(StyledSuccessIcon, {}), t("new-request-form.answer-bot-modal.request-submitted", "Your request was successfully submitted")] }), jsxRuntimeExports.jsxs(Body, { children: [jsxRuntimeExports.jsx(H3, { children: t("new-request-form.answer-bot-modal.title", "While you wait, do any of these articles answer your question?") }), jsxRuntimeExports.jsx("p", { children: t("new-request-form.answer-bot-modal.footer-content", "If it does, we can close your recent request {{requestId}}", { - requestId: `\u202D#${requestId}\u202C`, - }) }), jsxRuntimeExports.jsx(Accordion, { level: 4, expandedSections: [expandedIndex], onChange: (index) => { - setExpandedIndex(index); - }, children: articles.map(({ article_id, html_url, snippet, title }) => (jsxRuntimeExports.jsxs(Accordion.Section, { children: [jsxRuntimeExports.jsx(Accordion.Header, { children: jsxRuntimeExports.jsx(Accordion.Label, { children: title }) }), jsxRuntimeExports.jsxs(Accordion.Panel, { children: [jsxRuntimeExports.jsx(Paragraph, { dangerouslySetInnerHTML: { __html: snippet } }), jsxRuntimeExports.jsx(ArticleLink, { isExternal: true, href: `${html_url}?auth_token=${authToken}`, target: "_blank", children: t("new-request-form.answer-bot-modal.view-article", "View article") })] })] }, article_id))) })] }), jsxRuntimeExports.jsxs(Footer$1, { children: [jsxRuntimeExports.jsx(FooterItem, { children: jsxRuntimeExports.jsx(Button, { onClick: () => { - markArticleAsIrrelevant(); - }, children: t("new-request-form.answer-bot-modal.mark-irrelevant", "No, I need help") }) }), jsxRuntimeExports.jsx(FooterItem, { children: jsxRuntimeExports.jsx(Button, { isPrimary: true, onClick: () => { - solveRequest(); - }, children: t("new-request-form.answer-bot-modal.solve-request", "Yes, close my request") }) })] }), jsxRuntimeExports.jsx(Close$1, { "aria-label": t("new-request-form.close-label", "Close") })] })); -} - -function getCustomObjectKey(targetType) { - return targetType.replace("zen:custom_object:", ""); -} -const EMPTY_OPTION = { - value: "", - name: "-", -}; -function LookupField({ field, userId, organizationId, onChange, }) { - const { id: fieldId, label, error, value, name, required, description, relationship_target_type, } = field; - const [options, setOptions] = reactExports.useState([]); - const [selectedOption, setSelectedOption] = reactExports.useState(null); - const [inputValue, setInputValue] = reactExports.useState(value); - const [isLoadingOptions, setIsLoadingOptions] = reactExports.useState(false); - const { t } = useTranslation(); - const customObjectKey = getCustomObjectKey(relationship_target_type); - const loadingOption = { - name: t("new-request-form.lookup-field.loading-options", "Loading items..."), - id: "loading", - }; - const noResultsOption = { - name: t("new-request-form.lookup-field.no-matches-found", "No matches found"), - id: "no-results", - }; - const fetchSelectedOption = reactExports.useCallback(async (selectionValue) => { - try { - const res = await fetch(`/api/v2/custom_objects/${customObjectKey}/records/${selectionValue}`); - if (res.ok) { - const { custom_object_record } = await res.json(); - const newSelectedOption = { - name: custom_object_record.name, - value: custom_object_record.id, - }; - setSelectedOption(newSelectedOption); - setInputValue(custom_object_record.name); - } - } - catch (error) { - console.error(error); - } - }, [customObjectKey]); - const fetchOptions = reactExports.useCallback(async (inputValue) => { - const searchParams = new URLSearchParams(); - searchParams.set("name", inputValue.toLocaleLowerCase()); - searchParams.set("source", "zen:ticket"); - searchParams.set("field_id", fieldId.toString()); - searchParams.set("requester_id", userId.toString()); - if (organizationId !== null) - searchParams.set("organization_id", organizationId); - setIsLoadingOptions(true); - try { - const response = await fetch(`/api/v2/custom_objects/${customObjectKey}/records/autocomplete?${searchParams.toString()}`); - const data = await response.json(); - if (response.ok) { - let fetchedOptions = data.custom_object_records.map(({ name, id }) => ({ - name, - value: id, - })); - if (selectedOption) { - fetchedOptions = fetchedOptions.filter((option) => option.value !== selectedOption.value); - fetchedOptions = [selectedOption, ...fetchedOptions]; - } - setOptions(fetchedOptions); - } - else { - setOptions([]); - } - } - catch (error) { - console.error(error); - } - finally { - setIsLoadingOptions(false); - } - }, [customObjectKey, fieldId, organizationId, selectedOption, userId]); - const debouncedFetchOptions = reactExports.useMemo(() => debounce(fetchOptions, 300), [fetchOptions]); - reactExports.useEffect(() => { - return () => debouncedFetchOptions.cancel(); - }, [debouncedFetchOptions]); - const handleChange = reactExports.useCallback(({ inputValue, selectionValue }) => { - if (selectionValue !== undefined) { - if (selectionValue == "") { - setSelectedOption(EMPTY_OPTION); - setInputValue(EMPTY_OPTION.name); - setOptions([]); - onChange(EMPTY_OPTION.value); - } - else { - const selectedOption = options.find((option) => option.value === selectionValue); - if (selectedOption) { - setInputValue(selectedOption.name); - setSelectedOption(selectedOption); - setOptions([selectedOption]); - onChange(selectedOption.value); - } - } - } - if (inputValue !== undefined) { - setInputValue(inputValue); - debouncedFetchOptions(inputValue); - } - }, [debouncedFetchOptions, onChange, options]); - reactExports.useEffect(() => { - if (value) { - fetchSelectedOption(value); - } - }, []); //we don't set dependency array as we want this hook to be called only once - const onFocus = () => { - setInputValue(""); - fetchOptions("*"); - }; - return (jsxRuntimeExports.jsxs(Field$1, { children: [jsxRuntimeExports.jsxs(Label$1, { children: [label, required && jsxRuntimeExports.jsx(Span, { "aria-hidden": "true", children: "*" })] }), description && (jsxRuntimeExports.jsx(Hint$1, { dangerouslySetInnerHTML: { __html: description } })), jsxRuntimeExports.jsxs(Combobox, { inputProps: { required }, "data-test-id": "lookup-field-combobox", validation: error ? "error" : undefined, inputValue: inputValue, selectionValue: selectedOption?.value, isAutocomplete: true, placeholder: t("new-request-form.lookup-field.placeholder", "Search {{label}}", { label: label.toLowerCase() }), onFocus: onFocus, onChange: handleChange, renderValue: () => selectedOption ? selectedOption?.name : EMPTY_OPTION.name, children: [selectedOption?.name !== EMPTY_OPTION.name && (jsxRuntimeExports.jsx(Option, { value: "", label: "-", children: jsxRuntimeExports.jsx(EmptyValueOption, {}) })), isLoadingOptions && (jsxRuntimeExports.jsx(Option, { isDisabled: true, value: loadingOption.name }, loadingOption.id)), !isLoadingOptions && - inputValue?.length > 0 && - options.length === 0 && (jsxRuntimeExports.jsx(Option, { isDisabled: true, value: noResultsOption.name }, noResultsOption.id)), !isLoadingOptions && - options.length !== 0 && - options.map((option) => (jsxRuntimeExports.jsx(Option, { value: option.value, label: option.name, "data-test-id": `option-${option.name}` }, option.value)))] }), error && jsxRuntimeExports.jsx(Message$1, { validation: "error", children: error }), jsxRuntimeExports.jsx("input", { type: "hidden", name: name, value: selectedOption?.value })] })); -} - -const StyledParagraph = styled(Paragraph) ` - margin: ${(props) => props.theme.space.md} 0; -`; -const Form = styled.form ` + margin-top: ${e=>e.theme.space.sm}; +`;function an({authToken:n,interactionAccessToken:t,articles:s,requestId:r,hasRequestManagement:a,isSignedIn:o,helpCenterPath:l,requestsPath:c,requestPath:d}){const[m,f]=i.useState(0),h=N(),{t:p}=u(),j=()=>String(s[m]?.article_id),g=()=>{Q({type:"success",message:p("new-request-form.answer-bot-modal.request-submitted","Your request was successfully submitted")}),window.location.assign((()=>{if(o)return a?d:l;{const e=new URLSearchParams;return e.set("return_to",c),`${l}?${e.toString()}`}})())};return e.jsxs(U,{appendToNode:h,onClose:()=>{g()},children:[e.jsxs(tn,{tag:"h2",children:[e.jsx(sn,{}),p("new-request-form.answer-bot-modal.request-submitted","Your request was successfully submitted")]}),e.jsxs(O,{children:[e.jsx(nn,{children:p("new-request-form.answer-bot-modal.title","While you wait, do any of these articles answer your question?")}),e.jsx("p",{children:p("new-request-form.answer-bot-modal.footer-content","If it does, we can close your recent request {{requestId}}",{requestId:`‭#${r}‬`})}),e.jsx(B,{level:4,expandedSections:[m],onChange:e=>{f(e)},children:s.map((({article_id:t,html_url:s,snippet:r,title:a})=>e.jsxs(B.Section,{children:[e.jsx(B.Header,{children:e.jsx(B.Label,{children:a})}),e.jsxs(B.Panel,{children:[e.jsx(W,{dangerouslySetInnerHTML:{__html:r}}),e.jsx(rn,{isExternal:!0,href:`${s}?auth_token=${n}`,target:"_blank",children:p("new-request-form.answer-bot-modal.view-article","View article")})]})]},t)))})]}),e.jsxs(K,{children:[e.jsx(Y,{children:e.jsx(J,{onClick:()=>{(async()=>{await fetch("/api/v2/answer_bot/rejection",{method:"POST",body:JSON.stringify({article_id:j(),interaction_access_token:t,reason_id:0}),headers:{"Content-Type":"application/json"}}),g()})()},children:p("new-request-form.answer-bot-modal.mark-irrelevant","No, I need help")})}),e.jsx(Y,{children:e.jsx(J,{isPrimary:!0,onClick:()=>{(async()=>{(await fetch("/api/v2/answer_bot/resolution",{method:"POST",body:JSON.stringify({article_id:j(),interaction_access_token:t}),headers:{"Content-Type":"application/json"}})).ok?Q({type:"success",message:p("new-request-form.answer-bot-modal.request-closed","Nice. Your request has been closed.")}):Q({type:"error",message:p("new-request-form.answer-bot-modal.solve-error","There was an error closing your request")}),window.location.href=l})()},children:p("new-request-form.answer-bot-modal.solve-request","Yes, close my request")})})]}),e.jsx(Z,{"aria-label":p("new-request-form.close-label","Close")})]})}const on={value:"",name:"-"};function ln({field:n,userId:t,organizationId:r,onChange:a}){const{id:o,label:l,error:c,value:d,name:m,required:f,description:h,relationship_target_type:v}=n,[q,y]=i.useState([]),[k,_]=i.useState(null),[C,S]=i.useState(d),[I,T]=i.useState(!1),{t:F}=u(),P=v.replace("zen:custom_object:","");const R={name:F("new-request-form.lookup-field.loading-options","Loading items..."),id:"loading"},L={name:F("new-request-form.lookup-field.no-matches-found","No matches found"),id:"no-results"},$=i.useCallback((async e=>{try{const n=await fetch(`/api/v2/custom_objects/${P}/records/${e}`);if(n.ok){const{custom_object_record:e}=await n.json(),t={name:e.name,value:e.id};_(t),S(e.name)}}catch(e){console.error(e)}}),[P]),E=i.useCallback((async e=>{const n=new URLSearchParams;n.set("name",e.toLocaleLowerCase()),n.set("source","zen:ticket"),n.set("field_id",o.toString()),n.set("requester_id",t.toString()),null!==r&&n.set("organization_id",r),T(!0);try{const e=await fetch(`/api/v2/custom_objects/${P}/records/autocomplete?${n.toString()}`),t=await e.json();if(e.ok){let e=t.custom_object_records.map((({name:e,id:n})=>({name:e,value:n})));k&&(e=e.filter((e=>e.value!==k.value)),e=[k,...e]),y(e)}else y([])}catch(e){console.error(e)}finally{T(!1)}}),[P,o,r,k,t]),D=i.useMemo((()=>ee(E,300)),[E]);i.useEffect((()=>()=>D.cancel()),[D]);const M=i.useCallback((({inputValue:e,selectionValue:n})=>{if(void 0!==n)if(""==n)_(on),S(on.name),y([]),a(on.value);else{const e=q.find((e=>e.value===n));e&&(S(e.name),_(e),y([e]),a(e.value))}void 0!==e&&(S(e),D(e))}),[D,a,q]);i.useEffect((()=>{d&&$(d)}),[]);return e.jsxs(p,{children:[e.jsxs(j,{children:[l,f&&e.jsx(s,{"aria-hidden":"true",children:"*"})]}),h&&e.jsx(g,{dangerouslySetInnerHTML:{__html:h}}),e.jsxs(b,{inputProps:{required:f},"data-test-id":"lookup-field-combobox",validation:c?"error":void 0,inputValue:C,selectionValue:k?.value,isAutocomplete:!0,placeholder:F("new-request-form.lookup-field.placeholder","Search {{label}}",{label:l.toLowerCase()}),onFocus:()=>{S(""),E("*")},onChange:M,renderValue:()=>k?k?.name:on.name,children:[k?.name!==on.name&&e.jsx(x,{value:"",label:"-",children:e.jsx(de,{})}),I&&e.jsx(x,{isDisabled:!0,value:R.name},R.id),!I&&C?.length>0&&0===q.length&&e.jsx(x,{isDisabled:!0,value:L.name},L.id),!I&&0!==q.length&&q.map((n=>e.jsx(x,{value:n.value,label:n.name,"data-test-id":`option-${n.name}`},n.value)))]}),c&&e.jsx(w,{validation:"error",children:c}),e.jsx("input",{type:"hidden",name:m,value:k?.value})]})}const un=f(W)` + margin: ${e=>e.theme.space.md} 0; +`,cn=f.form` display: flex; flex-direction: column; - gap: ${(props) => props.theme.space.md}; -`; -const Footer = styled.div ` - margin-top: ${(props) => props.theme.space.md}; -`; -function NewRequestForm({ requestForm, wysiwyg, newRequestPath, parentId, parentIdPath, locale, baseLocale, hasAtMentions, userRole, userId, brandId, organizations, answerBotModal, }) { - const { ticket_fields, action, http_method, accept_charset, errors, parent_id_field, ticket_form_field, email_field, cc_field, organization_field, due_date_field, end_user_conditions, attachments_field, inline_attachments_fields, description_mimetype_field, } = requestForm; - const { answerBot } = answerBotModal; - const { ticketFields: prefilledTicketFields, emailField, ccField, organizationField: prefilledOrganizationField, dueDateField: prefilledDueDateField, } = usePrefilledTicketFields({ - ticketFields: ticket_fields, - emailField: email_field, - ccField: cc_field, - organizationField: organization_field, - dueDateField: due_date_field, - }); - const [ticketFields, setTicketFields] = reactExports.useState(prefilledTicketFields); - const [organizationField, setOrganizationField] = reactExports.useState(prefilledOrganizationField); - const [dueDateField, setDueDateField] = reactExports.useState(prefilledDueDateField); - const visibleFields = getVisibleFields(ticketFields, end_user_conditions); - const { formRefCallback, handleSubmit } = useFormSubmit(ticketFields); - const { t } = useTranslation(); - const defaultOrganizationId = organizations.length > 0 && organizations[0]?.id - ? organizations[0]?.id?.toString() - : null; - const handleChange = reactExports.useCallback((field, value) => { - setTicketFields(ticketFields.map((ticketField) => ticketField.name === field.name - ? { ...ticketField, value } - : ticketField)); - }, [ticketFields]); - function handleOrganizationChange(value) { - if (organizationField === null) { - return; - } - setOrganizationField({ ...organizationField, value }); - } - function handleDueDateChange(value) { - if (dueDateField === null) { - return; - } - setDueDateField({ ...dueDateField, value }); - } - return (jsxRuntimeExports.jsxs(jsxRuntimeExports.Fragment, { children: [parentId && (jsxRuntimeExports.jsx(StyledParagraph, { children: jsxRuntimeExports.jsx(Anchor, { href: parentIdPath, children: t("new-request-form.parent-request-link", "Follow-up to request {{parentId}}", { - parentId: `\u202D#${parentId}\u202C`, - }) }) })), jsxRuntimeExports.jsx(StyledParagraph, { "aria-hidden": "true", children: t("new-request-form.required-fields-info", "Fields marked with an asterisk (*) are required.") }), jsxRuntimeExports.jsxs(Form, { ref: formRefCallback, action: action, method: http_method, acceptCharset: accept_charset, noValidate: true, onSubmit: handleSubmit, children: [errors && jsxRuntimeExports.jsx(Alert, { type: "error", children: errors }), parent_id_field && jsxRuntimeExports.jsx(ParentTicketField, { field: parent_id_field }), ticket_form_field.options.length > 0 && (jsxRuntimeExports.jsx(TicketFormField, { field: ticket_form_field, newRequestPath: newRequestPath })), emailField && jsxRuntimeExports.jsx(Input, { field: emailField }, emailField.name), ccField && jsxRuntimeExports.jsx(CcField, { field: ccField }), organizationField && (jsxRuntimeExports.jsx(DropDown, { field: organizationField, onChange: (value) => { - handleOrganizationChange(value); - } }, organizationField.name)), visibleFields.map((field) => { - switch (field.type) { - case "subject": - return (jsxRuntimeExports.jsxs(jsxRuntimeExports.Fragment, { children: [jsxRuntimeExports.jsx(Input, { field: field, onChange: (value) => handleChange(field, value) }, field.name), jsxRuntimeExports.jsx(SuggestedArticles, { query: field.value, locale: locale })] })); - case "text": - case "integer": - case "decimal": - case "regexp": - return (jsxRuntimeExports.jsx(Input, { field: field, onChange: (value) => handleChange(field, value) }, field.name)); - case "partialcreditcard": - return (jsxRuntimeExports.jsx(CreditCard, { field: field, onChange: (value) => handleChange(field, value) })); - case "description": - return (jsxRuntimeExports.jsxs(jsxRuntimeExports.Fragment, { children: [jsxRuntimeExports.jsx(TextArea, { field: field, hasWysiwyg: wysiwyg, baseLocale: baseLocale, hasAtMentions: hasAtMentions, userRole: userRole, brandId: brandId, onChange: (value) => handleChange(field, value) }, field.name), jsxRuntimeExports.jsx("input", { type: "hidden", name: description_mimetype_field.name, value: wysiwyg ? "text/html" : "text/plain" })] })); - case "textarea": - return (jsxRuntimeExports.jsx(TextArea, { field: field, hasWysiwyg: false, baseLocale: baseLocale, hasAtMentions: hasAtMentions, userRole: userRole, brandId: brandId, onChange: (value) => handleChange(field, value) }, field.name)); - case "priority": - case "basic_priority": - case "tickettype": - return (jsxRuntimeExports.jsxs(jsxRuntimeExports.Fragment, { children: [jsxRuntimeExports.jsx(DropDown, { field: field, onChange: (value) => handleChange(field, value) }, field.name), field.value === "task" && (jsxRuntimeExports.jsx(DatePicker, { field: dueDateField, locale: baseLocale, valueFormat: "dateTime", onChange: (value) => { - handleDueDateChange(value); - } }))] })); - case "checkbox": - return (jsxRuntimeExports.jsx(Checkbox, { field: field, onChange: (value) => handleChange(field, value) })); - case "date": - return (jsxRuntimeExports.jsx(DatePicker, { field: field, locale: baseLocale, valueFormat: "date", onChange: (value) => handleChange(field, value) })); - case "multiselect": - return jsxRuntimeExports.jsx(MultiSelect, { field: field }); - case "tagger": - return (jsxRuntimeExports.jsx(Tagger, { field: field, onChange: (value) => handleChange(field, value) }, field.name)); - case "lookup": - return (jsxRuntimeExports.jsx(LookupField, { field: field, userId: userId, organizationId: organizationField !== null - ? organizationField.value - : defaultOrganizationId, onChange: (value) => handleChange(field, value) }, field.name)); - default: - return jsxRuntimeExports.jsx(jsxRuntimeExports.Fragment, {}); - } - }), attachments_field && jsxRuntimeExports.jsx(Attachments, { field: attachments_field }), inline_attachments_fields.map(({ type, name, value }, index) => (jsxRuntimeExports.jsx("input", { type: type, name: name, value: value }, index))), jsxRuntimeExports.jsx(Footer, { children: (ticket_form_field.options.length === 0 || - ticket_form_field.value) && (jsxRuntimeExports.jsx(Button, { isPrimary: true, type: "submit", children: t("new-request-form.submit", "Submit") })) })] }), answerBot.auth_token && - answerBot.interaction_access_token && - answerBot.articles.length > 0 && - answerBot.request_id && (jsxRuntimeExports.jsx(AnswerBotModal, { authToken: answerBot.auth_token, interactionAccessToken: answerBot.interaction_access_token, articles: answerBot.articles, requestId: answerBot.request_id, ...answerBotModal }))] })); -} - -function __variableDynamicImportRuntime0__(path) { - switch (path) { - case './translations/locales/af.json': return import('new-request-form-translations').then(function (n) { return n.a; }); - case './translations/locales/ar-x-pseudo.json': return import('new-request-form-translations').then(function (n) { return n.b; }); - case './translations/locales/ar.json': return import('new-request-form-translations').then(function (n) { return n.c; }); - case './translations/locales/az.json': return import('new-request-form-translations').then(function (n) { return n.d; }); - case './translations/locales/be.json': return import('new-request-form-translations').then(function (n) { return n.e; }); - case './translations/locales/bg.json': return import('new-request-form-translations').then(function (n) { return n.f; }); - case './translations/locales/bn.json': return import('new-request-form-translations').then(function (n) { return n.g; }); - case './translations/locales/bs.json': return import('new-request-form-translations').then(function (n) { return n.h; }); - case './translations/locales/ca.json': return import('new-request-form-translations').then(function (n) { return n.i; }); - case './translations/locales/cs.json': return import('new-request-form-translations').then(function (n) { return n.j; }); - case './translations/locales/cy.json': return import('new-request-form-translations').then(function (n) { return n.k; }); - case './translations/locales/da.json': return import('new-request-form-translations').then(function (n) { return n.l; }); - case './translations/locales/de-de.json': return import('new-request-form-translations').then(function (n) { return n.m; }); - case './translations/locales/de-x-informal.json': return import('new-request-form-translations').then(function (n) { return n.n; }); - case './translations/locales/de.json': return import('new-request-form-translations').then(function (n) { return n.o; }); - case './translations/locales/el.json': return import('new-request-form-translations').then(function (n) { return n.p; }); - case './translations/locales/en-001.json': return import('new-request-form-translations').then(function (n) { return n.q; }); - case './translations/locales/en-150.json': return import('new-request-form-translations').then(function (n) { return n.r; }); - case './translations/locales/en-au.json': return import('new-request-form-translations').then(function (n) { return n.s; }); - case './translations/locales/en-ca.json': return import('new-request-form-translations').then(function (n) { return n.t; }); - case './translations/locales/en-gb.json': return import('new-request-form-translations').then(function (n) { return n.u; }); - case './translations/locales/en-my.json': return import('new-request-form-translations').then(function (n) { return n.v; }); - case './translations/locales/en-ph.json': return import('new-request-form-translations').then(function (n) { return n.w; }); - case './translations/locales/en-se.json': return import('new-request-form-translations').then(function (n) { return n.x; }); - case './translations/locales/en-us.json': return import('new-request-form-translations').then(function (n) { return n.y; }); - case './translations/locales/en-x-dev.json': return import('new-request-form-translations').then(function (n) { return n.z; }); - case './translations/locales/en-x-keys.json': return import('new-request-form-translations').then(function (n) { return n.A; }); - case './translations/locales/en-x-obsolete.json': return import('new-request-form-translations').then(function (n) { return n.B; }); - case './translations/locales/en-x-pseudo.json': return import('new-request-form-translations').then(function (n) { return n.C; }); - case './translations/locales/en-x-test.json': return import('new-request-form-translations').then(function (n) { return n.D; }); - case './translations/locales/es-419.json': return import('new-request-form-translations').then(function (n) { return n.E; }); - case './translations/locales/es-es.json': return import('new-request-form-translations').then(function (n) { return n.F; }); - case './translations/locales/es.json': return import('new-request-form-translations').then(function (n) { return n.G; }); - case './translations/locales/et.json': return import('new-request-form-translations').then(function (n) { return n.H; }); - case './translations/locales/eu.json': return import('new-request-form-translations').then(function (n) { return n.I; }); - case './translations/locales/fa-af.json': return import('new-request-form-translations').then(function (n) { return n.J; }); - case './translations/locales/fa.json': return import('new-request-form-translations').then(function (n) { return n.K; }); - case './translations/locales/fi.json': return import('new-request-form-translations').then(function (n) { return n.L; }); - case './translations/locales/fil.json': return import('new-request-form-translations').then(function (n) { return n.M; }); - case './translations/locales/fo.json': return import('new-request-form-translations').then(function (n) { return n.N; }); - case './translations/locales/fr-ca.json': return import('new-request-form-translations').then(function (n) { return n.O; }); - case './translations/locales/fr.json': return import('new-request-form-translations').then(function (n) { return n.P; }); - case './translations/locales/ga.json': return import('new-request-form-translations').then(function (n) { return n.Q; }); - case './translations/locales/he.json': return import('new-request-form-translations').then(function (n) { return n.R; }); - case './translations/locales/hi.json': return import('new-request-form-translations').then(function (n) { return n.S; }); - case './translations/locales/hr.json': return import('new-request-form-translations').then(function (n) { return n.T; }); - case './translations/locales/hu.json': return import('new-request-form-translations').then(function (n) { return n.U; }); - case './translations/locales/hy.json': return import('new-request-form-translations').then(function (n) { return n.V; }); - case './translations/locales/id.json': return import('new-request-form-translations').then(function (n) { return n.W; }); - case './translations/locales/is.json': return import('new-request-form-translations').then(function (n) { return n.X; }); - case './translations/locales/it-ch.json': return import('new-request-form-translations').then(function (n) { return n.Y; }); - case './translations/locales/it.json': return import('new-request-form-translations').then(function (n) { return n.Z; }); - case './translations/locales/ja.json': return import('new-request-form-translations').then(function (n) { return n._; }); - case './translations/locales/ka.json': return import('new-request-form-translations').then(function (n) { return n.$; }); - case './translations/locales/kk.json': return import('new-request-form-translations').then(function (n) { return n.a0; }); - case './translations/locales/kl-dk.json': return import('new-request-form-translations').then(function (n) { return n.a1; }); - case './translations/locales/ko.json': return import('new-request-form-translations').then(function (n) { return n.a2; }); - case './translations/locales/ku.json': return import('new-request-form-translations').then(function (n) { return n.a3; }); - case './translations/locales/lt.json': return import('new-request-form-translations').then(function (n) { return n.a4; }); - case './translations/locales/lv.json': return import('new-request-form-translations').then(function (n) { return n.a5; }); - case './translations/locales/mk.json': return import('new-request-form-translations').then(function (n) { return n.a6; }); - case './translations/locales/mn.json': return import('new-request-form-translations').then(function (n) { return n.a7; }); - case './translations/locales/ms.json': return import('new-request-form-translations').then(function (n) { return n.a8; }); - case './translations/locales/mt.json': return import('new-request-form-translations').then(function (n) { return n.a9; }); - case './translations/locales/my.json': return import('new-request-form-translations').then(function (n) { return n.aa; }); - case './translations/locales/nl-be.json': return import('new-request-form-translations').then(function (n) { return n.ab; }); - case './translations/locales/nl.json': return import('new-request-form-translations').then(function (n) { return n.ac; }); - case './translations/locales/no.json': return import('new-request-form-translations').then(function (n) { return n.ad; }); - case './translations/locales/pl.json': return import('new-request-form-translations').then(function (n) { return n.ae; }); - case './translations/locales/pt-br.json': return import('new-request-form-translations').then(function (n) { return n.af; }); - case './translations/locales/pt.json': return import('new-request-form-translations').then(function (n) { return n.ag; }); - case './translations/locales/ro.json': return import('new-request-form-translations').then(function (n) { return n.ah; }); - case './translations/locales/ru.json': return import('new-request-form-translations').then(function (n) { return n.ai; }); - case './translations/locales/sk.json': return import('new-request-form-translations').then(function (n) { return n.aj; }); - case './translations/locales/sl.json': return import('new-request-form-translations').then(function (n) { return n.ak; }); - case './translations/locales/sq.json': return import('new-request-form-translations').then(function (n) { return n.al; }); - case './translations/locales/sr-me.json': return import('new-request-form-translations').then(function (n) { return n.am; }); - case './translations/locales/sr.json': return import('new-request-form-translations').then(function (n) { return n.an; }); - case './translations/locales/sv.json': return import('new-request-form-translations').then(function (n) { return n.ao; }); - case './translations/locales/th.json': return import('new-request-form-translations').then(function (n) { return n.ap; }); - case './translations/locales/tr.json': return import('new-request-form-translations').then(function (n) { return n.aq; }); - case './translations/locales/uk.json': return import('new-request-form-translations').then(function (n) { return n.ar; }); - case './translations/locales/ur.json': return import('new-request-form-translations').then(function (n) { return n.as; }); - case './translations/locales/uz.json': return import('new-request-form-translations').then(function (n) { return n.at; }); - case './translations/locales/vi.json': return import('new-request-form-translations').then(function (n) { return n.au; }); - case './translations/locales/zh-cn.json': return import('new-request-form-translations').then(function (n) { return n.av; }); - case './translations/locales/zh-tw.json': return import('new-request-form-translations').then(function (n) { return n.aw; }); - default: return new Promise(function(resolve, reject) { - (typeof queueMicrotask === 'function' ? queueMicrotask : setTimeout)( - reject.bind(null, new Error("Unknown variable dynamic import: " + path)) - ); - }) - } - } -async function renderNewRequestForm(settings, props, container) { - const { baseLocale } = props; - initI18next(baseLocale); - await loadTranslations(baseLocale, () => __variableDynamicImportRuntime0__(`./translations/locales/${baseLocale}.json`)); - reactDomExports.render(jsxRuntimeExports.jsx(ThemeProviders, { theme: createTheme(settings), children: jsxRuntimeExports.jsx(NewRequestForm, { ...props }) }), container); -} - -export { renderNewRequestForm }; + gap: ${e=>e.theme.space.md}; +`,dn=f.div` + margin-top: ${e=>e.theme.space.md}; +`;function mn({requestForm:n,wysiwyg:t,newRequestPath:s,parentId:r,parentIdPath:a,locale:o,baseLocale:l,hasAtMentions:c,userRole:d,userId:m,brandId:f,organizations:h,answerBotModal:p}){const{ticket_fields:j,action:g,http_method:b,accept_charset:x,errors:w,parent_id_field:v,ticket_form_field:q,email_field:y,cc_field:k,organization_field:_,due_date_field:C,end_user_conditions:S,attachments_field:T,inline_attachments_fields:F,description_mimetype_field:P}=n,{answerBot:R}=p,{ticketFields:L,emailField:$,ccField:E,organizationField:D,dueDateField:M}=Te({ticketFields:j,emailField:y,ccField:k,organizationField:_,dueDateField:C}),[V,z]=i.useState(L),[A,G]=i.useState(D),[H,X]=i.useState(M),N=De(V,S),{formRefCallback:U,handleSubmit:O}=ye(V),{t:B}=u(),W=h.length>0&&h[0]?.id?h[0]?.id?.toString():null,K=i.useCallback(((e,n)=>{z(V.map((t=>t.name===e.name?{...t,value:n}:t)))}),[V]);return e.jsxs(e.Fragment,{children:[r&&e.jsx(un,{children:e.jsx(I,{href:a,children:B("new-request-form.parent-request-link","Follow-up to request {{parentId}}",{parentId:`‭#${r}‬`})})}),e.jsx(un,{"aria-hidden":"true",children:B("new-request-form.required-fields-info","Fields marked with an asterisk (*) are required.")}),e.jsxs(cn,{ref:U,action:g,method:b,acceptCharset:x,noValidate:!0,onSubmit:O,children:[w&&e.jsx(ne,{type:"error",children:w}),v&&e.jsx(qe,{field:v}),q.options.length>0&&e.jsx(ve,{field:q,newRequestPath:s}),$&&e.jsx(ie,{field:$},$.name),E&&e.jsx(Ue,{field:E}),A&&e.jsx(me,{field:A,onChange:e=>{!function(e){null!==A&&G({...A,value:e})}(e)}},A.name),N.map((n=>{switch(n.type){case"subject":return e.jsxs(e.Fragment,{children:[e.jsx(ie,{field:n,onChange:e=>K(n,e)},n.name),e.jsx(en,{query:n.value,locale:o})]});case"text":case"integer":case"decimal":case"regexp":return e.jsx(ie,{field:n,onChange:e=>K(n,e)},n.name);case"partialcreditcard":return e.jsx(Be,{field:n,onChange:e=>K(n,e)});case"description":return e.jsxs(e.Fragment,{children:[e.jsx(ce,{field:n,hasWysiwyg:t,baseLocale:l,hasAtMentions:c,userRole:d,brandId:f,onChange:e=>K(n,e)},n.name),e.jsx("input",{type:"hidden",name:P.name,value:t?"text/html":"text/plain"})]});case"textarea":return e.jsx(ce,{field:n,hasWysiwyg:!1,baseLocale:l,hasAtMentions:c,userRole:d,brandId:f,onChange:e=>K(n,e)},n.name);case"priority":case"basic_priority":case"tickettype":return e.jsxs(e.Fragment,{children:[e.jsx(me,{field:n,onChange:e=>K(n,e)},n.name),"task"===n.value&&e.jsx(Me,{field:H,locale:l,valueFormat:"dateTime",onChange:e=>{!function(e){null!==H&&X({...H,value:e})}(e)}})]});case"checkbox":return e.jsx(fe,{field:n,onChange:e=>K(n,e)});case"date":return e.jsx(Me,{field:n,locale:l,valueFormat:"date",onChange:e=>K(n,e)});case"multiselect":return e.jsx(xe,{field:n});case"tagger":return e.jsx(We,{field:n,onChange:e=>K(n,e)},n.name);case"lookup":return e.jsx(ln,{field:n,userId:m,organizationId:null!==A?A.value:W,onChange:e=>K(n,e)},n.name);default:return e.jsx(e.Fragment,{})}})),T&&e.jsx(Le,{field:T}),F.map((({type:n,name:t,value:s},r)=>e.jsx("input",{type:n,name:t,value:s},r))),e.jsx(dn,{children:(0===q.options.length||q.value)&&e.jsx(J,{isPrimary:!0,type:"submit",children:B("new-request-form.submit","Submit")})})]}),R.auth_token&&R.interaction_access_token&&R.articles.length>0&&R.request_id&&e.jsx(an,{authToken:R.auth_token,interactionAccessToken:R.interaction_access_token,articles:R.articles,requestId:R.request_id,...p})]})}async function fn(n,t,s){const{baseLocale:r}=t;te(r),await se(r,(()=>function(e){switch(e){case"./translations/locales/af.json":return import("new-request-form-translations").then((function(e){return e.a}));case"./translations/locales/ar-x-pseudo.json":return import("new-request-form-translations").then((function(e){return e.b}));case"./translations/locales/ar.json":return import("new-request-form-translations").then((function(e){return e.c}));case"./translations/locales/az.json":return import("new-request-form-translations").then((function(e){return e.d}));case"./translations/locales/be.json":return import("new-request-form-translations").then((function(e){return e.e}));case"./translations/locales/bg.json":return import("new-request-form-translations").then((function(e){return e.f}));case"./translations/locales/bn.json":return import("new-request-form-translations").then((function(e){return e.g}));case"./translations/locales/bs.json":return import("new-request-form-translations").then((function(e){return e.h}));case"./translations/locales/ca.json":return import("new-request-form-translations").then((function(e){return e.i}));case"./translations/locales/cs.json":return import("new-request-form-translations").then((function(e){return e.j}));case"./translations/locales/cy.json":return import("new-request-form-translations").then((function(e){return e.k}));case"./translations/locales/da.json":return import("new-request-form-translations").then((function(e){return e.l}));case"./translations/locales/de-de.json":return import("new-request-form-translations").then((function(e){return e.m}));case"./translations/locales/de-x-informal.json":return import("new-request-form-translations").then((function(e){return e.n}));case"./translations/locales/de.json":return import("new-request-form-translations").then((function(e){return e.o}));case"./translations/locales/el.json":return import("new-request-form-translations").then((function(e){return e.p}));case"./translations/locales/en-001.json":return import("new-request-form-translations").then((function(e){return e.q}));case"./translations/locales/en-150.json":return import("new-request-form-translations").then((function(e){return e.r}));case"./translations/locales/en-au.json":return import("new-request-form-translations").then((function(e){return e.s}));case"./translations/locales/en-ca.json":return import("new-request-form-translations").then((function(e){return e.t}));case"./translations/locales/en-gb.json":return import("new-request-form-translations").then((function(e){return e.u}));case"./translations/locales/en-my.json":return import("new-request-form-translations").then((function(e){return e.v}));case"./translations/locales/en-ph.json":return import("new-request-form-translations").then((function(e){return e.w}));case"./translations/locales/en-se.json":return import("new-request-form-translations").then((function(e){return e.x}));case"./translations/locales/en-us.json":return import("new-request-form-translations").then((function(e){return e.y}));case"./translations/locales/en-x-dev.json":return import("new-request-form-translations").then((function(e){return e.z}));case"./translations/locales/en-x-keys.json":return import("new-request-form-translations").then((function(e){return e.A}));case"./translations/locales/en-x-obsolete.json":return import("new-request-form-translations").then((function(e){return e.B}));case"./translations/locales/en-x-pseudo.json":return import("new-request-form-translations").then((function(e){return e.C}));case"./translations/locales/en-x-test.json":return import("new-request-form-translations").then((function(e){return e.D}));case"./translations/locales/es-419.json":return import("new-request-form-translations").then((function(e){return e.E}));case"./translations/locales/es-es.json":return import("new-request-form-translations").then((function(e){return e.F}));case"./translations/locales/es.json":return import("new-request-form-translations").then((function(e){return e.G}));case"./translations/locales/et.json":return import("new-request-form-translations").then((function(e){return e.H}));case"./translations/locales/eu.json":return import("new-request-form-translations").then((function(e){return e.I}));case"./translations/locales/fa-af.json":return import("new-request-form-translations").then((function(e){return e.J}));case"./translations/locales/fa.json":return import("new-request-form-translations").then((function(e){return e.K}));case"./translations/locales/fi.json":return import("new-request-form-translations").then((function(e){return e.L}));case"./translations/locales/fil.json":return import("new-request-form-translations").then((function(e){return e.M}));case"./translations/locales/fo.json":return import("new-request-form-translations").then((function(e){return e.N}));case"./translations/locales/fr-ca.json":return import("new-request-form-translations").then((function(e){return e.O}));case"./translations/locales/fr.json":return import("new-request-form-translations").then((function(e){return e.P}));case"./translations/locales/ga.json":return import("new-request-form-translations").then((function(e){return e.Q}));case"./translations/locales/he.json":return import("new-request-form-translations").then((function(e){return e.R}));case"./translations/locales/hi.json":return import("new-request-form-translations").then((function(e){return e.S}));case"./translations/locales/hr.json":return import("new-request-form-translations").then((function(e){return e.T}));case"./translations/locales/hu.json":return import("new-request-form-translations").then((function(e){return e.U}));case"./translations/locales/hy.json":return import("new-request-form-translations").then((function(e){return e.V}));case"./translations/locales/id.json":return import("new-request-form-translations").then((function(e){return e.W}));case"./translations/locales/is.json":return import("new-request-form-translations").then((function(e){return e.X}));case"./translations/locales/it-ch.json":return import("new-request-form-translations").then((function(e){return e.Y}));case"./translations/locales/it.json":return import("new-request-form-translations").then((function(e){return e.Z}));case"./translations/locales/ja.json":return import("new-request-form-translations").then((function(e){return e._}));case"./translations/locales/ka.json":return import("new-request-form-translations").then((function(e){return e.$}));case"./translations/locales/kk.json":return import("new-request-form-translations").then((function(e){return e.a0}));case"./translations/locales/kl-dk.json":return import("new-request-form-translations").then((function(e){return e.a1}));case"./translations/locales/ko.json":return import("new-request-form-translations").then((function(e){return e.a2}));case"./translations/locales/ku.json":return import("new-request-form-translations").then((function(e){return e.a3}));case"./translations/locales/lt.json":return import("new-request-form-translations").then((function(e){return e.a4}));case"./translations/locales/lv.json":return import("new-request-form-translations").then((function(e){return e.a5}));case"./translations/locales/mk.json":return import("new-request-form-translations").then((function(e){return e.a6}));case"./translations/locales/mn.json":return import("new-request-form-translations").then((function(e){return e.a7}));case"./translations/locales/ms.json":return import("new-request-form-translations").then((function(e){return e.a8}));case"./translations/locales/mt.json":return import("new-request-form-translations").then((function(e){return e.a9}));case"./translations/locales/my.json":return import("new-request-form-translations").then((function(e){return e.aa}));case"./translations/locales/nl-be.json":return import("new-request-form-translations").then((function(e){return e.ab}));case"./translations/locales/nl.json":return import("new-request-form-translations").then((function(e){return e.ac}));case"./translations/locales/no.json":return import("new-request-form-translations").then((function(e){return e.ad}));case"./translations/locales/pl.json":return import("new-request-form-translations").then((function(e){return e.ae}));case"./translations/locales/pt-br.json":return import("new-request-form-translations").then((function(e){return e.af}));case"./translations/locales/pt.json":return import("new-request-form-translations").then((function(e){return e.ag}));case"./translations/locales/ro.json":return import("new-request-form-translations").then((function(e){return e.ah}));case"./translations/locales/ru.json":return import("new-request-form-translations").then((function(e){return e.ai}));case"./translations/locales/sk.json":return import("new-request-form-translations").then((function(e){return e.aj}));case"./translations/locales/sl.json":return import("new-request-form-translations").then((function(e){return e.ak}));case"./translations/locales/sq.json":return import("new-request-form-translations").then((function(e){return e.al}));case"./translations/locales/sr-me.json":return import("new-request-form-translations").then((function(e){return e.am}));case"./translations/locales/sr.json":return import("new-request-form-translations").then((function(e){return e.an}));case"./translations/locales/sv.json":return import("new-request-form-translations").then((function(e){return e.ao}));case"./translations/locales/th.json":return import("new-request-form-translations").then((function(e){return e.ap}));case"./translations/locales/tr.json":return import("new-request-form-translations").then((function(e){return e.aq}));case"./translations/locales/uk.json":return import("new-request-form-translations").then((function(e){return e.ar}));case"./translations/locales/ur.json":return import("new-request-form-translations").then((function(e){return e.as}));case"./translations/locales/uz.json":return import("new-request-form-translations").then((function(e){return e.at}));case"./translations/locales/vi.json":return import("new-request-form-translations").then((function(e){return e.au}));case"./translations/locales/zh-cn.json":return import("new-request-form-translations").then((function(e){return e.av}));case"./translations/locales/zh-tw.json":return import("new-request-form-translations").then((function(e){return e.aw}));default:return new Promise((function(n,t){("function"==typeof queueMicrotask?queueMicrotask:setTimeout)(t.bind(null,new Error("Unknown variable dynamic import: "+e)))}))}}(`./translations/locales/${r}.json`))),re.render(e.jsx(ae,{theme:oe(n),children:e.jsx(mn,{...t})}),s)}export{fn as renderNewRequestForm}; diff --git a/assets/new-request-form-translations-bundle.js b/assets/new-request-form-translations-bundle.js index 32d5c634c..7ecc064bc 100644 --- a/assets/new-request-form-translations-bundle.js +++ b/assets/new-request-form-translations-bundle.js @@ -1,3481 +1 @@ -var af = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var af$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: af -}); - -var arXPseudo = { - "new-request-form.answer-bot-modal.footer-content": "[ผู้龍ḬḬϝ ḭḭṭ ḍṓṓḛḛṡ, ẁḛḛ ͼααṇ ͼḽṓṓṡḛḛ ẏẏṓṓṵṵṛ ṛḛḛͼḛḛṇṭ ṛḛḛʠṵṵḛḛṡṭ {{requestId}}龍ผู้]", - "new-request-form.answer-bot-modal.footer-title": "[ผู้龍Ḍṓṓḛḛṡ ṭḥḭḭṡ ααṛṭḭḭͼḽḛḛ ααṇṡẁḛḛṛ ẏẏṓṓṵṵṛ ʠṵṵḛḛṡṭḭḭṓṓṇ?龍ผู้]", - "new-request-form.answer-bot-modal.mark-irrelevant": "[ผู้龍Ṅṓṓ, ḬḬ ṇḛḛḛḛḍ ḥḛḛḽṗ龍ผู้]", - "new-request-form.answer-bot-modal.request-closed": "[ผู้龍Ṅḭḭͼḛḛ. ŶŶṓṓṵṵṛ ṛḛḛʠṵṵḛḛṡṭ ḥααṡ ḅḛḛḛḛṇ ͼḽṓṓṡḛḛḍ.龍ผู้]", - "new-request-form.answer-bot-modal.request-submitted": "[ผู้龍ŶŶṓṓṵṵṛ ṛḛḛʠṵṵḛḛṡṭ ẁααṡ ṡṵṵͼͼḛḛṡṡϝṵṵḽḽẏẏ ṡṵṵḅṃḭḭṭṭḛḛḍ龍ผู้]", - "new-request-form.answer-bot-modal.solve-error": "[ผู้龍Ṫḥḛḛṛḛḛ ẁααṡ ααṇ ḛḛṛṛṓṓṛ ͼḽṓṓṡḭḭṇḡ ẏẏṓṓṵṵṛ ṛḛḛʠṵṵḛḛṡṭ龍ผู้]", - "new-request-form.answer-bot-modal.solve-request": "[ผู้龍ŶŶḛḛṡ, ͼḽṓṓṡḛḛ ṃẏẏ ṛḛḛʠṵṵḛḛṡṭ龍ผู้]", - "new-request-form.answer-bot-modal.title": "[ผู้龍Ŵḥḭḭḽḛḛ ẏẏṓṓṵṵ ẁααḭḭṭ, ḍṓṓ ααṇẏẏ ṓṓϝ ṭḥḛḛṡḛḛ ααṛṭḭḭͼḽḛḛṡ ααṇṡẁḛḛṛ ẏẏṓṓṵṵṛ ʠṵṵḛḛṡṭḭḭṓṓṇ?龍ผู้]", - "new-request-form.answer-bot-modal.view-article": "[ผู้龍Ṿḭḭḛḛẁ ααṛṭḭḭͼḽḛḛ龍ผู้]", - "new-request-form.attachments.choose-file-label": "[ผู้龍Ḉḥṓṓṓṓṡḛḛ αα ϝḭḭḽḛḛ ṓṓṛ ḍṛααḡ ααṇḍ ḍṛṓṓṗ ḥḛḛṛḛḛ龍ผู้]", - "new-request-form.attachments.drop-files-label": "[ผู้龍Ḍṛṓṓṗ ϝḭḭḽḛḛṡ ḥḛḛṛḛḛ龍ผู้]", - "new-request-form.attachments.remove-file": "[ผู้龍Ṛḛḛṃṓṓṽḛḛ ϝḭḭḽḛḛ龍ผู้]", - "new-request-form.attachments.stop-upload": "[ผู้龍Ṣṭṓṓṗ ṵṵṗḽṓṓααḍ龍ผู้]", - "new-request-form.attachments.upload-error-description": "[ผู้龍Ṫḥḛḛṛḛḛ ẁααṡ ααṇ ḛḛṛṛṓṓṛ ṵṵṗḽṓṓααḍḭḭṇḡ {{fileName}}. Ṫṛẏẏ ααḡααḭḭṇ ṓṓṛ ṵṵṗḽṓṓααḍ ααṇṓṓṭḥḛḛṛ ϝḭḭḽḛḛ.龍ผู้]", - "new-request-form.attachments.upload-error-title": "[ผู้龍ṲṲṗḽṓṓααḍ ḛḛṛṛṓṓṛ龍ผู้]", - "new-request-form.attachments.uploading": "[ผู้龍ṲṲṗḽṓṓααḍḭḭṇḡ {{fileName}}龍ผู้]", - "new-request-form.cc-field.container-label": "[ผู้龍Ṣḛḛḽḛḛͼṭḛḛḍ ḈḈ ḛḛṃααḭḭḽṡ龍ผู้]", - "new-request-form.cc-field.email-added": "[ผู้龍{{email}} ḥααṡ ḅḛḛḛḛṇ ααḍḍḛḛḍ龍ผู้]", - "new-request-form.cc-field.email-label": "[ผู้龍{{email}} - Ṕṛḛḛṡṡ Ḃααͼḳṡṗααͼḛḛ ṭṓṓ ṛḛḛṃṓṓṽḛḛ龍ผู้]", - "new-request-form.cc-field.email-removed": "[ผู้龍{{email}} ḥααṡ ḅḛḛḛḛṇ ṛḛḛṃṓṓṽḛḛḍ龍ผู้]", - "new-request-form.cc-field.emails-added": "[ผู้龍{{emails}} ḥααṽḛḛ ḅḛḛḛḛṇ ααḍḍḛḛḍ龍ผู้]", - "new-request-form.cc-field.invalid-email": "[ผู้龍ḬḬṇṽααḽḭḭḍ ḛḛṃααḭḭḽ ααḍḍṛḛḛṡṡ龍ผู้]", - "new-request-form.close-label": "[ผู้龍Ḉḽṓṓṡḛḛ龍ผู้]", - "new-request-form.credit-card-digits-hint": "[ผู้龍(Ḻααṡṭ 4 ḍḭḭḡḭḭṭṡ)龍ผู้]", - "new-request-form.dropdown.empty-option": "[ผู้龍Ṣḛḛḽḛḛͼṭ ααṇ ṓṓṗṭḭḭṓṓṇ龍ผู้]", - "new-request-form.lookup-field.loading-options": "[ผู้龍Ḻṓṓααḍḭḭṇḡ ḭḭṭḛḛṃṡ...龍ผู้]", - "new-request-form.lookup-field.no-matches-found": "[ผู้龍Ṅṓṓ ṃααṭͼḥḛḛṡ ϝṓṓṵṵṇḍ龍ผู้]", - "new-request-form.lookup-field.placeholder": "[ผู้龍Ṣḛḛααṛͼḥ {{label}}龍ผู้]", - "new-request-form.parent-request-link": "[ผู้龍Ḟṓṓḽḽṓṓẁ-ṵṵṗ ṭṓṓ ṛḛḛʠṵṵḛḛṡṭ {{parentId}}龍ผู้]", - "new-request-form.required-fields-info": "[ผู้龍Ḟḭḭḛḛḽḍṡ ṃααṛḳḛḛḍ ẁḭḭṭḥ ααṇ ααṡṭḛḛṛḭḭṡḳ (*) ααṛḛḛ ṛḛḛʠṵṵḭḭṛḛḛḍ.龍ผู้]", - "new-request-form.submit": "[ผู้龍Ṣṵṵḅṃḭḭṭ龍ผู้]", - "new-request-form.suggested-articles": "[ผู้龍Ṣṵṵḡḡḛḛṡṭḛḛḍ ααṛṭḭḭͼḽḛḛṡ龍ผู้]" -}; - -var arXPseudo$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: arXPseudo -}); - -var ar = { - "new-request-form.answer-bot-modal.footer-content": "في هذه الحالة يمكننا إغلاق الطلب الأخير {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "هل يجيب هذا المقال عن سؤالك؟", - "new-request-form.answer-bot-modal.mark-irrelevant": "كلا، أحتاج إلى مساعدة", - "new-request-form.answer-bot-modal.request-closed": "رائع. تم إغلاق طلبك.", - "new-request-form.answer-bot-modal.request-submitted": "تم إرسال طلبك بنجاح", - "new-request-form.answer-bot-modal.solve-error": "حدث خطأ أثناء إغلاق طلبك", - "new-request-form.answer-bot-modal.solve-request": "نعم، أغلق هذا الطلب", - "new-request-form.answer-bot-modal.title": "بينما تنتظر الرد، هل يجيب أي من المقالات التالية عن سؤالك؟", - "new-request-form.answer-bot-modal.view-article": "عرض المقال", - "new-request-form.attachments.choose-file-label": "اختر ملفًا أو قم بالسحب والإسقاط هنا", - "new-request-form.attachments.drop-files-label": "أسقِط الملفات هنا", - "new-request-form.attachments.remove-file": "إزالة الملف", - "new-request-form.attachments.stop-upload": "إيقاف التحميل", - "new-request-form.attachments.upload-error-description": "حدث خطأ أثناء تحميل {{fileName}}. حاول مرة أخرى أو قم بتحميل ملف آخر.", - "new-request-form.attachments.upload-error-title": "خطأ في التحميل", - "new-request-form.attachments.uploading": "جارٍ تحميل {{fileName}}", - "new-request-form.cc-field.container-label": "عناوين البريد الإلكتروني المحددة في خانة النسخة", - "new-request-form.cc-field.email-added": "تمت إضافة {{email}}", - "new-request-form.cc-field.email-label": "{{email}} - اضغط على Backspace للإزالة", - "new-request-form.cc-field.email-removed": "تمت إزالة {{email}}", - "new-request-form.cc-field.emails-added": "تمت إضافة {{emails}}", - "new-request-form.cc-field.invalid-email": "عنوان بريد إلكتروني غير صالح", - "new-request-form.close-label": "إغلاق", - "new-request-form.credit-card-digits-hint": "(آخر 4 أرقام)", - "new-request-form.dropdown.empty-option": "حدّد خيارًا", - "new-request-form.lookup-field.loading-options": "جارٍ تحميل العناصر...", - "new-request-form.lookup-field.no-matches-found": "لم يتم العثور على نتائج مطابقة", - "new-request-form.lookup-field.placeholder": "بحث عن {{label}}", - "new-request-form.parent-request-link": "متابعة طلب {{parentId}}", - "new-request-form.required-fields-info": "الحقول التي عليها علامة النجمة (*) مطلوبة.", - "new-request-form.submit": "إرسال", - "new-request-form.suggested-articles": "مقالات مقترحة" -}; - -var ar$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: ar -}); - -var az = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var az$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: az -}); - -var be = { - "new-request-form.answer-bot-modal.footer-content": "Если да, мы можем закрыть запрос {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Есть ли в этой статье ответ на вопрос?", - "new-request-form.answer-bot-modal.mark-irrelevant": "Нет, мне нужна помощь", - "new-request-form.answer-bot-modal.request-closed": "Превосходно. Запрос закрыт.", - "new-request-form.answer-bot-modal.request-submitted": "Ваш запрос отправлен", - "new-request-form.answer-bot-modal.solve-error": "Ошибка при закрытии запроса", - "new-request-form.answer-bot-modal.solve-request": "Да, закрыть мой запрос", - "new-request-form.answer-bot-modal.title": "Пока вы ожидаете, есть ли в какой-то из этих статей ответ на ваш вопрос?", - "new-request-form.answer-bot-modal.view-article": "Просмотреть статью", - "new-request-form.attachments.choose-file-label": "Выберите файл или перетащите его сюда", - "new-request-form.attachments.drop-files-label": "Перетащите файлы сюда", - "new-request-form.attachments.remove-file": "Удалить файл", - "new-request-form.attachments.stop-upload": "Остановить выкладывание", - "new-request-form.attachments.upload-error-description": "Ошибка при выкладывании {{fileName}}. Повторите попытку или выложите другой файл.", - "new-request-form.attachments.upload-error-title": "Ошибка выкладывания", - "new-request-form.attachments.uploading": "Выкладывание {{fileName}}", - "new-request-form.cc-field.container-label": "Выбранные письма для копии", - "new-request-form.cc-field.email-added": "Адрес {{email}} добавлен", - "new-request-form.cc-field.email-label": "{{email}} — нажмите клавишу Backspace для удаления", - "new-request-form.cc-field.email-removed": "Адрес {{email}} удален", - "new-request-form.cc-field.emails-added": "Добавлены адреса {{emails}}", - "new-request-form.cc-field.invalid-email": "Недействительный адрес электронной почты", - "new-request-form.close-label": "Закрыть", - "new-request-form.credit-card-digits-hint": "(последние 4 цифры)", - "new-request-form.dropdown.empty-option": "Выберите вариант", - "new-request-form.lookup-field.loading-options": "Загрузка элементов...", - "new-request-form.lookup-field.no-matches-found": "Соответствия не найдены", - "new-request-form.lookup-field.placeholder": "Поиск: {{label}}", - "new-request-form.parent-request-link": "Дополнение к запросу {{parentId}}", - "new-request-form.required-fields-info": "Помеченные звездочкой (*) поля обязательны для заполнения.", - "new-request-form.submit": "Отправить", - "new-request-form.suggested-articles": "Предложенные статьи" -}; - -var be$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: be -}); - -var bg = { - "new-request-form.answer-bot-modal.footer-content": "Ако отговаря, можем да затворим заявката {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Отговори ли тази статия на въпроса ви?", - "new-request-form.answer-bot-modal.mark-irrelevant": "Не, трябва ми помощ", - "new-request-form.answer-bot-modal.request-closed": "Чудесно. Заявката е затворена.", - "new-request-form.answer-bot-modal.request-submitted": "Заявката ви беше подадена успешно", - "new-request-form.answer-bot-modal.solve-error": "Възникна грешка при затваряне на вашата заявка", - "new-request-form.answer-bot-modal.solve-request": "Да, затворете заявката ми", - "new-request-form.answer-bot-modal.title": "Докато чакате, вижте дали някоя от тези статии отговаря на въпроса ви.", - "new-request-form.answer-bot-modal.view-article": "Преглед на статията", - "new-request-form.attachments.choose-file-label": "Изберете файл или го плъзнете и пуснете тук", - "new-request-form.attachments.drop-files-label": "Пуснете файловете тук", - "new-request-form.attachments.remove-file": "Премахване на файл", - "new-request-form.attachments.stop-upload": "Спиране на качването", - "new-request-form.attachments.upload-error-description": "Възникна грешка при качването на {{fileName}}. Опитайте отново или качете друг файл.", - "new-request-form.attachments.upload-error-title": "Грешка при качването", - "new-request-form.attachments.uploading": "Качва се {{fileName}}", - "new-request-form.cc-field.container-label": "Избрани имейли за копие", - "new-request-form.cc-field.email-added": "Имейл адресът {{email}} е добавен", - "new-request-form.cc-field.email-label": "{{email}} – натиснете „Backspace“ за премахване", - "new-request-form.cc-field.email-removed": "Имейл адресът {{email}} е премахнат", - "new-request-form.cc-field.emails-added": "Имейл адресите {{emails}} са добавени", - "new-request-form.cc-field.invalid-email": "Невалиден имейл адрес", - "new-request-form.close-label": "Затваряне", - "new-request-form.credit-card-digits-hint": "(последните 4 цифри)", - "new-request-form.dropdown.empty-option": "Изберете опция", - "new-request-form.lookup-field.loading-options": "Зареждане на елементите…", - "new-request-form.lookup-field.no-matches-found": "Няма открити съвпадения", - "new-request-form.lookup-field.placeholder": "Търсене на {{label}}", - "new-request-form.parent-request-link": "Последващи действия във връзка със заявката {{parentId}}", - "new-request-form.required-fields-info": "Полетата, отбелязани със звездичка (*), са задължителни.", - "new-request-form.submit": "Подаване", - "new-request-form.suggested-articles": "Предложени статии" -}; - -var bg$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: bg -}); - -var bn = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var bn$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: bn -}); - -var bs = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var bs$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: bs -}); - -var ca = { - "new-request-form.answer-bot-modal.footer-content": "De ser así, podemos cerrar la reciente solicitud {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "¿Responde la pregunta este artículo?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, necesito ayuda", - "new-request-form.answer-bot-modal.request-closed": "Excelente. La solicitud fue cerrada.", - "new-request-form.answer-bot-modal.request-submitted": "Su solicitud se envió correctamente.", - "new-request-form.answer-bot-modal.solve-error": "Hubo un error al cerrar la solicitud", - "new-request-form.answer-bot-modal.solve-request": "Sí, cerrar mi solicitud", - "new-request-form.answer-bot-modal.title": "Mientras espera, ¿alguno de estos artículos responde su pregunta?", - "new-request-form.answer-bot-modal.view-article": "Ver artículo", - "new-request-form.attachments.choose-file-label": "Elegir un archivo o arrastrar y soltar uno aquí", - "new-request-form.attachments.drop-files-label": "Suelte los archivos aquí", - "new-request-form.attachments.remove-file": "Eliminar archivo", - "new-request-form.attachments.stop-upload": "Detener carga", - "new-request-form.attachments.upload-error-description": "Hubo un error al cargar {{fileName}}. Vuelva a intentarlo o cargue otro archivo.", - "new-request-form.attachments.upload-error-title": "Error de carga", - "new-request-form.attachments.uploading": "Cargando {{fileName}}", - "new-request-form.cc-field.container-label": "Correos electrónicos de CC seleccionados", - "new-request-form.cc-field.email-added": "{{email}} se ha agregado", - "new-request-form.cc-field.email-label": "{{email}}: presione la tecla de retroceso para eliminar", - "new-request-form.cc-field.email-removed": "{{email}} se ha eliminado", - "new-request-form.cc-field.emails-added": "{{emails}} se han agregado", - "new-request-form.cc-field.invalid-email": "Dirección de correo electrónico no válida", - "new-request-form.close-label": "Cerrar", - "new-request-form.credit-card-digits-hint": "(Últimos 4 dígitos)", - "new-request-form.dropdown.empty-option": "Seleccione una opción", - "new-request-form.lookup-field.loading-options": "Cargando elementos...", - "new-request-form.lookup-field.no-matches-found": "No se encontraron coincidencias", - "new-request-form.lookup-field.placeholder": "Buscar {{label}}", - "new-request-form.parent-request-link": "Seguimiento de la solicitud {{parentId}}", - "new-request-form.required-fields-info": "Los campos marcados con un asterisco (*) son obligatorios.", - "new-request-form.submit": "Enviar", - "new-request-form.suggested-articles": "Artículos recomendados" -}; - -var ca$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: ca -}); - -var cs = { - "new-request-form.answer-bot-modal.footer-content": "Pokud ano, můžeme uzavřít nedávný požadavek {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Odpověděl tento článek na vaši otázku?", - "new-request-form.answer-bot-modal.mark-irrelevant": "Ne, potřebuji pomoc", - "new-request-form.answer-bot-modal.request-closed": "Prima. Požadavek byl uzavřen.", - "new-request-form.answer-bot-modal.request-submitted": "Váš požadavek byl úspěšně odeslán.", - "new-request-form.answer-bot-modal.solve-error": "Při zavírání požadavku došlo k chybě.", - "new-request-form.answer-bot-modal.solve-request": "Ano, zavřít můj požadavek", - "new-request-form.answer-bot-modal.title": "Odpověděl některý z těchto článků na vaši otázku, zatímco čekáte?", - "new-request-form.answer-bot-modal.view-article": "Zobrazit článek", - "new-request-form.attachments.choose-file-label": "Vyberte soubor nebo ho sem přetáhněte", - "new-request-form.attachments.drop-files-label": "Sem přetáhněte soubory.", - "new-request-form.attachments.remove-file": "Odstranit soubor", - "new-request-form.attachments.stop-upload": "Zastavit upload", - "new-request-form.attachments.upload-error-description": "Při uploadování souboru {{fileName}}došlo k chybě. Zkuste to znovu nebo uploadujte jiný soubor.", - "new-request-form.attachments.upload-error-title": "Chyba při uploadu", - "new-request-form.attachments.uploading": "Uploaduje se soubor {{fileName}}", - "new-request-form.cc-field.container-label": "Vybrané e-maily v kopii", - "new-request-form.cc-field.email-added": "E-mail {{email}} byl přidán", - "new-request-form.cc-field.email-label": "{{email}} – Stisknutím klávesy Backspace proveďte odstranění.", - "new-request-form.cc-field.email-removed": "E-mail {{email}} byl odstraněn", - "new-request-form.cc-field.emails-added": "E-maily {{emails}} byly přidány", - "new-request-form.cc-field.invalid-email": "Neplatná e-mailová adresa", - "new-request-form.close-label": "Zavřít", - "new-request-form.credit-card-digits-hint": "(Poslední 4 číslice)", - "new-request-form.dropdown.empty-option": "Vybrat volbu", - "new-request-form.lookup-field.loading-options": "Načítání položek…", - "new-request-form.lookup-field.no-matches-found": "Nebyly nalezeny žádné shody", - "new-request-form.lookup-field.placeholder": "Hledejte {{label}}", - "new-request-form.parent-request-link": "Navazující tiket pro požadavek {{parentId}}", - "new-request-form.required-fields-info": "Pole označená hvězdičkou (*) jsou povinná.", - "new-request-form.submit": "Odeslat", - "new-request-form.suggested-articles": "Doporučené články" -}; - -var cs$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: cs -}); - -var cy = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var cy$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: cy -}); - -var da = { - "new-request-form.answer-bot-modal.footer-content": "Hvis den gør, kan vi lukke den seneste anmodning {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Besvarede denne artikel dit spørgsmål?", - "new-request-form.answer-bot-modal.mark-irrelevant": "Nej, jeg har brug for hjælp", - "new-request-form.answer-bot-modal.request-closed": "Fint. Anmodningen er blevet lukket.", - "new-request-form.answer-bot-modal.request-submitted": "Din anmodning er blevet sendt", - "new-request-form.answer-bot-modal.solve-error": "Der opstod en fejl under lukning af din anmodning", - "new-request-form.answer-bot-modal.solve-request": "Ja, luk min anmodning", - "new-request-form.answer-bot-modal.title": "Mens du venter, er der da nogen af disse artikler, som besvarer dit spørgsmål?", - "new-request-form.answer-bot-modal.view-article": "Se artikel", - "new-request-form.attachments.choose-file-label": "Vælg en fil eller træk og slip her", - "new-request-form.attachments.drop-files-label": "Slip filerne her", - "new-request-form.attachments.remove-file": "Fjern fil", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "Der opstod en fejl under upload {{fileName}}. Prøv igen eller upload en anden fil.", - "new-request-form.attachments.upload-error-title": "Fejl under upload", - "new-request-form.attachments.uploading": "Uploader {{fileName}}", - "new-request-form.cc-field.container-label": "Valgte CC-mails", - "new-request-form.cc-field.email-added": "{{email}} er blevet tilføjet", - "new-request-form.cc-field.email-label": "{{email}} - Tryk på Backspace for at fjerne", - "new-request-form.cc-field.email-removed": "{{email}} er blevet fjernet", - "new-request-form.cc-field.emails-added": "{{emails}} er blevet tilføjet", - "new-request-form.cc-field.invalid-email": "Ugyldig e-mailadresse", - "new-request-form.close-label": "Luk", - "new-request-form.credit-card-digits-hint": "(sidste 4 cifre)", - "new-request-form.dropdown.empty-option": "Foretag et valg", - "new-request-form.lookup-field.loading-options": "Indlæser elementer...", - "new-request-form.lookup-field.no-matches-found": "Ingen matchende resultater", - "new-request-form.lookup-field.placeholder": "Søgning i {{label}}", - "new-request-form.parent-request-link": "Følg op på anmodning {{parentId}}", - "new-request-form.required-fields-info": "Felter markeret med en stjerne (*) er obligatoriske.", - "new-request-form.submit": "Indsend", - "new-request-form.suggested-articles": "Foreslåede artikler" -}; - -var da$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: da -}); - -var deDe = { - "new-request-form.answer-bot-modal.footer-content": "Wenn ja, können wir die Anfrage {{requestId}} schließen.", - "new-request-form.answer-bot-modal.footer-title": "Hat dieser Beitrag die Frage beantwortet?", - "new-request-form.answer-bot-modal.mark-irrelevant": "Nein, ich brauche weitere Hilfe", - "new-request-form.answer-bot-modal.request-closed": "Sehr gut. Ihre Anfrage wurde geschlossen.", - "new-request-form.answer-bot-modal.request-submitted": "Ihre Anfrage wurde erfolgreich eingereicht", - "new-request-form.answer-bot-modal.solve-error": "Fehler beim Schließen Ihrer Anfrage", - "new-request-form.answer-bot-modal.solve-request": "Ja, Anfrage schließen", - "new-request-form.answer-bot-modal.title": "Während Sie warten, wird Ihre Frage durch einen dieser Beiträge beantwortet?", - "new-request-form.answer-bot-modal.view-article": "Beitrag anzeigen", - "new-request-form.attachments.choose-file-label": "Datei auswählen oder hierher ziehen", - "new-request-form.attachments.drop-files-label": "Dateien hier ablegen", - "new-request-form.attachments.remove-file": "Datei entfernen", - "new-request-form.attachments.stop-upload": "Upload anhalten", - "new-request-form.attachments.upload-error-description": "Fehler beim Hochladen von {{fileName}}. Versuchen Sie es erneut oder laden Sie eine andere Datei hoch.", - "new-request-form.attachments.upload-error-title": "Fehler beim Hochladen", - "new-request-form.attachments.uploading": "{{fileName}} wird hochgeladen", - "new-request-form.cc-field.container-label": "Ausgewählte CC-E-Mails", - "new-request-form.cc-field.email-added": "{{email}} wurde hinzugefügt", - "new-request-form.cc-field.email-label": "{{email}} – Zum Entfernen die Rücktaste drücken", - "new-request-form.cc-field.email-removed": "{{email}} wurde entfernt", - "new-request-form.cc-field.emails-added": "{{emails}} wurden hinzugefügt", - "new-request-form.cc-field.invalid-email": "E-Mail-Adresse ungültig", - "new-request-form.close-label": "Schließen", - "new-request-form.credit-card-digits-hint": "(Letzte vier Ziffern)", - "new-request-form.dropdown.empty-option": "Wählen Sie eine Option aus", - "new-request-form.lookup-field.loading-options": "Elemente werden geladen...", - "new-request-form.lookup-field.no-matches-found": "Keine Übereinstimmungen gefunden", - "new-request-form.lookup-field.placeholder": "Suche {{label}}", - "new-request-form.parent-request-link": "Folgeanfrage zu {{parentId}}", - "new-request-form.required-fields-info": "Mit einem Sternchen (*) markierte Felder sind Pflichtfelder.", - "new-request-form.submit": "Senden", - "new-request-form.suggested-articles": "Vorgeschlagene Beiträge" -}; - -var deDe$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: deDe -}); - -var deXInformal = { - "new-request-form.answer-bot-modal.footer-content": "Wenn ja, können wir die Anfrage {{requestId}} schließen.", - "new-request-form.answer-bot-modal.footer-title": "Hat dieser Beitrag die Frage beantwortet?", - "new-request-form.answer-bot-modal.mark-irrelevant": "Nein, ich brauche weitere Hilfe", - "new-request-form.answer-bot-modal.request-closed": "Sehr gut. Ihre Anfrage wurde geschlossen.", - "new-request-form.answer-bot-modal.request-submitted": "Ihre Anfrage wurde erfolgreich eingereicht", - "new-request-form.answer-bot-modal.solve-error": "Fehler beim Schließen Ihrer Anfrage", - "new-request-form.answer-bot-modal.solve-request": "Ja, Anfrage schließen", - "new-request-form.answer-bot-modal.title": "Während Sie warten, wird Ihre Frage durch einen dieser Beiträge beantwortet?", - "new-request-form.answer-bot-modal.view-article": "Beitrag anzeigen", - "new-request-form.attachments.choose-file-label": "Datei auswählen oder hierher ziehen", - "new-request-form.attachments.drop-files-label": "Dateien hier ablegen", - "new-request-form.attachments.remove-file": "Datei entfernen", - "new-request-form.attachments.stop-upload": "Upload anhalten", - "new-request-form.attachments.upload-error-description": "Fehler beim Hochladen von {{fileName}}. Versuchen Sie es erneut oder laden Sie eine andere Datei hoch.", - "new-request-form.attachments.upload-error-title": "Fehler beim Hochladen", - "new-request-form.attachments.uploading": "{{fileName}} wird hochgeladen", - "new-request-form.cc-field.container-label": "Ausgewählte CC-E-Mails", - "new-request-form.cc-field.email-added": "{{email}} wurde hinzugefügt", - "new-request-form.cc-field.email-label": "{{email}} – Zum Entfernen die Rücktaste drücken", - "new-request-form.cc-field.email-removed": "{{email}} wurde entfernt", - "new-request-form.cc-field.emails-added": "{{emails}} wurden hinzugefügt", - "new-request-form.cc-field.invalid-email": "E-Mail-Adresse ungültig", - "new-request-form.close-label": "Schließen", - "new-request-form.credit-card-digits-hint": "(Letzte vier Ziffern)", - "new-request-form.dropdown.empty-option": "Wählen Sie eine Option aus", - "new-request-form.lookup-field.loading-options": "Elemente werden geladen...", - "new-request-form.lookup-field.no-matches-found": "Keine Übereinstimmungen gefunden", - "new-request-form.lookup-field.placeholder": "Suche {{label}}", - "new-request-form.parent-request-link": "Folgeanfrage zu {{parentId}}", - "new-request-form.required-fields-info": "Mit einem Sternchen (*) markierte Felder sind Pflichtfelder.", - "new-request-form.submit": "Senden", - "new-request-form.suggested-articles": "Vorgeschlagene Beiträge" -}; - -var deXInformal$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: deXInformal -}); - -var de = { - "new-request-form.answer-bot-modal.footer-content": "Wenn ja, können wir die Anfrage {{requestId}} schließen.", - "new-request-form.answer-bot-modal.footer-title": "Hat dieser Beitrag die Frage beantwortet?", - "new-request-form.answer-bot-modal.mark-irrelevant": "Nein, ich brauche weitere Hilfe", - "new-request-form.answer-bot-modal.request-closed": "Sehr gut. Ihre Anfrage wurde geschlossen.", - "new-request-form.answer-bot-modal.request-submitted": "Ihre Anfrage wurde erfolgreich eingereicht", - "new-request-form.answer-bot-modal.solve-error": "Fehler beim Schließen Ihrer Anfrage", - "new-request-form.answer-bot-modal.solve-request": "Ja, Anfrage schließen", - "new-request-form.answer-bot-modal.title": "Während Sie warten, wird Ihre Frage durch einen dieser Beiträge beantwortet?", - "new-request-form.answer-bot-modal.view-article": "Beitrag anzeigen", - "new-request-form.attachments.choose-file-label": "Datei auswählen oder hierher ziehen", - "new-request-form.attachments.drop-files-label": "Dateien hier ablegen", - "new-request-form.attachments.remove-file": "Datei entfernen", - "new-request-form.attachments.stop-upload": "Upload anhalten", - "new-request-form.attachments.upload-error-description": "Fehler beim Hochladen von {{fileName}}. Versuchen Sie es erneut oder laden Sie eine andere Datei hoch.", - "new-request-form.attachments.upload-error-title": "Fehler beim Hochladen", - "new-request-form.attachments.uploading": "{{fileName}} wird hochgeladen", - "new-request-form.cc-field.container-label": "Ausgewählte CC-E-Mails", - "new-request-form.cc-field.email-added": "{{email}} wurde hinzugefügt", - "new-request-form.cc-field.email-label": "{{email}} – Zum Entfernen die Rücktaste drücken", - "new-request-form.cc-field.email-removed": "{{email}} wurde entfernt", - "new-request-form.cc-field.emails-added": "{{emails}} wurden hinzugefügt", - "new-request-form.cc-field.invalid-email": "E-Mail-Adresse ungültig", - "new-request-form.close-label": "Schließen", - "new-request-form.credit-card-digits-hint": "(Letzte vier Ziffern)", - "new-request-form.dropdown.empty-option": "Wählen Sie eine Option aus", - "new-request-form.lookup-field.loading-options": "Elemente werden geladen...", - "new-request-form.lookup-field.no-matches-found": "Keine Übereinstimmungen gefunden", - "new-request-form.lookup-field.placeholder": "Suche {{label}}", - "new-request-form.parent-request-link": "Folgeanfrage zu {{parentId}}", - "new-request-form.required-fields-info": "Mit einem Sternchen (*) markierte Felder sind Pflichtfelder.", - "new-request-form.submit": "Senden", - "new-request-form.suggested-articles": "Vorgeschlagene Beiträge" -}; - -var de$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: de -}); - -var el = { - "new-request-form.answer-bot-modal.footer-content": "Αν ναι, μπορούμε να κλείσουμε το πρόσφατο αίτημα {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Απαντά στην ερώτηση το άρθρο;", - "new-request-form.answer-bot-modal.mark-irrelevant": "Όχι, χρειάζομαι βοήθεια", - "new-request-form.answer-bot-modal.request-closed": "Ωραία. Το αίτημα έχει κλείσει.", - "new-request-form.answer-bot-modal.request-submitted": "Το αίτημά σας υπεβλήθη με επιτυχία", - "new-request-form.answer-bot-modal.solve-error": "Παρουσιάστηκε σφάλμα στο κλείσιμο του αιτήματός σας", - "new-request-form.answer-bot-modal.solve-request": "Ναι, να κλείσει το αίτημά μου", - "new-request-form.answer-bot-modal.title": "Ενώ περιμένετε, απαντά στην ερώτηση κάποιο από αυτά τα άρθρα;", - "new-request-form.answer-bot-modal.view-article": "Προβολή άρθρου", - "new-request-form.attachments.choose-file-label": "Επιλέξτε ένα αρχείο ή σύρετε και αποθέστε εδώ", - "new-request-form.attachments.drop-files-label": "Αποθέστε τα αρχεία εδώ", - "new-request-form.attachments.remove-file": "Κατάργηση αρχείου", - "new-request-form.attachments.stop-upload": "Διακοπή αποστολής", - "new-request-form.attachments.upload-error-description": "Υπήρξε σφάλμα κατά την αποστολή του {{fileName}}. Δοκιμάστε ξανά ή ανεβάστε άλλο αρχείο.", - "new-request-form.attachments.upload-error-title": "Σφάλμα αποστολής", - "new-request-form.attachments.uploading": "Γίνεται αποστολή {{fileName}}", - "new-request-form.cc-field.container-label": "Επιλεγμένα email για κοινοποίηση", - "new-request-form.cc-field.email-added": "Προστέθηκε το {{email}}", - "new-request-form.cc-field.email-label": "{{email}} - Πατήστε Backspace για αφαίρεση", - "new-request-form.cc-field.email-removed": "Καταργήθηκε το {{email}}", - "new-request-form.cc-field.emails-added": "Οι διευθύνσεις {{emails}} έχουν προστεθεί", - "new-request-form.cc-field.invalid-email": "Μη έγκυρη διεύθυνση email", - "new-request-form.close-label": "Κλείσιμο", - "new-request-form.credit-card-digits-hint": "(4 τελευταία ψηφία)", - "new-request-form.dropdown.empty-option": "Ενεργοποιήστε μια επιλογή", - "new-request-form.lookup-field.loading-options": "Γίνεται φόρτωση αντικειμένων...", - "new-request-form.lookup-field.no-matches-found": "Δεν βρέθηκαν αντιστοιχίσεις", - "new-request-form.lookup-field.placeholder": "Αναζήτηση σε {{label}}", - "new-request-form.parent-request-link": "Συμπληρωματικό στο αίτημα {{parentId}}", - "new-request-form.required-fields-info": "Τα πεδία με αστερίσκο (*) είναι υποχρεωτικά.", - "new-request-form.submit": "Υποβολή", - "new-request-form.suggested-articles": "Προτεινόμενα άρθρα" -}; - -var el$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: el -}); - -var en001 = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var en001$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: en001 -}); - -var en150 = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var en150$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: en150 -}); - -var enAu = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var enAu$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: enAu -}); - -var enCa = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var enCa$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: enCa -}); - -var enGb = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var enGb$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: enGb -}); - -var enMy = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var enMy$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: enMy -}); - -var enPh = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var enPh$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: enPh -}); - -var enSe = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var enSe$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: enSe -}); - -var enUs = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var enUs$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: enUs -}); - -var enXDev = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var enXDev$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: enXDev -}); - -var enXKeys = { - "new-request-form.answer-bot-modal.footer-content": "new-request-form.answer-bot-modal.footer-content", - "new-request-form.answer-bot-modal.footer-title": "new-request-form.answer-bot-modal.footer-title", - "new-request-form.answer-bot-modal.mark-irrelevant": "new-request-form.answer-bot-modal.mark-irrelevant", - "new-request-form.answer-bot-modal.request-closed": "new-request-form.answer-bot-modal.request-closed", - "new-request-form.answer-bot-modal.request-submitted": "new-request-form.answer-bot-modal.request-submitted", - "new-request-form.answer-bot-modal.solve-error": "new-request-form.answer-bot-modal.solve-error", - "new-request-form.answer-bot-modal.solve-request": "new-request-form.answer-bot-modal.solve-request", - "new-request-form.answer-bot-modal.title": "new-request-form.answer-bot-modal.title", - "new-request-form.answer-bot-modal.view-article": "new-request-form.answer-bot-modal.view-article", - "new-request-form.attachments.choose-file-label": "new-request-form.attachments.choose-file-label", - "new-request-form.attachments.drop-files-label": "new-request-form.attachments.drop-files-label", - "new-request-form.attachments.remove-file": "new-request-form.attachments.remove-file", - "new-request-form.attachments.stop-upload": "new-request-form.attachments.stop-upload", - "new-request-form.attachments.upload-error-description": "new-request-form.attachments.upload-error-description", - "new-request-form.attachments.upload-error-title": "new-request-form.attachments.upload-error-title", - "new-request-form.attachments.uploading": "new-request-form.attachments.uploading", - "new-request-form.cc-field.container-label": "new-request-form.cc-field.container-label", - "new-request-form.cc-field.email-added": "new-request-form.cc-field.email-added", - "new-request-form.cc-field.email-label": "new-request-form.cc-field.email-label", - "new-request-form.cc-field.email-removed": "new-request-form.cc-field.email-removed", - "new-request-form.cc-field.emails-added": "new-request-form.cc-field.emails-added", - "new-request-form.cc-field.invalid-email": "new-request-form.cc-field.invalid-email", - "new-request-form.close-label": "new-request-form.close-label", - "new-request-form.credit-card-digits-hint": "new-request-form.credit-card-digits-hint", - "new-request-form.dropdown.empty-option": "new-request-form.dropdown.empty-option", - "new-request-form.lookup-field.loading-options": "new-request-form.lookup-field.loading-options", - "new-request-form.lookup-field.no-matches-found": "new-request-form.lookup-field.no-matches-found", - "new-request-form.lookup-field.placeholder": "new-request-form.lookup-field.placeholder", - "new-request-form.parent-request-link": "new-request-form.parent-request-link", - "new-request-form.required-fields-info": "new-request-form.required-fields-info", - "new-request-form.submit": "new-request-form.submit", - "new-request-form.suggested-articles": "new-request-form.suggested-articles" -}; - -var enXKeys$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: enXKeys -}); - -var enXObsolete = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var enXObsolete$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: enXObsolete -}); - -var enXPseudo = { - "new-request-form.answer-bot-modal.footer-content": "[ผู้龍ḬḬϝ ḭḭṭ ḍṓṓḛḛṡ, ẁḛḛ ͼααṇ ͼḽṓṓṡḛḛ ẏẏṓṓṵṵṛ ṛḛḛͼḛḛṇṭ ṛḛḛʠṵṵḛḛṡṭ {{requestId}}龍ผู้]", - "new-request-form.answer-bot-modal.footer-title": "[ผู้龍Ḍṓṓḛḛṡ ṭḥḭḭṡ ααṛṭḭḭͼḽḛḛ ααṇṡẁḛḛṛ ẏẏṓṓṵṵṛ ʠṵṵḛḛṡṭḭḭṓṓṇ?龍ผู้]", - "new-request-form.answer-bot-modal.mark-irrelevant": "[ผู้龍Ṅṓṓ, ḬḬ ṇḛḛḛḛḍ ḥḛḛḽṗ龍ผู้]", - "new-request-form.answer-bot-modal.request-closed": "[ผู้龍Ṅḭḭͼḛḛ. ŶŶṓṓṵṵṛ ṛḛḛʠṵṵḛḛṡṭ ḥααṡ ḅḛḛḛḛṇ ͼḽṓṓṡḛḛḍ.龍ผู้]", - "new-request-form.answer-bot-modal.request-submitted": "[ผู้龍ŶŶṓṓṵṵṛ ṛḛḛʠṵṵḛḛṡṭ ẁααṡ ṡṵṵͼͼḛḛṡṡϝṵṵḽḽẏẏ ṡṵṵḅṃḭḭṭṭḛḛḍ龍ผู้]", - "new-request-form.answer-bot-modal.solve-error": "[ผู้龍Ṫḥḛḛṛḛḛ ẁααṡ ααṇ ḛḛṛṛṓṓṛ ͼḽṓṓṡḭḭṇḡ ẏẏṓṓṵṵṛ ṛḛḛʠṵṵḛḛṡṭ龍ผู้]", - "new-request-form.answer-bot-modal.solve-request": "[ผู้龍ŶŶḛḛṡ, ͼḽṓṓṡḛḛ ṃẏẏ ṛḛḛʠṵṵḛḛṡṭ龍ผู้]", - "new-request-form.answer-bot-modal.title": "[ผู้龍Ŵḥḭḭḽḛḛ ẏẏṓṓṵṵ ẁααḭḭṭ, ḍṓṓ ααṇẏẏ ṓṓϝ ṭḥḛḛṡḛḛ ααṛṭḭḭͼḽḛḛṡ ααṇṡẁḛḛṛ ẏẏṓṓṵṵṛ ʠṵṵḛḛṡṭḭḭṓṓṇ?龍ผู้]", - "new-request-form.answer-bot-modal.view-article": "[ผู้龍Ṿḭḭḛḛẁ ααṛṭḭḭͼḽḛḛ龍ผู้]", - "new-request-form.attachments.choose-file-label": "[ผู้龍Ḉḥṓṓṓṓṡḛḛ αα ϝḭḭḽḛḛ ṓṓṛ ḍṛααḡ ααṇḍ ḍṛṓṓṗ ḥḛḛṛḛḛ龍ผู้]", - "new-request-form.attachments.drop-files-label": "[ผู้龍Ḍṛṓṓṗ ϝḭḭḽḛḛṡ ḥḛḛṛḛḛ龍ผู้]", - "new-request-form.attachments.remove-file": "[ผู้龍Ṛḛḛṃṓṓṽḛḛ ϝḭḭḽḛḛ龍ผู้]", - "new-request-form.attachments.stop-upload": "[ผู้龍Ṣṭṓṓṗ ṵṵṗḽṓṓααḍ龍ผู้]", - "new-request-form.attachments.upload-error-description": "[ผู้龍Ṫḥḛḛṛḛḛ ẁααṡ ααṇ ḛḛṛṛṓṓṛ ṵṵṗḽṓṓααḍḭḭṇḡ {{fileName}}. Ṫṛẏẏ ααḡααḭḭṇ ṓṓṛ ṵṵṗḽṓṓααḍ ααṇṓṓṭḥḛḛṛ ϝḭḭḽḛḛ.龍ผู้]", - "new-request-form.attachments.upload-error-title": "[ผู้龍ṲṲṗḽṓṓααḍ ḛḛṛṛṓṓṛ龍ผู้]", - "new-request-form.attachments.uploading": "[ผู้龍ṲṲṗḽṓṓααḍḭḭṇḡ {{fileName}}龍ผู้]", - "new-request-form.cc-field.container-label": "[ผู้龍Ṣḛḛḽḛḛͼṭḛḛḍ ḈḈ ḛḛṃααḭḭḽṡ龍ผู้]", - "new-request-form.cc-field.email-added": "[ผู้龍{{email}} ḥααṡ ḅḛḛḛḛṇ ααḍḍḛḛḍ龍ผู้]", - "new-request-form.cc-field.email-label": "[ผู้龍{{email}} - Ṕṛḛḛṡṡ Ḃααͼḳṡṗααͼḛḛ ṭṓṓ ṛḛḛṃṓṓṽḛḛ龍ผู้]", - "new-request-form.cc-field.email-removed": "[ผู้龍{{email}} ḥααṡ ḅḛḛḛḛṇ ṛḛḛṃṓṓṽḛḛḍ龍ผู้]", - "new-request-form.cc-field.emails-added": "[ผู้龍{{emails}} ḥααṽḛḛ ḅḛḛḛḛṇ ααḍḍḛḛḍ龍ผู้]", - "new-request-form.cc-field.invalid-email": "[ผู้龍ḬḬṇṽααḽḭḭḍ ḛḛṃααḭḭḽ ααḍḍṛḛḛṡṡ龍ผู้]", - "new-request-form.close-label": "[ผู้龍Ḉḽṓṓṡḛḛ龍ผู้]", - "new-request-form.credit-card-digits-hint": "[ผู้龍(Ḻααṡṭ 4 ḍḭḭḡḭḭṭṡ)龍ผู้]", - "new-request-form.dropdown.empty-option": "[ผู้龍Ṣḛḛḽḛḛͼṭ ααṇ ṓṓṗṭḭḭṓṓṇ龍ผู้]", - "new-request-form.lookup-field.loading-options": "[ผู้龍Ḻṓṓααḍḭḭṇḡ ḭḭṭḛḛṃṡ...龍ผู้]", - "new-request-form.lookup-field.no-matches-found": "[ผู้龍Ṅṓṓ ṃααṭͼḥḛḛṡ ϝṓṓṵṵṇḍ龍ผู้]", - "new-request-form.lookup-field.placeholder": "[ผู้龍Ṣḛḛααṛͼḥ {{label}}龍ผู้]", - "new-request-form.parent-request-link": "[ผู้龍Ḟṓṓḽḽṓṓẁ-ṵṵṗ ṭṓṓ ṛḛḛʠṵṵḛḛṡṭ {{parentId}}龍ผู้]", - "new-request-form.required-fields-info": "[ผู้龍Ḟḭḭḛḛḽḍṡ ṃααṛḳḛḛḍ ẁḭḭṭḥ ααṇ ααṡṭḛḛṛḭḭṡḳ (*) ααṛḛḛ ṛḛḛʠṵṵḭḭṛḛḛḍ.龍ผู้]", - "new-request-form.submit": "[ผู้龍Ṣṵṵḅṃḭḭṭ龍ผู้]", - "new-request-form.suggested-articles": "[ผู้龍Ṣṵṵḡḡḛḛṡṭḛḛḍ ααṛṭḭḭͼḽḛḛṡ龍ผู้]" -}; - -var enXPseudo$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: enXPseudo -}); - -var enXTest = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var enXTest$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: enXTest -}); - -var es419 = { - "new-request-form.answer-bot-modal.footer-content": "De ser así, podemos cerrar la reciente solicitud {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "¿Responde la pregunta este artículo?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, necesito ayuda", - "new-request-form.answer-bot-modal.request-closed": "Excelente. La solicitud fue cerrada.", - "new-request-form.answer-bot-modal.request-submitted": "Su solicitud se envió correctamente.", - "new-request-form.answer-bot-modal.solve-error": "Hubo un error al cerrar la solicitud", - "new-request-form.answer-bot-modal.solve-request": "Sí, cerrar mi solicitud", - "new-request-form.answer-bot-modal.title": "Mientras espera, ¿alguno de estos artículos responde su pregunta?", - "new-request-form.answer-bot-modal.view-article": "Ver artículo", - "new-request-form.attachments.choose-file-label": "Elegir un archivo o arrastrar y soltar uno aquí", - "new-request-form.attachments.drop-files-label": "Suelte los archivos aquí", - "new-request-form.attachments.remove-file": "Eliminar archivo", - "new-request-form.attachments.stop-upload": "Detener carga", - "new-request-form.attachments.upload-error-description": "Hubo un error al cargar {{fileName}}. Vuelva a intentarlo o cargue otro archivo.", - "new-request-form.attachments.upload-error-title": "Error de carga", - "new-request-form.attachments.uploading": "Cargando {{fileName}}", - "new-request-form.cc-field.container-label": "Correos electrónicos de CC seleccionados", - "new-request-form.cc-field.email-added": "{{email}} se ha agregado", - "new-request-form.cc-field.email-label": "{{email}}: presione la tecla de retroceso para eliminar", - "new-request-form.cc-field.email-removed": "{{email}} se ha eliminado", - "new-request-form.cc-field.emails-added": "{{emails}} se han agregado", - "new-request-form.cc-field.invalid-email": "Dirección de correo electrónico no válida", - "new-request-form.close-label": "Cerrar", - "new-request-form.credit-card-digits-hint": "(Últimos 4 dígitos)", - "new-request-form.dropdown.empty-option": "Seleccione una opción", - "new-request-form.lookup-field.loading-options": "Cargando elementos...", - "new-request-form.lookup-field.no-matches-found": "No se encontraron coincidencias", - "new-request-form.lookup-field.placeholder": "Buscar {{label}}", - "new-request-form.parent-request-link": "Seguimiento de la solicitud {{parentId}}", - "new-request-form.required-fields-info": "Los campos marcados con un asterisco (*) son obligatorios.", - "new-request-form.submit": "Enviar", - "new-request-form.suggested-articles": "Artículos recomendados" -}; - -var es419$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: es419 -}); - -var esEs = { - "new-request-form.answer-bot-modal.footer-content": "De ser así, podemos cerrar la reciente solicitud {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "¿Responde la pregunta este artículo?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, necesito ayuda", - "new-request-form.answer-bot-modal.request-closed": "Excelente. La solicitud fue cerrada.", - "new-request-form.answer-bot-modal.request-submitted": "Su solicitud se envió correctamente.", - "new-request-form.answer-bot-modal.solve-error": "Hubo un error al cerrar la solicitud", - "new-request-form.answer-bot-modal.solve-request": "Sí, cerrar mi solicitud", - "new-request-form.answer-bot-modal.title": "Mientras espera, ¿alguno de estos artículos responde su pregunta?", - "new-request-form.answer-bot-modal.view-article": "Ver artículo", - "new-request-form.attachments.choose-file-label": "Elegir un archivo o arrastrar y soltar uno aquí", - "new-request-form.attachments.drop-files-label": "Suelte los archivos aquí", - "new-request-form.attachments.remove-file": "Eliminar archivo", - "new-request-form.attachments.stop-upload": "Detener carga", - "new-request-form.attachments.upload-error-description": "Hubo un error al cargar {{fileName}}. Vuelva a intentarlo o cargue otro archivo.", - "new-request-form.attachments.upload-error-title": "Error de carga", - "new-request-form.attachments.uploading": "Cargando {{fileName}}", - "new-request-form.cc-field.container-label": "Correos electrónicos de CC seleccionados", - "new-request-form.cc-field.email-added": "{{email}} se ha agregado", - "new-request-form.cc-field.email-label": "{{email}}: presione la tecla de retroceso para eliminar", - "new-request-form.cc-field.email-removed": "{{email}} se ha eliminado", - "new-request-form.cc-field.emails-added": "{{emails}} se han agregado", - "new-request-form.cc-field.invalid-email": "Dirección de correo electrónico no válida", - "new-request-form.close-label": "Cerrar", - "new-request-form.credit-card-digits-hint": "(Últimos 4 dígitos)", - "new-request-form.dropdown.empty-option": "Seleccione una opción", - "new-request-form.lookup-field.loading-options": "Cargando elementos...", - "new-request-form.lookup-field.no-matches-found": "No se encontraron coincidencias", - "new-request-form.lookup-field.placeholder": "Buscar {{label}}", - "new-request-form.parent-request-link": "Seguimiento de la solicitud {{parentId}}", - "new-request-form.required-fields-info": "Los campos marcados con un asterisco (*) son obligatorios.", - "new-request-form.submit": "Enviar", - "new-request-form.suggested-articles": "Artículos recomendados" -}; - -var esEs$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: esEs -}); - -var es = { - "new-request-form.answer-bot-modal.footer-content": "De ser así, podemos cerrar la reciente solicitud {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "¿Responde la pregunta este artículo?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, necesito ayuda", - "new-request-form.answer-bot-modal.request-closed": "Excelente. La solicitud fue cerrada.", - "new-request-form.answer-bot-modal.request-submitted": "Su solicitud se envió correctamente.", - "new-request-form.answer-bot-modal.solve-error": "Hubo un error al cerrar la solicitud", - "new-request-form.answer-bot-modal.solve-request": "Sí, cerrar mi solicitud", - "new-request-form.answer-bot-modal.title": "Mientras espera, ¿alguno de estos artículos responde su pregunta?", - "new-request-form.answer-bot-modal.view-article": "Ver artículo", - "new-request-form.attachments.choose-file-label": "Elegir un archivo o arrastrar y soltar uno aquí", - "new-request-form.attachments.drop-files-label": "Suelte los archivos aquí", - "new-request-form.attachments.remove-file": "Eliminar archivo", - "new-request-form.attachments.stop-upload": "Detener carga", - "new-request-form.attachments.upload-error-description": "Hubo un error al cargar {{fileName}}. Vuelva a intentarlo o cargue otro archivo.", - "new-request-form.attachments.upload-error-title": "Error de carga", - "new-request-form.attachments.uploading": "Cargando {{fileName}}", - "new-request-form.cc-field.container-label": "Correos electrónicos de CC seleccionados", - "new-request-form.cc-field.email-added": "{{email}} se ha agregado", - "new-request-form.cc-field.email-label": "{{email}}: presione la tecla de retroceso para eliminar", - "new-request-form.cc-field.email-removed": "{{email}} se ha eliminado", - "new-request-form.cc-field.emails-added": "{{emails}} se han agregado", - "new-request-form.cc-field.invalid-email": "Dirección de correo electrónico no válida", - "new-request-form.close-label": "Cerrar", - "new-request-form.credit-card-digits-hint": "(Últimos 4 dígitos)", - "new-request-form.dropdown.empty-option": "Seleccione una opción", - "new-request-form.lookup-field.loading-options": "Cargando elementos...", - "new-request-form.lookup-field.no-matches-found": "No se encontraron coincidencias", - "new-request-form.lookup-field.placeholder": "Buscar {{label}}", - "new-request-form.parent-request-link": "Seguimiento de la solicitud {{parentId}}", - "new-request-form.required-fields-info": "Los campos marcados con un asterisco (*) son obligatorios.", - "new-request-form.submit": "Enviar", - "new-request-form.suggested-articles": "Artículos recomendados" -}; - -var es$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: es -}); - -var et = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var et$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: et -}); - -var eu = { - "new-request-form.answer-bot-modal.footer-content": "De ser así, podemos cerrar la reciente solicitud {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "¿Responde la pregunta este artículo?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, necesito ayuda", - "new-request-form.answer-bot-modal.request-closed": "Excelente. La solicitud fue cerrada.", - "new-request-form.answer-bot-modal.request-submitted": "Su solicitud se envió correctamente.", - "new-request-form.answer-bot-modal.solve-error": "Hubo un error al cerrar la solicitud", - "new-request-form.answer-bot-modal.solve-request": "Sí, cerrar mi solicitud", - "new-request-form.answer-bot-modal.title": "Mientras espera, ¿alguno de estos artículos responde su pregunta?", - "new-request-form.answer-bot-modal.view-article": "Ver artículo", - "new-request-form.attachments.choose-file-label": "Elegir un archivo o arrastrar y soltar uno aquí", - "new-request-form.attachments.drop-files-label": "Suelte los archivos aquí", - "new-request-form.attachments.remove-file": "Eliminar archivo", - "new-request-form.attachments.stop-upload": "Detener carga", - "new-request-form.attachments.upload-error-description": "Hubo un error al cargar {{fileName}}. Vuelva a intentarlo o cargue otro archivo.", - "new-request-form.attachments.upload-error-title": "Error de carga", - "new-request-form.attachments.uploading": "Cargando {{fileName}}", - "new-request-form.cc-field.container-label": "Correos electrónicos de CC seleccionados", - "new-request-form.cc-field.email-added": "{{email}} se ha agregado", - "new-request-form.cc-field.email-label": "{{email}}: presione la tecla de retroceso para eliminar", - "new-request-form.cc-field.email-removed": "{{email}} se ha eliminado", - "new-request-form.cc-field.emails-added": "{{emails}} se han agregado", - "new-request-form.cc-field.invalid-email": "Dirección de correo electrónico no válida", - "new-request-form.close-label": "Cerrar", - "new-request-form.credit-card-digits-hint": "(Últimos 4 dígitos)", - "new-request-form.dropdown.empty-option": "Seleccione una opción", - "new-request-form.lookup-field.loading-options": "Cargando elementos...", - "new-request-form.lookup-field.no-matches-found": "No se encontraron coincidencias", - "new-request-form.lookup-field.placeholder": "Buscar {{label}}", - "new-request-form.parent-request-link": "Seguimiento de la solicitud {{parentId}}", - "new-request-form.required-fields-info": "Los campos marcados con un asterisco (*) son obligatorios.", - "new-request-form.submit": "Enviar", - "new-request-form.suggested-articles": "Artículos recomendados" -}; - -var eu$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: eu -}); - -var faAf = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var faAf$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: faAf -}); - -var fa = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var fa$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: fa -}); - -var fi = { - "new-request-form.answer-bot-modal.footer-content": "Jos se vastaa, voimme sulkea äskettäisen pyyntösi {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Vastaako tämä artikkeli kysymykseesi?", - "new-request-form.answer-bot-modal.mark-irrelevant": "Ei, tarvitsen apua", - "new-request-form.answer-bot-modal.request-closed": "Hienoa. Pyyntösi on suljettu.", - "new-request-form.answer-bot-modal.request-submitted": "Pyyntösi lähettäminen onnistui", - "new-request-form.answer-bot-modal.solve-error": "Tapahtui virhe suljettaessa pyyntöäsi", - "new-request-form.answer-bot-modal.solve-request": "Kyllä, sulje pyyntöni", - "new-request-form.answer-bot-modal.title": "Sillä aikaa kun odotat, vastaako mikään näistä artikkeleista kysymykseesi?", - "new-request-form.answer-bot-modal.view-article": "Näytä artikkeli", - "new-request-form.attachments.choose-file-label": "Valitse tiedosto tai vedä ja pudota se tähän", - "new-request-form.attachments.drop-files-label": "Pudota tiedostot tähän", - "new-request-form.attachments.remove-file": "Poista tiedosto", - "new-request-form.attachments.stop-upload": "Lopeta lataaminen", - "new-request-form.attachments.upload-error-description": "Virhe ladattaessa tiedostoa {{fileName}}. Yritä uudelleen tai lataa toinen tiedosto.", - "new-request-form.attachments.upload-error-title": "Latausvirhe", - "new-request-form.attachments.uploading": "Ladataan tiedostoa {{fileName}}", - "new-request-form.cc-field.container-label": "Valitut kopiosähköpostit", - "new-request-form.cc-field.email-added": "{{email}} on lisätty", - "new-request-form.cc-field.email-label": "{{email}} - poista painamalla askelpalautinta", - "new-request-form.cc-field.email-removed": "{{email}} on poistettu", - "new-request-form.cc-field.emails-added": "{{emails}} on lisätty", - "new-request-form.cc-field.invalid-email": "Virheellinen sähköpostiosoite", - "new-request-form.close-label": "Sulje", - "new-request-form.credit-card-digits-hint": "(4 viimeistä numeroa)", - "new-request-form.dropdown.empty-option": "Valitse vaihtoehto", - "new-request-form.lookup-field.loading-options": "Ladataan kohteita...", - "new-request-form.lookup-field.no-matches-found": "Vastineita ei löytynyt", - "new-request-form.lookup-field.placeholder": "Hae {{label}}", - "new-request-form.parent-request-link": "Jatkoa pyynnölle {{parentId}}", - "new-request-form.required-fields-info": "Tähdellä (*) merkityt kentät ovat pakollisia.", - "new-request-form.submit": "Lähetä", - "new-request-form.suggested-articles": "Ehdotetut artikkelit" -}; - -var fi$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: fi -}); - -var fil = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var fil$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: fil -}); - -var fo = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var fo$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: fo -}); - -var frCa = { - "new-request-form.answer-bot-modal.footer-content": "S’il y répond, nous pouvons clore la demande {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Cet article répond-il à la question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "Non, j’ai besoin d’aide", - "new-request-form.answer-bot-modal.request-closed": "Super. La demande a été close.", - "new-request-form.answer-bot-modal.request-submitted": "Votre demande a été envoyée", - "new-request-form.answer-bot-modal.solve-error": "Une erreur est survenue lors de la clôture de votre demande", - "new-request-form.answer-bot-modal.solve-request": "Oui, fermer ma demande", - "new-request-form.answer-bot-modal.title": "Pendant que vous attendez, un de ces articles répond-il à votre question?", - "new-request-form.answer-bot-modal.view-article": "Afficher l’article", - "new-request-form.attachments.choose-file-label": "Choisissez un fichier ou faites glisser et déposez ici", - "new-request-form.attachments.drop-files-label": "Déposez les fichiers ici", - "new-request-form.attachments.remove-file": "Supprimer le fichier", - "new-request-form.attachments.stop-upload": "Arrêter le chargement", - "new-request-form.attachments.upload-error-description": "Une erreur est survenue lors du téléversement de {{fileName}}. Réessayez ou téléversez un autre fichier.", - "new-request-form.attachments.upload-error-title": "Erreur de téléversement", - "new-request-form.attachments.uploading": "Téléversement de {{fileName}}en cours…", - "new-request-form.cc-field.container-label": "Adresses courriel en CC sélectionnées", - "new-request-form.cc-field.email-added": "{{email}} a été ajoutée", - "new-request-form.cc-field.email-label": "{{email}} - Appuyez sur Retour arrière pour supprimer", - "new-request-form.cc-field.email-removed": "{{email}} a été supprimée", - "new-request-form.cc-field.emails-added": "{{emails}} ont été ajoutées", - "new-request-form.cc-field.invalid-email": "Adresse courriel non valide", - "new-request-form.close-label": "Fermer", - "new-request-form.credit-card-digits-hint": "(4 derniers chiffres)", - "new-request-form.dropdown.empty-option": "Sélectionnez une option", - "new-request-form.lookup-field.loading-options": "Chargement des éléments en cours...", - "new-request-form.lookup-field.no-matches-found": "Aucun résultat", - "new-request-form.lookup-field.placeholder": "Rechercher {{label}}", - "new-request-form.parent-request-link": "Suivi de la demande {{parentId}}", - "new-request-form.required-fields-info": "Les champs marqués d'un astérisque (*) sont obligatoires.", - "new-request-form.submit": "Envoyer", - "new-request-form.suggested-articles": "Articles suggérés" -}; - -var frCa$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: frCa -}); - -var fr = { - "new-request-form.answer-bot-modal.footer-content": "S’il y répond, nous pouvons clore votre demande récente {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Cet article répond-il à la question ?", - "new-request-form.answer-bot-modal.mark-irrelevant": "Non, j’ai besoin d’aide", - "new-request-form.answer-bot-modal.request-closed": "Super. Votre demande a été fermée.", - "new-request-form.answer-bot-modal.request-submitted": "Votre demande a été envoyée", - "new-request-form.answer-bot-modal.solve-error": "Une erreur est survenue lors de la clôture de votre demande", - "new-request-form.answer-bot-modal.solve-request": "Oui, fermer ma demande", - "new-request-form.answer-bot-modal.title": "En attendant, l’un de ces articles répond-il à votre question ?", - "new-request-form.answer-bot-modal.view-article": "Afficher l’article", - "new-request-form.attachments.choose-file-label": "Choisissez un fichier ou faites un glisser-déposer ici", - "new-request-form.attachments.drop-files-label": "Déposez les fichiers ici", - "new-request-form.attachments.remove-file": "Supprimer le fichier", - "new-request-form.attachments.stop-upload": "Arrêter le chargement", - "new-request-form.attachments.upload-error-description": "Une erreur est survenue lors du chargement de {{fileName}}. Réessayez ou chargez un autre fichier.", - "new-request-form.attachments.upload-error-title": "Erreur de chargement", - "new-request-form.attachments.uploading": "Chargement du fichier {{fileName}} en cours", - "new-request-form.cc-field.container-label": "E-mails en CC sélectionnés", - "new-request-form.cc-field.email-added": "{{email}} a été ajouté", - "new-request-form.cc-field.email-label": "{{email}} - Appuyez sur Retour arrière pour supprimer", - "new-request-form.cc-field.email-removed": "{{email}} a été supprimé", - "new-request-form.cc-field.emails-added": "{{emails}} ont été ajoutés", - "new-request-form.cc-field.invalid-email": "Adresse e-mail non valide", - "new-request-form.close-label": "Fermer", - "new-request-form.credit-card-digits-hint": "(4 derniers chiffres)", - "new-request-form.dropdown.empty-option": "Sélectionnez une option", - "new-request-form.lookup-field.loading-options": "Chargement des éléments en cours...", - "new-request-form.lookup-field.no-matches-found": "Aucun résultat", - "new-request-form.lookup-field.placeholder": "Rechercher {{label}}", - "new-request-form.parent-request-link": "Suivi de la demande {{parentId}}", - "new-request-form.required-fields-info": "Les champs marqués d'un astérisque (*) sont obligatoires.", - "new-request-form.submit": "Envoyer", - "new-request-form.suggested-articles": "Articles suggérés" -}; - -var fr$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: fr -}); - -var ga = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var ga$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: ga -}); - -var he = { - "new-request-form.answer-bot-modal.footer-content": "אם כן, נוכל לסגור את בקשה {{requestId}} ששלחת לאחרונה", - "new-request-form.answer-bot-modal.footer-title": "האם המאמר הזה עונה על השאלה?", - "new-request-form.answer-bot-modal.mark-irrelevant": "לא, אני צריך עזרה", - "new-request-form.answer-bot-modal.request-closed": "נחמד. הבקשה נסגרה.", - "new-request-form.answer-bot-modal.request-submitted": "בקשתך נשלחה", - "new-request-form.answer-bot-modal.solve-error": "אירעה שגיאה בסגירת בקשתך", - "new-request-form.answer-bot-modal.solve-request": "כן, סגור את הבקשה שלי", - "new-request-form.answer-bot-modal.title": "בינתיים, האם אחד מהמאמרים האלה עונה על השאלה שלך?", - "new-request-form.answer-bot-modal.view-article": "הצג מאמר", - "new-request-form.attachments.choose-file-label": "בחר קובץ או גרור ושחרר כאן", - "new-request-form.attachments.drop-files-label": "שחרר את הקבצים כאן", - "new-request-form.attachments.remove-file": "הסר קובץ", - "new-request-form.attachments.stop-upload": "עצור העלאה", - "new-request-form.attachments.upload-error-description": "אירעה שגיאה בהעלאת הקובץ {{fileName}}. נסה שוב או העלה קובץ אחר.", - "new-request-form.attachments.upload-error-title": "שגיאת העלאה", - "new-request-form.attachments.uploading": "מעלה את {{fileName}}", - "new-request-form.cc-field.container-label": "הודעות דוא\"ל נבחרות עם עותק", - "new-request-form.cc-field.email-added": "כתובת הדוא\"ל {{email}} נוספה", - "new-request-form.cc-field.email-label": "{{email}} - לחץ על Backspace כדי להסיר", - "new-request-form.cc-field.email-removed": "כתובת הדוא\"ל {{email}} הוסרה", - "new-request-form.cc-field.emails-added": "כתובת הדוא\"ל {{emails}} נוספו", - "new-request-form.cc-field.invalid-email": "כתובת דואר אלקטרוני לא חוקית", - "new-request-form.close-label": "סגור", - "new-request-form.credit-card-digits-hint": "(4 הספרות האחרונות)", - "new-request-form.dropdown.empty-option": "בחר אפשרות", - "new-request-form.lookup-field.loading-options": "טוען פריטים...", - "new-request-form.lookup-field.no-matches-found": "לא נמצאו התאמות", - "new-request-form.lookup-field.placeholder": "חיפוש {{label}}", - "new-request-form.parent-request-link": "מעקב לבקשה {{parentId}}", - "new-request-form.required-fields-info": "השדות המסומנים בכוכבית (*) הם שדות חובה.", - "new-request-form.submit": "שלח", - "new-request-form.suggested-articles": "מאמרים מוצעים" -}; - -var he$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: he -}); - -var hi = { - "new-request-form.answer-bot-modal.footer-content": "यदि ऐसा है, तो हम आपका हाल ही का अनुरोध बंद कर सकते है {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "क्या इस आलेख में आपके प्रश्न का उत्तर मिला?", - "new-request-form.answer-bot-modal.mark-irrelevant": "नहीं, मुझे सहायता चाहिए", - "new-request-form.answer-bot-modal.request-closed": "बढ़िया! आपका अनुरोध बंद कर दिया गया है।", - "new-request-form.answer-bot-modal.request-submitted": "आपका अनुरोध सफलतापूर्वक भेजा गया था", - "new-request-form.answer-bot-modal.solve-error": "आपका अनुरोध समाप्त करने में कोई त्रुटि थी", - "new-request-form.answer-bot-modal.solve-request": "हाँ, कृपया मेरा अनुरोध समाप्त करें", - "new-request-form.answer-bot-modal.title": "प्रतीक्षा करते समय, क्या इन आलेखों से आपके प्रश्न का उत्तर मिलता है?", - "new-request-form.answer-bot-modal.view-article": "आलेख देखें", - "new-request-form.attachments.choose-file-label": "कोई फ़ाइल चुनें या यहां खींचें और छोड़ें", - "new-request-form.attachments.drop-files-label": "फाइलों को यहां छोड़ें", - "new-request-form.attachments.remove-file": "फ़ाइल हटाएं", - "new-request-form.attachments.stop-upload": "अपलोड बंद करें", - "new-request-form.attachments.upload-error-description": "{{fileName}}अपलोड करने में कोई त्रुटि थी। पुनः प्रयास करें या कोई अन्य फ़ाइल अपलोड करें।", - "new-request-form.attachments.upload-error-title": "त्रुटि अपलोड करें", - "new-request-form.attachments.uploading": "{{fileName}} अपलोड हो रहा है", - "new-request-form.cc-field.container-label": "चयनित CC ईमेल", - "new-request-form.cc-field.email-added": "{{email}} जोड़ा गया है", - "new-request-form.cc-field.email-label": "{{email}} - हटाने के लिए बैकस्पेस दबाएं", - "new-request-form.cc-field.email-removed": "{{email}} हटा दिया गया है", - "new-request-form.cc-field.emails-added": "{{emails}} जोड़ा गया है", - "new-request-form.cc-field.invalid-email": "अमान्य ईमेल पता", - "new-request-form.close-label": "बंद करें", - "new-request-form.credit-card-digits-hint": "(आखिरी 4 अक्षर)", - "new-request-form.dropdown.empty-option": "कोई विकल्प चुनें", - "new-request-form.lookup-field.loading-options": "आइटम लोड हो रहे हैं...", - "new-request-form.lookup-field.no-matches-found": "कोई मिलान नहीं मिले", - "new-request-form.lookup-field.placeholder": "खोज {{label}}", - "new-request-form.parent-request-link": "{{parentId}} का अनुरोध करने के लिए फ़ॉलो-अप", - "new-request-form.required-fields-info": "तारांकन चिह्न (*) से चिह्नित फ़ील्ड आवश्यक हैं।", - "new-request-form.submit": "भेजें", - "new-request-form.suggested-articles": "सुझाए गए आलेख" -}; - -var hi$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: hi -}); - -var hr = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var hr$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: hr -}); - -var hu = { - "new-request-form.answer-bot-modal.footer-content": "Ha igen, lezárhatjuk a legutóbbi kérelmét ({{requestId}})", - "new-request-form.answer-bot-modal.footer-title": "Megválaszolta a cikk a kérdését?", - "new-request-form.answer-bot-modal.mark-irrelevant": "Nem, segítségre van szükségem", - "new-request-form.answer-bot-modal.request-closed": "Remek! A kérelme ezzel le lett zárva.", - "new-request-form.answer-bot-modal.request-submitted": "A kérelme sikeresen be lett küldve", - "new-request-form.answer-bot-modal.solve-error": "Hiba történt a kérelme lezárásakor", - "new-request-form.answer-bot-modal.solve-request": "Igen, zárják le a kérelmemet", - "new-request-form.answer-bot-modal.title": "Várakozás közben megtekintheti, hogy e cikkek közül választ ad-e valamelyik a kérdésére.", - "new-request-form.answer-bot-modal.view-article": "Cikk megtekintése", - "new-request-form.attachments.choose-file-label": "Válassza ki vagy húzza ide a kívánt fájlt", - "new-request-form.attachments.drop-files-label": "Húzza ide a fájlokat", - "new-request-form.attachments.remove-file": "Fájl eltávolítása", - "new-request-form.attachments.stop-upload": "Feltöltés leállítása", - "new-request-form.attachments.upload-error-description": "Hiba történt a(z) {{fileName}} fájl feltöltése során. Próbálja meg újra, vagy töltsön fel egy másik fájlt.", - "new-request-form.attachments.upload-error-title": "Feltöltési hiba", - "new-request-form.attachments.uploading": "A(z) {{fileName}} fájl feltöltése folyamatban van", - "new-request-form.cc-field.container-label": "Másolatot kapó kiválasztott e-mail-címek", - "new-request-form.cc-field.email-added": "{{email}} hozzáadva", - "new-request-form.cc-field.email-label": "{{email}} – Nyomja meg a Backspace billentyűt az eltávolításhoz", - "new-request-form.cc-field.email-removed": "{{email}} eltávolítva", - "new-request-form.cc-field.emails-added": "{{emails}} hozzáadva", - "new-request-form.cc-field.invalid-email": "Érvénytelen e-mail-cím", - "new-request-form.close-label": "Bezárás", - "new-request-form.credit-card-digits-hint": "(Utolsó 4 számjegy)", - "new-request-form.dropdown.empty-option": "Válasszon egy lehetőséget", - "new-request-form.lookup-field.loading-options": "Elemek betöltése…", - "new-request-form.lookup-field.no-matches-found": "Nincs találat", - "new-request-form.lookup-field.placeholder": "{{label}} keresése", - "new-request-form.parent-request-link": "Nyomon követés a(z) {{parentId}} kérelemhez", - "new-request-form.required-fields-info": "A csillaggal (*) jelzett mezők kitöltése kötelező.", - "new-request-form.submit": "Küldés", - "new-request-form.suggested-articles": "Javasolt cikkek" -}; - -var hu$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: hu -}); - -var hy = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var hy$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: hy -}); - -var id = { - "new-request-form.answer-bot-modal.footer-content": "Jika demikian, kami dapat menutup permintaan Anda baru-baru ini {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Apakah artikel ini menjawab pertanyaan Anda?", - "new-request-form.answer-bot-modal.mark-irrelevant": "Tidak, saya perlu bantuan", - "new-request-form.answer-bot-modal.request-closed": "Bagus. Permintaan Anda telah ditutup.", - "new-request-form.answer-bot-modal.request-submitted": "Permintaan Anda berhasil dikirimkan", - "new-request-form.answer-bot-modal.solve-error": "Ada kesalahan dalam menutup permintaan Anda", - "new-request-form.answer-bot-modal.solve-request": "Ya, tutup permintaan saya", - "new-request-form.answer-bot-modal.title": "Sementara Anda menunggu, apakah ada di antara artikel-artikel ini yang menjawab pertanyaan Anda?", - "new-request-form.answer-bot-modal.view-article": "Lihat artikel", - "new-request-form.attachments.choose-file-label": "Pilih file atau tarik dan letakkan di sini", - "new-request-form.attachments.drop-files-label": "Letakkan file di sini", - "new-request-form.attachments.remove-file": "Hapus file", - "new-request-form.attachments.stop-upload": "Berhenti mengunggah", - "new-request-form.attachments.upload-error-description": "Terjadi kesalahan saat mengunggah {{fileName}}. Cobalah lagi atau unggah file lain.", - "new-request-form.attachments.upload-error-title": "Kesalahan Mengunggah", - "new-request-form.attachments.uploading": "Mengunggah {{fileName}}", - "new-request-form.cc-field.container-label": "Email CC yang dipilih", - "new-request-form.cc-field.email-added": "{{email}} telah ditambahkan", - "new-request-form.cc-field.email-label": "{{email}} - Tekan Backspace untuk menghapus", - "new-request-form.cc-field.email-removed": "{{email}} telah dihapus", - "new-request-form.cc-field.emails-added": "{{emails}} telah ditambahkan", - "new-request-form.cc-field.invalid-email": "Alamat email tidak valid", - "new-request-form.close-label": "Tutup", - "new-request-form.credit-card-digits-hint": "(4 digit terakhir)", - "new-request-form.dropdown.empty-option": "Pilih opsi", - "new-request-form.lookup-field.loading-options": "Memuat item...", - "new-request-form.lookup-field.no-matches-found": "Tidak ada kecocokan yang ditemukan", - "new-request-form.lookup-field.placeholder": "Cari {{label}}", - "new-request-form.parent-request-link": "Tindak lanjut atas permintaan {{parentId}}", - "new-request-form.required-fields-info": "Bidang yang ditandai dengan tanda bintang (*) wajib diisi.", - "new-request-form.submit": "Kirim", - "new-request-form.suggested-articles": "Artikel yang disarankan" -}; - -var id$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: id -}); - -var is = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var is$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: is -}); - -var itCh = { - "new-request-form.answer-bot-modal.footer-content": "In caso affermativo, possiamo chiudere la recente richiesta {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Questo articolo risponde alla domanda?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, ho bisogno di aiuto", - "new-request-form.answer-bot-modal.request-closed": "Ottimo! La richiesta è stata chiusa.", - "new-request-form.answer-bot-modal.request-submitted": "La richiesta è stata inviata correttamente", - "new-request-form.answer-bot-modal.solve-error": "Errore durante la chiusura della richiesta", - "new-request-form.answer-bot-modal.solve-request": "Sì, chiudi la richiesta", - "new-request-form.answer-bot-modal.title": "Nell’attesa, le informazioni in uno o più di questi articoli potrebbero rispondere alla domanda.", - "new-request-form.answer-bot-modal.view-article": "Visualizza articolo", - "new-request-form.attachments.choose-file-label": "Scegli un file o trascinalo qui", - "new-request-form.attachments.drop-files-label": "Trascina qui i file", - "new-request-form.attachments.remove-file": "Rimuovi file", - "new-request-form.attachments.stop-upload": "Interrompi caricamento", - "new-request-form.attachments.upload-error-description": "Errore durante il caricamento di {{fileName}}. Riprova o carica un altro file.", - "new-request-form.attachments.upload-error-title": "Errore nel caricamento", - "new-request-form.attachments.uploading": "Caricamento di {{fileName}}", - "new-request-form.cc-field.container-label": "Indirizzi email CC selezionati", - "new-request-form.cc-field.email-added": "{{email}} è stato aggiunto", - "new-request-form.cc-field.email-label": "{{email}} - Premi Backspace per rimuovere", - "new-request-form.cc-field.email-removed": "{{email}} è stato rimosso", - "new-request-form.cc-field.emails-added": "{{emails}} sono stati aggiunti", - "new-request-form.cc-field.invalid-email": "Indirizzo email non valido", - "new-request-form.close-label": "Chiudi", - "new-request-form.credit-card-digits-hint": "(Ultime 4 cifre)", - "new-request-form.dropdown.empty-option": "Seleziona un’opzione", - "new-request-form.lookup-field.loading-options": "Caricamento elementi in corso...", - "new-request-form.lookup-field.no-matches-found": "Nessuna corrispondenza trovata", - "new-request-form.lookup-field.placeholder": "Cerca {{label}}", - "new-request-form.parent-request-link": "Follow-up alla richiesta {{parentId}}", - "new-request-form.required-fields-info": "I campi contrassegnati da un asterisco (*) sono obbligatori.", - "new-request-form.submit": "Invia", - "new-request-form.suggested-articles": "Articoli suggeriti" -}; - -var itCh$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: itCh -}); - -var it = { - "new-request-form.answer-bot-modal.footer-content": "In caso affermativo, possiamo chiudere la recente richiesta {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Questo articolo risponde alla domanda?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, ho bisogno di aiuto", - "new-request-form.answer-bot-modal.request-closed": "Ottimo! La richiesta è stata chiusa.", - "new-request-form.answer-bot-modal.request-submitted": "La richiesta è stata inviata correttamente", - "new-request-form.answer-bot-modal.solve-error": "Errore durante la chiusura della richiesta", - "new-request-form.answer-bot-modal.solve-request": "Sì, chiudi la richiesta", - "new-request-form.answer-bot-modal.title": "Nell’attesa, le informazioni in uno o più di questi articoli potrebbero rispondere alla domanda.", - "new-request-form.answer-bot-modal.view-article": "Visualizza articolo", - "new-request-form.attachments.choose-file-label": "Scegli un file o trascinalo qui", - "new-request-form.attachments.drop-files-label": "Trascina qui i file", - "new-request-form.attachments.remove-file": "Rimuovi file", - "new-request-form.attachments.stop-upload": "Interrompi caricamento", - "new-request-form.attachments.upload-error-description": "Errore durante il caricamento di {{fileName}}. Riprova o carica un altro file.", - "new-request-form.attachments.upload-error-title": "Errore nel caricamento", - "new-request-form.attachments.uploading": "Caricamento di {{fileName}}", - "new-request-form.cc-field.container-label": "Indirizzi email CC selezionati", - "new-request-form.cc-field.email-added": "{{email}} è stato aggiunto", - "new-request-form.cc-field.email-label": "{{email}} - Premi Backspace per rimuovere", - "new-request-form.cc-field.email-removed": "{{email}} è stato rimosso", - "new-request-form.cc-field.emails-added": "{{emails}} sono stati aggiunti", - "new-request-form.cc-field.invalid-email": "Indirizzo email non valido", - "new-request-form.close-label": "Chiudi", - "new-request-form.credit-card-digits-hint": "(Ultime 4 cifre)", - "new-request-form.dropdown.empty-option": "Seleziona un’opzione", - "new-request-form.lookup-field.loading-options": "Caricamento elementi in corso...", - "new-request-form.lookup-field.no-matches-found": "Nessuna corrispondenza trovata", - "new-request-form.lookup-field.placeholder": "Cerca {{label}}", - "new-request-form.parent-request-link": "Follow-up alla richiesta {{parentId}}", - "new-request-form.required-fields-info": "I campi contrassegnati da un asterisco (*) sono obbligatori.", - "new-request-form.submit": "Invia", - "new-request-form.suggested-articles": "Articoli suggeriti" -}; - -var it$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: it -}); - -var ja = { - "new-request-form.answer-bot-modal.footer-content": "質問が解決していれば、最新のリクエスト{{requestId}}を終了します", - "new-request-form.answer-bot-modal.footer-title": "この記事で疑問が解消されましたか?", - "new-request-form.answer-bot-modal.mark-irrelevant": "いいえ、ヘルプが必要です", - "new-request-form.answer-bot-modal.request-closed": "お役に立てて嬉しいです。リクエストは終了しました。", - "new-request-form.answer-bot-modal.request-submitted": "リクエストは正しく送信されました", - "new-request-form.answer-bot-modal.solve-error": "リクエストを終了する際にエラーが発生しました", - "new-request-form.answer-bot-modal.solve-request": "はい、リクエストを終了", - "new-request-form.answer-bot-modal.title": "これらの記事のいずれかで疑問が解消されますか?", - "new-request-form.answer-bot-modal.view-article": "記事を表示", - "new-request-form.attachments.choose-file-label": "ファイルを選択するか、ここにドラッグアンドドロップします", - "new-request-form.attachments.drop-files-label": "ファイルをここにドロップ", - "new-request-form.attachments.remove-file": "ファイル削除", - "new-request-form.attachments.stop-upload": "アップロードを停止", - "new-request-form.attachments.upload-error-description": "{{fileName}}のアップロード中にエラーが発生しました。もう一度やり直すか、別のファイルをアップロードしてください。", - "new-request-form.attachments.upload-error-title": "アップロードエラー", - "new-request-form.attachments.uploading": "{{fileName}}をアップロード中", - "new-request-form.cc-field.container-label": "選択したCCメールアドレス", - "new-request-form.cc-field.email-added": "{{email}}を追加しました", - "new-request-form.cc-field.email-label": "{{email}} - 削除するにはBackspaceキーを押します", - "new-request-form.cc-field.email-removed": "{{email}}を削除しました", - "new-request-form.cc-field.emails-added": "{{emails}}を追加しました", - "new-request-form.cc-field.invalid-email": "メールアドレスが正しくありません", - "new-request-form.close-label": "閉じる", - "new-request-form.credit-card-digits-hint": "(下4桁)", - "new-request-form.dropdown.empty-option": "オプションを選択します", - "new-request-form.lookup-field.loading-options": "アイテムを読み込み中...", - "new-request-form.lookup-field.no-matches-found": "一致するものが見つかりません", - "new-request-form.lookup-field.placeholder": "{{label}}を検索", - "new-request-form.parent-request-link": "リクエスト{{parentId}}の補足", - "new-request-form.required-fields-info": "アスタリスク(*)が付いているフィールドは必須です。", - "new-request-form.submit": "送信", - "new-request-form.suggested-articles": "おすすめの記事" -}; - -var ja$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: ja -}); - -var ka = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var ka$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: ka -}); - -var kk = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var kk$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: kk -}); - -var klDk = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var klDk$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: klDk -}); - -var ko = { - "new-request-form.answer-bot-modal.footer-content": "그렇다면 최근 요청 {{requestId}}을(를) 종료할 수 있습니다.", - "new-request-form.answer-bot-modal.footer-title": "이 문서가 질문에 대한 답이 되었나요?", - "new-request-form.answer-bot-modal.mark-irrelevant": "아니요, 도움이 필요합니다.", - "new-request-form.answer-bot-modal.request-closed": "도움이 되었다니 기쁩니다. 요청이 종료되었습니다.", - "new-request-form.answer-bot-modal.request-submitted": "요청을 제출했습니다.", - "new-request-form.answer-bot-modal.solve-error": "요청을 종료하는 중 오류가 발생했습니다.", - "new-request-form.answer-bot-modal.solve-request": "예, 요청을 종료합니다", - "new-request-form.answer-bot-modal.title": "기다리는 동안 다음 문서 중에서 질문에 대한 답변을 찾으셨나요?", - "new-request-form.answer-bot-modal.view-article": "문서 보기", - "new-request-form.attachments.choose-file-label": "파일을 선택하거나 여기에 드래그 앤 드롭하세요.", - "new-request-form.attachments.drop-files-label": "파일을 여기에 드롭하세요", - "new-request-form.attachments.remove-file": "파일 제거", - "new-request-form.attachments.stop-upload": "업로드 중지", - "new-request-form.attachments.upload-error-description": "{{fileName}}을(를) 업로드하는 중 오류가 발생했습니다. 다시 시도하거나 다른 파일을 업로드하세요.", - "new-request-form.attachments.upload-error-title": "업로드 오류", - "new-request-form.attachments.uploading": "{{fileName}} 업로드 중", - "new-request-form.cc-field.container-label": "선택한 참조 이메일", - "new-request-form.cc-field.email-added": "{{email}}이(가) 추가되었습니다.", - "new-request-form.cc-field.email-label": "{{email}} - 제거하려면 백스페이스 키를 누르세요.", - "new-request-form.cc-field.email-removed": "{{email}}이(가) 제거되었습니다.", - "new-request-form.cc-field.emails-added": "{{emails}}이(가) 추가되었습니다.", - "new-request-form.cc-field.invalid-email": "올바르지 않은 이메일 주소", - "new-request-form.close-label": "닫기", - "new-request-form.credit-card-digits-hint": "(마지막 4자리)", - "new-request-form.dropdown.empty-option": "옵션을 선택하세요.", - "new-request-form.lookup-field.loading-options": "항목 로드 중...", - "new-request-form.lookup-field.no-matches-found": "일치 항목을 찾지 못함", - "new-request-form.lookup-field.placeholder": "{{label}} 검색", - "new-request-form.parent-request-link": "요청 {{parentId}}에 대한 후속 작업", - "new-request-form.required-fields-info": "별표(*)가 표시된 필드는 필수입니다.", - "new-request-form.submit": "제출", - "new-request-form.suggested-articles": "추천 문서" -}; - -var ko$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: ko -}); - -var ku = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var ku$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: ku -}); - -var lt = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var lt$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: lt -}); - -var lv = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var lv$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: lv -}); - -var mk = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var mk$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: mk -}); - -var mn = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var mn$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: mn -}); - -var ms = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var ms$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: ms -}); - -var mt = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var mt$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: mt -}); - -var my = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var my$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: my -}); - -var nlBe = { - "new-request-form.answer-bot-modal.footer-content": "Als dat het geval is, kunnen wij uw recente aanvraag {{requestId}} sluiten", - "new-request-form.answer-bot-modal.footer-title": "Beantwoordt dit artikel uw vraag?", - "new-request-form.answer-bot-modal.mark-irrelevant": "Nee, ik heb hulp nodig", - "new-request-form.answer-bot-modal.request-closed": "Fijn. Uw aanvraag is gesloten.", - "new-request-form.answer-bot-modal.request-submitted": "Uw aanvraag is verzonden", - "new-request-form.answer-bot-modal.solve-error": "Fout tijdens het sluiten van uw aanvraag", - "new-request-form.answer-bot-modal.solve-request": "Ja, mijn aanvraag sluiten", - "new-request-form.answer-bot-modal.title": "Terwijl u wacht: beantwoordt een van deze artikelen uw vraag?", - "new-request-form.answer-bot-modal.view-article": "Artikel weergeven", - "new-request-form.attachments.choose-file-label": "Kies een bestand of versleep het hierheen", - "new-request-form.attachments.drop-files-label": "Zet bestanden hier neer", - "new-request-form.attachments.remove-file": "Bestand verwijderen", - "new-request-form.attachments.stop-upload": "Upload stoppen", - "new-request-form.attachments.upload-error-description": "Fout tijdens uploaden van {{fileName}}. Probeer het opnieuw of upload een ander bestand.", - "new-request-form.attachments.upload-error-title": "Fout bij uploaden", - "new-request-form.attachments.uploading": "{{fileName}} wordt geüpload", - "new-request-form.cc-field.container-label": "Geselecteerde e-mails in cc", - "new-request-form.cc-field.email-added": "{{email}} is toegevoegd", - "new-request-form.cc-field.email-label": "{{email}} - Druk op Backspace om te verwijderen", - "new-request-form.cc-field.email-removed": "{{email}} is verwijderd", - "new-request-form.cc-field.emails-added": "{{emails}} zijn toegevoegd", - "new-request-form.cc-field.invalid-email": "Ongeldig e-mailadres", - "new-request-form.close-label": "Sluiten", - "new-request-form.credit-card-digits-hint": "(Laatste 4 cijfers)", - "new-request-form.dropdown.empty-option": "Selecteer een optie", - "new-request-form.lookup-field.loading-options": "Items laden...", - "new-request-form.lookup-field.no-matches-found": "Geen overeenkomsten gevonden", - "new-request-form.lookup-field.placeholder": "Zoeken in {{label}}", - "new-request-form.parent-request-link": "Follow-up van aanvraag {{parentId}}", - "new-request-form.required-fields-info": "Velden met een sterretje (*) zijn vereist.", - "new-request-form.submit": "Verzenden", - "new-request-form.suggested-articles": "Voorgestelde artikelen" -}; - -var nlBe$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: nlBe -}); - -var nl = { - "new-request-form.answer-bot-modal.footer-content": "Als dat het geval is, kunnen wij uw recente aanvraag {{requestId}} sluiten", - "new-request-form.answer-bot-modal.footer-title": "Beantwoordt dit artikel uw vraag?", - "new-request-form.answer-bot-modal.mark-irrelevant": "Nee, ik heb hulp nodig", - "new-request-form.answer-bot-modal.request-closed": "Fijn. Uw aanvraag is gesloten.", - "new-request-form.answer-bot-modal.request-submitted": "Uw aanvraag is verzonden", - "new-request-form.answer-bot-modal.solve-error": "Fout tijdens het sluiten van uw aanvraag", - "new-request-form.answer-bot-modal.solve-request": "Ja, mijn aanvraag sluiten", - "new-request-form.answer-bot-modal.title": "Terwijl u wacht: beantwoordt een van deze artikelen uw vraag?", - "new-request-form.answer-bot-modal.view-article": "Artikel weergeven", - "new-request-form.attachments.choose-file-label": "Kies een bestand of versleep het hierheen", - "new-request-form.attachments.drop-files-label": "Zet bestanden hier neer", - "new-request-form.attachments.remove-file": "Bestand verwijderen", - "new-request-form.attachments.stop-upload": "Upload stoppen", - "new-request-form.attachments.upload-error-description": "Fout tijdens uploaden van {{fileName}}. Probeer het opnieuw of upload een ander bestand.", - "new-request-form.attachments.upload-error-title": "Fout bij uploaden", - "new-request-form.attachments.uploading": "{{fileName}} wordt geüpload", - "new-request-form.cc-field.container-label": "Geselecteerde e-mails in cc", - "new-request-form.cc-field.email-added": "{{email}} is toegevoegd", - "new-request-form.cc-field.email-label": "{{email}} - Druk op Backspace om te verwijderen", - "new-request-form.cc-field.email-removed": "{{email}} is verwijderd", - "new-request-form.cc-field.emails-added": "{{emails}} zijn toegevoegd", - "new-request-form.cc-field.invalid-email": "Ongeldig e-mailadres", - "new-request-form.close-label": "Sluiten", - "new-request-form.credit-card-digits-hint": "(Laatste 4 cijfers)", - "new-request-form.dropdown.empty-option": "Selecteer een optie", - "new-request-form.lookup-field.loading-options": "Items laden...", - "new-request-form.lookup-field.no-matches-found": "Geen overeenkomsten gevonden", - "new-request-form.lookup-field.placeholder": "Zoeken in {{label}}", - "new-request-form.parent-request-link": "Follow-up van aanvraag {{parentId}}", - "new-request-form.required-fields-info": "Velden met een sterretje (*) zijn vereist.", - "new-request-form.submit": "Verzenden", - "new-request-form.suggested-articles": "Voorgestelde artikelen" -}; - -var nl$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: nl -}); - -var no = { - "new-request-form.answer-bot-modal.footer-content": "Hvis den gjør det, kan vi avslutte den nylige forespørselen {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Fant du svar på spørsmålet i denne artikkelen?", - "new-request-form.answer-bot-modal.mark-irrelevant": "Nei, jeg trenger hjelp", - "new-request-form.answer-bot-modal.request-closed": "Flott! Forespørselen er avsluttet.", - "new-request-form.answer-bot-modal.request-submitted": "Forespørselen ble sendt inn", - "new-request-form.answer-bot-modal.solve-error": "Det oppstod en feil under lukking av forespørselen", - "new-request-form.answer-bot-modal.solve-request": "Ja, avslutt forespørselen", - "new-request-form.answer-bot-modal.title": "Mens du venter: Kanskje en av disse artiklene har svar på spørsmålet ditt?", - "new-request-form.answer-bot-modal.view-article": "Vis artikkel", - "new-request-form.attachments.choose-file-label": "Velg en fil eller dra og slipp her", - "new-request-form.attachments.drop-files-label": "Slipp filene her", - "new-request-form.attachments.remove-file": "Fjern fil", - "new-request-form.attachments.stop-upload": "Stopp opplastingen", - "new-request-form.attachments.upload-error-description": "Det oppstod en feil under opplastingen {{fileName}}. Prøv på nytt eller last opp en annen fil.", - "new-request-form.attachments.upload-error-title": "Feil under opplasting", - "new-request-form.attachments.uploading": "Laster opp {{fileName}}", - "new-request-form.cc-field.container-label": "Valgte e-poster kopi til", - "new-request-form.cc-field.email-added": "{{email}} har blitt lagt til", - "new-request-form.cc-field.email-label": "{{email}} - Trykk på Tilbaketasten for å fjerne", - "new-request-form.cc-field.email-removed": "{{email}} er fjernet", - "new-request-form.cc-field.emails-added": "{{emails}} er lagt til", - "new-request-form.cc-field.invalid-email": "Ugyldig e-postadresse", - "new-request-form.close-label": "Lukk", - "new-request-form.credit-card-digits-hint": "(4 siste sifre)", - "new-request-form.dropdown.empty-option": "Velg et alternativ", - "new-request-form.lookup-field.loading-options": "Laster inn elementer...", - "new-request-form.lookup-field.no-matches-found": "Fant ingen samsvarende", - "new-request-form.lookup-field.placeholder": "Søk {{label}}", - "new-request-form.parent-request-link": "Oppfølging av forespørsel {{parentId}}", - "new-request-form.required-fields-info": "Felter merket med en stjerne (*) er obligatoriske.", - "new-request-form.submit": "Send inn", - "new-request-form.suggested-articles": "Foreslåtte artikler" -}; - -var no$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: no -}); - -var pl = { - "new-request-form.answer-bot-modal.footer-content": "Jeśli tak, możemy zamknąć zlecenie {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Czy artykuł dostarczył odpowiedzi na pytanie?", - "new-request-form.answer-bot-modal.mark-irrelevant": "Nie, potrzebuję pomocy", - "new-request-form.answer-bot-modal.request-closed": "Świetnie. Zlecenie zostało zamknięte.", - "new-request-form.answer-bot-modal.request-submitted": "Zlecenie zostało wysłane", - "new-request-form.answer-bot-modal.solve-error": "Podczas zamykania zlecenia wystąpił błąd", - "new-request-form.answer-bot-modal.solve-request": "Tak, zamknij zlecenie", - "new-request-form.answer-bot-modal.title": "W czasie gdy oczekujesz na odpowiedź, może zechcesz nam powiedzieć, czy którykolwiek z tych artykułów zawiera odpowiedź na pytanie?", - "new-request-form.answer-bot-modal.view-article": "Wyświetl artykuł", - "new-request-form.attachments.choose-file-label": "Wybierz plik lub przeciągnij i upuść go tutaj", - "new-request-form.attachments.drop-files-label": "Upuść pliki tutaj", - "new-request-form.attachments.remove-file": "Usuń plik", - "new-request-form.attachments.stop-upload": "Zatrzymaj przesyłanie", - "new-request-form.attachments.upload-error-description": "Podczas przesyłania wystąpił błąd {{fileName}}. Spróbuj ponownie lub prześlij inny plik.", - "new-request-form.attachments.upload-error-title": "Błąd przesyłania", - "new-request-form.attachments.uploading": "Przesyłanie {{fileName}}", - "new-request-form.cc-field.container-label": "Wybrane e-maile z pola DW", - "new-request-form.cc-field.email-added": "Dodano {{email}}", - "new-request-form.cc-field.email-label": "{{email}} – naciśnij Backspace, aby usunąć", - "new-request-form.cc-field.email-removed": "Usunięto {{email}}", - "new-request-form.cc-field.emails-added": "Dodano {{emails}}", - "new-request-form.cc-field.invalid-email": "Nieprawidłowy adres e-mail", - "new-request-form.close-label": "Zamknij", - "new-request-form.credit-card-digits-hint": "(ostatnie 4 cyfry)", - "new-request-form.dropdown.empty-option": "Wybierz opcję", - "new-request-form.lookup-field.loading-options": "Ładowanie elementów...", - "new-request-form.lookup-field.no-matches-found": "Nie znaleziono dopasowań", - "new-request-form.lookup-field.placeholder": "Szukaj {{label}}", - "new-request-form.parent-request-link": "Kontynuacja zlecenia {{parentId}}", - "new-request-form.required-fields-info": "Pola oznaczone gwiazdką (*) są wymagane.", - "new-request-form.submit": "Wyślij", - "new-request-form.suggested-articles": "Propozycje artykułów" -}; - -var pl$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: pl -}); - -var ptBr = { - "new-request-form.answer-bot-modal.footer-content": "Se sim, podemos fechar a solicitação recente {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Esse artigo responde à pergunta?", - "new-request-form.answer-bot-modal.mark-irrelevant": "Não, preciso de ajuda", - "new-request-form.answer-bot-modal.request-closed": "Legal! A solicitação foi fechada.", - "new-request-form.answer-bot-modal.request-submitted": "Sua solicitação foi enviada com êxito", - "new-request-form.answer-bot-modal.solve-error": "Erro ao fechar a solicitação", - "new-request-form.answer-bot-modal.solve-request": "Sim, feche a solicitação", - "new-request-form.answer-bot-modal.title": "Enquanto você aguarda, algum desses artigos responde à pergunta?", - "new-request-form.answer-bot-modal.view-article": "Exibir artigo", - "new-request-form.attachments.choose-file-label": "Escolha um arquivo ou arraste e solte aqui", - "new-request-form.attachments.drop-files-label": "Solte os arquivos aqui", - "new-request-form.attachments.remove-file": "Remover arquivo", - "new-request-form.attachments.stop-upload": "Interromper carregamento", - "new-request-form.attachments.upload-error-description": "Erro ao carregar {{fileName}}. Tente novamente ou carregue outro arquivo.", - "new-request-form.attachments.upload-error-title": "Erro de carregamento", - "new-request-form.attachments.uploading": "Carregando {{fileName}}", - "new-request-form.cc-field.container-label": "E-mails de cópia selecionados", - "new-request-form.cc-field.email-added": "{{email}} foi adicionado", - "new-request-form.cc-field.email-label": "{{email}} – Pressione Backspace para remover", - "new-request-form.cc-field.email-removed": "{{email}} foi removido", - "new-request-form.cc-field.emails-added": "{{emails}} foram adicionados", - "new-request-form.cc-field.invalid-email": "Endereço de e-mail inválido", - "new-request-form.close-label": "Fechar", - "new-request-form.credit-card-digits-hint": "(Últimos 4 dígitos)", - "new-request-form.dropdown.empty-option": "Selecionar uma opção", - "new-request-form.lookup-field.loading-options": "Carregando itens...", - "new-request-form.lookup-field.no-matches-found": "Nenhuma correspondência encontrada", - "new-request-form.lookup-field.placeholder": "Pesquisar {{label}}", - "new-request-form.parent-request-link": "Acompanhamento da solicitação {{parentId}}", - "new-request-form.required-fields-info": "Os campos marcados com um asterisco (*) são obrigatórios.", - "new-request-form.submit": "Enviar", - "new-request-form.suggested-articles": "Artigos sugeridos" -}; - -var ptBr$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: ptBr -}); - -var pt = { - "new-request-form.answer-bot-modal.footer-content": "Se sim, podemos fechar a solicitação recente {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Esse artigo responde à pergunta?", - "new-request-form.answer-bot-modal.mark-irrelevant": "Não, preciso de ajuda", - "new-request-form.answer-bot-modal.request-closed": "Legal! A solicitação foi fechada.", - "new-request-form.answer-bot-modal.request-submitted": "Sua solicitação foi enviada com êxito", - "new-request-form.answer-bot-modal.solve-error": "Erro ao fechar a solicitação", - "new-request-form.answer-bot-modal.solve-request": "Sim, feche a solicitação", - "new-request-form.answer-bot-modal.title": "Enquanto você aguarda, algum desses artigos responde à pergunta?", - "new-request-form.answer-bot-modal.view-article": "Exibir artigo", - "new-request-form.attachments.choose-file-label": "Escolha um arquivo ou arraste e solte aqui", - "new-request-form.attachments.drop-files-label": "Solte os arquivos aqui", - "new-request-form.attachments.remove-file": "Remover arquivo", - "new-request-form.attachments.stop-upload": "Interromper carregamento", - "new-request-form.attachments.upload-error-description": "Erro ao carregar {{fileName}}. Tente novamente ou carregue outro arquivo.", - "new-request-form.attachments.upload-error-title": "Erro de carregamento", - "new-request-form.attachments.uploading": "Carregando {{fileName}}", - "new-request-form.cc-field.container-label": "E-mails de cópia selecionados", - "new-request-form.cc-field.email-added": "{{email}} foi adicionado", - "new-request-form.cc-field.email-label": "{{email}} – Pressione Backspace para remover", - "new-request-form.cc-field.email-removed": "{{email}} foi removido", - "new-request-form.cc-field.emails-added": "{{emails}} foram adicionados", - "new-request-form.cc-field.invalid-email": "Endereço de e-mail inválido", - "new-request-form.close-label": "Fechar", - "new-request-form.credit-card-digits-hint": "(Últimos 4 dígitos)", - "new-request-form.dropdown.empty-option": "Selecionar uma opção", - "new-request-form.lookup-field.loading-options": "Carregando itens...", - "new-request-form.lookup-field.no-matches-found": "Nenhuma correspondência encontrada", - "new-request-form.lookup-field.placeholder": "Pesquisar {{label}}", - "new-request-form.parent-request-link": "Acompanhamento da solicitação {{parentId}}", - "new-request-form.required-fields-info": "Os campos marcados com um asterisco (*) são obrigatórios.", - "new-request-form.submit": "Enviar", - "new-request-form.suggested-articles": "Artigos sugeridos" -}; - -var pt$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: pt -}); - -var ro = { - "new-request-form.answer-bot-modal.footer-content": "Dacă reușește, putem închide solicitarea recentă {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Acest articol răspunde la întrebare?", - "new-request-form.answer-bot-modal.mark-irrelevant": "Nu, am nevoie de ajutor", - "new-request-form.answer-bot-modal.request-closed": "Grozav. Solicitarea a fost închisă.", - "new-request-form.answer-bot-modal.request-submitted": "Solicitarea a fost transmisă cu succes", - "new-request-form.answer-bot-modal.solve-error": "A apărut o eroare la închiderea solicitării", - "new-request-form.answer-bot-modal.solve-request": "Da, închideți solicitarea", - "new-request-form.answer-bot-modal.title": "Cât așteptați, vreunul dintre aceste articole răspunde la întrebarea dumneavoastră?", - "new-request-form.answer-bot-modal.view-article": "Vizualizare articol", - "new-request-form.attachments.choose-file-label": "Alegeți un fișier sau glisați și fixați aici", - "new-request-form.attachments.drop-files-label": "Glisați fișierele aici", - "new-request-form.attachments.remove-file": "Eliminare fișier", - "new-request-form.attachments.stop-upload": "Oprire încărcare", - "new-request-form.attachments.upload-error-description": "A apărut o eroare la încărcarea {{fileName}}. Încercați din nou sau încărcați un alt fișier.", - "new-request-form.attachments.upload-error-title": "Eroare de încărcare", - "new-request-form.attachments.uploading": "Se încarcă {{fileName}}", - "new-request-form.cc-field.container-label": "E-mailuri CC selectate", - "new-request-form.cc-field.email-added": "{{email}} a fost adăugată", - "new-request-form.cc-field.email-label": "{{email}} - Apăsați Backspace pentru a elimina", - "new-request-form.cc-field.email-removed": "{{email}} a fost eliminată", - "new-request-form.cc-field.emails-added": "{{emails}} au fost adăugate", - "new-request-form.cc-field.invalid-email": "Adresă de e-mail nevalidă", - "new-request-form.close-label": "Închidere", - "new-request-form.credit-card-digits-hint": "(Ultimele 4 cifre)", - "new-request-form.dropdown.empty-option": "Selectați o opțiune", - "new-request-form.lookup-field.loading-options": "Se încarcă articolele...", - "new-request-form.lookup-field.no-matches-found": "Nu s-au găsit corespondențe", - "new-request-form.lookup-field.placeholder": "Căutare {{label}}", - "new-request-form.parent-request-link": "Continuarea comunicării pentru solicitarea {{parentId}}", - "new-request-form.required-fields-info": "Câmpurile marcate cu un asterisc (*) sunt obligatorii.", - "new-request-form.submit": "Trimitere", - "new-request-form.suggested-articles": "Articole sugerate" -}; - -var ro$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: ro -}); - -var ru = { - "new-request-form.answer-bot-modal.footer-content": "Если да, мы можем закрыть запрос {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Есть ли в этой статье ответ на вопрос?", - "new-request-form.answer-bot-modal.mark-irrelevant": "Нет, мне нужна помощь", - "new-request-form.answer-bot-modal.request-closed": "Превосходно. Запрос закрыт.", - "new-request-form.answer-bot-modal.request-submitted": "Ваш запрос отправлен", - "new-request-form.answer-bot-modal.solve-error": "Ошибка при закрытии запроса", - "new-request-form.answer-bot-modal.solve-request": "Да, закрыть мой запрос", - "new-request-form.answer-bot-modal.title": "Пока вы ожидаете, есть ли в какой-то из этих статей ответ на ваш вопрос?", - "new-request-form.answer-bot-modal.view-article": "Просмотреть статью", - "new-request-form.attachments.choose-file-label": "Выберите файл или перетащите его сюда", - "new-request-form.attachments.drop-files-label": "Перетащите файлы сюда", - "new-request-form.attachments.remove-file": "Удалить файл", - "new-request-form.attachments.stop-upload": "Остановить выкладывание", - "new-request-form.attachments.upload-error-description": "Ошибка при выкладывании {{fileName}}. Повторите попытку или выложите другой файл.", - "new-request-form.attachments.upload-error-title": "Ошибка выкладывания", - "new-request-form.attachments.uploading": "Выкладывание {{fileName}}", - "new-request-form.cc-field.container-label": "Выбранные письма для копии", - "new-request-form.cc-field.email-added": "Адрес {{email}} добавлен", - "new-request-form.cc-field.email-label": "{{email}} — нажмите клавишу Backspace для удаления", - "new-request-form.cc-field.email-removed": "Адрес {{email}} удален", - "new-request-form.cc-field.emails-added": "Добавлены адреса {{emails}}", - "new-request-form.cc-field.invalid-email": "Недействительный адрес электронной почты", - "new-request-form.close-label": "Закрыть", - "new-request-form.credit-card-digits-hint": "(последние 4 цифры)", - "new-request-form.dropdown.empty-option": "Выберите вариант", - "new-request-form.lookup-field.loading-options": "Загрузка элементов...", - "new-request-form.lookup-field.no-matches-found": "Соответствия не найдены", - "new-request-form.lookup-field.placeholder": "Поиск: {{label}}", - "new-request-form.parent-request-link": "Дополнение к запросу {{parentId}}", - "new-request-form.required-fields-info": "Помеченные звездочкой (*) поля обязательны для заполнения.", - "new-request-form.submit": "Отправить", - "new-request-form.suggested-articles": "Предложенные статьи" -}; - -var ru$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: ru -}); - -var sk = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var sk$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: sk -}); - -var sl = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var sl$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: sl -}); - -var sq = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var sq$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: sq -}); - -var srMe = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var srMe$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: srMe -}); - -var sr = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var sr$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: sr -}); - -var sv = { - "new-request-form.answer-bot-modal.footer-content": "Om den gör det kan vi stänga din förfrågan {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Besvarar denna artikel din fråga?", - "new-request-form.answer-bot-modal.mark-irrelevant": "Nej, jag behöver hjälp", - "new-request-form.answer-bot-modal.request-closed": "Utmärkt. Din förfrågan har stängts.", - "new-request-form.answer-bot-modal.request-submitted": "Din förfrågan har skickats in", - "new-request-form.answer-bot-modal.solve-error": "Ett fel inträffade när din förfrågan stängdes", - "new-request-form.answer-bot-modal.solve-request": "Ja, stäng min förfrågan", - "new-request-form.answer-bot-modal.title": "Medan du väntar, besvarar någon av dessa artiklar din fråga?", - "new-request-form.answer-bot-modal.view-article": "Visa artikel", - "new-request-form.attachments.choose-file-label": "Välj en fil eller dra och släpp den här", - "new-request-form.attachments.drop-files-label": "Släpp filer här", - "new-request-form.attachments.remove-file": "Ta bort fil", - "new-request-form.attachments.stop-upload": "Stoppa uppladdning", - "new-request-form.attachments.upload-error-description": "Ett fel inträffade vid uppladdning av {{fileName}}. Försök igen eller ladda upp en annan fil.", - "new-request-form.attachments.upload-error-title": "Uppladdningsfel", - "new-request-form.attachments.uploading": "Laddar upp {{fileName}}", - "new-request-form.cc-field.container-label": "Valda kopierade e-postmeddelanden", - "new-request-form.cc-field.email-added": "{{email}} har lagts till", - "new-request-form.cc-field.email-label": "{{email}} – Tryck på backstegtangenten för att ta bort", - "new-request-form.cc-field.email-removed": "{{email}} har tagits bort", - "new-request-form.cc-field.emails-added": "{{emails}} har lagts till", - "new-request-form.cc-field.invalid-email": "Ogiltig e-postadress", - "new-request-form.close-label": "Stäng", - "new-request-form.credit-card-digits-hint": "(4 sista siffror)", - "new-request-form.dropdown.empty-option": "Välj ett alternativ", - "new-request-form.lookup-field.loading-options": "Läser in objekt...", - "new-request-form.lookup-field.no-matches-found": "Inga träffar hittades", - "new-request-form.lookup-field.placeholder": "Sök {{label}}", - "new-request-form.parent-request-link": "Uppföljning av förfrågan {{parentId}}", - "new-request-form.required-fields-info": "Fält markerade med en asterisk (*) är obligatoriska.", - "new-request-form.submit": "Skicka in", - "new-request-form.suggested-articles": "Föreslagna artiklar" -}; - -var sv$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: sv -}); - -var th = { - "new-request-form.answer-bot-modal.footer-content": "หากใช่ เราจะสามารถปิดคำร้องขอ {{requestId}} ของคุณได้", - "new-request-form.answer-bot-modal.footer-title": "บทความนี้ได้ตอบข้อสงสัยของคุณหรือไม่", - "new-request-form.answer-bot-modal.mark-irrelevant": "ไม่ ฉันต้องการความช่วยเหลือ", - "new-request-form.answer-bot-modal.request-closed": "ยอดเลย คำร้องขอของคุณปิดลงแล้ว", - "new-request-form.answer-bot-modal.request-submitted": "ส่งคำร้องขอของคุณเรียบร้อยแล้ว", - "new-request-form.answer-bot-modal.solve-error": "เกิดข้อผิดพลาดในการปิดคําร้องขอของคุณ", - "new-request-form.answer-bot-modal.solve-request": "ใช่ ปิดคำร้องขอของฉัน", - "new-request-form.answer-bot-modal.title": "ขณะที่กำลังรอ บทความเหล่านี้ตอบข้อสงสัยของคุณหรือไม่", - "new-request-form.answer-bot-modal.view-article": "ดูบทความ", - "new-request-form.attachments.choose-file-label": "เลือกไฟล์หรือลากแล้ววางที่นี่", - "new-request-form.attachments.drop-files-label": "วางไฟล์ที่นี่", - "new-request-form.attachments.remove-file": "ลบไฟล์ออก", - "new-request-form.attachments.stop-upload": "หยุดการอัปโหลด", - "new-request-form.attachments.upload-error-description": "เกิดข้อผิดพลาดในการอัปโหลด {{fileName}} ลองอีกครั้งหรืออัปโหลดไฟล์อื่น", - "new-request-form.attachments.upload-error-title": "เกิดข้อผิดพลาดในการอัปโหลด", - "new-request-form.attachments.uploading": "กำลังอัปโหลด {{fileName}}", - "new-request-form.cc-field.container-label": "อีเมล สำเนาถึง ที่เลือก", - "new-request-form.cc-field.email-added": "{{email}} ถูกเพิ่มแล้ว", - "new-request-form.cc-field.email-label": "{{email}} - กด Backspace เพื่อลบ", - "new-request-form.cc-field.email-removed": "{{email}} ถูกลบออกแล้ว", - "new-request-form.cc-field.emails-added": "{{emails}} ถูกเพิ่มแล้ว", - "new-request-form.cc-field.invalid-email": "ที่อยู่อีเมลไม่ถูกต้อง", - "new-request-form.close-label": "ปิด", - "new-request-form.credit-card-digits-hint": "(เลข 4 หลักสุดท้าย)", - "new-request-form.dropdown.empty-option": "เลือกตัวเลือก", - "new-request-form.lookup-field.loading-options": "กำลังโหลดรายการ...", - "new-request-form.lookup-field.no-matches-found": "ไม่พบรายการที่ตรงกัน", - "new-request-form.lookup-field.placeholder": "ค้นหา {{label}}", - "new-request-form.parent-request-link": "ติดตามคําร้องขอ {{parentId}}", - "new-request-form.required-fields-info": "ต้องกรองช่องที่มีเครื่องหมายดอกจัน (*)", - "new-request-form.submit": "ส่ง", - "new-request-form.suggested-articles": "บทความที่แนะนำ" -}; - -var th$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: th -}); - -var tr = { - "new-request-form.answer-bot-modal.footer-content": "Yanıtlıyorsa, bu son talebinizi kapatabiliriz {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Bu makale sorunuzu yanıtlıyor mu?", - "new-request-form.answer-bot-modal.mark-irrelevant": "Hayır, yardıma ihtiyacım var", - "new-request-form.answer-bot-modal.request-closed": "Güzel! Talebiniz kapatıldı.", - "new-request-form.answer-bot-modal.request-submitted": "Talebiniz başarıyla gönderildi", - "new-request-form.answer-bot-modal.solve-error": "Talebiniz kapatılırken bir hata oluştu", - "new-request-form.answer-bot-modal.solve-request": "Evet, talebimi kapat", - "new-request-form.answer-bot-modal.title": "Siz beklerken soralım: Bu makalelerden herhangi biri sorunuza yanıtladı mı?", - "new-request-form.answer-bot-modal.view-article": "Makaleyi görüntüle", - "new-request-form.attachments.choose-file-label": "Bir dosya seçin veya buraya sürükleyip bırakın", - "new-request-form.attachments.drop-files-label": "Dosyaları buraya bırakın", - "new-request-form.attachments.remove-file": "Dosyayı kaldır", - "new-request-form.attachments.stop-upload": "Karşıya yüklemeyi durdur", - "new-request-form.attachments.upload-error-description": "{{fileName}} karşıya yüklenirken bir hata oluştu. Yeniden deneyin veya başka bir dosya yükleyin.", - "new-request-form.attachments.upload-error-title": "Karşıya yükleme hatası", - "new-request-form.attachments.uploading": "{{fileName}} karşıya yükleniyor", - "new-request-form.cc-field.container-label": "Seçilen bilgi e-postası", - "new-request-form.cc-field.email-added": "{{email}} eklendi", - "new-request-form.cc-field.email-label": "{{email}} - Kaldırmak için Geri tuşuna basın", - "new-request-form.cc-field.email-removed": "{{email}} kaldırıldı", - "new-request-form.cc-field.emails-added": "{{emails}} eklendi", - "new-request-form.cc-field.invalid-email": "Geçersiz e-posta adresi", - "new-request-form.close-label": "Kapat", - "new-request-form.credit-card-digits-hint": "(Son 4 hane)", - "new-request-form.dropdown.empty-option": "Bir seçim yapın", - "new-request-form.lookup-field.loading-options": "Öğeler yükleniyor...", - "new-request-form.lookup-field.no-matches-found": "Eşleşme bulunamadı", - "new-request-form.lookup-field.placeholder": "Ara {{label}}", - "new-request-form.parent-request-link": "{{parentId}} talep etmek için ekleyin", - "new-request-form.required-fields-info": "Yıldız işareti (*) ile işaretlenen alanların doldurulması zorunludur.", - "new-request-form.submit": "Gönder", - "new-request-form.suggested-articles": "Önerilen makaleler" -}; - -var tr$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: tr -}); - -var uk = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var uk$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: uk -}); - -var ur = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var ur$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: ur -}); - -var uz = { - "new-request-form.answer-bot-modal.footer-content": "If it does, we can close your recent request {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Does this article answer your question?", - "new-request-form.answer-bot-modal.mark-irrelevant": "No, I need help", - "new-request-form.answer-bot-modal.request-closed": "Nice. Your request has been closed.", - "new-request-form.answer-bot-modal.request-submitted": "Your request was successfully submitted", - "new-request-form.answer-bot-modal.solve-error": "There was an error closing your request", - "new-request-form.answer-bot-modal.solve-request": "Yes, close my request", - "new-request-form.answer-bot-modal.title": "While you wait, do any of these articles answer your question?", - "new-request-form.answer-bot-modal.view-article": "View article", - "new-request-form.attachments.choose-file-label": "Choose a file or drag and drop here", - "new-request-form.attachments.drop-files-label": "Drop files here", - "new-request-form.attachments.remove-file": "Remove file", - "new-request-form.attachments.stop-upload": "Stop upload", - "new-request-form.attachments.upload-error-description": "There was an error uploading {{fileName}}. Try again or upload another file.", - "new-request-form.attachments.upload-error-title": "Upload error", - "new-request-form.attachments.uploading": "Uploading {{fileName}}", - "new-request-form.cc-field.container-label": "Selected CC emails", - "new-request-form.cc-field.email-added": "{{email}} has been added", - "new-request-form.cc-field.email-label": "{{email}} - Press Backspace to remove", - "new-request-form.cc-field.email-removed": "{{email}} has been removed", - "new-request-form.cc-field.emails-added": "{{emails}} have been added", - "new-request-form.cc-field.invalid-email": "Invalid email address", - "new-request-form.close-label": "Close", - "new-request-form.credit-card-digits-hint": "(Last 4 digits)", - "new-request-form.dropdown.empty-option": "Select an option", - "new-request-form.lookup-field.loading-options": "Loading items...", - "new-request-form.lookup-field.no-matches-found": "No matches found", - "new-request-form.lookup-field.placeholder": "Search {{label}}", - "new-request-form.parent-request-link": "Follow-up to request {{parentId}}", - "new-request-form.required-fields-info": "Fields marked with an asterisk (*) are required.", - "new-request-form.submit": "Submit", - "new-request-form.suggested-articles": "Suggested articles" -}; - -var uz$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: uz -}); - -var vi = { - "new-request-form.answer-bot-modal.footer-content": "Nếu có, chúng tôi có thể đóng yêu cầu hiện tại {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "Bài viết này có giải đáp được câu hỏi của bạn không?", - "new-request-form.answer-bot-modal.mark-irrelevant": "Không, tôi cần trợ giúp", - "new-request-form.answer-bot-modal.request-closed": "Tuyệt. Yêu cầu đã được đóng lại.", - "new-request-form.answer-bot-modal.request-submitted": "Yêu cầu của bạn đã được gửi thành công", - "new-request-form.answer-bot-modal.solve-error": "Đã xảy ra lỗi khi đóng yêu cầu của bạn", - "new-request-form.answer-bot-modal.solve-request": "Có, đóng yêu cầu của tôi", - "new-request-form.answer-bot-modal.title": "Trong thời gian chờ đợi, có bài viết nào trong số các bài viết này giải đáp được thắc mắc của bạn không?", - "new-request-form.answer-bot-modal.view-article": "Xem bài viết", - "new-request-form.attachments.choose-file-label": "Chọn một tập tin hoặc kéo và thả ở đây", - "new-request-form.attachments.drop-files-label": "Thả tập tin vào đây", - "new-request-form.attachments.remove-file": "Xóa tập tin", - "new-request-form.attachments.stop-upload": "Dừng tải lên", - "new-request-form.attachments.upload-error-description": "Đã xảy ra lỗi khi tải lên {{fileName}}. Hãy thử lại hoặc tải lên một tệp khác.", - "new-request-form.attachments.upload-error-title": "Lỗi tải lên", - "new-request-form.attachments.uploading": "Đang tải lên {{fileName}}", - "new-request-form.cc-field.container-label": "Email CC đã chọn", - "new-request-form.cc-field.email-added": "{{email}} đã được thêm", - "new-request-form.cc-field.email-label": "{{email}} - Nhấn Backspace để loại bỏ", - "new-request-form.cc-field.email-removed": "{{email}} đã bị loại bỏ", - "new-request-form.cc-field.emails-added": "{{emails}} đã được thêm", - "new-request-form.cc-field.invalid-email": "Địa chỉ email không hợp lệ", - "new-request-form.close-label": "Đóng", - "new-request-form.credit-card-digits-hint": "(4 chữ số cuối)", - "new-request-form.dropdown.empty-option": "Chọn một tùy chọn", - "new-request-form.lookup-field.loading-options": "Đang tải các mục...", - "new-request-form.lookup-field.no-matches-found": "Không tìm thấy kết quả phù hợp", - "new-request-form.lookup-field.placeholder": "Tìm kiếm {{label}}", - "new-request-form.parent-request-link": "Theo dõi để yêu cầu {{parentId}}", - "new-request-form.required-fields-info": "Các trường đánh dấu sao (*) là bắt buộc.", - "new-request-form.submit": "Gửi", - "new-request-form.suggested-articles": "Bài viết được đề xuất" -}; - -var vi$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: vi -}); - -var zhCn = { - "new-request-form.answer-bot-modal.footer-content": "如果是的话,我们将关闭最近的请求 {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "此文章解答该问题了吗?", - "new-request-form.answer-bot-modal.mark-irrelevant": "没有,我需要帮助", - "new-request-form.answer-bot-modal.request-closed": "很好。此请求已关闭。", - "new-request-form.answer-bot-modal.request-submitted": "您的请求已成功提交", - "new-request-form.answer-bot-modal.solve-error": "关闭您的请求时出错", - "new-request-form.answer-bot-modal.solve-request": "解答了,关闭我的请求", - "new-request-form.answer-bot-modal.title": "在等待的同时,看看这些文章中有没有可以解答该疑问的?", - "new-request-form.answer-bot-modal.view-article": "查看文章", - "new-request-form.attachments.choose-file-label": "选择文件或拖放到此处", - "new-request-form.attachments.drop-files-label": "将文件放在此处", - "new-request-form.attachments.remove-file": "移除文件", - "new-request-form.attachments.stop-upload": "停止上传", - "new-request-form.attachments.upload-error-description": "上传 {{fileName}} 时出错。请重试或上传另一个文件。", - "new-request-form.attachments.upload-error-title": "上传错误", - "new-request-form.attachments.uploading": "上传 {{fileName}}", - "new-request-form.cc-field.container-label": "选定的抄送电邮", - "new-request-form.cc-field.email-added": "已添加 {{email}}", - "new-request-form.cc-field.email-label": "{{email}} - 按 Backspace 键移除", - "new-request-form.cc-field.email-removed": "已移除 {{email}}", - "new-request-form.cc-field.emails-added": "已添加 {{emails}}", - "new-request-form.cc-field.invalid-email": "无效电邮地址", - "new-request-form.close-label": "关闭", - "new-request-form.credit-card-digits-hint": "(最后 4 位数)", - "new-request-form.dropdown.empty-option": "选择一个选项", - "new-request-form.lookup-field.loading-options": "正在加载项目…", - "new-request-form.lookup-field.no-matches-found": "未找到匹配项", - "new-request-form.lookup-field.placeholder": "搜索 {{label}}", - "new-request-form.parent-request-link": "跟进请求 {{parentId}}", - "new-request-form.required-fields-info": "标有星号 (*) 的字段是必填字段。", - "new-request-form.submit": "提交", - "new-request-form.suggested-articles": "推荐文章" -}; - -var zhCn$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: zhCn -}); - -var zhTw = { - "new-request-form.answer-bot-modal.footer-content": "若是,我們可關閉近期的請求 {{requestId}}", - "new-request-form.answer-bot-modal.footer-title": "此文章是否已回答該問題?", - "new-request-form.answer-bot-modal.mark-irrelevant": "不,我仍需要幫助", - "new-request-form.answer-bot-modal.request-closed": "太好了。此請求已關閉。", - "new-request-form.answer-bot-modal.request-submitted": "已成功提交請求", - "new-request-form.answer-bot-modal.solve-error": "關閉您的請求時發生錯誤", - "new-request-form.answer-bot-modal.solve-request": "是,關閉我的請求", - "new-request-form.answer-bot-modal.title": "在等待時,這些文章是否已回答該疑問?", - "new-request-form.answer-bot-modal.view-article": "檢視文章", - "new-request-form.attachments.choose-file-label": "選擇檔案,或將檔案拖放到這裡", - "new-request-form.attachments.drop-files-label": "將檔案放置在此處", - "new-request-form.attachments.remove-file": "移除檔案", - "new-request-form.attachments.stop-upload": "停止上傳", - "new-request-form.attachments.upload-error-description": "上傳 {{fileName}} 時發生錯誤。請再試一次,或上傳另一個檔案。", - "new-request-form.attachments.upload-error-title": "上傳錯誤", - "new-request-form.attachments.uploading": "正在上傳 {{fileName}}", - "new-request-form.cc-field.container-label": "已選取副本電子郵件地址", - "new-request-form.cc-field.email-added": "已新增 {{email}}", - "new-request-form.cc-field.email-label": "{{email}}:按 Backspace 鍵移除", - "new-request-form.cc-field.email-removed": "已移除 {{email}}", - "new-request-form.cc-field.emails-added": "已新增 {{emails}}", - "new-request-form.cc-field.invalid-email": "無效電子郵件地址", - "new-request-form.close-label": "關閉", - "new-request-form.credit-card-digits-hint": "(最後 4 位數)", - "new-request-form.dropdown.empty-option": "選取一個選項", - "new-request-form.lookup-field.loading-options": "正在載入項目…", - "new-request-form.lookup-field.no-matches-found": "找不到符合項目", - "new-request-form.lookup-field.placeholder": "搜尋{{label}}", - "new-request-form.parent-request-link": "請求 {{parentId}} 的後續跟進", - "new-request-form.required-fields-info": "標有星號 (*) 的欄位為必填欄位。", - "new-request-form.submit": "提交", - "new-request-form.suggested-articles": "推薦文章" -}; - -var zhTw$1 = /*#__PURE__*/Object.freeze({ - __proto__: null, - default: zhTw -}); - -export { ka$1 as $, enXKeys$1 as A, enXObsolete$1 as B, enXPseudo$1 as C, enXTest$1 as D, es419$1 as E, esEs$1 as F, es$1 as G, et$1 as H, eu$1 as I, faAf$1 as J, fa$1 as K, fi$1 as L, fil$1 as M, fo$1 as N, frCa$1 as O, fr$1 as P, ga$1 as Q, he$1 as R, hi$1 as S, hr$1 as T, hu$1 as U, hy$1 as V, id$1 as W, is$1 as X, itCh$1 as Y, it$1 as Z, ja$1 as _, af$1 as a, kk$1 as a0, klDk$1 as a1, ko$1 as a2, ku$1 as a3, lt$1 as a4, lv$1 as a5, mk$1 as a6, mn$1 as a7, ms$1 as a8, mt$1 as a9, my$1 as aa, nlBe$1 as ab, nl$1 as ac, no$1 as ad, pl$1 as ae, ptBr$1 as af, pt$1 as ag, ro$1 as ah, ru$1 as ai, sk$1 as aj, sl$1 as ak, sq$1 as al, srMe$1 as am, sr$1 as an, sv$1 as ao, th$1 as ap, tr$1 as aq, uk$1 as ar, ur$1 as as, uz$1 as at, vi$1 as au, zhCn$1 as av, zhTw$1 as aw, arXPseudo$1 as b, ar$1 as c, az$1 as d, be$1 as e, bg$1 as f, bn$1 as g, bs$1 as h, ca$1 as i, cs$1 as j, cy$1 as k, da$1 as l, deDe$1 as m, deXInformal$1 as n, de$1 as o, el$1 as p, en001$1 as q, en150$1 as r, enAu$1 as s, enCa$1 as t, enGb$1 as u, enMy$1 as v, enPh$1 as w, enSe$1 as x, enUs$1 as y, enXDev$1 as z }; +var e=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),r=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"[ผู้龍ḬḬϝ ḭḭṭ ḍṓṓḛḛṡ, ẁḛḛ ͼααṇ ͼḽṓṓṡḛḛ ẏẏṓṓṵṵṛ ṛḛḛͼḛḛṇṭ ṛḛḛʠṵṵḛḛṡṭ {{requestId}}龍ผู้]","new-request-form.answer-bot-modal.footer-title":"[ผู้龍Ḍṓṓḛḛṡ ṭḥḭḭṡ ααṛṭḭḭͼḽḛḛ ααṇṡẁḛḛṛ ẏẏṓṓṵṵṛ ʠṵṵḛḛṡṭḭḭṓṓṇ?龍ผู้]","new-request-form.answer-bot-modal.mark-irrelevant":"[ผู้龍Ṅṓṓ, ḬḬ ṇḛḛḛḛḍ ḥḛḛḽṗ龍ผู้]","new-request-form.answer-bot-modal.request-closed":"[ผู้龍Ṅḭḭͼḛḛ. ŶŶṓṓṵṵṛ ṛḛḛʠṵṵḛḛṡṭ ḥααṡ ḅḛḛḛḛṇ ͼḽṓṓṡḛḛḍ.龍ผู้]","new-request-form.answer-bot-modal.request-submitted":"[ผู้龍ŶŶṓṓṵṵṛ ṛḛḛʠṵṵḛḛṡṭ ẁααṡ ṡṵṵͼͼḛḛṡṡϝṵṵḽḽẏẏ ṡṵṵḅṃḭḭṭṭḛḛḍ龍ผู้]","new-request-form.answer-bot-modal.solve-error":"[ผู้龍Ṫḥḛḛṛḛḛ ẁααṡ ααṇ ḛḛṛṛṓṓṛ ͼḽṓṓṡḭḭṇḡ ẏẏṓṓṵṵṛ ṛḛḛʠṵṵḛḛṡṭ龍ผู้]","new-request-form.answer-bot-modal.solve-request":"[ผู้龍ŶŶḛḛṡ, ͼḽṓṓṡḛḛ ṃẏẏ ṛḛḛʠṵṵḛḛṡṭ龍ผู้]","new-request-form.answer-bot-modal.title":"[ผู้龍Ŵḥḭḭḽḛḛ ẏẏṓṓṵṵ ẁααḭḭṭ, ḍṓṓ ααṇẏẏ ṓṓϝ ṭḥḛḛṡḛḛ ααṛṭḭḭͼḽḛḛṡ ααṇṡẁḛḛṛ ẏẏṓṓṵṵṛ ʠṵṵḛḛṡṭḭḭṓṓṇ?龍ผู้]","new-request-form.answer-bot-modal.view-article":"[ผู้龍Ṿḭḭḛḛẁ ααṛṭḭḭͼḽḛḛ龍ผู้]","new-request-form.attachments.choose-file-label":"[ผู้龍Ḉḥṓṓṓṓṡḛḛ αα ϝḭḭḽḛḛ ṓṓṛ ḍṛααḡ ααṇḍ ḍṛṓṓṗ ḥḛḛṛḛḛ龍ผู้]","new-request-form.attachments.drop-files-label":"[ผู้龍Ḍṛṓṓṗ ϝḭḭḽḛḛṡ ḥḛḛṛḛḛ龍ผู้]","new-request-form.attachments.remove-file":"[ผู้龍Ṛḛḛṃṓṓṽḛḛ ϝḭḭḽḛḛ龍ผู้]","new-request-form.attachments.stop-upload":"[ผู้龍Ṣṭṓṓṗ ṵṵṗḽṓṓααḍ龍ผู้]","new-request-form.attachments.upload-error-description":"[ผู้龍Ṫḥḛḛṛḛḛ ẁααṡ ααṇ ḛḛṛṛṓṓṛ ṵṵṗḽṓṓααḍḭḭṇḡ {{fileName}}. Ṫṛẏẏ ααḡααḭḭṇ ṓṓṛ ṵṵṗḽṓṓααḍ ααṇṓṓṭḥḛḛṛ ϝḭḭḽḛḛ.龍ผู้]","new-request-form.attachments.upload-error-title":"[ผู้龍ṲṲṗḽṓṓααḍ ḛḛṛṛṓṓṛ龍ผู้]","new-request-form.attachments.uploading":"[ผู้龍ṲṲṗḽṓṓααḍḭḭṇḡ {{fileName}}龍ผู้]","new-request-form.cc-field.container-label":"[ผู้龍Ṣḛḛḽḛḛͼṭḛḛḍ ḈḈ ḛḛṃααḭḭḽṡ龍ผู้]","new-request-form.cc-field.email-added":"[ผู้龍{{email}} ḥααṡ ḅḛḛḛḛṇ ααḍḍḛḛḍ龍ผู้]","new-request-form.cc-field.email-label":"[ผู้龍{{email}} - Ṕṛḛḛṡṡ Ḃααͼḳṡṗααͼḛḛ ṭṓṓ ṛḛḛṃṓṓṽḛḛ龍ผู้]","new-request-form.cc-field.email-removed":"[ผู้龍{{email}} ḥααṡ ḅḛḛḛḛṇ ṛḛḛṃṓṓṽḛḛḍ龍ผู้]","new-request-form.cc-field.emails-added":"[ผู้龍{{emails}} ḥααṽḛḛ ḅḛḛḛḛṇ ααḍḍḛḛḍ龍ผู้]","new-request-form.cc-field.invalid-email":"[ผู้龍ḬḬṇṽααḽḭḭḍ ḛḛṃααḭḭḽ ααḍḍṛḛḛṡṡ龍ผู้]","new-request-form.close-label":"[ผู้龍Ḉḽṓṓṡḛḛ龍ผู้]","new-request-form.credit-card-digits-hint":"[ผู้龍(Ḻααṡṭ 4 ḍḭḭḡḭḭṭṡ)龍ผู้]","new-request-form.dropdown.empty-option":"[ผู้龍Ṣḛḛḽḛḛͼṭ ααṇ ṓṓṗṭḭḭṓṓṇ龍ผู้]","new-request-form.lookup-field.loading-options":"[ผู้龍Ḻṓṓααḍḭḭṇḡ ḭḭṭḛḛṃṡ...龍ผู้]","new-request-form.lookup-field.no-matches-found":"[ผู้龍Ṅṓṓ ṃααṭͼḥḛḛṡ ϝṓṓṵṵṇḍ龍ผู้]","new-request-form.lookup-field.placeholder":"[ผู้龍Ṣḛḛααṛͼḥ {{label}}龍ผู้]","new-request-form.parent-request-link":"[ผู้龍Ḟṓṓḽḽṓṓẁ-ṵṵṗ ṭṓṓ ṛḛḛʠṵṵḛḛṡṭ {{parentId}}龍ผู้]","new-request-form.required-fields-info":"[ผู้龍Ḟḭḭḛḛḽḍṡ ṃααṛḳḛḛḍ ẁḭḭṭḥ ααṇ ααṡṭḛḛṛḭḭṡḳ (*) ααṛḛḛ ṛḛḛʠṵṵḭḭṛḛḛḍ.龍ผู้]","new-request-form.submit":"[ผู้龍Ṣṵṵḅṃḭḭṭ龍ผู้]","new-request-form.suggested-articles":"[ผู้龍Ṣṵṵḡḡḛḛṡṭḛḛḍ ααṛṭḭḭͼḽḛḛṡ龍ผู้]"}}),o=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"في هذه الحالة يمكننا إغلاق الطلب الأخير {{requestId}}","new-request-form.answer-bot-modal.footer-title":"هل يجيب هذا المقال عن سؤالك؟","new-request-form.answer-bot-modal.mark-irrelevant":"كلا، أحتاج إلى مساعدة","new-request-form.answer-bot-modal.request-closed":"رائع. تم إغلاق طلبك.","new-request-form.answer-bot-modal.request-submitted":"تم إرسال طلبك بنجاح","new-request-form.answer-bot-modal.solve-error":"حدث خطأ أثناء إغلاق طلبك","new-request-form.answer-bot-modal.solve-request":"نعم، أغلق هذا الطلب","new-request-form.answer-bot-modal.title":"بينما تنتظر الرد، هل يجيب أي من المقالات التالية عن سؤالك؟","new-request-form.answer-bot-modal.view-article":"عرض المقال","new-request-form.attachments.choose-file-label":"اختر ملفًا أو قم بالسحب والإسقاط هنا","new-request-form.attachments.drop-files-label":"أسقِط الملفات هنا","new-request-form.attachments.remove-file":"إزالة الملف","new-request-form.attachments.stop-upload":"إيقاف التحميل","new-request-form.attachments.upload-error-description":"حدث خطأ أثناء تحميل {{fileName}}. حاول مرة أخرى أو قم بتحميل ملف آخر.","new-request-form.attachments.upload-error-title":"خطأ في التحميل","new-request-form.attachments.uploading":"جارٍ تحميل {{fileName}}","new-request-form.cc-field.container-label":"عناوين البريد الإلكتروني المحددة في خانة النسخة","new-request-form.cc-field.email-added":"تمت إضافة {{email}}","new-request-form.cc-field.email-label":"{{email}} - اضغط على Backspace للإزالة","new-request-form.cc-field.email-removed":"تمت إزالة {{email}}","new-request-form.cc-field.emails-added":"تمت إضافة {{emails}}","new-request-form.cc-field.invalid-email":"عنوان بريد إلكتروني غير صالح","new-request-form.close-label":"إغلاق","new-request-form.credit-card-digits-hint":"(آخر 4 أرقام)","new-request-form.dropdown.empty-option":"حدّد خيارًا","new-request-form.lookup-field.loading-options":"جارٍ تحميل العناصر...","new-request-form.lookup-field.no-matches-found":"لم يتم العثور على نتائج مطابقة","new-request-form.lookup-field.placeholder":"بحث عن {{label}}","new-request-form.parent-request-link":"متابعة طلب {{parentId}}","new-request-form.required-fields-info":"الحقول التي عليها علامة النجمة (*) مطلوبة.","new-request-form.submit":"إرسال","new-request-form.suggested-articles":"مقالات مقترحة"}}),t=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),a=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"Если да, мы можем закрыть запрос {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Есть ли в этой статье ответ на вопрос?","new-request-form.answer-bot-modal.mark-irrelevant":"Нет, мне нужна помощь","new-request-form.answer-bot-modal.request-closed":"Превосходно. Запрос закрыт.","new-request-form.answer-bot-modal.request-submitted":"Ваш запрос отправлен","new-request-form.answer-bot-modal.solve-error":"Ошибка при закрытии запроса","new-request-form.answer-bot-modal.solve-request":"Да, закрыть мой запрос","new-request-form.answer-bot-modal.title":"Пока вы ожидаете, есть ли в какой-то из этих статей ответ на ваш вопрос?","new-request-form.answer-bot-modal.view-article":"Просмотреть статью","new-request-form.attachments.choose-file-label":"Выберите файл или перетащите его сюда","new-request-form.attachments.drop-files-label":"Перетащите файлы сюда","new-request-form.attachments.remove-file":"Удалить файл","new-request-form.attachments.stop-upload":"Остановить выкладывание","new-request-form.attachments.upload-error-description":"Ошибка при выкладывании {{fileName}}. Повторите попытку или выложите другой файл.","new-request-form.attachments.upload-error-title":"Ошибка выкладывания","new-request-form.attachments.uploading":"Выкладывание {{fileName}}","new-request-form.cc-field.container-label":"Выбранные письма для копии","new-request-form.cc-field.email-added":"Адрес {{email}} добавлен","new-request-form.cc-field.email-label":"{{email}} — нажмите клавишу Backspace для удаления","new-request-form.cc-field.email-removed":"Адрес {{email}} удален","new-request-form.cc-field.emails-added":"Добавлены адреса {{emails}}","new-request-form.cc-field.invalid-email":"Недействительный адрес электронной почты","new-request-form.close-label":"Закрыть","new-request-form.credit-card-digits-hint":"(последние 4 цифры)","new-request-form.dropdown.empty-option":"Выберите вариант","new-request-form.lookup-field.loading-options":"Загрузка элементов...","new-request-form.lookup-field.no-matches-found":"Соответствия не найдены","new-request-form.lookup-field.placeholder":"Поиск: {{label}}","new-request-form.parent-request-link":"Дополнение к запросу {{parentId}}","new-request-form.required-fields-info":"Помеченные звездочкой (*) поля обязательны для заполнения.","new-request-form.submit":"Отправить","new-request-form.suggested-articles":"Предложенные статьи"}}),s=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"Ако отговаря, можем да затворим заявката {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Отговори ли тази статия на въпроса ви?","new-request-form.answer-bot-modal.mark-irrelevant":"Не, трябва ми помощ","new-request-form.answer-bot-modal.request-closed":"Чудесно. Заявката е затворена.","new-request-form.answer-bot-modal.request-submitted":"Заявката ви беше подадена успешно","new-request-form.answer-bot-modal.solve-error":"Възникна грешка при затваряне на вашата заявка","new-request-form.answer-bot-modal.solve-request":"Да, затворете заявката ми","new-request-form.answer-bot-modal.title":"Докато чакате, вижте дали някоя от тези статии отговаря на въпроса ви.","new-request-form.answer-bot-modal.view-article":"Преглед на статията","new-request-form.attachments.choose-file-label":"Изберете файл или го плъзнете и пуснете тук","new-request-form.attachments.drop-files-label":"Пуснете файловете тук","new-request-form.attachments.remove-file":"Премахване на файл","new-request-form.attachments.stop-upload":"Спиране на качването","new-request-form.attachments.upload-error-description":"Възникна грешка при качването на {{fileName}}. Опитайте отново или качете друг файл.","new-request-form.attachments.upload-error-title":"Грешка при качването","new-request-form.attachments.uploading":"Качва се {{fileName}}","new-request-form.cc-field.container-label":"Избрани имейли за копие","new-request-form.cc-field.email-added":"Имейл адресът {{email}} е добавен","new-request-form.cc-field.email-label":"{{email}} – натиснете „Backspace“ за премахване","new-request-form.cc-field.email-removed":"Имейл адресът {{email}} е премахнат","new-request-form.cc-field.emails-added":"Имейл адресите {{emails}} са добавени","new-request-form.cc-field.invalid-email":"Невалиден имейл адрес","new-request-form.close-label":"Затваряне","new-request-form.credit-card-digits-hint":"(последните 4 цифри)","new-request-form.dropdown.empty-option":"Изберете опция","new-request-form.lookup-field.loading-options":"Зареждане на елементите…","new-request-form.lookup-field.no-matches-found":"Няма открити съвпадения","new-request-form.lookup-field.placeholder":"Търсене на {{label}}","new-request-form.parent-request-link":"Последващи действия във връзка със заявката {{parentId}}","new-request-form.required-fields-info":"Полетата, отбелязани със звездичка (*), са задължителни.","new-request-form.submit":"Подаване","new-request-form.suggested-articles":"Предложени статии"}}),n=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),l=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),i=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"De ser así, podemos cerrar la reciente solicitud {{requestId}}","new-request-form.answer-bot-modal.footer-title":"¿Responde la pregunta este artículo?","new-request-form.answer-bot-modal.mark-irrelevant":"No, necesito ayuda","new-request-form.answer-bot-modal.request-closed":"Excelente. La solicitud fue cerrada.","new-request-form.answer-bot-modal.request-submitted":"Su solicitud se envió correctamente.","new-request-form.answer-bot-modal.solve-error":"Hubo un error al cerrar la solicitud","new-request-form.answer-bot-modal.solve-request":"Sí, cerrar mi solicitud","new-request-form.answer-bot-modal.title":"Mientras espera, ¿alguno de estos artículos responde su pregunta?","new-request-form.answer-bot-modal.view-article":"Ver artículo","new-request-form.attachments.choose-file-label":"Elegir un archivo o arrastrar y soltar uno aquí","new-request-form.attachments.drop-files-label":"Suelte los archivos aquí","new-request-form.attachments.remove-file":"Eliminar archivo","new-request-form.attachments.stop-upload":"Detener carga","new-request-form.attachments.upload-error-description":"Hubo un error al cargar {{fileName}}. Vuelva a intentarlo o cargue otro archivo.","new-request-form.attachments.upload-error-title":"Error de carga","new-request-form.attachments.uploading":"Cargando {{fileName}}","new-request-form.cc-field.container-label":"Correos electrónicos de CC seleccionados","new-request-form.cc-field.email-added":"{{email}} se ha agregado","new-request-form.cc-field.email-label":"{{email}}: presione la tecla de retroceso para eliminar","new-request-form.cc-field.email-removed":"{{email}} se ha eliminado","new-request-form.cc-field.emails-added":"{{emails}} se han agregado","new-request-form.cc-field.invalid-email":"Dirección de correo electrónico no válida","new-request-form.close-label":"Cerrar","new-request-form.credit-card-digits-hint":"(Últimos 4 dígitos)","new-request-form.dropdown.empty-option":"Seleccione una opción","new-request-form.lookup-field.loading-options":"Cargando elementos...","new-request-form.lookup-field.no-matches-found":"No se encontraron coincidencias","new-request-form.lookup-field.placeholder":"Buscar {{label}}","new-request-form.parent-request-link":"Seguimiento de la solicitud {{parentId}}","new-request-form.required-fields-info":"Los campos marcados con un asterisco (*) son obligatorios.","new-request-form.submit":"Enviar","new-request-form.suggested-articles":"Artículos recomendados"}}),m=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"Pokud ano, můžeme uzavřít nedávný požadavek {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Odpověděl tento článek na vaši otázku?","new-request-form.answer-bot-modal.mark-irrelevant":"Ne, potřebuji pomoc","new-request-form.answer-bot-modal.request-closed":"Prima. Požadavek byl uzavřen.","new-request-form.answer-bot-modal.request-submitted":"Váš požadavek byl úspěšně odeslán.","new-request-form.answer-bot-modal.solve-error":"Při zavírání požadavku došlo k chybě.","new-request-form.answer-bot-modal.solve-request":"Ano, zavřít můj požadavek","new-request-form.answer-bot-modal.title":"Odpověděl některý z těchto článků na vaši otázku, zatímco čekáte?","new-request-form.answer-bot-modal.view-article":"Zobrazit článek","new-request-form.attachments.choose-file-label":"Vyberte soubor nebo ho sem přetáhněte","new-request-form.attachments.drop-files-label":"Sem přetáhněte soubory.","new-request-form.attachments.remove-file":"Odstranit soubor","new-request-form.attachments.stop-upload":"Zastavit upload","new-request-form.attachments.upload-error-description":"Při uploadování souboru {{fileName}}došlo k chybě. Zkuste to znovu nebo uploadujte jiný soubor.","new-request-form.attachments.upload-error-title":"Chyba při uploadu","new-request-form.attachments.uploading":"Uploaduje se soubor {{fileName}}","new-request-form.cc-field.container-label":"Vybrané e-maily v kopii","new-request-form.cc-field.email-added":"E-mail {{email}} byl přidán","new-request-form.cc-field.email-label":"{{email}} – Stisknutím klávesy Backspace proveďte odstranění.","new-request-form.cc-field.email-removed":"E-mail {{email}} byl odstraněn","new-request-form.cc-field.emails-added":"E-maily {{emails}} byly přidány","new-request-form.cc-field.invalid-email":"Neplatná e-mailová adresa","new-request-form.close-label":"Zavřít","new-request-form.credit-card-digits-hint":"(Poslední 4 číslice)","new-request-form.dropdown.empty-option":"Vybrat volbu","new-request-form.lookup-field.loading-options":"Načítání položek…","new-request-form.lookup-field.no-matches-found":"Nebyly nalezeny žádné shody","new-request-form.lookup-field.placeholder":"Hledejte {{label}}","new-request-form.parent-request-link":"Navazující tiket pro požadavek {{parentId}}","new-request-form.required-fields-info":"Pole označená hvězdičkou (*) jsou povinná.","new-request-form.submit":"Odeslat","new-request-form.suggested-articles":"Doporučené články"}}),d=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),u=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"Hvis den gør, kan vi lukke den seneste anmodning {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Besvarede denne artikel dit spørgsmål?","new-request-form.answer-bot-modal.mark-irrelevant":"Nej, jeg har brug for hjælp","new-request-form.answer-bot-modal.request-closed":"Fint. Anmodningen er blevet lukket.","new-request-form.answer-bot-modal.request-submitted":"Din anmodning er blevet sendt","new-request-form.answer-bot-modal.solve-error":"Der opstod en fejl under lukning af din anmodning","new-request-form.answer-bot-modal.solve-request":"Ja, luk min anmodning","new-request-form.answer-bot-modal.title":"Mens du venter, er der da nogen af disse artikler, som besvarer dit spørgsmål?","new-request-form.answer-bot-modal.view-article":"Se artikel","new-request-form.attachments.choose-file-label":"Vælg en fil eller træk og slip her","new-request-form.attachments.drop-files-label":"Slip filerne her","new-request-form.attachments.remove-file":"Fjern fil","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"Der opstod en fejl under upload {{fileName}}. Prøv igen eller upload en anden fil.","new-request-form.attachments.upload-error-title":"Fejl under upload","new-request-form.attachments.uploading":"Uploader {{fileName}}","new-request-form.cc-field.container-label":"Valgte CC-mails","new-request-form.cc-field.email-added":"{{email}} er blevet tilføjet","new-request-form.cc-field.email-label":"{{email}} - Tryk på Backspace for at fjerne","new-request-form.cc-field.email-removed":"{{email}} er blevet fjernet","new-request-form.cc-field.emails-added":"{{emails}} er blevet tilføjet","new-request-form.cc-field.invalid-email":"Ugyldig e-mailadresse","new-request-form.close-label":"Luk","new-request-form.credit-card-digits-hint":"(sidste 4 cifre)","new-request-form.dropdown.empty-option":"Foretag et valg","new-request-form.lookup-field.loading-options":"Indlæser elementer...","new-request-form.lookup-field.no-matches-found":"Ingen matchende resultater","new-request-form.lookup-field.placeholder":"Søgning i {{label}}","new-request-form.parent-request-link":"Følg op på anmodning {{parentId}}","new-request-form.required-fields-info":"Felter markeret med en stjerne (*) er obligatoriske.","new-request-form.submit":"Indsend","new-request-form.suggested-articles":"Foreslåede artikler"}}),f=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"Wenn ja, können wir die Anfrage {{requestId}} schließen.","new-request-form.answer-bot-modal.footer-title":"Hat dieser Beitrag die Frage beantwortet?","new-request-form.answer-bot-modal.mark-irrelevant":"Nein, ich brauche weitere Hilfe","new-request-form.answer-bot-modal.request-closed":"Sehr gut. Ihre Anfrage wurde geschlossen.","new-request-form.answer-bot-modal.request-submitted":"Ihre Anfrage wurde erfolgreich eingereicht","new-request-form.answer-bot-modal.solve-error":"Fehler beim Schließen Ihrer Anfrage","new-request-form.answer-bot-modal.solve-request":"Ja, Anfrage schließen","new-request-form.answer-bot-modal.title":"Während Sie warten, wird Ihre Frage durch einen dieser Beiträge beantwortet?","new-request-form.answer-bot-modal.view-article":"Beitrag anzeigen","new-request-form.attachments.choose-file-label":"Datei auswählen oder hierher ziehen","new-request-form.attachments.drop-files-label":"Dateien hier ablegen","new-request-form.attachments.remove-file":"Datei entfernen","new-request-form.attachments.stop-upload":"Upload anhalten","new-request-form.attachments.upload-error-description":"Fehler beim Hochladen von {{fileName}}. Versuchen Sie es erneut oder laden Sie eine andere Datei hoch.","new-request-form.attachments.upload-error-title":"Fehler beim Hochladen","new-request-form.attachments.uploading":"{{fileName}} wird hochgeladen","new-request-form.cc-field.container-label":"Ausgewählte CC-E-Mails","new-request-form.cc-field.email-added":"{{email}} wurde hinzugefügt","new-request-form.cc-field.email-label":"{{email}} – Zum Entfernen die Rücktaste drücken","new-request-form.cc-field.email-removed":"{{email}} wurde entfernt","new-request-form.cc-field.emails-added":"{{emails}} wurden hinzugefügt","new-request-form.cc-field.invalid-email":"E-Mail-Adresse ungültig","new-request-form.close-label":"Schließen","new-request-form.credit-card-digits-hint":"(Letzte vier Ziffern)","new-request-form.dropdown.empty-option":"Wählen Sie eine Option aus","new-request-form.lookup-field.loading-options":"Elemente werden geladen...","new-request-form.lookup-field.no-matches-found":"Keine Übereinstimmungen gefunden","new-request-form.lookup-field.placeholder":"Suche {{label}}","new-request-form.parent-request-link":"Folgeanfrage zu {{parentId}}","new-request-form.required-fields-info":"Mit einem Sternchen (*) markierte Felder sind Pflichtfelder.","new-request-form.submit":"Senden","new-request-form.suggested-articles":"Vorgeschlagene Beiträge"}}),c=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"Wenn ja, können wir die Anfrage {{requestId}} schließen.","new-request-form.answer-bot-modal.footer-title":"Hat dieser Beitrag die Frage beantwortet?","new-request-form.answer-bot-modal.mark-irrelevant":"Nein, ich brauche weitere Hilfe","new-request-form.answer-bot-modal.request-closed":"Sehr gut. Ihre Anfrage wurde geschlossen.","new-request-form.answer-bot-modal.request-submitted":"Ihre Anfrage wurde erfolgreich eingereicht","new-request-form.answer-bot-modal.solve-error":"Fehler beim Schließen Ihrer Anfrage","new-request-form.answer-bot-modal.solve-request":"Ja, Anfrage schließen","new-request-form.answer-bot-modal.title":"Während Sie warten, wird Ihre Frage durch einen dieser Beiträge beantwortet?","new-request-form.answer-bot-modal.view-article":"Beitrag anzeigen","new-request-form.attachments.choose-file-label":"Datei auswählen oder hierher ziehen","new-request-form.attachments.drop-files-label":"Dateien hier ablegen","new-request-form.attachments.remove-file":"Datei entfernen","new-request-form.attachments.stop-upload":"Upload anhalten","new-request-form.attachments.upload-error-description":"Fehler beim Hochladen von {{fileName}}. Versuchen Sie es erneut oder laden Sie eine andere Datei hoch.","new-request-form.attachments.upload-error-title":"Fehler beim Hochladen","new-request-form.attachments.uploading":"{{fileName}} wird hochgeladen","new-request-form.cc-field.container-label":"Ausgewählte CC-E-Mails","new-request-form.cc-field.email-added":"{{email}} wurde hinzugefügt","new-request-form.cc-field.email-label":"{{email}} – Zum Entfernen die Rücktaste drücken","new-request-form.cc-field.email-removed":"{{email}} wurde entfernt","new-request-form.cc-field.emails-added":"{{emails}} wurden hinzugefügt","new-request-form.cc-field.invalid-email":"E-Mail-Adresse ungültig","new-request-form.close-label":"Schließen","new-request-form.credit-card-digits-hint":"(Letzte vier Ziffern)","new-request-form.dropdown.empty-option":"Wählen Sie eine Option aus","new-request-form.lookup-field.loading-options":"Elemente werden geladen...","new-request-form.lookup-field.no-matches-found":"Keine Übereinstimmungen gefunden","new-request-form.lookup-field.placeholder":"Suche {{label}}","new-request-form.parent-request-link":"Folgeanfrage zu {{parentId}}","new-request-form.required-fields-info":"Mit einem Sternchen (*) markierte Felder sind Pflichtfelder.","new-request-form.submit":"Senden","new-request-form.suggested-articles":"Vorgeschlagene Beiträge"}}),w=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"Wenn ja, können wir die Anfrage {{requestId}} schließen.","new-request-form.answer-bot-modal.footer-title":"Hat dieser Beitrag die Frage beantwortet?","new-request-form.answer-bot-modal.mark-irrelevant":"Nein, ich brauche weitere Hilfe","new-request-form.answer-bot-modal.request-closed":"Sehr gut. Ihre Anfrage wurde geschlossen.","new-request-form.answer-bot-modal.request-submitted":"Ihre Anfrage wurde erfolgreich eingereicht","new-request-form.answer-bot-modal.solve-error":"Fehler beim Schließen Ihrer Anfrage","new-request-form.answer-bot-modal.solve-request":"Ja, Anfrage schließen","new-request-form.answer-bot-modal.title":"Während Sie warten, wird Ihre Frage durch einen dieser Beiträge beantwortet?","new-request-form.answer-bot-modal.view-article":"Beitrag anzeigen","new-request-form.attachments.choose-file-label":"Datei auswählen oder hierher ziehen","new-request-form.attachments.drop-files-label":"Dateien hier ablegen","new-request-form.attachments.remove-file":"Datei entfernen","new-request-form.attachments.stop-upload":"Upload anhalten","new-request-form.attachments.upload-error-description":"Fehler beim Hochladen von {{fileName}}. Versuchen Sie es erneut oder laden Sie eine andere Datei hoch.","new-request-form.attachments.upload-error-title":"Fehler beim Hochladen","new-request-form.attachments.uploading":"{{fileName}} wird hochgeladen","new-request-form.cc-field.container-label":"Ausgewählte CC-E-Mails","new-request-form.cc-field.email-added":"{{email}} wurde hinzugefügt","new-request-form.cc-field.email-label":"{{email}} – Zum Entfernen die Rücktaste drücken","new-request-form.cc-field.email-removed":"{{email}} wurde entfernt","new-request-form.cc-field.emails-added":"{{emails}} wurden hinzugefügt","new-request-form.cc-field.invalid-email":"E-Mail-Adresse ungültig","new-request-form.close-label":"Schließen","new-request-form.credit-card-digits-hint":"(Letzte vier Ziffern)","new-request-form.dropdown.empty-option":"Wählen Sie eine Option aus","new-request-form.lookup-field.loading-options":"Elemente werden geladen...","new-request-form.lookup-field.no-matches-found":"Keine Übereinstimmungen gefunden","new-request-form.lookup-field.placeholder":"Suche {{label}}","new-request-form.parent-request-link":"Folgeanfrage zu {{parentId}}","new-request-form.required-fields-info":"Mit einem Sternchen (*) markierte Felder sind Pflichtfelder.","new-request-form.submit":"Senden","new-request-form.suggested-articles":"Vorgeschlagene Beiträge"}}),q=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"Αν ναι, μπορούμε να κλείσουμε το πρόσφατο αίτημα {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Απαντά στην ερώτηση το άρθρο;","new-request-form.answer-bot-modal.mark-irrelevant":"Όχι, χρειάζομαι βοήθεια","new-request-form.answer-bot-modal.request-closed":"Ωραία. Το αίτημα έχει κλείσει.","new-request-form.answer-bot-modal.request-submitted":"Το αίτημά σας υπεβλήθη με επιτυχία","new-request-form.answer-bot-modal.solve-error":"Παρουσιάστηκε σφάλμα στο κλείσιμο του αιτήματός σας","new-request-form.answer-bot-modal.solve-request":"Ναι, να κλείσει το αίτημά μου","new-request-form.answer-bot-modal.title":"Ενώ περιμένετε, απαντά στην ερώτηση κάποιο από αυτά τα άρθρα;","new-request-form.answer-bot-modal.view-article":"Προβολή άρθρου","new-request-form.attachments.choose-file-label":"Επιλέξτε ένα αρχείο ή σύρετε και αποθέστε εδώ","new-request-form.attachments.drop-files-label":"Αποθέστε τα αρχεία εδώ","new-request-form.attachments.remove-file":"Κατάργηση αρχείου","new-request-form.attachments.stop-upload":"Διακοπή αποστολής","new-request-form.attachments.upload-error-description":"Υπήρξε σφάλμα κατά την αποστολή του {{fileName}}. Δοκιμάστε ξανά ή ανεβάστε άλλο αρχείο.","new-request-form.attachments.upload-error-title":"Σφάλμα αποστολής","new-request-form.attachments.uploading":"Γίνεται αποστολή {{fileName}}","new-request-form.cc-field.container-label":"Επιλεγμένα email για κοινοποίηση","new-request-form.cc-field.email-added":"Προστέθηκε το {{email}}","new-request-form.cc-field.email-label":"{{email}} - Πατήστε Backspace για αφαίρεση","new-request-form.cc-field.email-removed":"Καταργήθηκε το {{email}}","new-request-form.cc-field.emails-added":"Οι διευθύνσεις {{emails}} έχουν προστεθεί","new-request-form.cc-field.invalid-email":"Μη έγκυρη διεύθυνση email","new-request-form.close-label":"Κλείσιμο","new-request-form.credit-card-digits-hint":"(4 τελευταία ψηφία)","new-request-form.dropdown.empty-option":"Ενεργοποιήστε μια επιλογή","new-request-form.lookup-field.loading-options":"Γίνεται φόρτωση αντικειμένων...","new-request-form.lookup-field.no-matches-found":"Δεν βρέθηκαν αντιστοιχίσεις","new-request-form.lookup-field.placeholder":"Αναζήτηση σε {{label}}","new-request-form.parent-request-link":"Συμπληρωματικό στο αίτημα {{parentId}}","new-request-form.required-fields-info":"Τα πεδία με αστερίσκο (*) είναι υποχρεωτικά.","new-request-form.submit":"Υποβολή","new-request-form.suggested-articles":"Προτεινόμενα άρθρα"}}),p=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),h=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),b=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),g=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),v=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),k=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),y=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),S=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),N=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),_=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),I=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"new-request-form.answer-bot-modal.footer-content","new-request-form.answer-bot-modal.footer-title":"new-request-form.answer-bot-modal.footer-title","new-request-form.answer-bot-modal.mark-irrelevant":"new-request-form.answer-bot-modal.mark-irrelevant","new-request-form.answer-bot-modal.request-closed":"new-request-form.answer-bot-modal.request-closed","new-request-form.answer-bot-modal.request-submitted":"new-request-form.answer-bot-modal.request-submitted","new-request-form.answer-bot-modal.solve-error":"new-request-form.answer-bot-modal.solve-error","new-request-form.answer-bot-modal.solve-request":"new-request-form.answer-bot-modal.solve-request","new-request-form.answer-bot-modal.title":"new-request-form.answer-bot-modal.title","new-request-form.answer-bot-modal.view-article":"new-request-form.answer-bot-modal.view-article","new-request-form.attachments.choose-file-label":"new-request-form.attachments.choose-file-label","new-request-form.attachments.drop-files-label":"new-request-form.attachments.drop-files-label","new-request-form.attachments.remove-file":"new-request-form.attachments.remove-file","new-request-form.attachments.stop-upload":"new-request-form.attachments.stop-upload","new-request-form.attachments.upload-error-description":"new-request-form.attachments.upload-error-description","new-request-form.attachments.upload-error-title":"new-request-form.attachments.upload-error-title","new-request-form.attachments.uploading":"new-request-form.attachments.uploading","new-request-form.cc-field.container-label":"new-request-form.cc-field.container-label","new-request-form.cc-field.email-added":"new-request-form.cc-field.email-added","new-request-form.cc-field.email-label":"new-request-form.cc-field.email-label","new-request-form.cc-field.email-removed":"new-request-form.cc-field.email-removed","new-request-form.cc-field.emails-added":"new-request-form.cc-field.emails-added","new-request-form.cc-field.invalid-email":"new-request-form.cc-field.invalid-email","new-request-form.close-label":"new-request-form.close-label","new-request-form.credit-card-digits-hint":"new-request-form.credit-card-digits-hint","new-request-form.dropdown.empty-option":"new-request-form.dropdown.empty-option","new-request-form.lookup-field.loading-options":"new-request-form.lookup-field.loading-options","new-request-form.lookup-field.no-matches-found":"new-request-form.lookup-field.no-matches-found","new-request-form.lookup-field.placeholder":"new-request-form.lookup-field.placeholder","new-request-form.parent-request-link":"new-request-form.parent-request-link","new-request-form.required-fields-info":"new-request-form.required-fields-info","new-request-form.submit":"new-request-form.submit","new-request-form.suggested-articles":"new-request-form.suggested-articles"}}),C=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),z=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"[ผู้龍ḬḬϝ ḭḭṭ ḍṓṓḛḛṡ, ẁḛḛ ͼααṇ ͼḽṓṓṡḛḛ ẏẏṓṓṵṵṛ ṛḛḛͼḛḛṇṭ ṛḛḛʠṵṵḛḛṡṭ {{requestId}}龍ผู้]","new-request-form.answer-bot-modal.footer-title":"[ผู้龍Ḍṓṓḛḛṡ ṭḥḭḭṡ ααṛṭḭḭͼḽḛḛ ααṇṡẁḛḛṛ ẏẏṓṓṵṵṛ ʠṵṵḛḛṡṭḭḭṓṓṇ?龍ผู้]","new-request-form.answer-bot-modal.mark-irrelevant":"[ผู้龍Ṅṓṓ, ḬḬ ṇḛḛḛḛḍ ḥḛḛḽṗ龍ผู้]","new-request-form.answer-bot-modal.request-closed":"[ผู้龍Ṅḭḭͼḛḛ. ŶŶṓṓṵṵṛ ṛḛḛʠṵṵḛḛṡṭ ḥααṡ ḅḛḛḛḛṇ ͼḽṓṓṡḛḛḍ.龍ผู้]","new-request-form.answer-bot-modal.request-submitted":"[ผู้龍ŶŶṓṓṵṵṛ ṛḛḛʠṵṵḛḛṡṭ ẁααṡ ṡṵṵͼͼḛḛṡṡϝṵṵḽḽẏẏ ṡṵṵḅṃḭḭṭṭḛḛḍ龍ผู้]","new-request-form.answer-bot-modal.solve-error":"[ผู้龍Ṫḥḛḛṛḛḛ ẁααṡ ααṇ ḛḛṛṛṓṓṛ ͼḽṓṓṡḭḭṇḡ ẏẏṓṓṵṵṛ ṛḛḛʠṵṵḛḛṡṭ龍ผู้]","new-request-form.answer-bot-modal.solve-request":"[ผู้龍ŶŶḛḛṡ, ͼḽṓṓṡḛḛ ṃẏẏ ṛḛḛʠṵṵḛḛṡṭ龍ผู้]","new-request-form.answer-bot-modal.title":"[ผู้龍Ŵḥḭḭḽḛḛ ẏẏṓṓṵṵ ẁααḭḭṭ, ḍṓṓ ααṇẏẏ ṓṓϝ ṭḥḛḛṡḛḛ ααṛṭḭḭͼḽḛḛṡ ααṇṡẁḛḛṛ ẏẏṓṓṵṵṛ ʠṵṵḛḛṡṭḭḭṓṓṇ?龍ผู้]","new-request-form.answer-bot-modal.view-article":"[ผู้龍Ṿḭḭḛḛẁ ααṛṭḭḭͼḽḛḛ龍ผู้]","new-request-form.attachments.choose-file-label":"[ผู้龍Ḉḥṓṓṓṓṡḛḛ αα ϝḭḭḽḛḛ ṓṓṛ ḍṛααḡ ααṇḍ ḍṛṓṓṗ ḥḛḛṛḛḛ龍ผู้]","new-request-form.attachments.drop-files-label":"[ผู้龍Ḍṛṓṓṗ ϝḭḭḽḛḛṡ ḥḛḛṛḛḛ龍ผู้]","new-request-form.attachments.remove-file":"[ผู้龍Ṛḛḛṃṓṓṽḛḛ ϝḭḭḽḛḛ龍ผู้]","new-request-form.attachments.stop-upload":"[ผู้龍Ṣṭṓṓṗ ṵṵṗḽṓṓααḍ龍ผู้]","new-request-form.attachments.upload-error-description":"[ผู้龍Ṫḥḛḛṛḛḛ ẁααṡ ααṇ ḛḛṛṛṓṓṛ ṵṵṗḽṓṓααḍḭḭṇḡ {{fileName}}. Ṫṛẏẏ ααḡααḭḭṇ ṓṓṛ ṵṵṗḽṓṓααḍ ααṇṓṓṭḥḛḛṛ ϝḭḭḽḛḛ.龍ผู้]","new-request-form.attachments.upload-error-title":"[ผู้龍ṲṲṗḽṓṓααḍ ḛḛṛṛṓṓṛ龍ผู้]","new-request-form.attachments.uploading":"[ผู้龍ṲṲṗḽṓṓααḍḭḭṇḡ {{fileName}}龍ผู้]","new-request-form.cc-field.container-label":"[ผู้龍Ṣḛḛḽḛḛͼṭḛḛḍ ḈḈ ḛḛṃααḭḭḽṡ龍ผู้]","new-request-form.cc-field.email-added":"[ผู้龍{{email}} ḥααṡ ḅḛḛḛḛṇ ααḍḍḛḛḍ龍ผู้]","new-request-form.cc-field.email-label":"[ผู้龍{{email}} - Ṕṛḛḛṡṡ Ḃααͼḳṡṗααͼḛḛ ṭṓṓ ṛḛḛṃṓṓṽḛḛ龍ผู้]","new-request-form.cc-field.email-removed":"[ผู้龍{{email}} ḥααṡ ḅḛḛḛḛṇ ṛḛḛṃṓṓṽḛḛḍ龍ผู้]","new-request-form.cc-field.emails-added":"[ผู้龍{{emails}} ḥααṽḛḛ ḅḛḛḛḛṇ ααḍḍḛḛḍ龍ผู้]","new-request-form.cc-field.invalid-email":"[ผู้龍ḬḬṇṽααḽḭḭḍ ḛḛṃααḭḭḽ ααḍḍṛḛḛṡṡ龍ผู้]","new-request-form.close-label":"[ผู้龍Ḉḽṓṓṡḛḛ龍ผู้]","new-request-form.credit-card-digits-hint":"[ผู้龍(Ḻααṡṭ 4 ḍḭḭḡḭḭṭṡ)龍ผู้]","new-request-form.dropdown.empty-option":"[ผู้龍Ṣḛḛḽḛḛͼṭ ααṇ ṓṓṗṭḭḭṓṓṇ龍ผู้]","new-request-form.lookup-field.loading-options":"[ผู้龍Ḻṓṓααḍḭḭṇḡ ḭḭṭḛḛṃṡ...龍ผู้]","new-request-form.lookup-field.no-matches-found":"[ผู้龍Ṅṓṓ ṃααṭͼḥḛḛṡ ϝṓṓṵṵṇḍ龍ผู้]","new-request-form.lookup-field.placeholder":"[ผู้龍Ṣḛḛααṛͼḥ {{label}}龍ผู้]","new-request-form.parent-request-link":"[ผู้龍Ḟṓṓḽḽṓṓẁ-ṵṵṗ ṭṓṓ ṛḛḛʠṵṵḛḛṡṭ {{parentId}}龍ผู้]","new-request-form.required-fields-info":"[ผู้龍Ḟḭḭḛḛḽḍṡ ṃααṛḳḛḛḍ ẁḭḭṭḥ ααṇ ααṡṭḛḛṛḭḭṡḳ (*) ααṛḛḛ ṛḛḛʠṵṵḭḭṛḛḛḍ.龍ผู้]","new-request-form.submit":"[ผู้龍Ṣṵṵḅṃḭḭṭ龍ผู้]","new-request-form.suggested-articles":"[ผู้龍Ṣṵṵḡḡḛḛṡṭḛḛḍ ααṛṭḭḭͼḽḛḛṡ龍ผู้]"}}),j=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),T=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"De ser así, podemos cerrar la reciente solicitud {{requestId}}","new-request-form.answer-bot-modal.footer-title":"¿Responde la pregunta este artículo?","new-request-form.answer-bot-modal.mark-irrelevant":"No, necesito ayuda","new-request-form.answer-bot-modal.request-closed":"Excelente. La solicitud fue cerrada.","new-request-form.answer-bot-modal.request-submitted":"Su solicitud se envió correctamente.","new-request-form.answer-bot-modal.solve-error":"Hubo un error al cerrar la solicitud","new-request-form.answer-bot-modal.solve-request":"Sí, cerrar mi solicitud","new-request-form.answer-bot-modal.title":"Mientras espera, ¿alguno de estos artículos responde su pregunta?","new-request-form.answer-bot-modal.view-article":"Ver artículo","new-request-form.attachments.choose-file-label":"Elegir un archivo o arrastrar y soltar uno aquí","new-request-form.attachments.drop-files-label":"Suelte los archivos aquí","new-request-form.attachments.remove-file":"Eliminar archivo","new-request-form.attachments.stop-upload":"Detener carga","new-request-form.attachments.upload-error-description":"Hubo un error al cargar {{fileName}}. Vuelva a intentarlo o cargue otro archivo.","new-request-form.attachments.upload-error-title":"Error de carga","new-request-form.attachments.uploading":"Cargando {{fileName}}","new-request-form.cc-field.container-label":"Correos electrónicos de CC seleccionados","new-request-form.cc-field.email-added":"{{email}} se ha agregado","new-request-form.cc-field.email-label":"{{email}}: presione la tecla de retroceso para eliminar","new-request-form.cc-field.email-removed":"{{email}} se ha eliminado","new-request-form.cc-field.emails-added":"{{emails}} se han agregado","new-request-form.cc-field.invalid-email":"Dirección de correo electrónico no válida","new-request-form.close-label":"Cerrar","new-request-form.credit-card-digits-hint":"(Últimos 4 dígitos)","new-request-form.dropdown.empty-option":"Seleccione una opción","new-request-form.lookup-field.loading-options":"Cargando elementos...","new-request-form.lookup-field.no-matches-found":"No se encontraron coincidencias","new-request-form.lookup-field.placeholder":"Buscar {{label}}","new-request-form.parent-request-link":"Seguimiento de la solicitud {{parentId}}","new-request-form.required-fields-info":"Los campos marcados con un asterisco (*) son obligatorios.","new-request-form.submit":"Enviar","new-request-form.suggested-articles":"Artículos recomendados"}}),F=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"De ser así, podemos cerrar la reciente solicitud {{requestId}}","new-request-form.answer-bot-modal.footer-title":"¿Responde la pregunta este artículo?","new-request-form.answer-bot-modal.mark-irrelevant":"No, necesito ayuda","new-request-form.answer-bot-modal.request-closed":"Excelente. La solicitud fue cerrada.","new-request-form.answer-bot-modal.request-submitted":"Su solicitud se envió correctamente.","new-request-form.answer-bot-modal.solve-error":"Hubo un error al cerrar la solicitud","new-request-form.answer-bot-modal.solve-request":"Sí, cerrar mi solicitud","new-request-form.answer-bot-modal.title":"Mientras espera, ¿alguno de estos artículos responde su pregunta?","new-request-form.answer-bot-modal.view-article":"Ver artículo","new-request-form.attachments.choose-file-label":"Elegir un archivo o arrastrar y soltar uno aquí","new-request-form.attachments.drop-files-label":"Suelte los archivos aquí","new-request-form.attachments.remove-file":"Eliminar archivo","new-request-form.attachments.stop-upload":"Detener carga","new-request-form.attachments.upload-error-description":"Hubo un error al cargar {{fileName}}. Vuelva a intentarlo o cargue otro archivo.","new-request-form.attachments.upload-error-title":"Error de carga","new-request-form.attachments.uploading":"Cargando {{fileName}}","new-request-form.cc-field.container-label":"Correos electrónicos de CC seleccionados","new-request-form.cc-field.email-added":"{{email}} se ha agregado","new-request-form.cc-field.email-label":"{{email}}: presione la tecla de retroceso para eliminar","new-request-form.cc-field.email-removed":"{{email}} se ha eliminado","new-request-form.cc-field.emails-added":"{{emails}} se han agregado","new-request-form.cc-field.invalid-email":"Dirección de correo electrónico no válida","new-request-form.close-label":"Cerrar","new-request-form.credit-card-digits-hint":"(Últimos 4 dígitos)","new-request-form.dropdown.empty-option":"Seleccione una opción","new-request-form.lookup-field.loading-options":"Cargando elementos...","new-request-form.lookup-field.no-matches-found":"No se encontraron coincidencias","new-request-form.lookup-field.placeholder":"Buscar {{label}}","new-request-form.parent-request-link":"Seguimiento de la solicitud {{parentId}}","new-request-form.required-fields-info":"Los campos marcados con un asterisco (*) son obligatorios.","new-request-form.submit":"Enviar","new-request-form.suggested-articles":"Artículos recomendados"}}),Y=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"De ser así, podemos cerrar la reciente solicitud {{requestId}}","new-request-form.answer-bot-modal.footer-title":"¿Responde la pregunta este artículo?","new-request-form.answer-bot-modal.mark-irrelevant":"No, necesito ayuda","new-request-form.answer-bot-modal.request-closed":"Excelente. La solicitud fue cerrada.","new-request-form.answer-bot-modal.request-submitted":"Su solicitud se envió correctamente.","new-request-form.answer-bot-modal.solve-error":"Hubo un error al cerrar la solicitud","new-request-form.answer-bot-modal.solve-request":"Sí, cerrar mi solicitud","new-request-form.answer-bot-modal.title":"Mientras espera, ¿alguno de estos artículos responde su pregunta?","new-request-form.answer-bot-modal.view-article":"Ver artículo","new-request-form.attachments.choose-file-label":"Elegir un archivo o arrastrar y soltar uno aquí","new-request-form.attachments.drop-files-label":"Suelte los archivos aquí","new-request-form.attachments.remove-file":"Eliminar archivo","new-request-form.attachments.stop-upload":"Detener carga","new-request-form.attachments.upload-error-description":"Hubo un error al cargar {{fileName}}. Vuelva a intentarlo o cargue otro archivo.","new-request-form.attachments.upload-error-title":"Error de carga","new-request-form.attachments.uploading":"Cargando {{fileName}}","new-request-form.cc-field.container-label":"Correos electrónicos de CC seleccionados","new-request-form.cc-field.email-added":"{{email}} se ha agregado","new-request-form.cc-field.email-label":"{{email}}: presione la tecla de retroceso para eliminar","new-request-form.cc-field.email-removed":"{{email}} se ha eliminado","new-request-form.cc-field.emails-added":"{{emails}} se han agregado","new-request-form.cc-field.invalid-email":"Dirección de correo electrónico no válida","new-request-form.close-label":"Cerrar","new-request-form.credit-card-digits-hint":"(Últimos 4 dígitos)","new-request-form.dropdown.empty-option":"Seleccione una opción","new-request-form.lookup-field.loading-options":"Cargando elementos...","new-request-form.lookup-field.no-matches-found":"No se encontraron coincidencias","new-request-form.lookup-field.placeholder":"Buscar {{label}}","new-request-form.parent-request-link":"Seguimiento de la solicitud {{parentId}}","new-request-form.required-fields-info":"Los campos marcados con un asterisco (*) son obligatorios.","new-request-form.submit":"Enviar","new-request-form.suggested-articles":"Artículos recomendados"}}),D=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),L=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"De ser así, podemos cerrar la reciente solicitud {{requestId}}","new-request-form.answer-bot-modal.footer-title":"¿Responde la pregunta este artículo?","new-request-form.answer-bot-modal.mark-irrelevant":"No, necesito ayuda","new-request-form.answer-bot-modal.request-closed":"Excelente. La solicitud fue cerrada.","new-request-form.answer-bot-modal.request-submitted":"Su solicitud se envió correctamente.","new-request-form.answer-bot-modal.solve-error":"Hubo un error al cerrar la solicitud","new-request-form.answer-bot-modal.solve-request":"Sí, cerrar mi solicitud","new-request-form.answer-bot-modal.title":"Mientras espera, ¿alguno de estos artículos responde su pregunta?","new-request-form.answer-bot-modal.view-article":"Ver artículo","new-request-form.attachments.choose-file-label":"Elegir un archivo o arrastrar y soltar uno aquí","new-request-form.attachments.drop-files-label":"Suelte los archivos aquí","new-request-form.attachments.remove-file":"Eliminar archivo","new-request-form.attachments.stop-upload":"Detener carga","new-request-form.attachments.upload-error-description":"Hubo un error al cargar {{fileName}}. Vuelva a intentarlo o cargue otro archivo.","new-request-form.attachments.upload-error-title":"Error de carga","new-request-form.attachments.uploading":"Cargando {{fileName}}","new-request-form.cc-field.container-label":"Correos electrónicos de CC seleccionados","new-request-form.cc-field.email-added":"{{email}} se ha agregado","new-request-form.cc-field.email-label":"{{email}}: presione la tecla de retroceso para eliminar","new-request-form.cc-field.email-removed":"{{email}} se ha eliminado","new-request-form.cc-field.emails-added":"{{emails}} se han agregado","new-request-form.cc-field.invalid-email":"Dirección de correo electrónico no válida","new-request-form.close-label":"Cerrar","new-request-form.credit-card-digits-hint":"(Últimos 4 dígitos)","new-request-form.dropdown.empty-option":"Seleccione una opción","new-request-form.lookup-field.loading-options":"Cargando elementos...","new-request-form.lookup-field.no-matches-found":"No se encontraron coincidencias","new-request-form.lookup-field.placeholder":"Buscar {{label}}","new-request-form.parent-request-link":"Seguimiento de la solicitud {{parentId}}","new-request-form.required-fields-info":"Los campos marcados con un asterisco (*) son obligatorios.","new-request-form.submit":"Enviar","new-request-form.suggested-articles":"Artículos recomendados"}}),U=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),O=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),B=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"Jos se vastaa, voimme sulkea äskettäisen pyyntösi {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Vastaako tämä artikkeli kysymykseesi?","new-request-form.answer-bot-modal.mark-irrelevant":"Ei, tarvitsen apua","new-request-form.answer-bot-modal.request-closed":"Hienoa. Pyyntösi on suljettu.","new-request-form.answer-bot-modal.request-submitted":"Pyyntösi lähettäminen onnistui","new-request-form.answer-bot-modal.solve-error":"Tapahtui virhe suljettaessa pyyntöäsi","new-request-form.answer-bot-modal.solve-request":"Kyllä, sulje pyyntöni","new-request-form.answer-bot-modal.title":"Sillä aikaa kun odotat, vastaako mikään näistä artikkeleista kysymykseesi?","new-request-form.answer-bot-modal.view-article":"Näytä artikkeli","new-request-form.attachments.choose-file-label":"Valitse tiedosto tai vedä ja pudota se tähän","new-request-form.attachments.drop-files-label":"Pudota tiedostot tähän","new-request-form.attachments.remove-file":"Poista tiedosto","new-request-form.attachments.stop-upload":"Lopeta lataaminen","new-request-form.attachments.upload-error-description":"Virhe ladattaessa tiedostoa {{fileName}}. Yritä uudelleen tai lataa toinen tiedosto.","new-request-form.attachments.upload-error-title":"Latausvirhe","new-request-form.attachments.uploading":"Ladataan tiedostoa {{fileName}}","new-request-form.cc-field.container-label":"Valitut kopiosähköpostit","new-request-form.cc-field.email-added":"{{email}} on lisätty","new-request-form.cc-field.email-label":"{{email}} - poista painamalla askelpalautinta","new-request-form.cc-field.email-removed":"{{email}} on poistettu","new-request-form.cc-field.emails-added":"{{emails}} on lisätty","new-request-form.cc-field.invalid-email":"Virheellinen sähköpostiosoite","new-request-form.close-label":"Sulje","new-request-form.credit-card-digits-hint":"(4 viimeistä numeroa)","new-request-form.dropdown.empty-option":"Valitse vaihtoehto","new-request-form.lookup-field.loading-options":"Ladataan kohteita...","new-request-form.lookup-field.no-matches-found":"Vastineita ei löytynyt","new-request-form.lookup-field.placeholder":"Hae {{label}}","new-request-form.parent-request-link":"Jatkoa pyynnölle {{parentId}}","new-request-form.required-fields-info":"Tähdellä (*) merkityt kentät ovat pakollisia.","new-request-form.submit":"Lähetä","new-request-form.suggested-articles":"Ehdotetut artikkelit"}}),V=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),E=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),P=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"S’il y répond, nous pouvons clore la demande {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Cet article répond-il à la question?","new-request-form.answer-bot-modal.mark-irrelevant":"Non, j’ai besoin d’aide","new-request-form.answer-bot-modal.request-closed":"Super. La demande a été close.","new-request-form.answer-bot-modal.request-submitted":"Votre demande a été envoyée","new-request-form.answer-bot-modal.solve-error":"Une erreur est survenue lors de la clôture de votre demande","new-request-form.answer-bot-modal.solve-request":"Oui, fermer ma demande","new-request-form.answer-bot-modal.title":"Pendant que vous attendez, un de ces articles répond-il à votre question?","new-request-form.answer-bot-modal.view-article":"Afficher l’article","new-request-form.attachments.choose-file-label":"Choisissez un fichier ou faites glisser et déposez ici","new-request-form.attachments.drop-files-label":"Déposez les fichiers ici","new-request-form.attachments.remove-file":"Supprimer le fichier","new-request-form.attachments.stop-upload":"Arrêter le chargement","new-request-form.attachments.upload-error-description":"Une erreur est survenue lors du téléversement de {{fileName}}. Réessayez ou téléversez un autre fichier.","new-request-form.attachments.upload-error-title":"Erreur de téléversement","new-request-form.attachments.uploading":"Téléversement de {{fileName}}en cours…","new-request-form.cc-field.container-label":"Adresses courriel en CC sélectionnées","new-request-form.cc-field.email-added":"{{email}} a été ajoutée","new-request-form.cc-field.email-label":"{{email}} - Appuyez sur Retour arrière pour supprimer","new-request-form.cc-field.email-removed":"{{email}} a été supprimée","new-request-form.cc-field.emails-added":"{{emails}} ont été ajoutées","new-request-form.cc-field.invalid-email":"Adresse courriel non valide","new-request-form.close-label":"Fermer","new-request-form.credit-card-digits-hint":"(4 derniers chiffres)","new-request-form.dropdown.empty-option":"Sélectionnez une option","new-request-form.lookup-field.loading-options":"Chargement des éléments en cours...","new-request-form.lookup-field.no-matches-found":"Aucun résultat","new-request-form.lookup-field.placeholder":"Rechercher {{label}}","new-request-form.parent-request-link":"Suivi de la demande {{parentId}}","new-request-form.required-fields-info":"Les champs marqués d'un astérisque (*) sont obligatoires.","new-request-form.submit":"Envoyer","new-request-form.suggested-articles":"Articles suggérés"}}),A=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"S’il y répond, nous pouvons clore votre demande récente {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Cet article répond-il à la question ?","new-request-form.answer-bot-modal.mark-irrelevant":"Non, j’ai besoin d’aide","new-request-form.answer-bot-modal.request-closed":"Super. Votre demande a été fermée.","new-request-form.answer-bot-modal.request-submitted":"Votre demande a été envoyée","new-request-form.answer-bot-modal.solve-error":"Une erreur est survenue lors de la clôture de votre demande","new-request-form.answer-bot-modal.solve-request":"Oui, fermer ma demande","new-request-form.answer-bot-modal.title":"En attendant, l’un de ces articles répond-il à votre question ?","new-request-form.answer-bot-modal.view-article":"Afficher l’article","new-request-form.attachments.choose-file-label":"Choisissez un fichier ou faites un glisser-déposer ici","new-request-form.attachments.drop-files-label":"Déposez les fichiers ici","new-request-form.attachments.remove-file":"Supprimer le fichier","new-request-form.attachments.stop-upload":"Arrêter le chargement","new-request-form.attachments.upload-error-description":"Une erreur est survenue lors du chargement de {{fileName}}. Réessayez ou chargez un autre fichier.","new-request-form.attachments.upload-error-title":"Erreur de chargement","new-request-form.attachments.uploading":"Chargement du fichier {{fileName}} en cours","new-request-form.cc-field.container-label":"E-mails en CC sélectionnés","new-request-form.cc-field.email-added":"{{email}} a été ajouté","new-request-form.cc-field.email-label":"{{email}} - Appuyez sur Retour arrière pour supprimer","new-request-form.cc-field.email-removed":"{{email}} a été supprimé","new-request-form.cc-field.emails-added":"{{emails}} ont été ajoutés","new-request-form.cc-field.invalid-email":"Adresse e-mail non valide","new-request-form.close-label":"Fermer","new-request-form.credit-card-digits-hint":"(4 derniers chiffres)","new-request-form.dropdown.empty-option":"Sélectionnez une option","new-request-form.lookup-field.loading-options":"Chargement des éléments en cours...","new-request-form.lookup-field.no-matches-found":"Aucun résultat","new-request-form.lookup-field.placeholder":"Rechercher {{label}}","new-request-form.parent-request-link":"Suivi de la demande {{parentId}}","new-request-form.required-fields-info":"Les champs marqués d'un astérisque (*) sont obligatoires.","new-request-form.submit":"Envoyer","new-request-form.suggested-articles":"Articles suggérés"}}),R=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),W=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"אם כן, נוכל לסגור את בקשה {{requestId}} ששלחת לאחרונה","new-request-form.answer-bot-modal.footer-title":"האם המאמר הזה עונה על השאלה?","new-request-form.answer-bot-modal.mark-irrelevant":"לא, אני צריך עזרה","new-request-form.answer-bot-modal.request-closed":"נחמד. הבקשה נסגרה.","new-request-form.answer-bot-modal.request-submitted":"בקשתך נשלחה","new-request-form.answer-bot-modal.solve-error":"אירעה שגיאה בסגירת בקשתך","new-request-form.answer-bot-modal.solve-request":"כן, סגור את הבקשה שלי","new-request-form.answer-bot-modal.title":"בינתיים, האם אחד מהמאמרים האלה עונה על השאלה שלך?","new-request-form.answer-bot-modal.view-article":"הצג מאמר","new-request-form.attachments.choose-file-label":"בחר קובץ או גרור ושחרר כאן","new-request-form.attachments.drop-files-label":"שחרר את הקבצים כאן","new-request-form.attachments.remove-file":"הסר קובץ","new-request-form.attachments.stop-upload":"עצור העלאה","new-request-form.attachments.upload-error-description":"אירעה שגיאה בהעלאת הקובץ {{fileName}}. נסה שוב או העלה קובץ אחר.","new-request-form.attachments.upload-error-title":"שגיאת העלאה","new-request-form.attachments.uploading":"מעלה את {{fileName}}","new-request-form.cc-field.container-label":'הודעות דוא"ל נבחרות עם עותק',"new-request-form.cc-field.email-added":'כתובת הדוא"ל {{email}} נוספה',"new-request-form.cc-field.email-label":"{{email}} - לחץ על Backspace כדי להסיר","new-request-form.cc-field.email-removed":'כתובת הדוא"ל {{email}} הוסרה',"new-request-form.cc-field.emails-added":'כתובת הדוא"ל {{emails}} נוספו',"new-request-form.cc-field.invalid-email":"כתובת דואר אלקטרוני לא חוקית","new-request-form.close-label":"סגור","new-request-form.credit-card-digits-hint":"(4 הספרות האחרונות)","new-request-form.dropdown.empty-option":"בחר אפשרות","new-request-form.lookup-field.loading-options":"טוען פריטים...","new-request-form.lookup-field.no-matches-found":"לא נמצאו התאמות","new-request-form.lookup-field.placeholder":"חיפוש {{label}}","new-request-form.parent-request-link":"מעקב לבקשה {{parentId}}","new-request-form.required-fields-info":"השדות המסומנים בכוכבית (*) הם שדות חובה.","new-request-form.submit":"שלח","new-request-form.suggested-articles":"מאמרים מוצעים"}}),H=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"यदि ऐसा है, तो हम आपका हाल ही का अनुरोध बंद कर सकते है {{requestId}}","new-request-form.answer-bot-modal.footer-title":"क्या इस आलेख में आपके प्रश्न का उत्तर मिला?","new-request-form.answer-bot-modal.mark-irrelevant":"नहीं, मुझे सहायता चाहिए","new-request-form.answer-bot-modal.request-closed":"बढ़िया! आपका अनुरोध बंद कर दिया गया है।","new-request-form.answer-bot-modal.request-submitted":"आपका अनुरोध सफलतापूर्वक भेजा गया था","new-request-form.answer-bot-modal.solve-error":"आपका अनुरोध समाप्त करने में कोई त्रुटि थी","new-request-form.answer-bot-modal.solve-request":"हाँ, कृपया मेरा अनुरोध समाप्त करें","new-request-form.answer-bot-modal.title":"प्रतीक्षा करते समय, क्या इन आलेखों से आपके प्रश्न का उत्तर मिलता है?","new-request-form.answer-bot-modal.view-article":"आलेख देखें","new-request-form.attachments.choose-file-label":"कोई फ़ाइल चुनें या यहां खींचें और छोड़ें","new-request-form.attachments.drop-files-label":"फाइलों को यहां छोड़ें","new-request-form.attachments.remove-file":"फ़ाइल हटाएं","new-request-form.attachments.stop-upload":"अपलोड बंद करें","new-request-form.attachments.upload-error-description":"{{fileName}}अपलोड करने में कोई त्रुटि थी। पुनः प्रयास करें या कोई अन्य फ़ाइल अपलोड करें।","new-request-form.attachments.upload-error-title":"त्रुटि अपलोड करें","new-request-form.attachments.uploading":"{{fileName}} अपलोड हो रहा है","new-request-form.cc-field.container-label":"चयनित CC ईमेल","new-request-form.cc-field.email-added":"{{email}} जोड़ा गया है","new-request-form.cc-field.email-label":"{{email}} - हटाने के लिए बैकस्पेस दबाएं","new-request-form.cc-field.email-removed":"{{email}} हटा दिया गया है","new-request-form.cc-field.emails-added":"{{emails}} जोड़ा गया है","new-request-form.cc-field.invalid-email":"अमान्य ईमेल पता","new-request-form.close-label":"बंद करें","new-request-form.credit-card-digits-hint":"(आखिरी 4 अक्षर)","new-request-form.dropdown.empty-option":"कोई विकल्प चुनें","new-request-form.lookup-field.loading-options":"आइटम लोड हो रहे हैं...","new-request-form.lookup-field.no-matches-found":"कोई मिलान नहीं मिले","new-request-form.lookup-field.placeholder":"खोज {{label}}","new-request-form.parent-request-link":"{{parentId}} का अनुरोध करने के लिए फ़ॉलो-अप","new-request-form.required-fields-info":"तारांकन चिह्न (*) से चिह्नित फ़ील्ड आवश्यक हैं।","new-request-form.submit":"भेजें","new-request-form.suggested-articles":"सुझाए गए आलेख"}}),M=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),Z=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"Ha igen, lezárhatjuk a legutóbbi kérelmét ({{requestId}})","new-request-form.answer-bot-modal.footer-title":"Megválaszolta a cikk a kérdését?","new-request-form.answer-bot-modal.mark-irrelevant":"Nem, segítségre van szükségem","new-request-form.answer-bot-modal.request-closed":"Remek! A kérelme ezzel le lett zárva.","new-request-form.answer-bot-modal.request-submitted":"A kérelme sikeresen be lett küldve","new-request-form.answer-bot-modal.solve-error":"Hiba történt a kérelme lezárásakor","new-request-form.answer-bot-modal.solve-request":"Igen, zárják le a kérelmemet","new-request-form.answer-bot-modal.title":"Várakozás közben megtekintheti, hogy e cikkek közül választ ad-e valamelyik a kérdésére.","new-request-form.answer-bot-modal.view-article":"Cikk megtekintése","new-request-form.attachments.choose-file-label":"Válassza ki vagy húzza ide a kívánt fájlt","new-request-form.attachments.drop-files-label":"Húzza ide a fájlokat","new-request-form.attachments.remove-file":"Fájl eltávolítása","new-request-form.attachments.stop-upload":"Feltöltés leállítása","new-request-form.attachments.upload-error-description":"Hiba történt a(z) {{fileName}} fájl feltöltése során. Próbálja meg újra, vagy töltsön fel egy másik fájlt.","new-request-form.attachments.upload-error-title":"Feltöltési hiba","new-request-form.attachments.uploading":"A(z) {{fileName}} fájl feltöltése folyamatban van","new-request-form.cc-field.container-label":"Másolatot kapó kiválasztott e-mail-címek","new-request-form.cc-field.email-added":"{{email}} hozzáadva","new-request-form.cc-field.email-label":"{{email}} – Nyomja meg a Backspace billentyűt az eltávolításhoz","new-request-form.cc-field.email-removed":"{{email}} eltávolítva","new-request-form.cc-field.emails-added":"{{emails}} hozzáadva","new-request-form.cc-field.invalid-email":"Érvénytelen e-mail-cím","new-request-form.close-label":"Bezárás","new-request-form.credit-card-digits-hint":"(Utolsó 4 számjegy)","new-request-form.dropdown.empty-option":"Válasszon egy lehetőséget","new-request-form.lookup-field.loading-options":"Elemek betöltése…","new-request-form.lookup-field.no-matches-found":"Nincs találat","new-request-form.lookup-field.placeholder":"{{label}} keresése","new-request-form.parent-request-link":"Nyomon követés a(z) {{parentId}} kérelemhez","new-request-form.required-fields-info":"A csillaggal (*) jelzett mezők kitöltése kötelező.","new-request-form.submit":"Küldés","new-request-form.suggested-articles":"Javasolt cikkek"}}),K=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),x=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"Jika demikian, kami dapat menutup permintaan Anda baru-baru ini {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Apakah artikel ini menjawab pertanyaan Anda?","new-request-form.answer-bot-modal.mark-irrelevant":"Tidak, saya perlu bantuan","new-request-form.answer-bot-modal.request-closed":"Bagus. Permintaan Anda telah ditutup.","new-request-form.answer-bot-modal.request-submitted":"Permintaan Anda berhasil dikirimkan","new-request-form.answer-bot-modal.solve-error":"Ada kesalahan dalam menutup permintaan Anda","new-request-form.answer-bot-modal.solve-request":"Ya, tutup permintaan saya","new-request-form.answer-bot-modal.title":"Sementara Anda menunggu, apakah ada di antara artikel-artikel ini yang menjawab pertanyaan Anda?","new-request-form.answer-bot-modal.view-article":"Lihat artikel","new-request-form.attachments.choose-file-label":"Pilih file atau tarik dan letakkan di sini","new-request-form.attachments.drop-files-label":"Letakkan file di sini","new-request-form.attachments.remove-file":"Hapus file","new-request-form.attachments.stop-upload":"Berhenti mengunggah","new-request-form.attachments.upload-error-description":"Terjadi kesalahan saat mengunggah {{fileName}}. Cobalah lagi atau unggah file lain.","new-request-form.attachments.upload-error-title":"Kesalahan Mengunggah","new-request-form.attachments.uploading":"Mengunggah {{fileName}}","new-request-form.cc-field.container-label":"Email CC yang dipilih","new-request-form.cc-field.email-added":"{{email}} telah ditambahkan","new-request-form.cc-field.email-label":"{{email}} - Tekan Backspace untuk menghapus","new-request-form.cc-field.email-removed":"{{email}} telah dihapus","new-request-form.cc-field.emails-added":"{{emails}} telah ditambahkan","new-request-form.cc-field.invalid-email":"Alamat email tidak valid","new-request-form.close-label":"Tutup","new-request-form.credit-card-digits-hint":"(4 digit terakhir)","new-request-form.dropdown.empty-option":"Pilih opsi","new-request-form.lookup-field.loading-options":"Memuat item...","new-request-form.lookup-field.no-matches-found":"Tidak ada kecocokan yang ditemukan","new-request-form.lookup-field.placeholder":"Cari {{label}}","new-request-form.parent-request-link":"Tindak lanjut atas permintaan {{parentId}}","new-request-form.required-fields-info":"Bidang yang ditandai dengan tanda bintang (*) wajib diisi.","new-request-form.submit":"Kirim","new-request-form.suggested-articles":"Artikel yang disarankan"}}),J=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),G=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"In caso affermativo, possiamo chiudere la recente richiesta {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Questo articolo risponde alla domanda?","new-request-form.answer-bot-modal.mark-irrelevant":"No, ho bisogno di aiuto","new-request-form.answer-bot-modal.request-closed":"Ottimo! La richiesta è stata chiusa.","new-request-form.answer-bot-modal.request-submitted":"La richiesta è stata inviata correttamente","new-request-form.answer-bot-modal.solve-error":"Errore durante la chiusura della richiesta","new-request-form.answer-bot-modal.solve-request":"Sì, chiudi la richiesta","new-request-form.answer-bot-modal.title":"Nell’attesa, le informazioni in uno o più di questi articoli potrebbero rispondere alla domanda.","new-request-form.answer-bot-modal.view-article":"Visualizza articolo","new-request-form.attachments.choose-file-label":"Scegli un file o trascinalo qui","new-request-form.attachments.drop-files-label":"Trascina qui i file","new-request-form.attachments.remove-file":"Rimuovi file","new-request-form.attachments.stop-upload":"Interrompi caricamento","new-request-form.attachments.upload-error-description":"Errore durante il caricamento di {{fileName}}. Riprova o carica un altro file.","new-request-form.attachments.upload-error-title":"Errore nel caricamento","new-request-form.attachments.uploading":"Caricamento di {{fileName}}","new-request-form.cc-field.container-label":"Indirizzi email CC selezionati","new-request-form.cc-field.email-added":"{{email}} è stato aggiunto","new-request-form.cc-field.email-label":"{{email}} - Premi Backspace per rimuovere","new-request-form.cc-field.email-removed":"{{email}} è stato rimosso","new-request-form.cc-field.emails-added":"{{emails}} sono stati aggiunti","new-request-form.cc-field.invalid-email":"Indirizzo email non valido","new-request-form.close-label":"Chiudi","new-request-form.credit-card-digits-hint":"(Ultime 4 cifre)","new-request-form.dropdown.empty-option":"Seleziona un’opzione","new-request-form.lookup-field.loading-options":"Caricamento elementi in corso...","new-request-form.lookup-field.no-matches-found":"Nessuna corrispondenza trovata","new-request-form.lookup-field.placeholder":"Cerca {{label}}","new-request-form.parent-request-link":"Follow-up alla richiesta {{parentId}}","new-request-form.required-fields-info":"I campi contrassegnati da un asterisco (*) sono obbligatori.","new-request-form.submit":"Invia","new-request-form.suggested-articles":"Articoli suggeriti"}}),Q=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"In caso affermativo, possiamo chiudere la recente richiesta {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Questo articolo risponde alla domanda?","new-request-form.answer-bot-modal.mark-irrelevant":"No, ho bisogno di aiuto","new-request-form.answer-bot-modal.request-closed":"Ottimo! La richiesta è stata chiusa.","new-request-form.answer-bot-modal.request-submitted":"La richiesta è stata inviata correttamente","new-request-form.answer-bot-modal.solve-error":"Errore durante la chiusura della richiesta","new-request-form.answer-bot-modal.solve-request":"Sì, chiudi la richiesta","new-request-form.answer-bot-modal.title":"Nell’attesa, le informazioni in uno o più di questi articoli potrebbero rispondere alla domanda.","new-request-form.answer-bot-modal.view-article":"Visualizza articolo","new-request-form.attachments.choose-file-label":"Scegli un file o trascinalo qui","new-request-form.attachments.drop-files-label":"Trascina qui i file","new-request-form.attachments.remove-file":"Rimuovi file","new-request-form.attachments.stop-upload":"Interrompi caricamento","new-request-form.attachments.upload-error-description":"Errore durante il caricamento di {{fileName}}. Riprova o carica un altro file.","new-request-form.attachments.upload-error-title":"Errore nel caricamento","new-request-form.attachments.uploading":"Caricamento di {{fileName}}","new-request-form.cc-field.container-label":"Indirizzi email CC selezionati","new-request-form.cc-field.email-added":"{{email}} è stato aggiunto","new-request-form.cc-field.email-label":"{{email}} - Premi Backspace per rimuovere","new-request-form.cc-field.email-removed":"{{email}} è stato rimosso","new-request-form.cc-field.emails-added":"{{emails}} sono stati aggiunti","new-request-form.cc-field.invalid-email":"Indirizzo email non valido","new-request-form.close-label":"Chiudi","new-request-form.credit-card-digits-hint":"(Ultime 4 cifre)","new-request-form.dropdown.empty-option":"Seleziona un’opzione","new-request-form.lookup-field.loading-options":"Caricamento elementi in corso...","new-request-form.lookup-field.no-matches-found":"Nessuna corrispondenza trovata","new-request-form.lookup-field.placeholder":"Cerca {{label}}","new-request-form.parent-request-link":"Follow-up alla richiesta {{parentId}}","new-request-form.required-fields-info":"I campi contrassegnati da un asterisco (*) sono obbligatori.","new-request-form.submit":"Invia","new-request-form.suggested-articles":"Articoli suggeriti"}}),X=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"質問が解決していれば、最新のリクエスト{{requestId}}を終了します","new-request-form.answer-bot-modal.footer-title":"この記事で疑問が解消されましたか?","new-request-form.answer-bot-modal.mark-irrelevant":"いいえ、ヘルプが必要です","new-request-form.answer-bot-modal.request-closed":"お役に立てて嬉しいです。リクエストは終了しました。","new-request-form.answer-bot-modal.request-submitted":"リクエストは正しく送信されました","new-request-form.answer-bot-modal.solve-error":"リクエストを終了する際にエラーが発生しました","new-request-form.answer-bot-modal.solve-request":"はい、リクエストを終了","new-request-form.answer-bot-modal.title":"これらの記事のいずれかで疑問が解消されますか?","new-request-form.answer-bot-modal.view-article":"記事を表示","new-request-form.attachments.choose-file-label":"ファイルを選択するか、ここにドラッグアンドドロップします","new-request-form.attachments.drop-files-label":"ファイルをここにドロップ","new-request-form.attachments.remove-file":"ファイル削除","new-request-form.attachments.stop-upload":"アップロードを停止","new-request-form.attachments.upload-error-description":"{{fileName}}のアップロード中にエラーが発生しました。もう一度やり直すか、別のファイルをアップロードしてください。","new-request-form.attachments.upload-error-title":"アップロードエラー","new-request-form.attachments.uploading":"{{fileName}}をアップロード中","new-request-form.cc-field.container-label":"選択したCCメールアドレス","new-request-form.cc-field.email-added":"{{email}}を追加しました","new-request-form.cc-field.email-label":"{{email}} - 削除するにはBackspaceキーを押します","new-request-form.cc-field.email-removed":"{{email}}を削除しました","new-request-form.cc-field.emails-added":"{{emails}}を追加しました","new-request-form.cc-field.invalid-email":"メールアドレスが正しくありません","new-request-form.close-label":"閉じる","new-request-form.credit-card-digits-hint":"(下4桁)","new-request-form.dropdown.empty-option":"オプションを選択します","new-request-form.lookup-field.loading-options":"アイテムを読み込み中...","new-request-form.lookup-field.no-matches-found":"一致するものが見つかりません","new-request-form.lookup-field.placeholder":"{{label}}を検索","new-request-form.parent-request-link":"リクエスト{{parentId}}の補足","new-request-form.required-fields-info":"アスタリスク(*)が付いているフィールドは必須です。","new-request-form.submit":"送信","new-request-form.suggested-articles":"おすすめの記事"}}),$=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),ee=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),re=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),oe=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"그렇다면 최근 요청 {{requestId}}을(를) 종료할 수 있습니다.","new-request-form.answer-bot-modal.footer-title":"이 문서가 질문에 대한 답이 되었나요?","new-request-form.answer-bot-modal.mark-irrelevant":"아니요, 도움이 필요합니다.","new-request-form.answer-bot-modal.request-closed":"도움이 되었다니 기쁩니다. 요청이 종료되었습니다.","new-request-form.answer-bot-modal.request-submitted":"요청을 제출했습니다.","new-request-form.answer-bot-modal.solve-error":"요청을 종료하는 중 오류가 발생했습니다.","new-request-form.answer-bot-modal.solve-request":"예, 요청을 종료합니다","new-request-form.answer-bot-modal.title":"기다리는 동안 다음 문서 중에서 질문에 대한 답변을 찾으셨나요?","new-request-form.answer-bot-modal.view-article":"문서 보기","new-request-form.attachments.choose-file-label":"파일을 선택하거나 여기에 드래그 앤 드롭하세요.","new-request-form.attachments.drop-files-label":"파일을 여기에 드롭하세요","new-request-form.attachments.remove-file":"파일 제거","new-request-form.attachments.stop-upload":"업로드 중지","new-request-form.attachments.upload-error-description":"{{fileName}}을(를) 업로드하는 중 오류가 발생했습니다. 다시 시도하거나 다른 파일을 업로드하세요.","new-request-form.attachments.upload-error-title":"업로드 오류","new-request-form.attachments.uploading":"{{fileName}} 업로드 중","new-request-form.cc-field.container-label":"선택한 참조 이메일","new-request-form.cc-field.email-added":"{{email}}이(가) 추가되었습니다.","new-request-form.cc-field.email-label":"{{email}} - 제거하려면 백스페이스 키를 누르세요.","new-request-form.cc-field.email-removed":"{{email}}이(가) 제거되었습니다.","new-request-form.cc-field.emails-added":"{{emails}}이(가) 추가되었습니다.","new-request-form.cc-field.invalid-email":"올바르지 않은 이메일 주소","new-request-form.close-label":"닫기","new-request-form.credit-card-digits-hint":"(마지막 4자리)","new-request-form.dropdown.empty-option":"옵션을 선택하세요.","new-request-form.lookup-field.loading-options":"항목 로드 중...","new-request-form.lookup-field.no-matches-found":"일치 항목을 찾지 못함","new-request-form.lookup-field.placeholder":"{{label}} 검색","new-request-form.parent-request-link":"요청 {{parentId}}에 대한 후속 작업","new-request-form.required-fields-info":"별표(*)가 표시된 필드는 필수입니다.","new-request-form.submit":"제출","new-request-form.suggested-articles":"추천 문서"}}),te=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),ae=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),se=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),ne=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),le=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),ie=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),me=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),de=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),ue=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"Als dat het geval is, kunnen wij uw recente aanvraag {{requestId}} sluiten","new-request-form.answer-bot-modal.footer-title":"Beantwoordt dit artikel uw vraag?","new-request-form.answer-bot-modal.mark-irrelevant":"Nee, ik heb hulp nodig","new-request-form.answer-bot-modal.request-closed":"Fijn. Uw aanvraag is gesloten.","new-request-form.answer-bot-modal.request-submitted":"Uw aanvraag is verzonden","new-request-form.answer-bot-modal.solve-error":"Fout tijdens het sluiten van uw aanvraag","new-request-form.answer-bot-modal.solve-request":"Ja, mijn aanvraag sluiten","new-request-form.answer-bot-modal.title":"Terwijl u wacht: beantwoordt een van deze artikelen uw vraag?","new-request-form.answer-bot-modal.view-article":"Artikel weergeven","new-request-form.attachments.choose-file-label":"Kies een bestand of versleep het hierheen","new-request-form.attachments.drop-files-label":"Zet bestanden hier neer","new-request-form.attachments.remove-file":"Bestand verwijderen","new-request-form.attachments.stop-upload":"Upload stoppen","new-request-form.attachments.upload-error-description":"Fout tijdens uploaden van {{fileName}}. Probeer het opnieuw of upload een ander bestand.","new-request-form.attachments.upload-error-title":"Fout bij uploaden","new-request-form.attachments.uploading":"{{fileName}} wordt geüpload","new-request-form.cc-field.container-label":"Geselecteerde e-mails in cc","new-request-form.cc-field.email-added":"{{email}} is toegevoegd","new-request-form.cc-field.email-label":"{{email}} - Druk op Backspace om te verwijderen","new-request-form.cc-field.email-removed":"{{email}} is verwijderd","new-request-form.cc-field.emails-added":"{{emails}} zijn toegevoegd","new-request-form.cc-field.invalid-email":"Ongeldig e-mailadres","new-request-form.close-label":"Sluiten","new-request-form.credit-card-digits-hint":"(Laatste 4 cijfers)","new-request-form.dropdown.empty-option":"Selecteer een optie","new-request-form.lookup-field.loading-options":"Items laden...","new-request-form.lookup-field.no-matches-found":"Geen overeenkomsten gevonden","new-request-form.lookup-field.placeholder":"Zoeken in {{label}}","new-request-form.parent-request-link":"Follow-up van aanvraag {{parentId}}","new-request-form.required-fields-info":"Velden met een sterretje (*) zijn vereist.","new-request-form.submit":"Verzenden","new-request-form.suggested-articles":"Voorgestelde artikelen"}}),fe=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"Als dat het geval is, kunnen wij uw recente aanvraag {{requestId}} sluiten","new-request-form.answer-bot-modal.footer-title":"Beantwoordt dit artikel uw vraag?","new-request-form.answer-bot-modal.mark-irrelevant":"Nee, ik heb hulp nodig","new-request-form.answer-bot-modal.request-closed":"Fijn. Uw aanvraag is gesloten.","new-request-form.answer-bot-modal.request-submitted":"Uw aanvraag is verzonden","new-request-form.answer-bot-modal.solve-error":"Fout tijdens het sluiten van uw aanvraag","new-request-form.answer-bot-modal.solve-request":"Ja, mijn aanvraag sluiten","new-request-form.answer-bot-modal.title":"Terwijl u wacht: beantwoordt een van deze artikelen uw vraag?","new-request-form.answer-bot-modal.view-article":"Artikel weergeven","new-request-form.attachments.choose-file-label":"Kies een bestand of versleep het hierheen","new-request-form.attachments.drop-files-label":"Zet bestanden hier neer","new-request-form.attachments.remove-file":"Bestand verwijderen","new-request-form.attachments.stop-upload":"Upload stoppen","new-request-form.attachments.upload-error-description":"Fout tijdens uploaden van {{fileName}}. Probeer het opnieuw of upload een ander bestand.","new-request-form.attachments.upload-error-title":"Fout bij uploaden","new-request-form.attachments.uploading":"{{fileName}} wordt geüpload","new-request-form.cc-field.container-label":"Geselecteerde e-mails in cc","new-request-form.cc-field.email-added":"{{email}} is toegevoegd","new-request-form.cc-field.email-label":"{{email}} - Druk op Backspace om te verwijderen","new-request-form.cc-field.email-removed":"{{email}} is verwijderd","new-request-form.cc-field.emails-added":"{{emails}} zijn toegevoegd","new-request-form.cc-field.invalid-email":"Ongeldig e-mailadres","new-request-form.close-label":"Sluiten","new-request-form.credit-card-digits-hint":"(Laatste 4 cijfers)","new-request-form.dropdown.empty-option":"Selecteer een optie","new-request-form.lookup-field.loading-options":"Items laden...","new-request-form.lookup-field.no-matches-found":"Geen overeenkomsten gevonden","new-request-form.lookup-field.placeholder":"Zoeken in {{label}}","new-request-form.parent-request-link":"Follow-up van aanvraag {{parentId}}","new-request-form.required-fields-info":"Velden met een sterretje (*) zijn vereist.","new-request-form.submit":"Verzenden","new-request-form.suggested-articles":"Voorgestelde artikelen"}}),ce=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"Hvis den gjør det, kan vi avslutte den nylige forespørselen {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Fant du svar på spørsmålet i denne artikkelen?","new-request-form.answer-bot-modal.mark-irrelevant":"Nei, jeg trenger hjelp","new-request-form.answer-bot-modal.request-closed":"Flott! Forespørselen er avsluttet.","new-request-form.answer-bot-modal.request-submitted":"Forespørselen ble sendt inn","new-request-form.answer-bot-modal.solve-error":"Det oppstod en feil under lukking av forespørselen","new-request-form.answer-bot-modal.solve-request":"Ja, avslutt forespørselen","new-request-form.answer-bot-modal.title":"Mens du venter: Kanskje en av disse artiklene har svar på spørsmålet ditt?","new-request-form.answer-bot-modal.view-article":"Vis artikkel","new-request-form.attachments.choose-file-label":"Velg en fil eller dra og slipp her","new-request-form.attachments.drop-files-label":"Slipp filene her","new-request-form.attachments.remove-file":"Fjern fil","new-request-form.attachments.stop-upload":"Stopp opplastingen","new-request-form.attachments.upload-error-description":"Det oppstod en feil under opplastingen {{fileName}}. Prøv på nytt eller last opp en annen fil.","new-request-form.attachments.upload-error-title":"Feil under opplasting","new-request-form.attachments.uploading":"Laster opp {{fileName}}","new-request-form.cc-field.container-label":"Valgte e-poster kopi til","new-request-form.cc-field.email-added":"{{email}} har blitt lagt til","new-request-form.cc-field.email-label":"{{email}} - Trykk på Tilbaketasten for å fjerne","new-request-form.cc-field.email-removed":"{{email}} er fjernet","new-request-form.cc-field.emails-added":"{{emails}} er lagt til","new-request-form.cc-field.invalid-email":"Ugyldig e-postadresse","new-request-form.close-label":"Lukk","new-request-form.credit-card-digits-hint":"(4 siste sifre)","new-request-form.dropdown.empty-option":"Velg et alternativ","new-request-form.lookup-field.loading-options":"Laster inn elementer...","new-request-form.lookup-field.no-matches-found":"Fant ingen samsvarende","new-request-form.lookup-field.placeholder":"Søk {{label}}","new-request-form.parent-request-link":"Oppfølging av forespørsel {{parentId}}","new-request-form.required-fields-info":"Felter merket med en stjerne (*) er obligatoriske.","new-request-form.submit":"Send inn","new-request-form.suggested-articles":"Foreslåtte artikler"}}),we=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"Jeśli tak, możemy zamknąć zlecenie {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Czy artykuł dostarczył odpowiedzi na pytanie?","new-request-form.answer-bot-modal.mark-irrelevant":"Nie, potrzebuję pomocy","new-request-form.answer-bot-modal.request-closed":"Świetnie. Zlecenie zostało zamknięte.","new-request-form.answer-bot-modal.request-submitted":"Zlecenie zostało wysłane","new-request-form.answer-bot-modal.solve-error":"Podczas zamykania zlecenia wystąpił błąd","new-request-form.answer-bot-modal.solve-request":"Tak, zamknij zlecenie","new-request-form.answer-bot-modal.title":"W czasie gdy oczekujesz na odpowiedź, może zechcesz nam powiedzieć, czy którykolwiek z tych artykułów zawiera odpowiedź na pytanie?","new-request-form.answer-bot-modal.view-article":"Wyświetl artykuł","new-request-form.attachments.choose-file-label":"Wybierz plik lub przeciągnij i upuść go tutaj","new-request-form.attachments.drop-files-label":"Upuść pliki tutaj","new-request-form.attachments.remove-file":"Usuń plik","new-request-form.attachments.stop-upload":"Zatrzymaj przesyłanie","new-request-form.attachments.upload-error-description":"Podczas przesyłania wystąpił błąd {{fileName}}. Spróbuj ponownie lub prześlij inny plik.","new-request-form.attachments.upload-error-title":"Błąd przesyłania","new-request-form.attachments.uploading":"Przesyłanie {{fileName}}","new-request-form.cc-field.container-label":"Wybrane e-maile z pola DW","new-request-form.cc-field.email-added":"Dodano {{email}}","new-request-form.cc-field.email-label":"{{email}} – naciśnij Backspace, aby usunąć","new-request-form.cc-field.email-removed":"Usunięto {{email}}","new-request-form.cc-field.emails-added":"Dodano {{emails}}","new-request-form.cc-field.invalid-email":"Nieprawidłowy adres e-mail","new-request-form.close-label":"Zamknij","new-request-form.credit-card-digits-hint":"(ostatnie 4 cyfry)","new-request-form.dropdown.empty-option":"Wybierz opcję","new-request-form.lookup-field.loading-options":"Ładowanie elementów...","new-request-form.lookup-field.no-matches-found":"Nie znaleziono dopasowań","new-request-form.lookup-field.placeholder":"Szukaj {{label}}","new-request-form.parent-request-link":"Kontynuacja zlecenia {{parentId}}","new-request-form.required-fields-info":"Pola oznaczone gwiazdką (*) są wymagane.","new-request-form.submit":"Wyślij","new-request-form.suggested-articles":"Propozycje artykułów"}}),qe=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"Se sim, podemos fechar a solicitação recente {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Esse artigo responde à pergunta?","new-request-form.answer-bot-modal.mark-irrelevant":"Não, preciso de ajuda","new-request-form.answer-bot-modal.request-closed":"Legal! A solicitação foi fechada.","new-request-form.answer-bot-modal.request-submitted":"Sua solicitação foi enviada com êxito","new-request-form.answer-bot-modal.solve-error":"Erro ao fechar a solicitação","new-request-form.answer-bot-modal.solve-request":"Sim, feche a solicitação","new-request-form.answer-bot-modal.title":"Enquanto você aguarda, algum desses artigos responde à pergunta?","new-request-form.answer-bot-modal.view-article":"Exibir artigo","new-request-form.attachments.choose-file-label":"Escolha um arquivo ou arraste e solte aqui","new-request-form.attachments.drop-files-label":"Solte os arquivos aqui","new-request-form.attachments.remove-file":"Remover arquivo","new-request-form.attachments.stop-upload":"Interromper carregamento","new-request-form.attachments.upload-error-description":"Erro ao carregar {{fileName}}. Tente novamente ou carregue outro arquivo.","new-request-form.attachments.upload-error-title":"Erro de carregamento","new-request-form.attachments.uploading":"Carregando {{fileName}}","new-request-form.cc-field.container-label":"E-mails de cópia selecionados","new-request-form.cc-field.email-added":"{{email}} foi adicionado","new-request-form.cc-field.email-label":"{{email}} – Pressione Backspace para remover","new-request-form.cc-field.email-removed":"{{email}} foi removido","new-request-form.cc-field.emails-added":"{{emails}} foram adicionados","new-request-form.cc-field.invalid-email":"Endereço de e-mail inválido","new-request-form.close-label":"Fechar","new-request-form.credit-card-digits-hint":"(Últimos 4 dígitos)","new-request-form.dropdown.empty-option":"Selecionar uma opção","new-request-form.lookup-field.loading-options":"Carregando itens...","new-request-form.lookup-field.no-matches-found":"Nenhuma correspondência encontrada","new-request-form.lookup-field.placeholder":"Pesquisar {{label}}","new-request-form.parent-request-link":"Acompanhamento da solicitação {{parentId}}","new-request-form.required-fields-info":"Os campos marcados com um asterisco (*) são obrigatórios.","new-request-form.submit":"Enviar","new-request-form.suggested-articles":"Artigos sugeridos"}}),pe=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"Se sim, podemos fechar a solicitação recente {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Esse artigo responde à pergunta?","new-request-form.answer-bot-modal.mark-irrelevant":"Não, preciso de ajuda","new-request-form.answer-bot-modal.request-closed":"Legal! A solicitação foi fechada.","new-request-form.answer-bot-modal.request-submitted":"Sua solicitação foi enviada com êxito","new-request-form.answer-bot-modal.solve-error":"Erro ao fechar a solicitação","new-request-form.answer-bot-modal.solve-request":"Sim, feche a solicitação","new-request-form.answer-bot-modal.title":"Enquanto você aguarda, algum desses artigos responde à pergunta?","new-request-form.answer-bot-modal.view-article":"Exibir artigo","new-request-form.attachments.choose-file-label":"Escolha um arquivo ou arraste e solte aqui","new-request-form.attachments.drop-files-label":"Solte os arquivos aqui","new-request-form.attachments.remove-file":"Remover arquivo","new-request-form.attachments.stop-upload":"Interromper carregamento","new-request-form.attachments.upload-error-description":"Erro ao carregar {{fileName}}. Tente novamente ou carregue outro arquivo.","new-request-form.attachments.upload-error-title":"Erro de carregamento","new-request-form.attachments.uploading":"Carregando {{fileName}}","new-request-form.cc-field.container-label":"E-mails de cópia selecionados","new-request-form.cc-field.email-added":"{{email}} foi adicionado","new-request-form.cc-field.email-label":"{{email}} – Pressione Backspace para remover","new-request-form.cc-field.email-removed":"{{email}} foi removido","new-request-form.cc-field.emails-added":"{{emails}} foram adicionados","new-request-form.cc-field.invalid-email":"Endereço de e-mail inválido","new-request-form.close-label":"Fechar","new-request-form.credit-card-digits-hint":"(Últimos 4 dígitos)","new-request-form.dropdown.empty-option":"Selecionar uma opção","new-request-form.lookup-field.loading-options":"Carregando itens...","new-request-form.lookup-field.no-matches-found":"Nenhuma correspondência encontrada","new-request-form.lookup-field.placeholder":"Pesquisar {{label}}","new-request-form.parent-request-link":"Acompanhamento da solicitação {{parentId}}","new-request-form.required-fields-info":"Os campos marcados com um asterisco (*) são obrigatórios.","new-request-form.submit":"Enviar","new-request-form.suggested-articles":"Artigos sugeridos"}}),he=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"Dacă reușește, putem închide solicitarea recentă {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Acest articol răspunde la întrebare?","new-request-form.answer-bot-modal.mark-irrelevant":"Nu, am nevoie de ajutor","new-request-form.answer-bot-modal.request-closed":"Grozav. Solicitarea a fost închisă.","new-request-form.answer-bot-modal.request-submitted":"Solicitarea a fost transmisă cu succes","new-request-form.answer-bot-modal.solve-error":"A apărut o eroare la închiderea solicitării","new-request-form.answer-bot-modal.solve-request":"Da, închideți solicitarea","new-request-form.answer-bot-modal.title":"Cât așteptați, vreunul dintre aceste articole răspunde la întrebarea dumneavoastră?","new-request-form.answer-bot-modal.view-article":"Vizualizare articol","new-request-form.attachments.choose-file-label":"Alegeți un fișier sau glisați și fixați aici","new-request-form.attachments.drop-files-label":"Glisați fișierele aici","new-request-form.attachments.remove-file":"Eliminare fișier","new-request-form.attachments.stop-upload":"Oprire încărcare","new-request-form.attachments.upload-error-description":"A apărut o eroare la încărcarea {{fileName}}. Încercați din nou sau încărcați un alt fișier.","new-request-form.attachments.upload-error-title":"Eroare de încărcare","new-request-form.attachments.uploading":"Se încarcă {{fileName}}","new-request-form.cc-field.container-label":"E-mailuri CC selectate","new-request-form.cc-field.email-added":"{{email}} a fost adăugată","new-request-form.cc-field.email-label":"{{email}} - Apăsați Backspace pentru a elimina","new-request-form.cc-field.email-removed":"{{email}} a fost eliminată","new-request-form.cc-field.emails-added":"{{emails}} au fost adăugate","new-request-form.cc-field.invalid-email":"Adresă de e-mail nevalidă","new-request-form.close-label":"Închidere","new-request-form.credit-card-digits-hint":"(Ultimele 4 cifre)","new-request-form.dropdown.empty-option":"Selectați o opțiune","new-request-form.lookup-field.loading-options":"Se încarcă articolele...","new-request-form.lookup-field.no-matches-found":"Nu s-au găsit corespondențe","new-request-form.lookup-field.placeholder":"Căutare {{label}}","new-request-form.parent-request-link":"Continuarea comunicării pentru solicitarea {{parentId}}","new-request-form.required-fields-info":"Câmpurile marcate cu un asterisc (*) sunt obligatorii.","new-request-form.submit":"Trimitere","new-request-form.suggested-articles":"Articole sugerate"}}),be=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"Если да, мы можем закрыть запрос {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Есть ли в этой статье ответ на вопрос?","new-request-form.answer-bot-modal.mark-irrelevant":"Нет, мне нужна помощь","new-request-form.answer-bot-modal.request-closed":"Превосходно. Запрос закрыт.","new-request-form.answer-bot-modal.request-submitted":"Ваш запрос отправлен","new-request-form.answer-bot-modal.solve-error":"Ошибка при закрытии запроса","new-request-form.answer-bot-modal.solve-request":"Да, закрыть мой запрос","new-request-form.answer-bot-modal.title":"Пока вы ожидаете, есть ли в какой-то из этих статей ответ на ваш вопрос?","new-request-form.answer-bot-modal.view-article":"Просмотреть статью","new-request-form.attachments.choose-file-label":"Выберите файл или перетащите его сюда","new-request-form.attachments.drop-files-label":"Перетащите файлы сюда","new-request-form.attachments.remove-file":"Удалить файл","new-request-form.attachments.stop-upload":"Остановить выкладывание","new-request-form.attachments.upload-error-description":"Ошибка при выкладывании {{fileName}}. Повторите попытку или выложите другой файл.","new-request-form.attachments.upload-error-title":"Ошибка выкладывания","new-request-form.attachments.uploading":"Выкладывание {{fileName}}","new-request-form.cc-field.container-label":"Выбранные письма для копии","new-request-form.cc-field.email-added":"Адрес {{email}} добавлен","new-request-form.cc-field.email-label":"{{email}} — нажмите клавишу Backspace для удаления","new-request-form.cc-field.email-removed":"Адрес {{email}} удален","new-request-form.cc-field.emails-added":"Добавлены адреса {{emails}}","new-request-form.cc-field.invalid-email":"Недействительный адрес электронной почты","new-request-form.close-label":"Закрыть","new-request-form.credit-card-digits-hint":"(последние 4 цифры)","new-request-form.dropdown.empty-option":"Выберите вариант","new-request-form.lookup-field.loading-options":"Загрузка элементов...","new-request-form.lookup-field.no-matches-found":"Соответствия не найдены","new-request-form.lookup-field.placeholder":"Поиск: {{label}}","new-request-form.parent-request-link":"Дополнение к запросу {{parentId}}","new-request-form.required-fields-info":"Помеченные звездочкой (*) поля обязательны для заполнения.","new-request-form.submit":"Отправить","new-request-form.suggested-articles":"Предложенные статьи"}}),ge=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),ve=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),ke=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),ye=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),Se=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),Ne=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"Om den gör det kan vi stänga din förfrågan {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Besvarar denna artikel din fråga?","new-request-form.answer-bot-modal.mark-irrelevant":"Nej, jag behöver hjälp","new-request-form.answer-bot-modal.request-closed":"Utmärkt. Din förfrågan har stängts.","new-request-form.answer-bot-modal.request-submitted":"Din förfrågan har skickats in","new-request-form.answer-bot-modal.solve-error":"Ett fel inträffade när din förfrågan stängdes","new-request-form.answer-bot-modal.solve-request":"Ja, stäng min förfrågan","new-request-form.answer-bot-modal.title":"Medan du väntar, besvarar någon av dessa artiklar din fråga?","new-request-form.answer-bot-modal.view-article":"Visa artikel","new-request-form.attachments.choose-file-label":"Välj en fil eller dra och släpp den här","new-request-form.attachments.drop-files-label":"Släpp filer här","new-request-form.attachments.remove-file":"Ta bort fil","new-request-form.attachments.stop-upload":"Stoppa uppladdning","new-request-form.attachments.upload-error-description":"Ett fel inträffade vid uppladdning av {{fileName}}. Försök igen eller ladda upp en annan fil.","new-request-form.attachments.upload-error-title":"Uppladdningsfel","new-request-form.attachments.uploading":"Laddar upp {{fileName}}","new-request-form.cc-field.container-label":"Valda kopierade e-postmeddelanden","new-request-form.cc-field.email-added":"{{email}} har lagts till","new-request-form.cc-field.email-label":"{{email}} – Tryck på backstegtangenten för att ta bort","new-request-form.cc-field.email-removed":"{{email}} har tagits bort","new-request-form.cc-field.emails-added":"{{emails}} har lagts till","new-request-form.cc-field.invalid-email":"Ogiltig e-postadress","new-request-form.close-label":"Stäng","new-request-form.credit-card-digits-hint":"(4 sista siffror)","new-request-form.dropdown.empty-option":"Välj ett alternativ","new-request-form.lookup-field.loading-options":"Läser in objekt...","new-request-form.lookup-field.no-matches-found":"Inga träffar hittades","new-request-form.lookup-field.placeholder":"Sök {{label}}","new-request-form.parent-request-link":"Uppföljning av förfrågan {{parentId}}","new-request-form.required-fields-info":"Fält markerade med en asterisk (*) är obligatoriska.","new-request-form.submit":"Skicka in","new-request-form.suggested-articles":"Föreslagna artiklar"}}),_e=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"หากใช่ เราจะสามารถปิดคำร้องขอ {{requestId}} ของคุณได้","new-request-form.answer-bot-modal.footer-title":"บทความนี้ได้ตอบข้อสงสัยของคุณหรือไม่","new-request-form.answer-bot-modal.mark-irrelevant":"ไม่ ฉันต้องการความช่วยเหลือ","new-request-form.answer-bot-modal.request-closed":"ยอดเลย คำร้องขอของคุณปิดลงแล้ว","new-request-form.answer-bot-modal.request-submitted":"ส่งคำร้องขอของคุณเรียบร้อยแล้ว","new-request-form.answer-bot-modal.solve-error":"เกิดข้อผิดพลาดในการปิดคําร้องขอของคุณ","new-request-form.answer-bot-modal.solve-request":"ใช่ ปิดคำร้องขอของฉัน","new-request-form.answer-bot-modal.title":"ขณะที่กำลังรอ บทความเหล่านี้ตอบข้อสงสัยของคุณหรือไม่","new-request-form.answer-bot-modal.view-article":"ดูบทความ","new-request-form.attachments.choose-file-label":"เลือกไฟล์หรือลากแล้ววางที่นี่","new-request-form.attachments.drop-files-label":"วางไฟล์ที่นี่","new-request-form.attachments.remove-file":"ลบไฟล์ออก","new-request-form.attachments.stop-upload":"หยุดการอัปโหลด","new-request-form.attachments.upload-error-description":"เกิดข้อผิดพลาดในการอัปโหลด {{fileName}} ลองอีกครั้งหรืออัปโหลดไฟล์อื่น","new-request-form.attachments.upload-error-title":"เกิดข้อผิดพลาดในการอัปโหลด","new-request-form.attachments.uploading":"กำลังอัปโหลด {{fileName}}","new-request-form.cc-field.container-label":"อีเมล สำเนาถึง ที่เลือก","new-request-form.cc-field.email-added":"{{email}} ถูกเพิ่มแล้ว","new-request-form.cc-field.email-label":"{{email}} - กด Backspace เพื่อลบ","new-request-form.cc-field.email-removed":"{{email}} ถูกลบออกแล้ว","new-request-form.cc-field.emails-added":"{{emails}} ถูกเพิ่มแล้ว","new-request-form.cc-field.invalid-email":"ที่อยู่อีเมลไม่ถูกต้อง","new-request-form.close-label":"ปิด","new-request-form.credit-card-digits-hint":"(เลข 4 หลักสุดท้าย)","new-request-form.dropdown.empty-option":"เลือกตัวเลือก","new-request-form.lookup-field.loading-options":"กำลังโหลดรายการ...","new-request-form.lookup-field.no-matches-found":"ไม่พบรายการที่ตรงกัน","new-request-form.lookup-field.placeholder":"ค้นหา {{label}}","new-request-form.parent-request-link":"ติดตามคําร้องขอ {{parentId}}","new-request-form.required-fields-info":"ต้องกรองช่องที่มีเครื่องหมายดอกจัน (*)","new-request-form.submit":"ส่ง","new-request-form.suggested-articles":"บทความที่แนะนำ"}}),Ie=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"Yanıtlıyorsa, bu son talebinizi kapatabiliriz {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Bu makale sorunuzu yanıtlıyor mu?","new-request-form.answer-bot-modal.mark-irrelevant":"Hayır, yardıma ihtiyacım var","new-request-form.answer-bot-modal.request-closed":"Güzel! Talebiniz kapatıldı.","new-request-form.answer-bot-modal.request-submitted":"Talebiniz başarıyla gönderildi","new-request-form.answer-bot-modal.solve-error":"Talebiniz kapatılırken bir hata oluştu","new-request-form.answer-bot-modal.solve-request":"Evet, talebimi kapat","new-request-form.answer-bot-modal.title":"Siz beklerken soralım: Bu makalelerden herhangi biri sorunuza yanıtladı mı?","new-request-form.answer-bot-modal.view-article":"Makaleyi görüntüle","new-request-form.attachments.choose-file-label":"Bir dosya seçin veya buraya sürükleyip bırakın","new-request-form.attachments.drop-files-label":"Dosyaları buraya bırakın","new-request-form.attachments.remove-file":"Dosyayı kaldır","new-request-form.attachments.stop-upload":"Karşıya yüklemeyi durdur","new-request-form.attachments.upload-error-description":"{{fileName}} karşıya yüklenirken bir hata oluştu. Yeniden deneyin veya başka bir dosya yükleyin.","new-request-form.attachments.upload-error-title":"Karşıya yükleme hatası","new-request-form.attachments.uploading":"{{fileName}} karşıya yükleniyor","new-request-form.cc-field.container-label":"Seçilen bilgi e-postası","new-request-form.cc-field.email-added":"{{email}} eklendi","new-request-form.cc-field.email-label":"{{email}} - Kaldırmak için Geri tuşuna basın","new-request-form.cc-field.email-removed":"{{email}} kaldırıldı","new-request-form.cc-field.emails-added":"{{emails}} eklendi","new-request-form.cc-field.invalid-email":"Geçersiz e-posta adresi","new-request-form.close-label":"Kapat","new-request-form.credit-card-digits-hint":"(Son 4 hane)","new-request-form.dropdown.empty-option":"Bir seçim yapın","new-request-form.lookup-field.loading-options":"Öğeler yükleniyor...","new-request-form.lookup-field.no-matches-found":"Eşleşme bulunamadı","new-request-form.lookup-field.placeholder":"Ara {{label}}","new-request-form.parent-request-link":"{{parentId}} talep etmek için ekleyin","new-request-form.required-fields-info":"Yıldız işareti (*) ile işaretlenen alanların doldurulması zorunludur.","new-request-form.submit":"Gönder","new-request-form.suggested-articles":"Önerilen makaleler"}}),Ce=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),ze=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),je=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"If it does, we can close your recent request {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Does this article answer your question?","new-request-form.answer-bot-modal.mark-irrelevant":"No, I need help","new-request-form.answer-bot-modal.request-closed":"Nice. Your request has been closed.","new-request-form.answer-bot-modal.request-submitted":"Your request was successfully submitted","new-request-form.answer-bot-modal.solve-error":"There was an error closing your request","new-request-form.answer-bot-modal.solve-request":"Yes, close my request","new-request-form.answer-bot-modal.title":"While you wait, do any of these articles answer your question?","new-request-form.answer-bot-modal.view-article":"View article","new-request-form.attachments.choose-file-label":"Choose a file or drag and drop here","new-request-form.attachments.drop-files-label":"Drop files here","new-request-form.attachments.remove-file":"Remove file","new-request-form.attachments.stop-upload":"Stop upload","new-request-form.attachments.upload-error-description":"There was an error uploading {{fileName}}. Try again or upload another file.","new-request-form.attachments.upload-error-title":"Upload error","new-request-form.attachments.uploading":"Uploading {{fileName}}","new-request-form.cc-field.container-label":"Selected CC emails","new-request-form.cc-field.email-added":"{{email}} has been added","new-request-form.cc-field.email-label":"{{email}} - Press Backspace to remove","new-request-form.cc-field.email-removed":"{{email}} has been removed","new-request-form.cc-field.emails-added":"{{emails}} have been added","new-request-form.cc-field.invalid-email":"Invalid email address","new-request-form.close-label":"Close","new-request-form.credit-card-digits-hint":"(Last 4 digits)","new-request-form.dropdown.empty-option":"Select an option","new-request-form.lookup-field.loading-options":"Loading items...","new-request-form.lookup-field.no-matches-found":"No matches found","new-request-form.lookup-field.placeholder":"Search {{label}}","new-request-form.parent-request-link":"Follow-up to request {{parentId}}","new-request-form.required-fields-info":"Fields marked with an asterisk (*) are required.","new-request-form.submit":"Submit","new-request-form.suggested-articles":"Suggested articles"}}),Te=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"Nếu có, chúng tôi có thể đóng yêu cầu hiện tại {{requestId}}","new-request-form.answer-bot-modal.footer-title":"Bài viết này có giải đáp được câu hỏi của bạn không?","new-request-form.answer-bot-modal.mark-irrelevant":"Không, tôi cần trợ giúp","new-request-form.answer-bot-modal.request-closed":"Tuyệt. Yêu cầu đã được đóng lại.","new-request-form.answer-bot-modal.request-submitted":"Yêu cầu của bạn đã được gửi thành công","new-request-form.answer-bot-modal.solve-error":"Đã xảy ra lỗi khi đóng yêu cầu của bạn","new-request-form.answer-bot-modal.solve-request":"Có, đóng yêu cầu của tôi","new-request-form.answer-bot-modal.title":"Trong thời gian chờ đợi, có bài viết nào trong số các bài viết này giải đáp được thắc mắc của bạn không?","new-request-form.answer-bot-modal.view-article":"Xem bài viết","new-request-form.attachments.choose-file-label":"Chọn một tập tin hoặc kéo và thả ở đây","new-request-form.attachments.drop-files-label":"Thả tập tin vào đây","new-request-form.attachments.remove-file":"Xóa tập tin","new-request-form.attachments.stop-upload":"Dừng tải lên","new-request-form.attachments.upload-error-description":"Đã xảy ra lỗi khi tải lên {{fileName}}. Hãy thử lại hoặc tải lên một tệp khác.","new-request-form.attachments.upload-error-title":"Lỗi tải lên","new-request-form.attachments.uploading":"Đang tải lên {{fileName}}","new-request-form.cc-field.container-label":"Email CC đã chọn","new-request-form.cc-field.email-added":"{{email}} đã được thêm","new-request-form.cc-field.email-label":"{{email}} - Nhấn Backspace để loại bỏ","new-request-form.cc-field.email-removed":"{{email}} đã bị loại bỏ","new-request-form.cc-field.emails-added":"{{emails}} đã được thêm","new-request-form.cc-field.invalid-email":"Địa chỉ email không hợp lệ","new-request-form.close-label":"Đóng","new-request-form.credit-card-digits-hint":"(4 chữ số cuối)","new-request-form.dropdown.empty-option":"Chọn một tùy chọn","new-request-form.lookup-field.loading-options":"Đang tải các mục...","new-request-form.lookup-field.no-matches-found":"Không tìm thấy kết quả phù hợp","new-request-form.lookup-field.placeholder":"Tìm kiếm {{label}}","new-request-form.parent-request-link":"Theo dõi để yêu cầu {{parentId}}","new-request-form.required-fields-info":"Các trường đánh dấu sao (*) là bắt buộc.","new-request-form.submit":"Gửi","new-request-form.suggested-articles":"Bài viết được đề xuất"}}),Fe=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"如果是的话,我们将关闭最近的请求 {{requestId}}","new-request-form.answer-bot-modal.footer-title":"此文章解答该问题了吗?","new-request-form.answer-bot-modal.mark-irrelevant":"没有,我需要帮助","new-request-form.answer-bot-modal.request-closed":"很好。此请求已关闭。","new-request-form.answer-bot-modal.request-submitted":"您的请求已成功提交","new-request-form.answer-bot-modal.solve-error":"关闭您的请求时出错","new-request-form.answer-bot-modal.solve-request":"解答了,关闭我的请求","new-request-form.answer-bot-modal.title":"在等待的同时,看看这些文章中有没有可以解答该疑问的?","new-request-form.answer-bot-modal.view-article":"查看文章","new-request-form.attachments.choose-file-label":"选择文件或拖放到此处","new-request-form.attachments.drop-files-label":"将文件放在此处","new-request-form.attachments.remove-file":"移除文件","new-request-form.attachments.stop-upload":"停止上传","new-request-form.attachments.upload-error-description":"上传 {{fileName}} 时出错。请重试或上传另一个文件。","new-request-form.attachments.upload-error-title":"上传错误","new-request-form.attachments.uploading":"上传 {{fileName}}","new-request-form.cc-field.container-label":"选定的抄送电邮","new-request-form.cc-field.email-added":"已添加 {{email}}","new-request-form.cc-field.email-label":"{{email}} - 按 Backspace 键移除","new-request-form.cc-field.email-removed":"已移除 {{email}}","new-request-form.cc-field.emails-added":"已添加 {{emails}}","new-request-form.cc-field.invalid-email":"无效电邮地址","new-request-form.close-label":"关闭","new-request-form.credit-card-digits-hint":"(最后 4 位数)","new-request-form.dropdown.empty-option":"选择一个选项","new-request-form.lookup-field.loading-options":"正在加载项目…","new-request-form.lookup-field.no-matches-found":"未找到匹配项","new-request-form.lookup-field.placeholder":"搜索 {{label}}","new-request-form.parent-request-link":"跟进请求 {{parentId}}","new-request-form.required-fields-info":"标有星号 (*) 的字段是必填字段。","new-request-form.submit":"提交","new-request-form.suggested-articles":"推荐文章"}}),Ye=Object.freeze({__proto__:null,default:{"new-request-form.answer-bot-modal.footer-content":"若是,我們可關閉近期的請求 {{requestId}}","new-request-form.answer-bot-modal.footer-title":"此文章是否已回答該問題?","new-request-form.answer-bot-modal.mark-irrelevant":"不,我仍需要幫助","new-request-form.answer-bot-modal.request-closed":"太好了。此請求已關閉。","new-request-form.answer-bot-modal.request-submitted":"已成功提交請求","new-request-form.answer-bot-modal.solve-error":"關閉您的請求時發生錯誤","new-request-form.answer-bot-modal.solve-request":"是,關閉我的請求","new-request-form.answer-bot-modal.title":"在等待時,這些文章是否已回答該疑問?","new-request-form.answer-bot-modal.view-article":"檢視文章","new-request-form.attachments.choose-file-label":"選擇檔案,或將檔案拖放到這裡","new-request-form.attachments.drop-files-label":"將檔案放置在此處","new-request-form.attachments.remove-file":"移除檔案","new-request-form.attachments.stop-upload":"停止上傳","new-request-form.attachments.upload-error-description":"上傳 {{fileName}} 時發生錯誤。請再試一次,或上傳另一個檔案。","new-request-form.attachments.upload-error-title":"上傳錯誤","new-request-form.attachments.uploading":"正在上傳 {{fileName}}","new-request-form.cc-field.container-label":"已選取副本電子郵件地址","new-request-form.cc-field.email-added":"已新增 {{email}}","new-request-form.cc-field.email-label":"{{email}}:按 Backspace 鍵移除","new-request-form.cc-field.email-removed":"已移除 {{email}}","new-request-form.cc-field.emails-added":"已新增 {{emails}}","new-request-form.cc-field.invalid-email":"無效電子郵件地址","new-request-form.close-label":"關閉","new-request-form.credit-card-digits-hint":"(最後 4 位數)","new-request-form.dropdown.empty-option":"選取一個選項","new-request-form.lookup-field.loading-options":"正在載入項目…","new-request-form.lookup-field.no-matches-found":"找不到符合項目","new-request-form.lookup-field.placeholder":"搜尋{{label}}","new-request-form.parent-request-link":"請求 {{parentId}} 的後續跟進","new-request-form.required-fields-info":"標有星號 (*) 的欄位為必填欄位。","new-request-form.submit":"提交","new-request-form.suggested-articles":"推薦文章"}});export{$,I as A,C as B,z as C,j as D,T as E,F,Y as G,D as H,L as I,U as J,O as K,B as L,V as M,E as N,P as O,A as P,R as Q,W as R,H as S,M as T,Z as U,K as V,x as W,J as X,G as Y,Q as Z,X as _,e as a,ee as a0,re as a1,oe as a2,te as a3,ae as a4,se as a5,ne as a6,le as a7,ie as a8,me as a9,de as aa,ue as ab,fe as ac,ce as ad,we as ae,qe as af,pe as ag,he as ah,be as ai,ge as aj,ve as ak,ke as al,ye as am,Se as an,Ne as ao,_e as ap,Ie as aq,Ce as ar,ze as as,je as at,Te as au,Fe as av,Ye as aw,r as b,o as c,t as d,a as e,s as f,n as g,l as h,i,m as j,d as k,u as l,f as m,c as n,w as o,q as p,p as q,h as r,b as s,g as t,v as u,k as v,y as w,S as x,N as y,_ as z}; diff --git a/assets/shared-bundle.js b/assets/shared-bundle.js index 0eb589ac9..63c55f170 100644 --- a/assets/shared-bundle.js +++ b/assets/shared-bundle.js @@ -1,250 +1,4 @@ -function _mergeNamespaces(n, m) { - m.forEach(function (e) { - e && typeof e !== 'string' && !Array.isArray(e) && Object.keys(e).forEach(function (k) { - if (k !== 'default' && !(k in n)) { - var d = Object.getOwnPropertyDescriptor(e, k); - Object.defineProperty(n, k, d.get ? d : { - enumerable: true, - get: function () { return e[k]; } - }); - } - }); - }); - return Object.freeze(n); -} - -var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {}; - -function getDefaultExportFromCjs (x) { - return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x; -} - -var jsxRuntime = {exports: {}}; - -var reactJsxRuntime_production_min = {}; - -/* -object-assign -(c) Sindre Sorhus -@license MIT -*/ - -var objectAssign; -var hasRequiredObjectAssign; - -function requireObjectAssign () { - if (hasRequiredObjectAssign) return objectAssign; - hasRequiredObjectAssign = 1; - /* eslint-disable no-unused-vars */ - var getOwnPropertySymbols = Object.getOwnPropertySymbols; - var hasOwnProperty = Object.prototype.hasOwnProperty; - var propIsEnumerable = Object.prototype.propertyIsEnumerable; - - function toObject(val) { - if (val === null || val === undefined) { - throw new TypeError('Object.assign cannot be called with null or undefined'); - } - - return Object(val); - } - - function shouldUseNative() { - try { - if (!Object.assign) { - return false; - } - - // Detect buggy property enumeration order in older V8 versions. - - // https://bugs.chromium.org/p/v8/issues/detail?id=4118 - var test1 = new String('abc'); // eslint-disable-line no-new-wrappers - test1[5] = 'de'; - if (Object.getOwnPropertyNames(test1)[0] === '5') { - return false; - } - - // https://bugs.chromium.org/p/v8/issues/detail?id=3056 - var test2 = {}; - for (var i = 0; i < 10; i++) { - test2['_' + String.fromCharCode(i)] = i; - } - var order2 = Object.getOwnPropertyNames(test2).map(function (n) { - return test2[n]; - }); - if (order2.join('') !== '0123456789') { - return false; - } - - // https://bugs.chromium.org/p/v8/issues/detail?id=3056 - var test3 = {}; - 'abcdefghijklmnopqrst'.split('').forEach(function (letter) { - test3[letter] = letter; - }); - if (Object.keys(Object.assign({}, test3)).join('') !== - 'abcdefghijklmnopqrst') { - return false; - } - - return true; - } catch (err) { - // We don't expect any of the above to throw, but better to be safe. - return false; - } - } - - objectAssign = shouldUseNative() ? Object.assign : function (target, source) { - var from; - var to = toObject(target); - var symbols; - - for (var s = 1; s < arguments.length; s++) { - from = Object(arguments[s]); - - for (var key in from) { - if (hasOwnProperty.call(from, key)) { - to[key] = from[key]; - } - } - - if (getOwnPropertySymbols) { - symbols = getOwnPropertySymbols(from); - for (var i = 0; i < symbols.length; i++) { - if (propIsEnumerable.call(from, symbols[i])) { - to[symbols[i]] = from[symbols[i]]; - } - } - } - } - - return to; - }; - return objectAssign; -} - -var react = {exports: {}}; - -var react_production_min = {}; - -/** @license React v17.0.2 - * react.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -var hasRequiredReact_production_min; - -function requireReact_production_min () { - if (hasRequiredReact_production_min) return react_production_min; - hasRequiredReact_production_min = 1; -var l=requireObjectAssign(),n=60103,p=60106;react_production_min.Fragment=60107;react_production_min.StrictMode=60108;react_production_min.Profiler=60114;var q=60109,r=60110,t=60112;react_production_min.Suspense=60113;var u=60115,v=60116; - if("function"===typeof Symbol&&Symbol.for){var w=Symbol.for;n=w("react.element");p=w("react.portal");react_production_min.Fragment=w("react.fragment");react_production_min.StrictMode=w("react.strict_mode");react_production_min.Profiler=w("react.profiler");q=w("react.provider");r=w("react.context");t=w("react.forward_ref");react_production_min.Suspense=w("react.suspense");u=w("react.memo");v=w("react.lazy");}var x="function"===typeof Symbol&&Symbol.iterator; - function y(a){if(null===a||"object"!==typeof a)return null;a=x&&a[x]||a["@@iterator"];return "function"===typeof a?a:null}function z(a){for(var b="https://reactjs.org/docs/error-decoder.html?invariant="+a,c=1;c= - E};k=function(){};exports.unstable_forceFrameRate=function(a){0>a||125>>1,e=a[d];if(void 0!==e&&0I(n,c))void 0!==r&&0>I(r,n)?(a[d]=r,a[v]=c,d=v):(a[d]=n,a[m]=c,d=m);else if(void 0!==r&&0>I(r,c))a[d]=r,a[v]=c,d=v;else break a}}return b}return null}function I(a,b){var c=a.sortIndex-b.sortIndex;return 0!==c?c:a.id-b.id}var L=[],M=[],N=1,O=null,P=3,Q=!1,R=!1,S=!1; - function T(a){for(var b=J(M);null!==b;){if(null===b.callback)K(M);else if(b.startTime<=a)K(M),b.sortIndex=b.expirationTime,H(L,b);else break;b=J(M);}}function U(a){S=!1;T(a);if(!R)if(null!==J(L))R=!0,f(V);else {var b=J(M);null!==b&&g(U,b.startTime-a);}} - function V(a,b){R=!1;S&&(S=!1,h());Q=!0;var c=P;try{T(b);for(O=J(L);null!==O&&(!(O.expirationTime>b)||a&&!exports.unstable_shouldYield());){var d=O.callback;if("function"===typeof d){O.callback=null;P=O.priorityLevel;var e=d(O.expirationTime<=b);b=exports.unstable_now();"function"===typeof e?O.callback=e:O===J(L)&&K(L);T(b);}else K(L);O=J(L);}if(null!==O)var m=!0;else {var n=J(M);null!==n&&g(U,n.startTime-b);m=!1;}return m}finally{O=null,P=c,Q=!1;}}var W=k;exports.unstable_IdlePriority=5; - exports.unstable_ImmediatePriority=1;exports.unstable_LowPriority=4;exports.unstable_NormalPriority=3;exports.unstable_Profiling=null;exports.unstable_UserBlockingPriority=2;exports.unstable_cancelCallback=function(a){a.callback=null;};exports.unstable_continueExecution=function(){R||Q||(R=!0,f(V));};exports.unstable_getCurrentPriorityLevel=function(){return P};exports.unstable_getFirstCallbackNode=function(){return J(L)}; - exports.unstable_next=function(a){switch(P){case 1:case 2:case 3:var b=3;break;default:b=P;}var c=P;P=b;try{return a()}finally{P=c;}};exports.unstable_pauseExecution=function(){};exports.unstable_requestPaint=W;exports.unstable_runWithPriority=function(a,b){switch(a){case 1:case 2:case 3:case 4:case 5:break;default:a=3;}var c=P;P=a;try{return b()}finally{P=c;}}; - exports.unstable_scheduleCallback=function(a,b,c){var d=exports.unstable_now();"object"===typeof c&&null!==c?(c=c.delay,c="number"===typeof c&&0d?(a.sortIndex=c,H(M,a),null===J(L)&&a===J(M)&&(S?h():S=!0,g(U,c-d))):(a.sortIndex=e,H(L,a),R||Q||(R=!0,f(V)));return a}; - exports.unstable_wrapCallback=function(a){var b=P;return function(){var c=P;P=b;try{return a.apply(this,arguments)}finally{P=c;}}}; - } (scheduler_production_min)); - return scheduler_production_min; -} - -var hasRequiredScheduler; - -function requireScheduler () { - if (hasRequiredScheduler) return scheduler.exports; - hasRequiredScheduler = 1; - - { - scheduler.exports = requireScheduler_production_min(); - } - return scheduler.exports; -} - +function e(e,t){return t.forEach((function(t){t&&"string"!=typeof t&&!Array.isArray(t)&&Object.keys(t).forEach((function(n){if("default"!==n&&!(n in e)){var r=Object.getOwnPropertyDescriptor(t,n);Object.defineProperty(e,n,r.get?r:{enumerable:!0,get:function(){return t[n]}})}}))})),Object.freeze(e)}var t="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{};function n(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var r,o,a={exports:{}},i={};function s(){if(o)return r;o=1;var e=Object.getOwnPropertySymbols,t=Object.prototype.hasOwnProperty,n=Object.prototype.propertyIsEnumerable;return r=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;var r=Object.getOwnPropertyNames(t).map((function(e){return t[e]}));if("0123456789"!==r.join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach((function(e){o[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(e){return!1}}()?Object.assign:function(r,o){for(var a,i,s=function(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}(r),l=1;l=b},o=function(){},e.unstable_forceFrameRate=function(e){0>e||125>>1,o=e[r];if(!(void 0!==o&&0S(i,n))void 0!==l&&0>S(l,i)?(e[r]=l,e[s]=n,r=s):(e[r]=i,e[a]=n,r=a);else{if(!(void 0!==l&&0>S(l,n)))break e;e[r]=l,e[s]=n,r=s}}}return t}return null}function S(e,t){var n=e.sortIndex-t.sortIndex;return 0!==n?n:e.id-t.id}var C=[],O=[],I=1,P=null,T=3,N=!1,A=!1,j=!1;function R(e){for(var t=k(O);null!==t;){if(null===t.callback)E(O);else{if(!(t.startTime<=e))break;E(O),t.sortIndex=t.expirationTime,x(C,t)}t=k(O)}}function L(e){if(j=!1,R(e),!A)if(null!==k(C))A=!0,t(M);else{var r=k(O);null!==r&&n(L,r.startTime-e)}}function M(t,o){A=!1,j&&(j=!1,r()),N=!0;var a=T;try{for(R(o),P=k(C);null!==P&&(!(P.expirationTime>o)||t&&!e.unstable_shouldYield());){var i=P.callback;if("function"==typeof i){P.callback=null,T=P.priorityLevel;var s=i(P.expirationTime<=o);o=e.unstable_now(),"function"==typeof s?P.callback=s:P===k(C)&&E(C),R(o)}else E(C);P=k(C)}if(null!==P)var l=!0;else{var c=k(O);null!==c&&n(L,c.startTime-o),l=!1}return l}finally{P=null,T=a,N=!1}}var D=o;e.unstable_IdlePriority=5,e.unstable_ImmediatePriority=1,e.unstable_LowPriority=4,e.unstable_NormalPriority=3,e.unstable_Profiling=null,e.unstable_UserBlockingPriority=2,e.unstable_cancelCallback=function(e){e.callback=null},e.unstable_continueExecution=function(){A||N||(A=!0,t(M))},e.unstable_getCurrentPriorityLevel=function(){return T},e.unstable_getFirstCallbackNode=function(){return k(C)},e.unstable_next=function(e){switch(T){case 1:case 2:case 3:var t=3;break;default:t=T}var n=T;T=t;try{return e()}finally{T=n}},e.unstable_pauseExecution=function(){},e.unstable_requestPaint=D,e.unstable_runWithPriority=function(e,t){switch(e){case 1:case 2:case 3:case 4:case 5:break;default:e=3}var n=T;T=e;try{return t()}finally{T=n}},e.unstable_scheduleCallback=function(o,a,i){var s=e.unstable_now();switch(i="object"==typeof i&&null!==i&&"number"==typeof(i=i.delay)&&0s?(o.sortIndex=i,x(O,o),null===k(C)&&o===k(O)&&(j?r():j=!0,n(L,i-s))):(o.sortIndex=l,x(C,o),A||N||(A=!0,t(M))),o},e.unstable_wrapCallback=function(e){var t=T;return function(){var n=T;T=t;try{return e.apply(this,arguments)}finally{T=n}}}}(k)),k)),x.exports} /** @license React v17.0.2 * react-dom.production.min.js * @@ -252,35029 +6,30 @@ function requireScheduler () { * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. - */ - -var hasRequiredReactDom_production_min; - -function requireReactDom_production_min () { - if (hasRequiredReactDom_production_min) return reactDom_production_min; - hasRequiredReactDom_production_min = 1; -var aa=reactExports,m=requireObjectAssign(),r=requireScheduler();function y(a){for(var b="https://reactjs.org/docs/error-decoder.html?invariant="+a,c=1;cb}return !1}function B(a,b,c,d,e,f,g){this.acceptsBooleans=2===b||3===b||4===b;this.attributeName=d;this.attributeNamespace=e;this.mustUseProperty=c;this.propertyName=a;this.type=b;this.sanitizeURL=f;this.removeEmptyString=g;}var D={}; - "children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(a){D[a]=new B(a,0,!1,a,null,!1,!1);});[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(a){var b=a[0];D[b]=new B(b,1,!1,a[1],null,!1,!1);});["contentEditable","draggable","spellCheck","value"].forEach(function(a){D[a]=new B(a,2,!1,a.toLowerCase(),null,!1,!1);}); - ["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(function(a){D[a]=new B(a,2,!1,a,null,!1,!1);});"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach(function(a){D[a]=new B(a,3,!1,a.toLowerCase(),null,!1,!1);}); - ["checked","multiple","muted","selected"].forEach(function(a){D[a]=new B(a,3,!0,a,null,!1,!1);});["capture","download"].forEach(function(a){D[a]=new B(a,4,!1,a,null,!1,!1);});["cols","rows","size","span"].forEach(function(a){D[a]=new B(a,6,!1,a,null,!1,!1);});["rowSpan","start"].forEach(function(a){D[a]=new B(a,5,!1,a.toLowerCase(),null,!1,!1);});var oa=/[\-:]([a-z])/g;function pa(a){return a[1].toUpperCase()} - "accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach(function(a){var b=a.replace(oa, - pa);D[b]=new B(b,1,!1,a,null,!1,!1);});"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(a){var b=a.replace(oa,pa);D[b]=new B(b,1,!1,a,"http://www.w3.org/1999/xlink",!1,!1);});["xml:base","xml:lang","xml:space"].forEach(function(a){var b=a.replace(oa,pa);D[b]=new B(b,1,!1,a,"http://www.w3.org/XML/1998/namespace",!1,!1);});["tabIndex","crossOrigin"].forEach(function(a){D[a]=new B(a,1,!1,a.toLowerCase(),null,!1,!1);}); - D.xlinkHref=new B("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1);["src","href","action","formAction"].forEach(function(a){D[a]=new B(a,1,!1,a.toLowerCase(),null,!0,!0);}); - function qa(a,b,c,d){var e=D.hasOwnProperty(b)?D[b]:null;var f=null!==e?0===e.type:d?!1:!(2h||e[g]!==f[h])return "\n"+e[g].replace(" at new "," at ");while(1<=g&&0<=h)}break}}}finally{Oa=!1,Error.prepareStackTrace=c;}return (a=a?a.displayName||a.name:"")?Na(a):""} - function Qa(a){switch(a.tag){case 5:return Na(a.type);case 16:return Na("Lazy");case 13:return Na("Suspense");case 19:return Na("SuspenseList");case 0:case 2:case 15:return a=Pa(a.type,!1),a;case 11:return a=Pa(a.type.render,!1),a;case 22:return a=Pa(a.type._render,!1),a;case 1:return a=Pa(a.type,!0),a;default:return ""}} - function Ra(a){if(null==a)return null;if("function"===typeof a)return a.displayName||a.name||null;if("string"===typeof a)return a;switch(a){case ua:return "Fragment";case ta:return "Portal";case xa:return "Profiler";case wa:return "StrictMode";case Ba:return "Suspense";case Ca:return "SuspenseList"}if("object"===typeof a)switch(a.$$typeof){case za:return (a.displayName||"Context")+".Consumer";case ya:return (a._context.displayName||"Context")+".Provider";case Aa:var b=a.render;b=b.displayName||b.name||""; - return a.displayName||(""!==b?"ForwardRef("+b+")":"ForwardRef");case Da:return Ra(a.type);case Fa:return Ra(a._render);case Ea:b=a._payload;a=a._init;try{return Ra(a(b))}catch(c){}}return null}function Sa(a){switch(typeof a){case "boolean":case "number":case "object":case "string":case "undefined":return a;default:return ""}}function Ta(a){var b=a.type;return (a=a.nodeName)&&"input"===a.toLowerCase()&&("checkbox"===b||"radio"===b)} - function Ua(a){var b=Ta(a)?"checked":"value",c=Object.getOwnPropertyDescriptor(a.constructor.prototype,b),d=""+a[b];if(!a.hasOwnProperty(b)&&"undefined"!==typeof c&&"function"===typeof c.get&&"function"===typeof c.set){var e=c.get,f=c.set;Object.defineProperty(a,b,{configurable:!0,get:function(){return e.call(this)},set:function(a){d=""+a;f.call(this,a);}});Object.defineProperty(a,b,{enumerable:c.enumerable});return {getValue:function(){return d},setValue:function(a){d=""+a;},stopTracking:function(){a._valueTracker= - null;delete a[b];}}}}function Va(a){a._valueTracker||(a._valueTracker=Ua(a));}function Wa(a){if(!a)return !1;var b=a._valueTracker;if(!b)return !0;var c=b.getValue();var d="";a&&(d=Ta(a)?a.checked?"true":"false":a.value);a=d;return a!==c?(b.setValue(a),!0):!1}function Xa(a){a=a||("undefined"!==typeof document?document:void 0);if("undefined"===typeof a)return null;try{return a.activeElement||a.body}catch(b){return a.body}} - function Ya(a,b){var c=b.checked;return m({},b,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:null!=c?c:a._wrapperState.initialChecked})}function Za(a,b){var c=null==b.defaultValue?"":b.defaultValue,d=null!=b.checked?b.checked:b.defaultChecked;c=Sa(null!=b.value?b.value:c);a._wrapperState={initialChecked:d,initialValue:c,controlled:"checkbox"===b.type||"radio"===b.type?null!=b.checked:null!=b.value};}function $a(a,b){b=b.checked;null!=b&&qa(a,"checked",b,!1);} - function ab(a,b){$a(a,b);var c=Sa(b.value),d=b.type;if(null!=c)if("number"===d){if(0===c&&""===a.value||a.value!=c)a.value=""+c;}else a.value!==""+c&&(a.value=""+c);else if("submit"===d||"reset"===d){a.removeAttribute("value");return}b.hasOwnProperty("value")?bb(a,b.type,c):b.hasOwnProperty("defaultValue")&&bb(a,b.type,Sa(b.defaultValue));null==b.checked&&null!=b.defaultChecked&&(a.defaultChecked=!!b.defaultChecked);} - function cb(a,b,c){if(b.hasOwnProperty("value")||b.hasOwnProperty("defaultValue")){var d=b.type;if(!("submit"!==d&&"reset"!==d||void 0!==b.value&&null!==b.value))return;b=""+a._wrapperState.initialValue;c||b===a.value||(a.value=b);a.defaultValue=b;}c=a.name;""!==c&&(a.name="");a.defaultChecked=!!a._wrapperState.initialChecked;""!==c&&(a.name=c);} - function bb(a,b,c){if("number"!==b||Xa(a.ownerDocument)!==a)null==c?a.defaultValue=""+a._wrapperState.initialValue:a.defaultValue!==""+c&&(a.defaultValue=""+c);}function db(a){var b="";aa.Children.forEach(a,function(a){null!=a&&(b+=a);});return b}function eb(a,b){a=m({children:void 0},b);if(b=db(b.children))a.children=b;return a} - function fb(a,b,c,d){a=a.options;if(b){b={};for(var e=0;e=c.length))throw Error(y(93));c=c[0];}b=c;}null==b&&(b="");c=b;}a._wrapperState={initialValue:Sa(c)};} - function ib(a,b){var c=Sa(b.value),d=Sa(b.defaultValue);null!=c&&(c=""+c,c!==a.value&&(a.value=c),null==b.defaultValue&&a.defaultValue!==c&&(a.defaultValue=c));null!=d&&(a.defaultValue=""+d);}function jb(a){var b=a.textContent;b===a._wrapperState.initialValue&&""!==b&&null!==b&&(a.value=b);}var kb={html:"http://www.w3.org/1999/xhtml",mathml:"http://www.w3.org/1998/Math/MathML",svg:"http://www.w3.org/2000/svg"}; - function lb(a){switch(a){case "svg":return "http://www.w3.org/2000/svg";case "math":return "http://www.w3.org/1998/Math/MathML";default:return "http://www.w3.org/1999/xhtml"}}function mb(a,b){return null==a||"http://www.w3.org/1999/xhtml"===a?lb(b):"http://www.w3.org/2000/svg"===a&&"foreignObject"===b?"http://www.w3.org/1999/xhtml":a} - var nb,ob=function(a){return "undefined"!==typeof MSApp&&MSApp.execUnsafeLocalFunction?function(b,c,d,e){MSApp.execUnsafeLocalFunction(function(){return a(b,c,d,e)});}:a}(function(a,b){if(a.namespaceURI!==kb.svg||"innerHTML"in a)a.innerHTML=b;else {nb=nb||document.createElement("div");nb.innerHTML=""+b.valueOf().toString()+"";for(b=nb.firstChild;a.firstChild;)a.removeChild(a.firstChild);for(;b.firstChild;)a.appendChild(b.firstChild);}}); - function pb(a,b){if(b){var c=a.firstChild;if(c&&c===a.lastChild&&3===c.nodeType){c.nodeValue=b;return}}a.textContent=b;} - var qb={animationIterationCount:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0, - floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},rb=["Webkit","ms","Moz","O"];Object.keys(qb).forEach(function(a){rb.forEach(function(b){b=b+a.charAt(0).toUpperCase()+a.substring(1);qb[b]=qb[a];});});function sb(a,b,c){return null==b||"boolean"===typeof b||""===b?"":c||"number"!==typeof b||0===b||qb.hasOwnProperty(a)&&qb[a]?(""+b).trim():b+"px"} - function tb(a,b){a=a.style;for(var c in b)if(b.hasOwnProperty(c)){var d=0===c.indexOf("--"),e=sb(c,b[c],d);"float"===c&&(c="cssFloat");d?a.setProperty(c,e):a[c]=e;}}var ub=m({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0}); - function vb(a,b){if(b){if(ub[a]&&(null!=b.children||null!=b.dangerouslySetInnerHTML))throw Error(y(137,a));if(null!=b.dangerouslySetInnerHTML){if(null!=b.children)throw Error(y(60));if(!("object"===typeof b.dangerouslySetInnerHTML&&"__html"in b.dangerouslySetInnerHTML))throw Error(y(61));}if(null!=b.style&&"object"!==typeof b.style)throw Error(y(62));}} - function wb(a,b){if(-1===a.indexOf("-"))return "string"===typeof b.is;switch(a){case "annotation-xml":case "color-profile":case "font-face":case "font-face-src":case "font-face-uri":case "font-face-format":case "font-face-name":case "missing-glyph":return !1;default:return !0}}function xb(a){a=a.target||a.srcElement||window;a.correspondingUseElement&&(a=a.correspondingUseElement);return 3===a.nodeType?a.parentNode:a}var yb=null,zb=null,Ab=null; - function Bb(a){if(a=Cb(a)){if("function"!==typeof yb)throw Error(y(280));var b=a.stateNode;b&&(b=Db(b),yb(a.stateNode,a.type,b));}}function Eb(a){zb?Ab?Ab.push(a):Ab=[a]:zb=a;}function Fb(){if(zb){var a=zb,b=Ab;Ab=zb=null;Bb(a);if(b)for(a=0;ad?0:1<c;c++)b.push(a);return b} - function $c(a,b,c){a.pendingLanes|=b;var d=b-1;a.suspendedLanes&=d;a.pingedLanes&=d;a=a.eventTimes;b=31-Vc(b);a[b]=c;}var Vc=Math.clz32?Math.clz32:ad,bd=Math.log,cd=Math.LN2;function ad(a){return 0===a?32:31-(bd(a)/cd|0)|0}var dd=r.unstable_UserBlockingPriority,ed=r.unstable_runWithPriority,fd=!0;function gd(a,b,c,d){Kb||Ib();var e=hd,f=Kb;Kb=!0;try{Hb(e,a,b,c,d);}finally{(Kb=f)||Mb();}}function id(a,b,c,d){ed(dd,hd.bind(null,a,b,c,d));} - function hd(a,b,c,d){if(fd){var e;if((e=0===(b&4))&&0=be),ee=String.fromCharCode(32),fe=!1; - function ge(a,b){switch(a){case "keyup":return -1!==$d.indexOf(b.keyCode);case "keydown":return 229!==b.keyCode;case "keypress":case "mousedown":case "focusout":return !0;default:return !1}}function he(a){a=a.detail;return "object"===typeof a&&"data"in a?a.data:null}var ie=!1;function je(a,b){switch(a){case "compositionend":return he(b);case "keypress":if(32!==b.which)return null;fe=!0;return ee;case "textInput":return a=b.data,a===ee&&fe?null:a;default:return null}} - function ke(a,b){if(ie)return "compositionend"===a||!ae&&ge(a,b)?(a=nd(),md=ld=kd=null,ie=!1,a):null;switch(a){case "paste":return null;case "keypress":if(!(b.ctrlKey||b.altKey||b.metaKey)||b.ctrlKey&&b.altKey){if(b.char&&1=b)return {node:c,offset:b-a};a=d;}a:{for(;c;){if(c.nextSibling){c=c.nextSibling;break a}c=c.parentNode;}c=void 0;}c=Ke(c);}}function Me(a,b){return a&&b?a===b?!0:a&&3===a.nodeType?!1:b&&3===b.nodeType?Me(a,b.parentNode):"contains"in a?a.contains(b):a.compareDocumentPosition?!!(a.compareDocumentPosition(b)&16):!1:!1} - function Ne(){for(var a=window,b=Xa();b instanceof a.HTMLIFrameElement;){try{var c="string"===typeof b.contentWindow.location.href;}catch(d){c=!1;}if(c)a=b.contentWindow;else break;b=Xa(a.document);}return b}function Oe(a){var b=a&&a.nodeName&&a.nodeName.toLowerCase();return b&&("input"===b&&("text"===a.type||"search"===a.type||"tel"===a.type||"url"===a.type||"password"===a.type)||"textarea"===b||"true"===a.contentEditable)} - var Pe=fa&&"documentMode"in document&&11>=document.documentMode,Qe=null,Re=null,Se=null,Te=!1; - function Ue(a,b,c){var d=c.window===c?c.document:9===c.nodeType?c:c.ownerDocument;Te||null==Qe||Qe!==Xa(d)||(d=Qe,"selectionStart"in d&&Oe(d)?d={start:d.selectionStart,end:d.selectionEnd}:(d=(d.ownerDocument&&d.ownerDocument.defaultView||window).getSelection(),d={anchorNode:d.anchorNode,anchorOffset:d.anchorOffset,focusNode:d.focusNode,focusOffset:d.focusOffset}),Se&&Je(Se,d)||(Se=d,d=oe(Re,"onSelect"),0Af||(a.current=zf[Af],zf[Af]=null,Af--);}function I(a,b){Af++;zf[Af]=a.current;a.current=b;}var Cf={},M=Bf(Cf),N=Bf(!1),Df=Cf; - function Ef(a,b){var c=a.type.contextTypes;if(!c)return Cf;var d=a.stateNode;if(d&&d.__reactInternalMemoizedUnmaskedChildContext===b)return d.__reactInternalMemoizedMaskedChildContext;var e={},f;for(f in c)e[f]=b[f];d&&(a=a.stateNode,a.__reactInternalMemoizedUnmaskedChildContext=b,a.__reactInternalMemoizedMaskedChildContext=e);return e}function Ff(a){a=a.childContextTypes;return null!==a&&void 0!==a}function Gf(){H(N);H(M);}function Hf(a,b,c){if(M.current!==Cf)throw Error(y(168));I(M,b);I(N,c);} - function If(a,b,c){var d=a.stateNode;a=b.childContextTypes;if("function"!==typeof d.getChildContext)return c;d=d.getChildContext();for(var e in d)if(!(e in a))throw Error(y(108,Ra(b)||"Unknown",e));return m({},c,d)}function Jf(a){a=(a=a.stateNode)&&a.__reactInternalMemoizedMergedChildContext||Cf;Df=M.current;I(M,a);I(N,N.current);return !0}function Kf(a,b,c){var d=a.stateNode;if(!d)throw Error(y(169));c?(a=If(a,b,Df),d.__reactInternalMemoizedMergedChildContext=a,H(N),H(M),I(M,a)):H(N);I(N,c);} - var Lf=null,Mf=null,Nf=r.unstable_runWithPriority,Of=r.unstable_scheduleCallback,Pf=r.unstable_cancelCallback,Qf=r.unstable_shouldYield,Rf=r.unstable_requestPaint,Sf=r.unstable_now,Tf=r.unstable_getCurrentPriorityLevel,Uf=r.unstable_ImmediatePriority,Vf=r.unstable_UserBlockingPriority,Wf=r.unstable_NormalPriority,Xf=r.unstable_LowPriority,Yf=r.unstable_IdlePriority,Zf={},$f=void 0!==Rf?Rf:function(){},ag=null,bg=null,cg=!1,dg=Sf(),O=1E4>dg?Sf:function(){return Sf()-dg}; - function eg(){switch(Tf()){case Uf:return 99;case Vf:return 98;case Wf:return 97;case Xf:return 96;case Yf:return 95;default:throw Error(y(332));}}function fg(a){switch(a){case 99:return Uf;case 98:return Vf;case 97:return Wf;case 96:return Xf;case 95:return Yf;default:throw Error(y(332));}}function gg(a,b){a=fg(a);return Nf(a,b)}function hg(a,b,c){a=fg(a);return Of(a,b,c)}function ig(){if(null!==bg){var a=bg;bg=null;Pf(a);}jg();} - function jg(){if(!cg&&null!==ag){cg=!0;var a=0;try{var b=ag;gg(99,function(){for(;az?(q=u,u=null):q=u.sibling;var n=p(e,u,h[z],k);if(null===n){null===u&&(u=q);break}a&&u&&null=== - n.alternate&&b(e,u);g=f(n,g,z);null===t?l=n:t.sibling=n;t=n;u=q;}if(z===h.length)return c(e,u),l;if(null===u){for(;zz?(q=u,u=null):q=u.sibling;var w=p(e,u,n.value,k);if(null===w){null===u&&(u=q);break}a&&u&&null===w.alternate&&b(e,u);g=f(w,g,z);null===t?l=w:t.sibling=w;t=w;u=q;}if(n.done)return c(e,u),l;if(null===u){for(;!n.done;z++,n=h.next())n=A(e,n.value,k),null!==n&&(g=f(n,g,z),null===t?l=n:t.sibling=n,t=n);return l}for(u=d(e,u);!n.done;z++,n=h.next())n=C(u,e,z,n.value,k),null!==n&&(a&&null!==n.alternate&& - u.delete(null===n.key?z:n.key),g=f(n,g,z),null===t?l=n:t.sibling=n,t=n);a&&u.forEach(function(a){return b(e,a)});return l}return function(a,d,f,h){var k="object"===typeof f&&null!==f&&f.type===ua&&null===f.key;k&&(f=f.props.children);var l="object"===typeof f&&null!==f;if(l)switch(f.$$typeof){case sa:a:{l=f.key;for(k=d;null!==k;){if(k.key===l){switch(k.tag){case 7:if(f.type===ua){c(a,k.sibling);d=e(k,f.props.children);d.return=a;a=d;break a}break;default:if(k.elementType===f.type){c(a,k.sibling); - d=e(k,f.props);d.ref=Qg(a,k,f);d.return=a;a=d;break a}}c(a,k);break}else b(a,k);k=k.sibling;}f.type===ua?(d=Xg(f.props.children,a.mode,h,f.key),d.return=a,a=d):(h=Vg(f.type,f.key,f.props,null,a.mode,h),h.ref=Qg(a,d,f),h.return=a,a=h);}return g(a);case ta:a:{for(k=f.key;null!==d;){if(d.key===k)if(4===d.tag&&d.stateNode.containerInfo===f.containerInfo&&d.stateNode.implementation===f.implementation){c(a,d.sibling);d=e(d,f.children||[]);d.return=a;a=d;break a}else {c(a,d);break}else b(a,d);d=d.sibling;}d= - Wg(f,a.mode,h);d.return=a;a=d;}return g(a)}if("string"===typeof f||"number"===typeof f)return f=""+f,null!==d&&6===d.tag?(c(a,d.sibling),d=e(d,f),d.return=a,a=d):(c(a,d),d=Ug(f,a.mode,h),d.return=a,a=d),g(a);if(Pg(f))return x(a,d,f,h);if(La(f))return w(a,d,f,h);l&&Rg(a,f);if("undefined"===typeof f&&!k)switch(a.tag){case 1:case 22:case 0:case 11:case 15:throw Error(y(152,Ra(a.type)||"Component"));}return c(a,d)}}var Yg=Sg(!0),Zg=Sg(!1),$g={},ah=Bf($g),bh=Bf($g),ch=Bf($g); - function dh(a){if(a===$g)throw Error(y(174));return a}function eh(a,b){I(ch,b);I(bh,a);I(ah,$g);a=b.nodeType;switch(a){case 9:case 11:b=(b=b.documentElement)?b.namespaceURI:mb(null,"");break;default:a=8===a?b.parentNode:b,b=a.namespaceURI||null,a=a.tagName,b=mb(b,a);}H(ah);I(ah,b);}function fh(){H(ah);H(bh);H(ch);}function gh(a){dh(ch.current);var b=dh(ah.current);var c=mb(b,a.type);b!==c&&(I(bh,a),I(ah,c));}function hh(a){bh.current===a&&(H(ah),H(bh));}var P=Bf(0); - function ih(a){for(var b=a;null!==b;){if(13===b.tag){var c=b.memoizedState;if(null!==c&&(c=c.dehydrated,null===c||"$?"===c.data||"$!"===c.data))return b}else if(19===b.tag&&void 0!==b.memoizedProps.revealOrder){if(0!==(b.flags&64))return b}else if(null!==b.child){b.child.return=b;b=b.child;continue}if(b===a)break;for(;null===b.sibling;){if(null===b.return||b.return===a)return null;b=b.return;}b.sibling.return=b.return;b=b.sibling;}return null}var jh=null,kh=null,lh=!1; - function mh(a,b){var c=nh(5,null,null,0);c.elementType="DELETED";c.type="DELETED";c.stateNode=b;c.return=a;c.flags=8;null!==a.lastEffect?(a.lastEffect.nextEffect=c,a.lastEffect=c):a.firstEffect=a.lastEffect=c;}function oh(a,b){switch(a.tag){case 5:var c=a.type;b=1!==b.nodeType||c.toLowerCase()!==b.nodeName.toLowerCase()?null:b;return null!==b?(a.stateNode=b,!0):!1;case 6:return b=""===a.pendingProps||3!==b.nodeType?null:b,null!==b?(a.stateNode=b,!0):!1;case 13:return !1;default:return !1}} - function ph(a){if(lh){var b=kh;if(b){var c=b;if(!oh(a,b)){b=rf(c.nextSibling);if(!b||!oh(a,b)){a.flags=a.flags&-1025|2;lh=!1;jh=a;return}mh(jh,c);}jh=a;kh=rf(b.firstChild);}else a.flags=a.flags&-1025|2,lh=!1,jh=a;}}function qh(a){for(a=a.return;null!==a&&5!==a.tag&&3!==a.tag&&13!==a.tag;)a=a.return;jh=a;} - function rh(a){if(a!==jh)return !1;if(!lh)return qh(a),lh=!0,!1;var b=a.type;if(5!==a.tag||"head"!==b&&"body"!==b&&!nf(b,a.memoizedProps))for(b=kh;b;)mh(a,b),b=rf(b.nextSibling);qh(a);if(13===a.tag){a=a.memoizedState;a=null!==a?a.dehydrated:null;if(!a)throw Error(y(317));a:{a=a.nextSibling;for(b=0;a;){if(8===a.nodeType){var c=a.data;if("/$"===c){if(0===b){kh=rf(a.nextSibling);break a}b--;}else "$"!==c&&"$!"!==c&&"$?"!==c||b++;}a=a.nextSibling;}kh=null;}}else kh=jh?rf(a.stateNode.nextSibling):null;return !0} - function sh(){kh=jh=null;lh=!1;}var th=[];function uh(){for(var a=0;af))throw Error(y(301));f+=1;T=S=null;b.updateQueue=null;vh.current=Fh;a=c(d,e);}while(zh)}vh.current=Gh;b=null!==S&&null!==S.next;xh=0;T=S=R=null;yh=!1;if(b)throw Error(y(300));return a}function Hh(){var a={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};null===T?R.memoizedState=T=a:T=T.next=a;return T} - function Ih(){if(null===S){var a=R.alternate;a=null!==a?a.memoizedState:null;}else a=S.next;var b=null===T?R.memoizedState:T.next;if(null!==b)T=b,S=a;else {if(null===a)throw Error(y(310));S=a;a={memoizedState:S.memoizedState,baseState:S.baseState,baseQueue:S.baseQueue,queue:S.queue,next:null};null===T?R.memoizedState=T=a:T=T.next=a;}return T}function Jh(a,b){return "function"===typeof b?b(a):b} - function Kh(a){var b=Ih(),c=b.queue;if(null===c)throw Error(y(311));c.lastRenderedReducer=a;var d=S,e=d.baseQueue,f=c.pending;if(null!==f){if(null!==e){var g=e.next;e.next=f.next;f.next=g;}d.baseQueue=e=f;c.pending=null;}if(null!==e){e=e.next;d=d.baseState;var h=g=f=null,k=e;do{var l=k.lane;if((xh&l)===l)null!==h&&(h=h.next={lane:0,action:k.action,eagerReducer:k.eagerReducer,eagerState:k.eagerState,next:null}),d=k.eagerReducer===a?k.eagerState:a(d,k.action);else {var n={lane:l,action:k.action,eagerReducer:k.eagerReducer, - eagerState:k.eagerState,next:null};null===h?(g=h=n,f=d):h=h.next=n;R.lanes|=l;Dg|=l;}k=k.next;}while(null!==k&&k!==e);null===h?f=d:h.next=g;He(d,b.memoizedState)||(ug=!0);b.memoizedState=d;b.baseState=f;b.baseQueue=h;c.lastRenderedState=d;}return [b.memoizedState,c.dispatch]} - function Lh(a){var b=Ih(),c=b.queue;if(null===c)throw Error(y(311));c.lastRenderedReducer=a;var d=c.dispatch,e=c.pending,f=b.memoizedState;if(null!==e){c.pending=null;var g=e=e.next;do f=a(f,g.action),g=g.next;while(g!==e);He(f,b.memoizedState)||(ug=!0);b.memoizedState=f;null===b.baseQueue&&(b.baseState=f);c.lastRenderedState=f;}return [f,d]} - function Mh(a,b,c){var d=b._getVersion;d=d(b._source);var e=b._workInProgressVersionPrimary;if(null!==e)a=e===d;else if(a=a.mutableReadLanes,a=(xh&a)===a)b._workInProgressVersionPrimary=d,th.push(b);if(a)return c(b._source);th.push(b);throw Error(y(350));} - function Nh(a,b,c,d){var e=U;if(null===e)throw Error(y(349));var f=b._getVersion,g=f(b._source),h=vh.current,k=h.useState(function(){return Mh(e,b,c)}),l=k[1],n=k[0];k=T;var A=a.memoizedState,p=A.refs,C=p.getSnapshot,x=A.source;A=A.subscribe;var w=R;a.memoizedState={refs:p,source:b,subscribe:d};h.useEffect(function(){p.getSnapshot=c;p.setSnapshot=l;var a=f(b._source);if(!He(g,a)){a=c(b._source);He(n,a)||(l(a),a=Ig(w),e.mutableReadLanes|=a&e.pendingLanes);a=e.mutableReadLanes;e.entangledLanes|=a;for(var d= - e.entanglements,h=a;0c?98:c,function(){a(!0);});gg(97\x3c/script>",a=a.removeChild(a.firstChild)):"string"===typeof d.is?a=g.createElement(c,{is:d.is}):(a=g.createElement(c),"select"===c&&(g=a,d.multiple?g.multiple=!0:d.size&&(g.size=d.size))):a=g.createElementNS(a,c);a[wf]=b;a[xf]=d;Bi(a,b,!1,!1);b.stateNode=a;g=wb(c,d);switch(c){case "dialog":G("cancel",a);G("close",a); - e=d;break;case "iframe":case "object":case "embed":G("load",a);e=d;break;case "video":case "audio":for(e=0;eJi&&(b.flags|=64,f=!0,Fi(d,!1),b.lanes=33554432);}else {if(!f)if(a=ih(g),null!==a){if(b.flags|=64,f=!0,c=a.updateQueue,null!==c&&(b.updateQueue=c,b.flags|=4),Fi(d,!0),null===d.tail&&"hidden"===d.tailMode&&!g.alternate&&!lh)return b=b.lastEffect=d.lastEffect,null!==b&&(b.nextEffect=null),null}else 2*O()-d.renderingStartTime>Ji&&1073741824!==c&&(b.flags|= - 64,f=!0,Fi(d,!1),b.lanes=33554432);d.isBackwards?(g.sibling=b.child,b.child=g):(c=d.last,null!==c?c.sibling=g:b.child=g,d.last=g);}return null!==d.tail?(c=d.tail,d.rendering=c,d.tail=c.sibling,d.lastEffect=b.lastEffect,d.renderingStartTime=O(),c.sibling=null,b=P.current,I(P,f?b&1|2:b&1),c):null;case 23:case 24:return Ki(),null!==a&&null!==a.memoizedState!==(null!==b.memoizedState)&&"unstable-defer-without-hiding"!==d.mode&&(b.flags|=4),null}throw Error(y(156,b.tag));} - function Li(a){switch(a.tag){case 1:Ff(a.type)&&Gf();var b=a.flags;return b&4096?(a.flags=b&-4097|64,a):null;case 3:fh();H(N);H(M);uh();b=a.flags;if(0!==(b&64))throw Error(y(285));a.flags=b&-4097|64;return a;case 5:return hh(a),null;case 13:return H(P),b=a.flags,b&4096?(a.flags=b&-4097|64,a):null;case 19:return H(P),null;case 4:return fh(),null;case 10:return rg(a),null;case 23:case 24:return Ki(),null;default:return null}} - function Mi(a,b){try{var c="",d=b;do c+=Qa(d),d=d.return;while(d);var e=c;}catch(f){e="\nError generating stack: "+f.message+"\n"+f.stack;}return {value:a,source:b,stack:e}}function Ni(a,b){try{console.error(b.value);}catch(c){setTimeout(function(){throw c;});}}var Oi="function"===typeof WeakMap?WeakMap:Map;function Pi(a,b,c){c=zg(-1,c);c.tag=3;c.payload={element:null};var d=b.value;c.callback=function(){Qi||(Qi=!0,Ri=d);Ni(a,b);};return c} - function Si(a,b,c){c=zg(-1,c);c.tag=3;var d=a.type.getDerivedStateFromError;if("function"===typeof d){var e=b.value;c.payload=function(){Ni(a,b);return d(e)};}var f=a.stateNode;null!==f&&"function"===typeof f.componentDidCatch&&(c.callback=function(){"function"!==typeof d&&(null===Ti?Ti=new Set([this]):Ti.add(this),Ni(a,b));var c=b.stack;this.componentDidCatch(b.value,{componentStack:null!==c?c:""});});return c}var Ui="function"===typeof WeakSet?WeakSet:Set; - function Vi(a){var b=a.ref;if(null!==b)if("function"===typeof b)try{b(null);}catch(c){Wi(a,c);}else b.current=null;}function Xi(a,b){switch(b.tag){case 0:case 11:case 15:case 22:return;case 1:if(b.flags&256&&null!==a){var c=a.memoizedProps,d=a.memoizedState;a=b.stateNode;b=a.getSnapshotBeforeUpdate(b.elementType===b.type?c:lg(b.type,c),d);a.__reactInternalSnapshotBeforeUpdate=b;}return;case 3:b.flags&256&&qf(b.stateNode.containerInfo);return;case 5:case 6:case 4:case 17:return}throw Error(y(163));} - function Yi(a,b,c){switch(c.tag){case 0:case 11:case 15:case 22:b=c.updateQueue;b=null!==b?b.lastEffect:null;if(null!==b){a=b=b.next;do{if(3===(a.tag&3)){var d=a.create;a.destroy=d();}a=a.next;}while(a!==b)}b=c.updateQueue;b=null!==b?b.lastEffect:null;if(null!==b){a=b=b.next;do{var e=a;d=e.next;e=e.tag;0!==(e&4)&&0!==(e&1)&&(Zi(c,a),$i(c,a));a=d;}while(a!==b)}return;case 1:a=c.stateNode;c.flags&4&&(null===b?a.componentDidMount():(d=c.elementType===c.type?b.memoizedProps:lg(c.type,b.memoizedProps),a.componentDidUpdate(d, - b.memoizedState,a.__reactInternalSnapshotBeforeUpdate)));b=c.updateQueue;null!==b&&Eg(c,b,a);return;case 3:b=c.updateQueue;if(null!==b){a=null;if(null!==c.child)switch(c.child.tag){case 5:a=c.child.stateNode;break;case 1:a=c.child.stateNode;}Eg(c,b,a);}return;case 5:a=c.stateNode;null===b&&c.flags&4&&mf(c.type,c.memoizedProps)&&a.focus();return;case 6:return;case 4:return;case 12:return;case 13:null===c.memoizedState&&(c=c.alternate,null!==c&&(c=c.memoizedState,null!==c&&(c=c.dehydrated,null!==c&&Cc(c)))); - return;case 19:case 17:case 20:case 21:case 23:case 24:return}throw Error(y(163));} - function aj(a,b){for(var c=a;;){if(5===c.tag){var d=c.stateNode;if(b)d=d.style,"function"===typeof d.setProperty?d.setProperty("display","none","important"):d.display="none";else {d=c.stateNode;var e=c.memoizedProps.style;e=void 0!==e&&null!==e&&e.hasOwnProperty("display")?e.display:null;d.style.display=sb("display",e);}}else if(6===c.tag)c.stateNode.nodeValue=b?"":c.memoizedProps;else if((23!==c.tag&&24!==c.tag||null===c.memoizedState||c===a)&&null!==c.child){c.child.return=c;c=c.child;continue}if(c=== - a)break;for(;null===c.sibling;){if(null===c.return||c.return===a)return;c=c.return;}c.sibling.return=c.return;c=c.sibling;}} - function bj(a,b){if(Mf&&"function"===typeof Mf.onCommitFiberUnmount)try{Mf.onCommitFiberUnmount(Lf,b);}catch(f){}switch(b.tag){case 0:case 11:case 14:case 15:case 22:a=b.updateQueue;if(null!==a&&(a=a.lastEffect,null!==a)){var c=a=a.next;do{var d=c,e=d.destroy;d=d.tag;if(void 0!==e)if(0!==(d&4))Zi(b,c);else {d=b;try{e();}catch(f){Wi(d,f);}}c=c.next;}while(c!==a)}break;case 1:Vi(b);a=b.stateNode;if("function"===typeof a.componentWillUnmount)try{a.props=b.memoizedProps,a.state=b.memoizedState,a.componentWillUnmount();}catch(f){Wi(b, - f);}break;case 5:Vi(b);break;case 4:cj(a,b);}}function dj(a){a.alternate=null;a.child=null;a.dependencies=null;a.firstEffect=null;a.lastEffect=null;a.memoizedProps=null;a.memoizedState=null;a.pendingProps=null;a.return=null;a.updateQueue=null;}function ej(a){return 5===a.tag||3===a.tag||4===a.tag} - function fj(a){a:{for(var b=a.return;null!==b;){if(ej(b))break a;b=b.return;}throw Error(y(160));}var c=b;b=c.stateNode;switch(c.tag){case 5:var d=!1;break;case 3:b=b.containerInfo;d=!0;break;case 4:b=b.containerInfo;d=!0;break;default:throw Error(y(161));}c.flags&16&&(pb(b,""),c.flags&=-17);a:b:for(c=a;;){for(;null===c.sibling;){if(null===c.return||ej(c.return)){c=null;break a}c=c.return;}c.sibling.return=c.return;for(c=c.sibling;5!==c.tag&&6!==c.tag&&18!==c.tag;){if(c.flags&2)continue b;if(null=== - c.child||4===c.tag)continue b;else c.child.return=c,c=c.child;}if(!(c.flags&2)){c=c.stateNode;break a}}d?gj(a,c,b):hj(a,c,b);} - function gj(a,b,c){var d=a.tag,e=5===d||6===d;if(e)a=e?a.stateNode:a.stateNode.instance,b?8===c.nodeType?c.parentNode.insertBefore(a,b):c.insertBefore(a,b):(8===c.nodeType?(b=c.parentNode,b.insertBefore(a,c)):(b=c,b.appendChild(a)),c=c._reactRootContainer,null!==c&&void 0!==c||null!==b.onclick||(b.onclick=jf));else if(4!==d&&(a=a.child,null!==a))for(gj(a,b,c),a=a.sibling;null!==a;)gj(a,b,c),a=a.sibling;} - function hj(a,b,c){var d=a.tag,e=5===d||6===d;if(e)a=e?a.stateNode:a.stateNode.instance,b?c.insertBefore(a,b):c.appendChild(a);else if(4!==d&&(a=a.child,null!==a))for(hj(a,b,c),a=a.sibling;null!==a;)hj(a,b,c),a=a.sibling;} - function cj(a,b){for(var c=b,d=!1,e,f;;){if(!d){d=c.return;a:for(;;){if(null===d)throw Error(y(160));e=d.stateNode;switch(d.tag){case 5:f=!1;break a;case 3:e=e.containerInfo;f=!0;break a;case 4:e=e.containerInfo;f=!0;break a}d=d.return;}d=!0;}if(5===c.tag||6===c.tag){a:for(var g=a,h=c,k=h;;)if(bj(g,k),null!==k.child&&4!==k.tag)k.child.return=k,k=k.child;else {if(k===h)break a;for(;null===k.sibling;){if(null===k.return||k.return===h)break a;k=k.return;}k.sibling.return=k.return;k=k.sibling;}f?(g=e,h=c.stateNode, - 8===g.nodeType?g.parentNode.removeChild(h):g.removeChild(h)):e.removeChild(c.stateNode);}else if(4===c.tag){if(null!==c.child){e=c.stateNode.containerInfo;f=!0;c.child.return=c;c=c.child;continue}}else if(bj(a,c),null!==c.child){c.child.return=c;c=c.child;continue}if(c===b)break;for(;null===c.sibling;){if(null===c.return||c.return===b)return;c=c.return;4===c.tag&&(d=!1);}c.sibling.return=c.return;c=c.sibling;}} - function ij(a,b){switch(b.tag){case 0:case 11:case 14:case 15:case 22:var c=b.updateQueue;c=null!==c?c.lastEffect:null;if(null!==c){var d=c=c.next;do 3===(d.tag&3)&&(a=d.destroy,d.destroy=void 0,void 0!==a&&a()),d=d.next;while(d!==c)}return;case 1:return;case 5:c=b.stateNode;if(null!=c){d=b.memoizedProps;var e=null!==a?a.memoizedProps:d;a=b.type;var f=b.updateQueue;b.updateQueue=null;if(null!==f){c[xf]=d;"input"===a&&"radio"===d.type&&null!=d.name&&$a(c,d);wb(a,e);b=wb(a,d);for(e=0;ee&&(e=g);c&=~f;}c=e;c=O()-c;c=(120>c?120:480>c?480:1080>c?1080:1920>c?1920:3E3>c?3E3:4320> - c?4320:1960*nj(c/1960))-c;if(10 component higher in the tree to provide a loading indicator or placeholder to display.");}5!==V&&(V=2);k=Mi(k,h);p= - g;do{switch(p.tag){case 3:f=k;p.flags|=4096;b&=-b;p.lanes|=b;var J=Pi(p,f,b);Bg(p,J);break a;case 1:f=k;var K=p.type,Q=p.stateNode;if(0===(p.flags&64)&&("function"===typeof K.getDerivedStateFromError||null!==Q&&"function"===typeof Q.componentDidCatch&&(null===Ti||!Ti.has(Q)))){p.flags|=4096;b&=-b;p.lanes|=b;var L=Si(p,f,b);Bg(p,L);break a}}p=p.return;}while(null!==p)}Zj(c);}catch(va){b=va;Y===c&&null!==c&&(Y=c=c.return);continue}break}while(1)} - function Pj(){var a=oj.current;oj.current=Gh;return null===a?Gh:a}function Tj(a,b){var c=X;X|=16;var d=Pj();U===a&&W===b||Qj(a,b);do try{ak();break}catch(e){Sj(a,e);}while(1);qg();X=c;oj.current=d;if(null!==Y)throw Error(y(261));U=null;W=0;return V}function ak(){for(;null!==Y;)bk(Y);}function Rj(){for(;null!==Y&&!Qf();)bk(Y);}function bk(a){var b=ck(a.alternate,a,qj);a.memoizedProps=a.pendingProps;null===b?Zj(a):Y=b;pj.current=null;} - function Zj(a){var b=a;do{var c=b.alternate;a=b.return;if(0===(b.flags&2048)){c=Gi(c,b,qj);if(null!==c){Y=c;return}c=b;if(24!==c.tag&&23!==c.tag||null===c.memoizedState||0!==(qj&1073741824)||0===(c.mode&4)){for(var d=0,e=c.child;null!==e;)d|=e.lanes|e.childLanes,e=e.sibling;c.childLanes=d;}null!==a&&0===(a.flags&2048)&&(null===a.firstEffect&&(a.firstEffect=b.firstEffect),null!==b.lastEffect&&(null!==a.lastEffect&&(a.lastEffect.nextEffect=b.firstEffect),a.lastEffect=b.lastEffect),1g&&(h=g,g=J,J=h),h=Le(t,J),f=Le(t,g),h&&f&&(1!==v.rangeCount||v.anchorNode!==h.node||v.anchorOffset!==h.offset||v.focusNode!==f.node||v.focusOffset!==f.offset)&&(q=q.createRange(),q.setStart(h.node,h.offset),v.removeAllRanges(),J>g?(v.addRange(q),v.extend(f.node,f.offset)):(q.setEnd(f.node,f.offset),v.addRange(q))))));q=[];for(v=t;v=v.parentNode;)1===v.nodeType&&q.push({element:v,left:v.scrollLeft,top:v.scrollTop});"function"===typeof t.focus&&t.focus();for(t= - 0;tO()-jj?Qj(a,0):uj|=c);Mj(a,b);}function lj(a,b){var c=a.stateNode;null!==c&&c.delete(b);b=0;0===b&&(b=a.mode,0===(b&2)?b=1:0===(b&4)?b=99===eg()?1:2:(0===Gj&&(Gj=tj),b=Yc(62914560&~Gj),0===b&&(b=4194304)));c=Hg();a=Kj(a,b);null!==a&&($c(a,b,c),Mj(a,c));}var ck; - ck=function(a,b,c){var d=b.lanes;if(null!==a)if(a.memoizedProps!==b.pendingProps||N.current)ug=!0;else if(0!==(c&d))ug=0!==(a.flags&16384)?!0:!1;else {ug=!1;switch(b.tag){case 3:ri(b);sh();break;case 5:gh(b);break;case 1:Ff(b.type)&&Jf(b);break;case 4:eh(b,b.stateNode.containerInfo);break;case 10:d=b.memoizedProps.value;var e=b.type._context;I(mg,e._currentValue);e._currentValue=d;break;case 13:if(null!==b.memoizedState){if(0!==(c&b.child.childLanes))return ti(a,b,c);I(P,P.current&1);b=hi(a,b,c);return null!== - b?b.sibling:null}I(P,P.current&1);break;case 19:d=0!==(c&b.childLanes);if(0!==(a.flags&64)){if(d)return Ai(a,b,c);b.flags|=64;}e=b.memoizedState;null!==e&&(e.rendering=null,e.tail=null,e.lastEffect=null);I(P,P.current);if(d)break;else return null;case 23:case 24:return b.lanes=0,mi(a,b,c)}return hi(a,b,c)}else ug=!1;b.lanes=0;switch(b.tag){case 2:d=b.type;null!==a&&(a.alternate=null,b.alternate=null,b.flags|=2);a=b.pendingProps;e=Ef(b,M.current);tg(b,c);e=Ch(null,b,d,a,e,c);b.flags|=1;if("object"=== - typeof e&&null!==e&&"function"===typeof e.render&&void 0===e.$$typeof){b.tag=1;b.memoizedState=null;b.updateQueue=null;if(Ff(d)){var f=!0;Jf(b);}else f=!1;b.memoizedState=null!==e.state&&void 0!==e.state?e.state:null;xg(b);var g=d.getDerivedStateFromProps;"function"===typeof g&&Gg(b,d,g,a);e.updater=Kg;b.stateNode=e;e._reactInternals=b;Og(b,d,a,c);b=qi(null,b,d,!0,f,c);}else b.tag=0,fi(null,b,e,c),b=b.child;return b;case 16:e=b.elementType;a:{null!==a&&(a.alternate=null,b.alternate=null,b.flags|=2); - a=b.pendingProps;f=e._init;e=f(e._payload);b.type=e;f=b.tag=hk(e);a=lg(e,a);switch(f){case 0:b=li(null,b,e,a,c);break a;case 1:b=pi(null,b,e,a,c);break a;case 11:b=gi(null,b,e,a,c);break a;case 14:b=ii(null,b,e,lg(e.type,a),d,c);break a}throw Error(y(306,e,""));}return b;case 0:return d=b.type,e=b.pendingProps,e=b.elementType===d?e:lg(d,e),li(a,b,d,e,c);case 1:return d=b.type,e=b.pendingProps,e=b.elementType===d?e:lg(d,e),pi(a,b,d,e,c);case 3:ri(b);d=b.updateQueue;if(null===a||null===d)throw Error(y(282)); - d=b.pendingProps;e=b.memoizedState;e=null!==e?e.element:null;yg(a,b);Cg(b,d,null,c);d=b.memoizedState.element;if(d===e)sh(),b=hi(a,b,c);else {e=b.stateNode;if(f=e.hydrate)kh=rf(b.stateNode.containerInfo.firstChild),jh=b,f=lh=!0;if(f){a=e.mutableSourceEagerHydrationData;if(null!=a)for(e=0;e 1 && arguments[1] !== undefined ? arguments[1] : {}; - this.init(concreteLogger, options); - } - init(concreteLogger) { - let options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; - this.prefix = options.prefix || 'i18next:'; - this.logger = concreteLogger || consoleLogger; - this.options = options; - this.debug = options.debug; - } - log() { - for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { - args[_key] = arguments[_key]; - } - return this.forward(args, 'log', '', true); - } - warn() { - for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) { - args[_key2] = arguments[_key2]; - } - return this.forward(args, 'warn', '', true); - } - error() { - for (var _len3 = arguments.length, args = new Array(_len3), _key3 = 0; _key3 < _len3; _key3++) { - args[_key3] = arguments[_key3]; - } - return this.forward(args, 'error', ''); - } - deprecate() { - for (var _len4 = arguments.length, args = new Array(_len4), _key4 = 0; _key4 < _len4; _key4++) { - args[_key4] = arguments[_key4]; - } - return this.forward(args, 'warn', 'WARNING DEPRECATED: ', true); - } - forward(args, lvl, prefix, debugOnly) { - if (debugOnly && !this.debug) return null; - if (typeof args[0] === 'string') args[0] = `${prefix}${this.prefix} ${args[0]}`; - return this.logger[lvl](args); - } - create(moduleName) { - return new Logger(this.logger, { - ...{ - prefix: `${this.prefix}:${moduleName}:` - }, - ...this.options - }); - } - clone(options) { - options = options || this.options; - options.prefix = options.prefix || this.prefix; - return new Logger(this.logger, options); - } -} -var baseLogger = new Logger(); - -class EventEmitter { - constructor() { - this.observers = {}; - } - on(events, listener) { - events.split(' ').forEach(event => { - if (!this.observers[event]) this.observers[event] = new Map(); - const numListeners = this.observers[event].get(listener) || 0; - this.observers[event].set(listener, numListeners + 1); - }); - return this; - } - off(event, listener) { - if (!this.observers[event]) return; - if (!listener) { - delete this.observers[event]; - return; - } - this.observers[event].delete(listener); - } - emit(event) { - for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) { - args[_key - 1] = arguments[_key]; - } - if (this.observers[event]) { - const cloned = Array.from(this.observers[event].entries()); - cloned.forEach(_ref => { - let [observer, numTimesAdded] = _ref; - for (let i = 0; i < numTimesAdded; i++) { - observer(...args); - } - }); - } - if (this.observers['*']) { - const cloned = Array.from(this.observers['*'].entries()); - cloned.forEach(_ref2 => { - let [observer, numTimesAdded] = _ref2; - for (let i = 0; i < numTimesAdded; i++) { - observer.apply(observer, [event, ...args]); - } - }); - } - } -} - -function defer() { - let res; - let rej; - const promise = new Promise((resolve, reject) => { - res = resolve; - rej = reject; - }); - promise.resolve = res; - promise.reject = rej; - return promise; -} -function makeString(object) { - if (object == null) return ''; - return '' + object; -} -function copy(a, s, t) { - a.forEach(m => { - if (s[m]) t[m] = s[m]; - }); -} -const lastOfPathSeparatorRegExp = /###/g; -function getLastOfPath(object, path, Empty) { - function cleanKey(key) { - return key && key.indexOf('###') > -1 ? key.replace(lastOfPathSeparatorRegExp, '.') : key; - } - function canNotTraverseDeeper() { - return !object || typeof object === 'string'; - } - const stack = typeof path !== 'string' ? path : path.split('.'); - let stackIndex = 0; - while (stackIndex < stack.length - 1) { - if (canNotTraverseDeeper()) return {}; - const key = cleanKey(stack[stackIndex]); - if (!object[key] && Empty) object[key] = new Empty(); - if (Object.prototype.hasOwnProperty.call(object, key)) { - object = object[key]; - } else { - object = {}; - } - ++stackIndex; - } - if (canNotTraverseDeeper()) return {}; - return { - obj: object, - k: cleanKey(stack[stackIndex]) - }; -} -function setPath(object, path, newValue) { - const { - obj, - k - } = getLastOfPath(object, path, Object); - if (obj !== undefined || path.length === 1) { - obj[k] = newValue; - return; - } - let e = path[path.length - 1]; - let p = path.slice(0, path.length - 1); - let last = getLastOfPath(object, p, Object); - while (last.obj === undefined && p.length) { - e = `${p[p.length - 1]}.${e}`; - p = p.slice(0, p.length - 1); - last = getLastOfPath(object, p, Object); - if (last && last.obj && typeof last.obj[`${last.k}.${e}`] !== 'undefined') { - last.obj = undefined; - } - } - last.obj[`${last.k}.${e}`] = newValue; -} -function pushPath(object, path, newValue, concat) { - const { - obj, - k - } = getLastOfPath(object, path, Object); - obj[k] = obj[k] || []; - if (concat) obj[k] = obj[k].concat(newValue); - if (!concat) obj[k].push(newValue); -} -function getPath(object, path) { - const { - obj, - k - } = getLastOfPath(object, path); - if (!obj) return undefined; - return obj[k]; -} -function getPathWithDefaults(data, defaultData, key) { - const value = getPath(data, key); - if (value !== undefined) { - return value; - } - return getPath(defaultData, key); -} -function deepExtend(target, source, overwrite) { - for (const prop in source) { - if (prop !== '__proto__' && prop !== 'constructor') { - if (prop in target) { - if (typeof target[prop] === 'string' || target[prop] instanceof String || typeof source[prop] === 'string' || source[prop] instanceof String) { - if (overwrite) target[prop] = source[prop]; - } else { - deepExtend(target[prop], source[prop], overwrite); - } - } else { - target[prop] = source[prop]; - } - } - } - return target; -} -function regexEscape(str) { - return str.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, '\\$&'); -} -var _entityMap = { - '&': '&', - '<': '<', - '>': '>', - '"': '"', - "'": ''', - '/': '/' -}; -function escape(data) { - if (typeof data === 'string') { - return data.replace(/[&<>"'\/]/g, s => _entityMap[s]); - } - return data; -} -class RegExpCache { - constructor(capacity) { - this.capacity = capacity; - this.regExpMap = new Map(); - this.regExpQueue = []; - } - getRegExp(pattern) { - const regExpFromCache = this.regExpMap.get(pattern); - if (regExpFromCache !== undefined) { - return regExpFromCache; - } - const regExpNew = new RegExp(pattern); - if (this.regExpQueue.length === this.capacity) { - this.regExpMap.delete(this.regExpQueue.shift()); - } - this.regExpMap.set(pattern, regExpNew); - this.regExpQueue.push(pattern); - return regExpNew; - } -} -const chars = [' ', ',', '?', '!', ';']; -const looksLikeObjectPathRegExpCache = new RegExpCache(20); -function looksLikeObjectPath(key, nsSeparator, keySeparator) { - nsSeparator = nsSeparator || ''; - keySeparator = keySeparator || ''; - const possibleChars = chars.filter(c => nsSeparator.indexOf(c) < 0 && keySeparator.indexOf(c) < 0); - if (possibleChars.length === 0) return true; - const r = looksLikeObjectPathRegExpCache.getRegExp(`(${possibleChars.map(c => c === '?' ? '\\?' : c).join('|')})`); - let matched = !r.test(key); - if (!matched) { - const ki = key.indexOf(keySeparator); - if (ki > 0 && !r.test(key.substring(0, ki))) { - matched = true; - } - } - return matched; -} -function deepFind(obj, path) { - let keySeparator = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : '.'; - if (!obj) return undefined; - if (obj[path]) return obj[path]; - const tokens = path.split(keySeparator); - let current = obj; - for (let i = 0; i < tokens.length;) { - if (!current || typeof current !== 'object') { - return undefined; - } - let next; - let nextPath = ''; - for (let j = i; j < tokens.length; ++j) { - if (j !== i) { - nextPath += keySeparator; - } - nextPath += tokens[j]; - next = current[nextPath]; - if (next !== undefined) { - if (['string', 'number', 'boolean'].indexOf(typeof next) > -1 && j < tokens.length - 1) { - continue; - } - i += j - i + 1; - break; - } - } - current = next; - } - return current; -} -function getCleanedCode(code) { - if (code && code.indexOf('_') > 0) return code.replace('_', '-'); - return code; -} - -class ResourceStore extends EventEmitter { - constructor(data) { - let options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : { - ns: ['translation'], - defaultNS: 'translation' - }; - super(); - this.data = data || {}; - this.options = options; - if (this.options.keySeparator === undefined) { - this.options.keySeparator = '.'; - } - if (this.options.ignoreJSONStructure === undefined) { - this.options.ignoreJSONStructure = true; - } - } - addNamespaces(ns) { - if (this.options.ns.indexOf(ns) < 0) { - this.options.ns.push(ns); - } - } - removeNamespaces(ns) { - const index = this.options.ns.indexOf(ns); - if (index > -1) { - this.options.ns.splice(index, 1); - } - } - getResource(lng, ns, key) { - let options = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {}; - const keySeparator = options.keySeparator !== undefined ? options.keySeparator : this.options.keySeparator; - const ignoreJSONStructure = options.ignoreJSONStructure !== undefined ? options.ignoreJSONStructure : this.options.ignoreJSONStructure; - let path; - if (lng.indexOf('.') > -1) { - path = lng.split('.'); - } else { - path = [lng, ns]; - if (key) { - if (Array.isArray(key)) { - path.push(...key); - } else if (typeof key === 'string' && keySeparator) { - path.push(...key.split(keySeparator)); - } else { - path.push(key); - } - } - } - const result = getPath(this.data, path); - if (!result && !ns && !key && lng.indexOf('.') > -1) { - lng = path[0]; - ns = path[1]; - key = path.slice(2).join('.'); - } - if (result || !ignoreJSONStructure || typeof key !== 'string') return result; - return deepFind(this.data && this.data[lng] && this.data[lng][ns], key, keySeparator); - } - addResource(lng, ns, key, value) { - let options = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : { - silent: false - }; - const keySeparator = options.keySeparator !== undefined ? options.keySeparator : this.options.keySeparator; - let path = [lng, ns]; - if (key) path = path.concat(keySeparator ? key.split(keySeparator) : key); - if (lng.indexOf('.') > -1) { - path = lng.split('.'); - value = ns; - ns = path[1]; - } - this.addNamespaces(ns); - setPath(this.data, path, value); - if (!options.silent) this.emit('added', lng, ns, key, value); - } - addResources(lng, ns, resources) { - let options = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : { - silent: false - }; - for (const m in resources) { - if (typeof resources[m] === 'string' || Object.prototype.toString.apply(resources[m]) === '[object Array]') this.addResource(lng, ns, m, resources[m], { - silent: true - }); - } - if (!options.silent) this.emit('added', lng, ns, resources); - } - addResourceBundle(lng, ns, resources, deep, overwrite) { - let options = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : { - silent: false, - skipCopy: false - }; - let path = [lng, ns]; - if (lng.indexOf('.') > -1) { - path = lng.split('.'); - deep = resources; - resources = ns; - ns = path[1]; - } - this.addNamespaces(ns); - let pack = getPath(this.data, path) || {}; - if (!options.skipCopy) resources = JSON.parse(JSON.stringify(resources)); - if (deep) { - deepExtend(pack, resources, overwrite); - } else { - pack = { - ...pack, - ...resources - }; - } - setPath(this.data, path, pack); - if (!options.silent) this.emit('added', lng, ns, resources); - } - removeResourceBundle(lng, ns) { - if (this.hasResourceBundle(lng, ns)) { - delete this.data[lng][ns]; - } - this.removeNamespaces(ns); - this.emit('removed', lng, ns); - } - hasResourceBundle(lng, ns) { - return this.getResource(lng, ns) !== undefined; - } - getResourceBundle(lng, ns) { - if (!ns) ns = this.options.defaultNS; - if (this.options.compatibilityAPI === 'v1') return { - ...{}, - ...this.getResource(lng, ns) - }; - return this.getResource(lng, ns); - } - getDataByLanguage(lng) { - return this.data[lng]; - } - hasLanguageSomeTranslations(lng) { - const data = this.getDataByLanguage(lng); - const n = data && Object.keys(data) || []; - return !!n.find(v => data[v] && Object.keys(data[v]).length > 0); - } - toJSON() { - return this.data; - } -} - -var postProcessor = { - processors: {}, - addPostProcessor(module) { - this.processors[module.name] = module; - }, - handle(processors, value, key, options, translator) { - processors.forEach(processor => { - if (this.processors[processor]) value = this.processors[processor].process(value, key, options, translator); - }); - return value; - } -}; - -const checkedLoadedFor = {}; -class Translator extends EventEmitter { - constructor(services) { - let options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; - super(); - copy(['resourceStore', 'languageUtils', 'pluralResolver', 'interpolator', 'backendConnector', 'i18nFormat', 'utils'], services, this); - this.options = options; - if (this.options.keySeparator === undefined) { - this.options.keySeparator = '.'; - } - this.logger = baseLogger.create('translator'); - } - changeLanguage(lng) { - if (lng) this.language = lng; - } - exists(key) { - let options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : { - interpolation: {} - }; - if (key === undefined || key === null) { - return false; - } - const resolved = this.resolve(key, options); - return resolved && resolved.res !== undefined; - } - extractFromKey(key, options) { - let nsSeparator = options.nsSeparator !== undefined ? options.nsSeparator : this.options.nsSeparator; - if (nsSeparator === undefined) nsSeparator = ':'; - const keySeparator = options.keySeparator !== undefined ? options.keySeparator : this.options.keySeparator; - let namespaces = options.ns || this.options.defaultNS || []; - const wouldCheckForNsInKey = nsSeparator && key.indexOf(nsSeparator) > -1; - const seemsNaturalLanguage = !this.options.userDefinedKeySeparator && !options.keySeparator && !this.options.userDefinedNsSeparator && !options.nsSeparator && !looksLikeObjectPath(key, nsSeparator, keySeparator); - if (wouldCheckForNsInKey && !seemsNaturalLanguage) { - const m = key.match(this.interpolator.nestingRegexp); - if (m && m.length > 0) { - return { - key, - namespaces - }; - } - const parts = key.split(nsSeparator); - if (nsSeparator !== keySeparator || nsSeparator === keySeparator && this.options.ns.indexOf(parts[0]) > -1) namespaces = parts.shift(); - key = parts.join(keySeparator); - } - if (typeof namespaces === 'string') namespaces = [namespaces]; - return { - key, - namespaces - }; - } - translate(keys, options, lastKey) { - if (typeof options !== 'object' && this.options.overloadTranslationOptionHandler) { - options = this.options.overloadTranslationOptionHandler(arguments); - } - if (typeof options === 'object') options = { - ...options - }; - if (!options) options = {}; - if (keys === undefined || keys === null) return ''; - if (!Array.isArray(keys)) keys = [String(keys)]; - const returnDetails = options.returnDetails !== undefined ? options.returnDetails : this.options.returnDetails; - const keySeparator = options.keySeparator !== undefined ? options.keySeparator : this.options.keySeparator; - const { - key, - namespaces - } = this.extractFromKey(keys[keys.length - 1], options); - const namespace = namespaces[namespaces.length - 1]; - const lng = options.lng || this.language; - const appendNamespaceToCIMode = options.appendNamespaceToCIMode || this.options.appendNamespaceToCIMode; - if (lng && lng.toLowerCase() === 'cimode') { - if (appendNamespaceToCIMode) { - const nsSeparator = options.nsSeparator || this.options.nsSeparator; - if (returnDetails) { - return { - res: `${namespace}${nsSeparator}${key}`, - usedKey: key, - exactUsedKey: key, - usedLng: lng, - usedNS: namespace, - usedParams: this.getUsedParamsDetails(options) - }; - } - return `${namespace}${nsSeparator}${key}`; - } - if (returnDetails) { - return { - res: key, - usedKey: key, - exactUsedKey: key, - usedLng: lng, - usedNS: namespace, - usedParams: this.getUsedParamsDetails(options) - }; - } - return key; - } - const resolved = this.resolve(keys, options); - let res = resolved && resolved.res; - const resUsedKey = resolved && resolved.usedKey || key; - const resExactUsedKey = resolved && resolved.exactUsedKey || key; - const resType = Object.prototype.toString.apply(res); - const noObject = ['[object Number]', '[object Function]', '[object RegExp]']; - const joinArrays = options.joinArrays !== undefined ? options.joinArrays : this.options.joinArrays; - const handleAsObjectInI18nFormat = !this.i18nFormat || this.i18nFormat.handleAsObject; - const handleAsObject = typeof res !== 'string' && typeof res !== 'boolean' && typeof res !== 'number'; - if (handleAsObjectInI18nFormat && res && handleAsObject && noObject.indexOf(resType) < 0 && !(typeof joinArrays === 'string' && resType === '[object Array]')) { - if (!options.returnObjects && !this.options.returnObjects) { - if (!this.options.returnedObjectHandler) { - this.logger.warn('accessing an object - but returnObjects options is not enabled!'); - } - const r = this.options.returnedObjectHandler ? this.options.returnedObjectHandler(resUsedKey, res, { - ...options, - ns: namespaces - }) : `key '${key} (${this.language})' returned an object instead of string.`; - if (returnDetails) { - resolved.res = r; - resolved.usedParams = this.getUsedParamsDetails(options); - return resolved; - } - return r; - } - if (keySeparator) { - const resTypeIsArray = resType === '[object Array]'; - const copy = resTypeIsArray ? [] : {}; - const newKeyToUse = resTypeIsArray ? resExactUsedKey : resUsedKey; - for (const m in res) { - if (Object.prototype.hasOwnProperty.call(res, m)) { - const deepKey = `${newKeyToUse}${keySeparator}${m}`; - copy[m] = this.translate(deepKey, { - ...options, - ...{ - joinArrays: false, - ns: namespaces - } - }); - if (copy[m] === deepKey) copy[m] = res[m]; - } - } - res = copy; - } - } else if (handleAsObjectInI18nFormat && typeof joinArrays === 'string' && resType === '[object Array]') { - res = res.join(joinArrays); - if (res) res = this.extendTranslation(res, keys, options, lastKey); - } else { - let usedDefault = false; - let usedKey = false; - const needsPluralHandling = options.count !== undefined && typeof options.count !== 'string'; - const hasDefaultValue = Translator.hasDefaultValue(options); - const defaultValueSuffix = needsPluralHandling ? this.pluralResolver.getSuffix(lng, options.count, options) : ''; - const defaultValueSuffixOrdinalFallback = options.ordinal && needsPluralHandling ? this.pluralResolver.getSuffix(lng, options.count, { - ordinal: false - }) : ''; - const needsZeroSuffixLookup = needsPluralHandling && !options.ordinal && options.count === 0 && this.pluralResolver.shouldUseIntlApi(); - const defaultValue = needsZeroSuffixLookup && options[`defaultValue${this.options.pluralSeparator}zero`] || options[`defaultValue${defaultValueSuffix}`] || options[`defaultValue${defaultValueSuffixOrdinalFallback}`] || options.defaultValue; - if (!this.isValidLookup(res) && hasDefaultValue) { - usedDefault = true; - res = defaultValue; - } - if (!this.isValidLookup(res)) { - usedKey = true; - res = key; - } - const missingKeyNoValueFallbackToKey = options.missingKeyNoValueFallbackToKey || this.options.missingKeyNoValueFallbackToKey; - const resForMissing = missingKeyNoValueFallbackToKey && usedKey ? undefined : res; - const updateMissing = hasDefaultValue && defaultValue !== res && this.options.updateMissing; - if (usedKey || usedDefault || updateMissing) { - this.logger.log(updateMissing ? 'updateKey' : 'missingKey', lng, namespace, key, updateMissing ? defaultValue : res); - if (keySeparator) { - const fk = this.resolve(key, { - ...options, - keySeparator: false - }); - if (fk && fk.res) this.logger.warn('Seems the loaded translations were in flat JSON format instead of nested. Either set keySeparator: false on init or make sure your translations are published in nested format.'); - } - let lngs = []; - const fallbackLngs = this.languageUtils.getFallbackCodes(this.options.fallbackLng, options.lng || this.language); - if (this.options.saveMissingTo === 'fallback' && fallbackLngs && fallbackLngs[0]) { - for (let i = 0; i < fallbackLngs.length; i++) { - lngs.push(fallbackLngs[i]); - } - } else if (this.options.saveMissingTo === 'all') { - lngs = this.languageUtils.toResolveHierarchy(options.lng || this.language); - } else { - lngs.push(options.lng || this.language); - } - const send = (l, k, specificDefaultValue) => { - const defaultForMissing = hasDefaultValue && specificDefaultValue !== res ? specificDefaultValue : resForMissing; - if (this.options.missingKeyHandler) { - this.options.missingKeyHandler(l, namespace, k, defaultForMissing, updateMissing, options); - } else if (this.backendConnector && this.backendConnector.saveMissing) { - this.backendConnector.saveMissing(l, namespace, k, defaultForMissing, updateMissing, options); - } - this.emit('missingKey', l, namespace, k, res); - }; - if (this.options.saveMissing) { - if (this.options.saveMissingPlurals && needsPluralHandling) { - lngs.forEach(language => { - const suffixes = this.pluralResolver.getSuffixes(language, options); - if (needsZeroSuffixLookup && options[`defaultValue${this.options.pluralSeparator}zero`] && suffixes.indexOf(`${this.options.pluralSeparator}zero`) < 0) { - suffixes.push(`${this.options.pluralSeparator}zero`); - } - suffixes.forEach(suffix => { - send([language], key + suffix, options[`defaultValue${suffix}`] || defaultValue); - }); - }); - } else { - send(lngs, key, defaultValue); - } - } - } - res = this.extendTranslation(res, keys, options, resolved, lastKey); - if (usedKey && res === key && this.options.appendNamespaceToMissingKey) res = `${namespace}:${key}`; - if ((usedKey || usedDefault) && this.options.parseMissingKeyHandler) { - if (this.options.compatibilityAPI !== 'v1') { - res = this.options.parseMissingKeyHandler(this.options.appendNamespaceToMissingKey ? `${namespace}:${key}` : key, usedDefault ? res : undefined); - } else { - res = this.options.parseMissingKeyHandler(res); - } - } - } - if (returnDetails) { - resolved.res = res; - resolved.usedParams = this.getUsedParamsDetails(options); - return resolved; - } - return res; - } - extendTranslation(res, key, options, resolved, lastKey) { - var _this = this; - if (this.i18nFormat && this.i18nFormat.parse) { - res = this.i18nFormat.parse(res, { - ...this.options.interpolation.defaultVariables, - ...options - }, options.lng || this.language || resolved.usedLng, resolved.usedNS, resolved.usedKey, { - resolved - }); - } else if (!options.skipInterpolation) { - if (options.interpolation) this.interpolator.init({ - ...options, - ...{ - interpolation: { - ...this.options.interpolation, - ...options.interpolation - } - } - }); - const skipOnVariables = typeof res === 'string' && (options && options.interpolation && options.interpolation.skipOnVariables !== undefined ? options.interpolation.skipOnVariables : this.options.interpolation.skipOnVariables); - let nestBef; - if (skipOnVariables) { - const nb = res.match(this.interpolator.nestingRegexp); - nestBef = nb && nb.length; - } - let data = options.replace && typeof options.replace !== 'string' ? options.replace : options; - if (this.options.interpolation.defaultVariables) data = { - ...this.options.interpolation.defaultVariables, - ...data - }; - res = this.interpolator.interpolate(res, data, options.lng || this.language, options); - if (skipOnVariables) { - const na = res.match(this.interpolator.nestingRegexp); - const nestAft = na && na.length; - if (nestBef < nestAft) options.nest = false; - } - if (!options.lng && this.options.compatibilityAPI !== 'v1' && resolved && resolved.res) options.lng = resolved.usedLng; - if (options.nest !== false) res = this.interpolator.nest(res, function () { - for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { - args[_key] = arguments[_key]; - } - if (lastKey && lastKey[0] === args[0] && !options.context) { - _this.logger.warn(`It seems you are nesting recursively key: ${args[0]} in key: ${key[0]}`); - return null; - } - return _this.translate(...args, key); - }, options); - if (options.interpolation) this.interpolator.reset(); - } - const postProcess = options.postProcess || this.options.postProcess; - const postProcessorNames = typeof postProcess === 'string' ? [postProcess] : postProcess; - if (res !== undefined && res !== null && postProcessorNames && postProcessorNames.length && options.applyPostProcessor !== false) { - res = postProcessor.handle(postProcessorNames, res, key, this.options && this.options.postProcessPassResolved ? { - i18nResolved: { - ...resolved, - usedParams: this.getUsedParamsDetails(options) - }, - ...options - } : options, this); - } - return res; - } - resolve(keys) { - let options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; - let found; - let usedKey; - let exactUsedKey; - let usedLng; - let usedNS; - if (typeof keys === 'string') keys = [keys]; - keys.forEach(k => { - if (this.isValidLookup(found)) return; - const extracted = this.extractFromKey(k, options); - const key = extracted.key; - usedKey = key; - let namespaces = extracted.namespaces; - if (this.options.fallbackNS) namespaces = namespaces.concat(this.options.fallbackNS); - const needsPluralHandling = options.count !== undefined && typeof options.count !== 'string'; - const needsZeroSuffixLookup = needsPluralHandling && !options.ordinal && options.count === 0 && this.pluralResolver.shouldUseIntlApi(); - const needsContextHandling = options.context !== undefined && (typeof options.context === 'string' || typeof options.context === 'number') && options.context !== ''; - const codes = options.lngs ? options.lngs : this.languageUtils.toResolveHierarchy(options.lng || this.language, options.fallbackLng); - namespaces.forEach(ns => { - if (this.isValidLookup(found)) return; - usedNS = ns; - if (!checkedLoadedFor[`${codes[0]}-${ns}`] && this.utils && this.utils.hasLoadedNamespace && !this.utils.hasLoadedNamespace(usedNS)) { - checkedLoadedFor[`${codes[0]}-${ns}`] = true; - this.logger.warn(`key "${usedKey}" for languages "${codes.join(', ')}" won't get resolved as namespace "${usedNS}" was not yet loaded`, 'This means something IS WRONG in your setup. You access the t function before i18next.init / i18next.loadNamespace / i18next.changeLanguage was done. Wait for the callback or Promise to resolve before accessing it!!!'); - } - codes.forEach(code => { - if (this.isValidLookup(found)) return; - usedLng = code; - const finalKeys = [key]; - if (this.i18nFormat && this.i18nFormat.addLookupKeys) { - this.i18nFormat.addLookupKeys(finalKeys, key, code, ns, options); - } else { - let pluralSuffix; - if (needsPluralHandling) pluralSuffix = this.pluralResolver.getSuffix(code, options.count, options); - const zeroSuffix = `${this.options.pluralSeparator}zero`; - const ordinalPrefix = `${this.options.pluralSeparator}ordinal${this.options.pluralSeparator}`; - if (needsPluralHandling) { - finalKeys.push(key + pluralSuffix); - if (options.ordinal && pluralSuffix.indexOf(ordinalPrefix) === 0) { - finalKeys.push(key + pluralSuffix.replace(ordinalPrefix, this.options.pluralSeparator)); - } - if (needsZeroSuffixLookup) { - finalKeys.push(key + zeroSuffix); - } - } - if (needsContextHandling) { - const contextKey = `${key}${this.options.contextSeparator}${options.context}`; - finalKeys.push(contextKey); - if (needsPluralHandling) { - finalKeys.push(contextKey + pluralSuffix); - if (options.ordinal && pluralSuffix.indexOf(ordinalPrefix) === 0) { - finalKeys.push(contextKey + pluralSuffix.replace(ordinalPrefix, this.options.pluralSeparator)); - } - if (needsZeroSuffixLookup) { - finalKeys.push(contextKey + zeroSuffix); - } - } - } - } - let possibleKey; - while (possibleKey = finalKeys.pop()) { - if (!this.isValidLookup(found)) { - exactUsedKey = possibleKey; - found = this.getResource(code, ns, possibleKey, options); - } - } - }); - }); - }); - return { - res: found, - usedKey, - exactUsedKey, - usedLng, - usedNS - }; - } - isValidLookup(res) { - return res !== undefined && !(!this.options.returnNull && res === null) && !(!this.options.returnEmptyString && res === ''); - } - getResource(code, ns, key) { - let options = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {}; - if (this.i18nFormat && this.i18nFormat.getResource) return this.i18nFormat.getResource(code, ns, key, options); - return this.resourceStore.getResource(code, ns, key, options); - } - getUsedParamsDetails() { - let options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; - const optionsKeys = ['defaultValue', 'ordinal', 'context', 'replace', 'lng', 'lngs', 'fallbackLng', 'ns', 'keySeparator', 'nsSeparator', 'returnObjects', 'returnDetails', 'joinArrays', 'postProcess', 'interpolation']; - const useOptionsReplaceForData = options.replace && typeof options.replace !== 'string'; - let data = useOptionsReplaceForData ? options.replace : options; - if (useOptionsReplaceForData && typeof options.count !== 'undefined') { - data.count = options.count; - } - if (this.options.interpolation.defaultVariables) { - data = { - ...this.options.interpolation.defaultVariables, - ...data - }; - } - if (!useOptionsReplaceForData) { - data = { - ...data - }; - for (const key of optionsKeys) { - delete data[key]; - } - } - return data; - } - static hasDefaultValue(options) { - const prefix = 'defaultValue'; - for (const option in options) { - if (Object.prototype.hasOwnProperty.call(options, option) && prefix === option.substring(0, prefix.length) && undefined !== options[option]) { - return true; - } - } - return false; - } -} - -function capitalize(string) { - return string.charAt(0).toUpperCase() + string.slice(1); -} -class LanguageUtil { - constructor(options) { - this.options = options; - this.supportedLngs = this.options.supportedLngs || false; - this.logger = baseLogger.create('languageUtils'); - } - getScriptPartFromCode(code) { - code = getCleanedCode(code); - if (!code || code.indexOf('-') < 0) return null; - const p = code.split('-'); - if (p.length === 2) return null; - p.pop(); - if (p[p.length - 1].toLowerCase() === 'x') return null; - return this.formatLanguageCode(p.join('-')); - } - getLanguagePartFromCode(code) { - code = getCleanedCode(code); - if (!code || code.indexOf('-') < 0) return code; - const p = code.split('-'); - return this.formatLanguageCode(p[0]); - } - formatLanguageCode(code) { - if (typeof code === 'string' && code.indexOf('-') > -1) { - const specialCases = ['hans', 'hant', 'latn', 'cyrl', 'cans', 'mong', 'arab']; - let p = code.split('-'); - if (this.options.lowerCaseLng) { - p = p.map(part => part.toLowerCase()); - } else if (p.length === 2) { - p[0] = p[0].toLowerCase(); - p[1] = p[1].toUpperCase(); - if (specialCases.indexOf(p[1].toLowerCase()) > -1) p[1] = capitalize(p[1].toLowerCase()); - } else if (p.length === 3) { - p[0] = p[0].toLowerCase(); - if (p[1].length === 2) p[1] = p[1].toUpperCase(); - if (p[0] !== 'sgn' && p[2].length === 2) p[2] = p[2].toUpperCase(); - if (specialCases.indexOf(p[1].toLowerCase()) > -1) p[1] = capitalize(p[1].toLowerCase()); - if (specialCases.indexOf(p[2].toLowerCase()) > -1) p[2] = capitalize(p[2].toLowerCase()); - } - return p.join('-'); - } - return this.options.cleanCode || this.options.lowerCaseLng ? code.toLowerCase() : code; - } - isSupportedCode(code) { - if (this.options.load === 'languageOnly' || this.options.nonExplicitSupportedLngs) { - code = this.getLanguagePartFromCode(code); - } - return !this.supportedLngs || !this.supportedLngs.length || this.supportedLngs.indexOf(code) > -1; - } - getBestMatchFromCodes(codes) { - if (!codes) return null; - let found; - codes.forEach(code => { - if (found) return; - const cleanedLng = this.formatLanguageCode(code); - if (!this.options.supportedLngs || this.isSupportedCode(cleanedLng)) found = cleanedLng; - }); - if (!found && this.options.supportedLngs) { - codes.forEach(code => { - if (found) return; - const lngOnly = this.getLanguagePartFromCode(code); - if (this.isSupportedCode(lngOnly)) return found = lngOnly; - found = this.options.supportedLngs.find(supportedLng => { - if (supportedLng === lngOnly) return supportedLng; - if (supportedLng.indexOf('-') < 0 && lngOnly.indexOf('-') < 0) return; - if (supportedLng.indexOf('-') > 0 && lngOnly.indexOf('-') < 0 && supportedLng.substring(0, supportedLng.indexOf('-')) === lngOnly) return supportedLng; - if (supportedLng.indexOf(lngOnly) === 0 && lngOnly.length > 1) return supportedLng; - }); - }); - } - if (!found) found = this.getFallbackCodes(this.options.fallbackLng)[0]; - return found; - } - getFallbackCodes(fallbacks, code) { - if (!fallbacks) return []; - if (typeof fallbacks === 'function') fallbacks = fallbacks(code); - if (typeof fallbacks === 'string') fallbacks = [fallbacks]; - if (Object.prototype.toString.apply(fallbacks) === '[object Array]') return fallbacks; - if (!code) return fallbacks.default || []; - let found = fallbacks[code]; - if (!found) found = fallbacks[this.getScriptPartFromCode(code)]; - if (!found) found = fallbacks[this.formatLanguageCode(code)]; - if (!found) found = fallbacks[this.getLanguagePartFromCode(code)]; - if (!found) found = fallbacks.default; - return found || []; - } - toResolveHierarchy(code, fallbackCode) { - const fallbackCodes = this.getFallbackCodes(fallbackCode || this.options.fallbackLng || [], code); - const codes = []; - const addCode = c => { - if (!c) return; - if (this.isSupportedCode(c)) { - codes.push(c); - } else { - this.logger.warn(`rejecting language code not found in supportedLngs: ${c}`); - } - }; - if (typeof code === 'string' && (code.indexOf('-') > -1 || code.indexOf('_') > -1)) { - if (this.options.load !== 'languageOnly') addCode(this.formatLanguageCode(code)); - if (this.options.load !== 'languageOnly' && this.options.load !== 'currentOnly') addCode(this.getScriptPartFromCode(code)); - if (this.options.load !== 'currentOnly') addCode(this.getLanguagePartFromCode(code)); - } else if (typeof code === 'string') { - addCode(this.formatLanguageCode(code)); - } - fallbackCodes.forEach(fc => { - if (codes.indexOf(fc) < 0) addCode(this.formatLanguageCode(fc)); - }); - return codes; - } -} - -let sets = [{ - lngs: ['ach', 'ak', 'am', 'arn', 'br', 'fil', 'gun', 'ln', 'mfe', 'mg', 'mi', 'oc', 'pt', 'pt-BR', 'tg', 'tl', 'ti', 'tr', 'uz', 'wa'], - nr: [1, 2], - fc: 1 -}, { - lngs: ['af', 'an', 'ast', 'az', 'bg', 'bn', 'ca', 'da', 'de', 'dev', 'el', 'en', 'eo', 'es', 'et', 'eu', 'fi', 'fo', 'fur', 'fy', 'gl', 'gu', 'ha', 'hi', 'hu', 'hy', 'ia', 'it', 'kk', 'kn', 'ku', 'lb', 'mai', 'ml', 'mn', 'mr', 'nah', 'nap', 'nb', 'ne', 'nl', 'nn', 'no', 'nso', 'pa', 'pap', 'pms', 'ps', 'pt-PT', 'rm', 'sco', 'se', 'si', 'so', 'son', 'sq', 'sv', 'sw', 'ta', 'te', 'tk', 'ur', 'yo'], - nr: [1, 2], - fc: 2 -}, { - lngs: ['ay', 'bo', 'cgg', 'fa', 'ht', 'id', 'ja', 'jbo', 'ka', 'km', 'ko', 'ky', 'lo', 'ms', 'sah', 'su', 'th', 'tt', 'ug', 'vi', 'wo', 'zh'], - nr: [1], - fc: 3 -}, { - lngs: ['be', 'bs', 'cnr', 'dz', 'hr', 'ru', 'sr', 'uk'], - nr: [1, 2, 5], - fc: 4 -}, { - lngs: ['ar'], - nr: [0, 1, 2, 3, 11, 100], - fc: 5 -}, { - lngs: ['cs', 'sk'], - nr: [1, 2, 5], - fc: 6 -}, { - lngs: ['csb', 'pl'], - nr: [1, 2, 5], - fc: 7 -}, { - lngs: ['cy'], - nr: [1, 2, 3, 8], - fc: 8 -}, { - lngs: ['fr'], - nr: [1, 2], - fc: 9 -}, { - lngs: ['ga'], - nr: [1, 2, 3, 7, 11], - fc: 10 -}, { - lngs: ['gd'], - nr: [1, 2, 3, 20], - fc: 11 -}, { - lngs: ['is'], - nr: [1, 2], - fc: 12 -}, { - lngs: ['jv'], - nr: [0, 1], - fc: 13 -}, { - lngs: ['kw'], - nr: [1, 2, 3, 4], - fc: 14 -}, { - lngs: ['lt'], - nr: [1, 2, 10], - fc: 15 -}, { - lngs: ['lv'], - nr: [1, 2, 0], - fc: 16 -}, { - lngs: ['mk'], - nr: [1, 2], - fc: 17 -}, { - lngs: ['mnk'], - nr: [0, 1, 2], - fc: 18 -}, { - lngs: ['mt'], - nr: [1, 2, 11, 20], - fc: 19 -}, { - lngs: ['or'], - nr: [2, 1], - fc: 2 -}, { - lngs: ['ro'], - nr: [1, 2, 20], - fc: 20 -}, { - lngs: ['sl'], - nr: [5, 1, 2, 3], - fc: 21 -}, { - lngs: ['he', 'iw'], - nr: [1, 2, 20, 21], - fc: 22 -}]; -let _rulesPluralsTypes = { - 1: function (n) { - return Number(n > 1); - }, - 2: function (n) { - return Number(n != 1); - }, - 3: function (n) { - return 0; - }, - 4: function (n) { - return Number(n % 10 == 1 && n % 100 != 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2); - }, - 5: function (n) { - return Number(n == 0 ? 0 : n == 1 ? 1 : n == 2 ? 2 : n % 100 >= 3 && n % 100 <= 10 ? 3 : n % 100 >= 11 ? 4 : 5); - }, - 6: function (n) { - return Number(n == 1 ? 0 : n >= 2 && n <= 4 ? 1 : 2); - }, - 7: function (n) { - return Number(n == 1 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2); - }, - 8: function (n) { - return Number(n == 1 ? 0 : n == 2 ? 1 : n != 8 && n != 11 ? 2 : 3); - }, - 9: function (n) { - return Number(n >= 2); - }, - 10: function (n) { - return Number(n == 1 ? 0 : n == 2 ? 1 : n < 7 ? 2 : n < 11 ? 3 : 4); - }, - 11: function (n) { - return Number(n == 1 || n == 11 ? 0 : n == 2 || n == 12 ? 1 : n > 2 && n < 20 ? 2 : 3); - }, - 12: function (n) { - return Number(n % 10 != 1 || n % 100 == 11); - }, - 13: function (n) { - return Number(n !== 0); - }, - 14: function (n) { - return Number(n == 1 ? 0 : n == 2 ? 1 : n == 3 ? 2 : 3); - }, - 15: function (n) { - return Number(n % 10 == 1 && n % 100 != 11 ? 0 : n % 10 >= 2 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2); - }, - 16: function (n) { - return Number(n % 10 == 1 && n % 100 != 11 ? 0 : n !== 0 ? 1 : 2); - }, - 17: function (n) { - return Number(n == 1 || n % 10 == 1 && n % 100 != 11 ? 0 : 1); - }, - 18: function (n) { - return Number(n == 0 ? 0 : n == 1 ? 1 : 2); - }, - 19: function (n) { - return Number(n == 1 ? 0 : n == 0 || n % 100 > 1 && n % 100 < 11 ? 1 : n % 100 > 10 && n % 100 < 20 ? 2 : 3); - }, - 20: function (n) { - return Number(n == 1 ? 0 : n == 0 || n % 100 > 0 && n % 100 < 20 ? 1 : 2); - }, - 21: function (n) { - return Number(n % 100 == 1 ? 1 : n % 100 == 2 ? 2 : n % 100 == 3 || n % 100 == 4 ? 3 : 0); - }, - 22: function (n) { - return Number(n == 1 ? 0 : n == 2 ? 1 : (n < 0 || n > 10) && n % 10 == 0 ? 2 : 3); - } -}; -const nonIntlVersions = ['v1', 'v2', 'v3']; -const intlVersions = ['v4']; -const suffixesOrder = { - zero: 0, - one: 1, - two: 2, - few: 3, - many: 4, - other: 5 -}; -function createRules() { - const rules = {}; - sets.forEach(set => { - set.lngs.forEach(l => { - rules[l] = { - numbers: set.nr, - plurals: _rulesPluralsTypes[set.fc] - }; - }); - }); - return rules; -} -class PluralResolver { - constructor(languageUtils) { - let options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; - this.languageUtils = languageUtils; - this.options = options; - this.logger = baseLogger.create('pluralResolver'); - if ((!this.options.compatibilityJSON || intlVersions.includes(this.options.compatibilityJSON)) && (typeof Intl === 'undefined' || !Intl.PluralRules)) { - this.options.compatibilityJSON = 'v3'; - this.logger.error('Your environment seems not to be Intl API compatible, use an Intl.PluralRules polyfill. Will fallback to the compatibilityJSON v3 format handling.'); - } - this.rules = createRules(); - } - addRule(lng, obj) { - this.rules[lng] = obj; - } - getRule(code) { - let options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; - if (this.shouldUseIntlApi()) { - try { - return new Intl.PluralRules(getCleanedCode(code === 'dev' ? 'en' : code), { - type: options.ordinal ? 'ordinal' : 'cardinal' - }); - } catch (err) { - return; - } - } - return this.rules[code] || this.rules[this.languageUtils.getLanguagePartFromCode(code)]; - } - needsPlural(code) { - let options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; - const rule = this.getRule(code, options); - if (this.shouldUseIntlApi()) { - return rule && rule.resolvedOptions().pluralCategories.length > 1; - } - return rule && rule.numbers.length > 1; - } - getPluralFormsOfKey(code, key) { - let options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; - return this.getSuffixes(code, options).map(suffix => `${key}${suffix}`); - } - getSuffixes(code) { - let options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; - const rule = this.getRule(code, options); - if (!rule) { - return []; - } - if (this.shouldUseIntlApi()) { - return rule.resolvedOptions().pluralCategories.sort((pluralCategory1, pluralCategory2) => suffixesOrder[pluralCategory1] - suffixesOrder[pluralCategory2]).map(pluralCategory => `${this.options.prepend}${options.ordinal ? `ordinal${this.options.prepend}` : ''}${pluralCategory}`); - } - return rule.numbers.map(number => this.getSuffix(code, number, options)); - } - getSuffix(code, count) { - let options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; - const rule = this.getRule(code, options); - if (rule) { - if (this.shouldUseIntlApi()) { - return `${this.options.prepend}${options.ordinal ? `ordinal${this.options.prepend}` : ''}${rule.select(count)}`; - } - return this.getSuffixRetroCompatible(rule, count); - } - this.logger.warn(`no plural rule found for: ${code}`); - return ''; - } - getSuffixRetroCompatible(rule, count) { - const idx = rule.noAbs ? rule.plurals(count) : rule.plurals(Math.abs(count)); - let suffix = rule.numbers[idx]; - if (this.options.simplifyPluralSuffix && rule.numbers.length === 2 && rule.numbers[0] === 1) { - if (suffix === 2) { - suffix = 'plural'; - } else if (suffix === 1) { - suffix = ''; - } - } - const returnSuffix = () => this.options.prepend && suffix.toString() ? this.options.prepend + suffix.toString() : suffix.toString(); - if (this.options.compatibilityJSON === 'v1') { - if (suffix === 1) return ''; - if (typeof suffix === 'number') return `_plural_${suffix.toString()}`; - return returnSuffix(); - } else if (this.options.compatibilityJSON === 'v2') { - return returnSuffix(); - } else if (this.options.simplifyPluralSuffix && rule.numbers.length === 2 && rule.numbers[0] === 1) { - return returnSuffix(); - } - return this.options.prepend && idx.toString() ? this.options.prepend + idx.toString() : idx.toString(); - } - shouldUseIntlApi() { - return !nonIntlVersions.includes(this.options.compatibilityJSON); - } -} - -function deepFindWithDefaults(data, defaultData, key) { - let keySeparator = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : '.'; - let ignoreJSONStructure = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : true; - let path = getPathWithDefaults(data, defaultData, key); - if (!path && ignoreJSONStructure && typeof key === 'string') { - path = deepFind(data, key, keySeparator); - if (path === undefined) path = deepFind(defaultData, key, keySeparator); - } - return path; -} -class Interpolator { - constructor() { - let options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; - this.logger = baseLogger.create('interpolator'); - this.options = options; - this.format = options.interpolation && options.interpolation.format || (value => value); - this.init(options); - } - init() { - let options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; - if (!options.interpolation) options.interpolation = { - escapeValue: true - }; - const iOpts = options.interpolation; - this.escape = iOpts.escape !== undefined ? iOpts.escape : escape; - this.escapeValue = iOpts.escapeValue !== undefined ? iOpts.escapeValue : true; - this.useRawValueToEscape = iOpts.useRawValueToEscape !== undefined ? iOpts.useRawValueToEscape : false; - this.prefix = iOpts.prefix ? regexEscape(iOpts.prefix) : iOpts.prefixEscaped || '{{'; - this.suffix = iOpts.suffix ? regexEscape(iOpts.suffix) : iOpts.suffixEscaped || '}}'; - this.formatSeparator = iOpts.formatSeparator ? iOpts.formatSeparator : iOpts.formatSeparator || ','; - this.unescapePrefix = iOpts.unescapeSuffix ? '' : iOpts.unescapePrefix || '-'; - this.unescapeSuffix = this.unescapePrefix ? '' : iOpts.unescapeSuffix || ''; - this.nestingPrefix = iOpts.nestingPrefix ? regexEscape(iOpts.nestingPrefix) : iOpts.nestingPrefixEscaped || regexEscape('$t('); - this.nestingSuffix = iOpts.nestingSuffix ? regexEscape(iOpts.nestingSuffix) : iOpts.nestingSuffixEscaped || regexEscape(')'); - this.nestingOptionsSeparator = iOpts.nestingOptionsSeparator ? iOpts.nestingOptionsSeparator : iOpts.nestingOptionsSeparator || ','; - this.maxReplaces = iOpts.maxReplaces ? iOpts.maxReplaces : 1000; - this.alwaysFormat = iOpts.alwaysFormat !== undefined ? iOpts.alwaysFormat : false; - this.resetRegExp(); - } - reset() { - if (this.options) this.init(this.options); - } - resetRegExp() { - const getOrResetRegExp = (existingRegExp, pattern) => { - if (existingRegExp && existingRegExp.source === pattern) { - existingRegExp.lastIndex = 0; - return existingRegExp; - } - return new RegExp(pattern, 'g'); - }; - this.regexp = getOrResetRegExp(this.regexp, `${this.prefix}(.+?)${this.suffix}`); - this.regexpUnescape = getOrResetRegExp(this.regexpUnescape, `${this.prefix}${this.unescapePrefix}(.+?)${this.unescapeSuffix}${this.suffix}`); - this.nestingRegexp = getOrResetRegExp(this.nestingRegexp, `${this.nestingPrefix}(.+?)${this.nestingSuffix}`); - } - interpolate(str, data, lng, options) { - let match; - let value; - let replaces; - const defaultData = this.options && this.options.interpolation && this.options.interpolation.defaultVariables || {}; - function regexSafe(val) { - return val.replace(/\$/g, '$$$$'); - } - const handleFormat = key => { - if (key.indexOf(this.formatSeparator) < 0) { - const path = deepFindWithDefaults(data, defaultData, key, this.options.keySeparator, this.options.ignoreJSONStructure); - return this.alwaysFormat ? this.format(path, undefined, lng, { - ...options, - ...data, - interpolationkey: key - }) : path; - } - const p = key.split(this.formatSeparator); - const k = p.shift().trim(); - const f = p.join(this.formatSeparator).trim(); - return this.format(deepFindWithDefaults(data, defaultData, k, this.options.keySeparator, this.options.ignoreJSONStructure), f, lng, { - ...options, - ...data, - interpolationkey: k - }); - }; - this.resetRegExp(); - const missingInterpolationHandler = options && options.missingInterpolationHandler || this.options.missingInterpolationHandler; - const skipOnVariables = options && options.interpolation && options.interpolation.skipOnVariables !== undefined ? options.interpolation.skipOnVariables : this.options.interpolation.skipOnVariables; - const todos = [{ - regex: this.regexpUnescape, - safeValue: val => regexSafe(val) - }, { - regex: this.regexp, - safeValue: val => this.escapeValue ? regexSafe(this.escape(val)) : regexSafe(val) - }]; - todos.forEach(todo => { - replaces = 0; - while (match = todo.regex.exec(str)) { - const matchedVar = match[1].trim(); - value = handleFormat(matchedVar); - if (value === undefined) { - if (typeof missingInterpolationHandler === 'function') { - const temp = missingInterpolationHandler(str, match, options); - value = typeof temp === 'string' ? temp : ''; - } else if (options && Object.prototype.hasOwnProperty.call(options, matchedVar)) { - value = ''; - } else if (skipOnVariables) { - value = match[0]; - continue; - } else { - this.logger.warn(`missed to pass in variable ${matchedVar} for interpolating ${str}`); - value = ''; - } - } else if (typeof value !== 'string' && !this.useRawValueToEscape) { - value = makeString(value); - } - const safeValue = todo.safeValue(value); - str = str.replace(match[0], safeValue); - if (skipOnVariables) { - todo.regex.lastIndex += value.length; - todo.regex.lastIndex -= match[0].length; - } else { - todo.regex.lastIndex = 0; - } - replaces++; - if (replaces >= this.maxReplaces) { - break; - } - } - }); - return str; - } - nest(str, fc) { - let options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; - let match; - let value; - let clonedOptions; - function handleHasOptions(key, inheritedOptions) { - const sep = this.nestingOptionsSeparator; - if (key.indexOf(sep) < 0) return key; - const c = key.split(new RegExp(`${sep}[ ]*{`)); - let optionsString = `{${c[1]}`; - key = c[0]; - optionsString = this.interpolate(optionsString, clonedOptions); - const matchedSingleQuotes = optionsString.match(/'/g); - const matchedDoubleQuotes = optionsString.match(/"/g); - if (matchedSingleQuotes && matchedSingleQuotes.length % 2 === 0 && !matchedDoubleQuotes || matchedDoubleQuotes.length % 2 !== 0) { - optionsString = optionsString.replace(/'/g, '"'); - } - try { - clonedOptions = JSON.parse(optionsString); - if (inheritedOptions) clonedOptions = { - ...inheritedOptions, - ...clonedOptions - }; - } catch (e) { - this.logger.warn(`failed parsing options string in nesting for key ${key}`, e); - return `${key}${sep}${optionsString}`; - } - delete clonedOptions.defaultValue; - return key; - } - while (match = this.nestingRegexp.exec(str)) { - let formatters = []; - clonedOptions = { - ...options - }; - clonedOptions = clonedOptions.replace && typeof clonedOptions.replace !== 'string' ? clonedOptions.replace : clonedOptions; - clonedOptions.applyPostProcessor = false; - delete clonedOptions.defaultValue; - let doReduce = false; - if (match[0].indexOf(this.formatSeparator) !== -1 && !/{.*}/.test(match[1])) { - const r = match[1].split(this.formatSeparator).map(elem => elem.trim()); - match[1] = r.shift(); - formatters = r; - doReduce = true; - } - value = fc(handleHasOptions.call(this, match[1].trim(), clonedOptions), clonedOptions); - if (value && match[0] === str && typeof value !== 'string') return value; - if (typeof value !== 'string') value = makeString(value); - if (!value) { - this.logger.warn(`missed to resolve ${match[1]} for nesting ${str}`); - value = ''; - } - if (doReduce) { - value = formatters.reduce((v, f) => this.format(v, f, options.lng, { - ...options, - interpolationkey: match[1].trim() - }), value.trim()); - } - str = str.replace(match[0], value); - this.regexp.lastIndex = 0; - } - return str; - } -} - -function parseFormatStr(formatStr) { - let formatName = formatStr.toLowerCase().trim(); - const formatOptions = {}; - if (formatStr.indexOf('(') > -1) { - const p = formatStr.split('('); - formatName = p[0].toLowerCase().trim(); - const optStr = p[1].substring(0, p[1].length - 1); - if (formatName === 'currency' && optStr.indexOf(':') < 0) { - if (!formatOptions.currency) formatOptions.currency = optStr.trim(); - } else if (formatName === 'relativetime' && optStr.indexOf(':') < 0) { - if (!formatOptions.range) formatOptions.range = optStr.trim(); - } else { - const opts = optStr.split(';'); - opts.forEach(opt => { - if (!opt) return; - const [key, ...rest] = opt.split(':'); - const val = rest.join(':').trim().replace(/^'+|'+$/g, ''); - if (!formatOptions[key.trim()]) formatOptions[key.trim()] = val; - if (val === 'false') formatOptions[key.trim()] = false; - if (val === 'true') formatOptions[key.trim()] = true; - if (!isNaN(val)) formatOptions[key.trim()] = parseInt(val, 10); - }); - } - } - return { - formatName, - formatOptions - }; -} -function createCachedFormatter(fn) { - const cache = {}; - return function invokeFormatter(val, lng, options) { - const key = lng + JSON.stringify(options); - let formatter = cache[key]; - if (!formatter) { - formatter = fn(getCleanedCode(lng), options); - cache[key] = formatter; - } - return formatter(val); - }; -} -class Formatter { - constructor() { - let options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; - this.logger = baseLogger.create('formatter'); - this.options = options; - this.formats = { - number: createCachedFormatter((lng, opt) => { - const formatter = new Intl.NumberFormat(lng, { - ...opt - }); - return val => formatter.format(val); - }), - currency: createCachedFormatter((lng, opt) => { - const formatter = new Intl.NumberFormat(lng, { - ...opt, - style: 'currency' - }); - return val => formatter.format(val); - }), - datetime: createCachedFormatter((lng, opt) => { - const formatter = new Intl.DateTimeFormat(lng, { - ...opt - }); - return val => formatter.format(val); - }), - relativetime: createCachedFormatter((lng, opt) => { - const formatter = new Intl.RelativeTimeFormat(lng, { - ...opt - }); - return val => formatter.format(val, opt.range || 'day'); - }), - list: createCachedFormatter((lng, opt) => { - const formatter = new Intl.ListFormat(lng, { - ...opt - }); - return val => formatter.format(val); - }) - }; - this.init(options); - } - init(services) { - let options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : { - interpolation: {} - }; - const iOpts = options.interpolation; - this.formatSeparator = iOpts.formatSeparator ? iOpts.formatSeparator : iOpts.formatSeparator || ','; - } - add(name, fc) { - this.formats[name.toLowerCase().trim()] = fc; - } - addCached(name, fc) { - this.formats[name.toLowerCase().trim()] = createCachedFormatter(fc); - } - format(value, format, lng) { - let options = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {}; - const formats = format.split(this.formatSeparator); - const result = formats.reduce((mem, f) => { - const { - formatName, - formatOptions - } = parseFormatStr(f); - if (this.formats[formatName]) { - let formatted = mem; - try { - const valOptions = options && options.formatParams && options.formatParams[options.interpolationkey] || {}; - const l = valOptions.locale || valOptions.lng || options.locale || options.lng || lng; - formatted = this.formats[formatName](mem, l, { - ...formatOptions, - ...options, - ...valOptions - }); - } catch (error) { - this.logger.warn(error); - } - return formatted; - } else { - this.logger.warn(`there was no format function for ${formatName}`); - } - return mem; - }, value); - return result; - } -} - -function removePending(q, name) { - if (q.pending[name] !== undefined) { - delete q.pending[name]; - q.pendingCount--; - } -} -class Connector extends EventEmitter { - constructor(backend, store, services) { - let options = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {}; - super(); - this.backend = backend; - this.store = store; - this.services = services; - this.languageUtils = services.languageUtils; - this.options = options; - this.logger = baseLogger.create('backendConnector'); - this.waitingReads = []; - this.maxParallelReads = options.maxParallelReads || 10; - this.readingCalls = 0; - this.maxRetries = options.maxRetries >= 0 ? options.maxRetries : 5; - this.retryTimeout = options.retryTimeout >= 1 ? options.retryTimeout : 350; - this.state = {}; - this.queue = []; - if (this.backend && this.backend.init) { - this.backend.init(services, options.backend, options); - } - } - queueLoad(languages, namespaces, options, callback) { - const toLoad = {}; - const pending = {}; - const toLoadLanguages = {}; - const toLoadNamespaces = {}; - languages.forEach(lng => { - let hasAllNamespaces = true; - namespaces.forEach(ns => { - const name = `${lng}|${ns}`; - if (!options.reload && this.store.hasResourceBundle(lng, ns)) { - this.state[name] = 2; - } else if (this.state[name] < 0) ; else if (this.state[name] === 1) { - if (pending[name] === undefined) pending[name] = true; - } else { - this.state[name] = 1; - hasAllNamespaces = false; - if (pending[name] === undefined) pending[name] = true; - if (toLoad[name] === undefined) toLoad[name] = true; - if (toLoadNamespaces[ns] === undefined) toLoadNamespaces[ns] = true; - } - }); - if (!hasAllNamespaces) toLoadLanguages[lng] = true; - }); - if (Object.keys(toLoad).length || Object.keys(pending).length) { - this.queue.push({ - pending, - pendingCount: Object.keys(pending).length, - loaded: {}, - errors: [], - callback - }); - } - return { - toLoad: Object.keys(toLoad), - pending: Object.keys(pending), - toLoadLanguages: Object.keys(toLoadLanguages), - toLoadNamespaces: Object.keys(toLoadNamespaces) - }; - } - loaded(name, err, data) { - const s = name.split('|'); - const lng = s[0]; - const ns = s[1]; - if (err) this.emit('failedLoading', lng, ns, err); - if (data) { - this.store.addResourceBundle(lng, ns, data, undefined, undefined, { - skipCopy: true - }); - } - this.state[name] = err ? -1 : 2; - const loaded = {}; - this.queue.forEach(q => { - pushPath(q.loaded, [lng], ns); - removePending(q, name); - if (err) q.errors.push(err); - if (q.pendingCount === 0 && !q.done) { - Object.keys(q.loaded).forEach(l => { - if (!loaded[l]) loaded[l] = {}; - const loadedKeys = q.loaded[l]; - if (loadedKeys.length) { - loadedKeys.forEach(n => { - if (loaded[l][n] === undefined) loaded[l][n] = true; - }); - } - }); - q.done = true; - if (q.errors.length) { - q.callback(q.errors); - } else { - q.callback(); - } - } - }); - this.emit('loaded', loaded); - this.queue = this.queue.filter(q => !q.done); - } - read(lng, ns, fcName) { - let tried = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : 0; - let wait = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : this.retryTimeout; - let callback = arguments.length > 5 ? arguments[5] : undefined; - if (!lng.length) return callback(null, {}); - if (this.readingCalls >= this.maxParallelReads) { - this.waitingReads.push({ - lng, - ns, - fcName, - tried, - wait, - callback - }); - return; - } - this.readingCalls++; - const resolver = (err, data) => { - this.readingCalls--; - if (this.waitingReads.length > 0) { - const next = this.waitingReads.shift(); - this.read(next.lng, next.ns, next.fcName, next.tried, next.wait, next.callback); - } - if (err && data && tried < this.maxRetries) { - setTimeout(() => { - this.read.call(this, lng, ns, fcName, tried + 1, wait * 2, callback); - }, wait); - return; - } - callback(err, data); - }; - const fc = this.backend[fcName].bind(this.backend); - if (fc.length === 2) { - try { - const r = fc(lng, ns); - if (r && typeof r.then === 'function') { - r.then(data => resolver(null, data)).catch(resolver); - } else { - resolver(null, r); - } - } catch (err) { - resolver(err); - } - return; - } - return fc(lng, ns, resolver); - } - prepareLoading(languages, namespaces) { - let options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; - let callback = arguments.length > 3 ? arguments[3] : undefined; - if (!this.backend) { - this.logger.warn('No backend was added via i18next.use. Will not load resources.'); - return callback && callback(); - } - if (typeof languages === 'string') languages = this.languageUtils.toResolveHierarchy(languages); - if (typeof namespaces === 'string') namespaces = [namespaces]; - const toLoad = this.queueLoad(languages, namespaces, options, callback); - if (!toLoad.toLoad.length) { - if (!toLoad.pending.length) callback(); - return null; - } - toLoad.toLoad.forEach(name => { - this.loadOne(name); - }); - } - load(languages, namespaces, callback) { - this.prepareLoading(languages, namespaces, {}, callback); - } - reload(languages, namespaces, callback) { - this.prepareLoading(languages, namespaces, { - reload: true - }, callback); - } - loadOne(name) { - let prefix = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : ''; - const s = name.split('|'); - const lng = s[0]; - const ns = s[1]; - this.read(lng, ns, 'read', undefined, undefined, (err, data) => { - if (err) this.logger.warn(`${prefix}loading namespace ${ns} for language ${lng} failed`, err); - if (!err && data) this.logger.log(`${prefix}loaded namespace ${ns} for language ${lng}`, data); - this.loaded(name, err, data); - }); - } - saveMissing(languages, namespace, key, fallbackValue, isUpdate) { - let options = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : {}; - let clb = arguments.length > 6 && arguments[6] !== undefined ? arguments[6] : () => {}; - if (this.services.utils && this.services.utils.hasLoadedNamespace && !this.services.utils.hasLoadedNamespace(namespace)) { - this.logger.warn(`did not save key "${key}" as the namespace "${namespace}" was not yet loaded`, 'This means something IS WRONG in your setup. You access the t function before i18next.init / i18next.loadNamespace / i18next.changeLanguage was done. Wait for the callback or Promise to resolve before accessing it!!!'); - return; - } - if (key === undefined || key === null || key === '') return; - if (this.backend && this.backend.create) { - const opts = { - ...options, - isUpdate - }; - const fc = this.backend.create.bind(this.backend); - if (fc.length < 6) { - try { - let r; - if (fc.length === 5) { - r = fc(languages, namespace, key, fallbackValue, opts); - } else { - r = fc(languages, namespace, key, fallbackValue); - } - if (r && typeof r.then === 'function') { - r.then(data => clb(null, data)).catch(clb); - } else { - clb(null, r); - } - } catch (err) { - clb(err); - } - } else { - fc(languages, namespace, key, fallbackValue, clb, opts); - } - } - if (!languages || !languages[0]) return; - this.store.addResource(languages[0], namespace, key, fallbackValue); - } -} - -function get() { - return { - debug: false, - initImmediate: true, - ns: ['translation'], - defaultNS: ['translation'], - fallbackLng: ['dev'], - fallbackNS: false, - supportedLngs: false, - nonExplicitSupportedLngs: false, - load: 'all', - preload: false, - simplifyPluralSuffix: true, - keySeparator: '.', - nsSeparator: ':', - pluralSeparator: '_', - contextSeparator: '_', - partialBundledLanguages: false, - saveMissing: false, - updateMissing: false, - saveMissingTo: 'fallback', - saveMissingPlurals: true, - missingKeyHandler: false, - missingInterpolationHandler: false, - postProcess: false, - postProcessPassResolved: false, - returnNull: false, - returnEmptyString: true, - returnObjects: false, - joinArrays: false, - returnedObjectHandler: false, - parseMissingKeyHandler: false, - appendNamespaceToMissingKey: false, - appendNamespaceToCIMode: false, - overloadTranslationOptionHandler: function handle(args) { - let ret = {}; - if (typeof args[1] === 'object') ret = args[1]; - if (typeof args[1] === 'string') ret.defaultValue = args[1]; - if (typeof args[2] === 'string') ret.tDescription = args[2]; - if (typeof args[2] === 'object' || typeof args[3] === 'object') { - const options = args[3] || args[2]; - Object.keys(options).forEach(key => { - ret[key] = options[key]; - }); - } - return ret; - }, - interpolation: { - escapeValue: true, - format: value => value, - prefix: '{{', - suffix: '}}', - formatSeparator: ',', - unescapePrefix: '-', - nestingPrefix: '$t(', - nestingSuffix: ')', - nestingOptionsSeparator: ',', - maxReplaces: 1000, - skipOnVariables: true - } - }; -} -function transformOptions(options) { - if (typeof options.ns === 'string') options.ns = [options.ns]; - if (typeof options.fallbackLng === 'string') options.fallbackLng = [options.fallbackLng]; - if (typeof options.fallbackNS === 'string') options.fallbackNS = [options.fallbackNS]; - if (options.supportedLngs && options.supportedLngs.indexOf('cimode') < 0) { - options.supportedLngs = options.supportedLngs.concat(['cimode']); - } - return options; -} - -function noop$3() {} -function bindMemberFunctions(inst) { - const mems = Object.getOwnPropertyNames(Object.getPrototypeOf(inst)); - mems.forEach(mem => { - if (typeof inst[mem] === 'function') { - inst[mem] = inst[mem].bind(inst); - } - }); -} -class I18n extends EventEmitter { - constructor() { - let options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; - let callback = arguments.length > 1 ? arguments[1] : undefined; - super(); - this.options = transformOptions(options); - this.services = {}; - this.logger = baseLogger; - this.modules = { - external: [] - }; - bindMemberFunctions(this); - if (callback && !this.isInitialized && !options.isClone) { - if (!this.options.initImmediate) { - this.init(options, callback); - return this; - } - setTimeout(() => { - this.init(options, callback); - }, 0); - } - } - init() { - var _this = this; - let options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; - let callback = arguments.length > 1 ? arguments[1] : undefined; - this.isInitializing = true; - if (typeof options === 'function') { - callback = options; - options = {}; - } - if (!options.defaultNS && options.defaultNS !== false && options.ns) { - if (typeof options.ns === 'string') { - options.defaultNS = options.ns; - } else if (options.ns.indexOf('translation') < 0) { - options.defaultNS = options.ns[0]; - } - } - const defOpts = get(); - this.options = { - ...defOpts, - ...this.options, - ...transformOptions(options) - }; - if (this.options.compatibilityAPI !== 'v1') { - this.options.interpolation = { - ...defOpts.interpolation, - ...this.options.interpolation - }; - } - if (options.keySeparator !== undefined) { - this.options.userDefinedKeySeparator = options.keySeparator; - } - if (options.nsSeparator !== undefined) { - this.options.userDefinedNsSeparator = options.nsSeparator; - } - function createClassOnDemand(ClassOrObject) { - if (!ClassOrObject) return null; - if (typeof ClassOrObject === 'function') return new ClassOrObject(); - return ClassOrObject; - } - if (!this.options.isClone) { - if (this.modules.logger) { - baseLogger.init(createClassOnDemand(this.modules.logger), this.options); - } else { - baseLogger.init(null, this.options); - } - let formatter; - if (this.modules.formatter) { - formatter = this.modules.formatter; - } else if (typeof Intl !== 'undefined') { - formatter = Formatter; - } - const lu = new LanguageUtil(this.options); - this.store = new ResourceStore(this.options.resources, this.options); - const s = this.services; - s.logger = baseLogger; - s.resourceStore = this.store; - s.languageUtils = lu; - s.pluralResolver = new PluralResolver(lu, { - prepend: this.options.pluralSeparator, - compatibilityJSON: this.options.compatibilityJSON, - simplifyPluralSuffix: this.options.simplifyPluralSuffix - }); - if (formatter && (!this.options.interpolation.format || this.options.interpolation.format === defOpts.interpolation.format)) { - s.formatter = createClassOnDemand(formatter); - s.formatter.init(s, this.options); - this.options.interpolation.format = s.formatter.format.bind(s.formatter); - } - s.interpolator = new Interpolator(this.options); - s.utils = { - hasLoadedNamespace: this.hasLoadedNamespace.bind(this) - }; - s.backendConnector = new Connector(createClassOnDemand(this.modules.backend), s.resourceStore, s, this.options); - s.backendConnector.on('*', function (event) { - for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) { - args[_key - 1] = arguments[_key]; - } - _this.emit(event, ...args); - }); - if (this.modules.languageDetector) { - s.languageDetector = createClassOnDemand(this.modules.languageDetector); - if (s.languageDetector.init) s.languageDetector.init(s, this.options.detection, this.options); - } - if (this.modules.i18nFormat) { - s.i18nFormat = createClassOnDemand(this.modules.i18nFormat); - if (s.i18nFormat.init) s.i18nFormat.init(this); - } - this.translator = new Translator(this.services, this.options); - this.translator.on('*', function (event) { - for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) { - args[_key2 - 1] = arguments[_key2]; - } - _this.emit(event, ...args); - }); - this.modules.external.forEach(m => { - if (m.init) m.init(this); - }); - } - this.format = this.options.interpolation.format; - if (!callback) callback = noop$3; - if (this.options.fallbackLng && !this.services.languageDetector && !this.options.lng) { - const codes = this.services.languageUtils.getFallbackCodes(this.options.fallbackLng); - if (codes.length > 0 && codes[0] !== 'dev') this.options.lng = codes[0]; - } - if (!this.services.languageDetector && !this.options.lng) { - this.logger.warn('init: no languageDetector is used and no lng is defined'); - } - const storeApi = ['getResource', 'hasResourceBundle', 'getResourceBundle', 'getDataByLanguage']; - storeApi.forEach(fcName => { - this[fcName] = function () { - return _this.store[fcName](...arguments); - }; - }); - const storeApiChained = ['addResource', 'addResources', 'addResourceBundle', 'removeResourceBundle']; - storeApiChained.forEach(fcName => { - this[fcName] = function () { - _this.store[fcName](...arguments); - return _this; - }; - }); - const deferred = defer(); - const load = () => { - const finish = (err, t) => { - this.isInitializing = false; - if (this.isInitialized && !this.initializedStoreOnce) this.logger.warn('init: i18next is already initialized. You should call init just once!'); - this.isInitialized = true; - if (!this.options.isClone) this.logger.log('initialized', this.options); - this.emit('initialized', this.options); - deferred.resolve(t); - callback(err, t); - }; - if (this.languages && this.options.compatibilityAPI !== 'v1' && !this.isInitialized) return finish(null, this.t.bind(this)); - this.changeLanguage(this.options.lng, finish); - }; - if (this.options.resources || !this.options.initImmediate) { - load(); - } else { - setTimeout(load, 0); - } - return deferred; - } - loadResources(language) { - let callback = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : noop$3; - let usedCallback = callback; - const usedLng = typeof language === 'string' ? language : this.language; - if (typeof language === 'function') usedCallback = language; - if (!this.options.resources || this.options.partialBundledLanguages) { - if (usedLng && usedLng.toLowerCase() === 'cimode' && (!this.options.preload || this.options.preload.length === 0)) return usedCallback(); - const toLoad = []; - const append = lng => { - if (!lng) return; - if (lng === 'cimode') return; - const lngs = this.services.languageUtils.toResolveHierarchy(lng); - lngs.forEach(l => { - if (l === 'cimode') return; - if (toLoad.indexOf(l) < 0) toLoad.push(l); - }); - }; - if (!usedLng) { - const fallbacks = this.services.languageUtils.getFallbackCodes(this.options.fallbackLng); - fallbacks.forEach(l => append(l)); - } else { - append(usedLng); - } - if (this.options.preload) { - this.options.preload.forEach(l => append(l)); - } - this.services.backendConnector.load(toLoad, this.options.ns, e => { - if (!e && !this.resolvedLanguage && this.language) this.setResolvedLanguage(this.language); - usedCallback(e); - }); - } else { - usedCallback(null); - } - } - reloadResources(lngs, ns, callback) { - const deferred = defer(); - if (!lngs) lngs = this.languages; - if (!ns) ns = this.options.ns; - if (!callback) callback = noop$3; - this.services.backendConnector.reload(lngs, ns, err => { - deferred.resolve(); - callback(err); - }); - return deferred; - } - use(module) { - if (!module) throw new Error('You are passing an undefined module! Please check the object you are passing to i18next.use()'); - if (!module.type) throw new Error('You are passing a wrong module! Please check the object you are passing to i18next.use()'); - if (module.type === 'backend') { - this.modules.backend = module; - } - if (module.type === 'logger' || module.log && module.warn && module.error) { - this.modules.logger = module; - } - if (module.type === 'languageDetector') { - this.modules.languageDetector = module; - } - if (module.type === 'i18nFormat') { - this.modules.i18nFormat = module; - } - if (module.type === 'postProcessor') { - postProcessor.addPostProcessor(module); - } - if (module.type === 'formatter') { - this.modules.formatter = module; - } - if (module.type === '3rdParty') { - this.modules.external.push(module); - } - return this; - } - setResolvedLanguage(l) { - if (!l || !this.languages) return; - if (['cimode', 'dev'].indexOf(l) > -1) return; - for (let li = 0; li < this.languages.length; li++) { - const lngInLngs = this.languages[li]; - if (['cimode', 'dev'].indexOf(lngInLngs) > -1) continue; - if (this.store.hasLanguageSomeTranslations(lngInLngs)) { - this.resolvedLanguage = lngInLngs; - break; - } - } - } - changeLanguage(lng, callback) { - var _this2 = this; - this.isLanguageChangingTo = lng; - const deferred = defer(); - this.emit('languageChanging', lng); - const setLngProps = l => { - this.language = l; - this.languages = this.services.languageUtils.toResolveHierarchy(l); - this.resolvedLanguage = undefined; - this.setResolvedLanguage(l); - }; - const done = (err, l) => { - if (l) { - setLngProps(l); - this.translator.changeLanguage(l); - this.isLanguageChangingTo = undefined; - this.emit('languageChanged', l); - this.logger.log('languageChanged', l); - } else { - this.isLanguageChangingTo = undefined; - } - deferred.resolve(function () { - return _this2.t(...arguments); - }); - if (callback) callback(err, function () { - return _this2.t(...arguments); - }); - }; - const setLng = lngs => { - if (!lng && !lngs && this.services.languageDetector) lngs = []; - const l = typeof lngs === 'string' ? lngs : this.services.languageUtils.getBestMatchFromCodes(lngs); - if (l) { - if (!this.language) { - setLngProps(l); - } - if (!this.translator.language) this.translator.changeLanguage(l); - if (this.services.languageDetector && this.services.languageDetector.cacheUserLanguage) this.services.languageDetector.cacheUserLanguage(l); - } - this.loadResources(l, err => { - done(err, l); - }); - }; - if (!lng && this.services.languageDetector && !this.services.languageDetector.async) { - setLng(this.services.languageDetector.detect()); - } else if (!lng && this.services.languageDetector && this.services.languageDetector.async) { - if (this.services.languageDetector.detect.length === 0) { - this.services.languageDetector.detect().then(setLng); - } else { - this.services.languageDetector.detect(setLng); - } - } else { - setLng(lng); - } - return deferred; - } - getFixedT(lng, ns, keyPrefix) { - var _this3 = this; - const fixedT = function (key, opts) { - let options; - if (typeof opts !== 'object') { - for (var _len3 = arguments.length, rest = new Array(_len3 > 2 ? _len3 - 2 : 0), _key3 = 2; _key3 < _len3; _key3++) { - rest[_key3 - 2] = arguments[_key3]; - } - options = _this3.options.overloadTranslationOptionHandler([key, opts].concat(rest)); - } else { - options = { - ...opts - }; - } - options.lng = options.lng || fixedT.lng; - options.lngs = options.lngs || fixedT.lngs; - options.ns = options.ns || fixedT.ns; - options.keyPrefix = options.keyPrefix || keyPrefix || fixedT.keyPrefix; - const keySeparator = _this3.options.keySeparator || '.'; - let resultKey; - if (options.keyPrefix && Array.isArray(key)) { - resultKey = key.map(k => `${options.keyPrefix}${keySeparator}${k}`); - } else { - resultKey = options.keyPrefix ? `${options.keyPrefix}${keySeparator}${key}` : key; - } - return _this3.t(resultKey, options); - }; - if (typeof lng === 'string') { - fixedT.lng = lng; - } else { - fixedT.lngs = lng; - } - fixedT.ns = ns; - fixedT.keyPrefix = keyPrefix; - return fixedT; - } - t() { - return this.translator && this.translator.translate(...arguments); - } - exists() { - return this.translator && this.translator.exists(...arguments); - } - setDefaultNamespace(ns) { - this.options.defaultNS = ns; - } - hasLoadedNamespace(ns) { - let options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; - if (!this.isInitialized) { - this.logger.warn('hasLoadedNamespace: i18next was not initialized', this.languages); - return false; - } - if (!this.languages || !this.languages.length) { - this.logger.warn('hasLoadedNamespace: i18n.languages were undefined or empty', this.languages); - return false; - } - const lng = options.lng || this.resolvedLanguage || this.languages[0]; - const fallbackLng = this.options ? this.options.fallbackLng : false; - const lastLng = this.languages[this.languages.length - 1]; - if (lng.toLowerCase() === 'cimode') return true; - const loadNotPending = (l, n) => { - const loadState = this.services.backendConnector.state[`${l}|${n}`]; - return loadState === -1 || loadState === 2; - }; - if (options.precheck) { - const preResult = options.precheck(this, loadNotPending); - if (preResult !== undefined) return preResult; - } - if (this.hasResourceBundle(lng, ns)) return true; - if (!this.services.backendConnector.backend || this.options.resources && !this.options.partialBundledLanguages) return true; - if (loadNotPending(lng, ns) && (!fallbackLng || loadNotPending(lastLng, ns))) return true; - return false; - } - loadNamespaces(ns, callback) { - const deferred = defer(); - if (!this.options.ns) { - if (callback) callback(); - return Promise.resolve(); - } - if (typeof ns === 'string') ns = [ns]; - ns.forEach(n => { - if (this.options.ns.indexOf(n) < 0) this.options.ns.push(n); - }); - this.loadResources(err => { - deferred.resolve(); - if (callback) callback(err); - }); - return deferred; - } - loadLanguages(lngs, callback) { - const deferred = defer(); - if (typeof lngs === 'string') lngs = [lngs]; - const preloaded = this.options.preload || []; - const newLngs = lngs.filter(lng => preloaded.indexOf(lng) < 0); - if (!newLngs.length) { - if (callback) callback(); - return Promise.resolve(); - } - this.options.preload = preloaded.concat(newLngs); - this.loadResources(err => { - deferred.resolve(); - if (callback) callback(err); - }); - return deferred; - } - dir(lng) { - if (!lng) lng = this.resolvedLanguage || (this.languages && this.languages.length > 0 ? this.languages[0] : this.language); - if (!lng) return 'rtl'; - const rtlLngs = ['ar', 'shu', 'sqr', 'ssh', 'xaa', 'yhd', 'yud', 'aao', 'abh', 'abv', 'acm', 'acq', 'acw', 'acx', 'acy', 'adf', 'ads', 'aeb', 'aec', 'afb', 'ajp', 'apc', 'apd', 'arb', 'arq', 'ars', 'ary', 'arz', 'auz', 'avl', 'ayh', 'ayl', 'ayn', 'ayp', 'bbz', 'pga', 'he', 'iw', 'ps', 'pbt', 'pbu', 'pst', 'prp', 'prd', 'ug', 'ur', 'ydd', 'yds', 'yih', 'ji', 'yi', 'hbo', 'men', 'xmn', 'fa', 'jpr', 'peo', 'pes', 'prs', 'dv', 'sam', 'ckb']; - const languageUtils = this.services && this.services.languageUtils || new LanguageUtil(get()); - return rtlLngs.indexOf(languageUtils.getLanguagePartFromCode(lng)) > -1 || lng.toLowerCase().indexOf('-arab') > 1 ? 'rtl' : 'ltr'; - } - static createInstance() { - let options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; - let callback = arguments.length > 1 ? arguments[1] : undefined; - return new I18n(options, callback); - } - cloneInstance() { - let options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; - let callback = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : noop$3; - const forkResourceStore = options.forkResourceStore; - if (forkResourceStore) delete options.forkResourceStore; - const mergedOptions = { - ...this.options, - ...options, - ...{ - isClone: true - } - }; - const clone = new I18n(mergedOptions); - if (options.debug !== undefined || options.prefix !== undefined) { - clone.logger = clone.logger.clone(options); - } - const membersToCopy = ['store', 'services', 'language']; - membersToCopy.forEach(m => { - clone[m] = this[m]; - }); - clone.services = { - ...this.services - }; - clone.services.utils = { - hasLoadedNamespace: clone.hasLoadedNamespace.bind(clone) - }; - if (forkResourceStore) { - clone.store = new ResourceStore(this.store.data, mergedOptions); - clone.services.resourceStore = clone.store; - } - clone.translator = new Translator(clone.services, mergedOptions); - clone.translator.on('*', function (event) { - for (var _len4 = arguments.length, args = new Array(_len4 > 1 ? _len4 - 1 : 0), _key4 = 1; _key4 < _len4; _key4++) { - args[_key4 - 1] = arguments[_key4]; - } - clone.emit(event, ...args); - }); - clone.init(mergedOptions, callback); - clone.translator.options = mergedOptions; - clone.translator.backendConnector.services.utils = { - hasLoadedNamespace: clone.hasLoadedNamespace.bind(clone) - }; - return clone; - } - toJSON() { - return { - options: this.options, - store: this.store, - language: this.language, - languages: this.languages, - resolvedLanguage: this.resolvedLanguage - }; - } -} -const instance = I18n.createInstance(); -instance.createInstance = I18n.createInstance; - -instance.createInstance; -instance.dir; -instance.init; -instance.loadResources; -instance.reloadResources; -instance.use; -instance.changeLanguage; -instance.getFixedT; -instance.t; -instance.exists; -instance.setDefaultNamespace; -instance.hasLoadedNamespace; -instance.loadNamespaces; -instance.loadLanguages; - -async function loadTranslations(locale, dynamicImport) { - try { - const { default: translations } = await dynamicImport(); - instance.addResourceBundle(locale, "translation", translations); - } - catch (e) { - console.error(`Cannot load translations for ${locale}`); - } -} - -function warn() { - if (console && console.warn) { - for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { - args[_key] = arguments[_key]; - } - if (typeof args[0] === 'string') args[0] = `react-i18next:: ${args[0]}`; - console.warn(...args); - } -} -const alreadyWarned = {}; -function warnOnce() { - for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) { - args[_key2] = arguments[_key2]; - } - if (typeof args[0] === 'string' && alreadyWarned[args[0]]) return; - if (typeof args[0] === 'string') alreadyWarned[args[0]] = new Date(); - warn(...args); -} -const loadedClb = (i18n, cb) => () => { - if (i18n.isInitialized) { - cb(); - } else { - const initialized = () => { - setTimeout(() => { - i18n.off('initialized', initialized); - }, 0); - cb(); - }; - i18n.on('initialized', initialized); - } -}; -function loadNamespaces(i18n, ns, cb) { - i18n.loadNamespaces(ns, loadedClb(i18n, cb)); -} -function loadLanguages(i18n, lng, ns, cb) { - if (typeof ns === 'string') ns = [ns]; - ns.forEach(n => { - if (i18n.options.ns.indexOf(n) < 0) i18n.options.ns.push(n); - }); - i18n.loadLanguages(lng, loadedClb(i18n, cb)); -} -function oldI18nextHasLoadedNamespace(ns, i18n) { - let options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; - const lng = i18n.languages[0]; - const fallbackLng = i18n.options ? i18n.options.fallbackLng : false; - const lastLng = i18n.languages[i18n.languages.length - 1]; - if (lng.toLowerCase() === 'cimode') return true; - const loadNotPending = (l, n) => { - const loadState = i18n.services.backendConnector.state[`${l}|${n}`]; - return loadState === -1 || loadState === 2; - }; - if (options.bindI18n && options.bindI18n.indexOf('languageChanging') > -1 && i18n.services.backendConnector.backend && i18n.isLanguageChangingTo && !loadNotPending(i18n.isLanguageChangingTo, ns)) return false; - if (i18n.hasResourceBundle(lng, ns)) return true; - if (!i18n.services.backendConnector.backend || i18n.options.resources && !i18n.options.partialBundledLanguages) return true; - if (loadNotPending(lng, ns) && (!fallbackLng || loadNotPending(lastLng, ns))) return true; - return false; -} -function hasLoadedNamespace(ns, i18n) { - let options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; - if (!i18n.languages || !i18n.languages.length) { - warnOnce('i18n.languages were undefined or empty', i18n.languages); - return true; - } - const isNewerI18next = i18n.options.ignoreJSONStructure !== undefined; - if (!isNewerI18next) { - return oldI18nextHasLoadedNamespace(ns, i18n, options); - } - return i18n.hasLoadedNamespace(ns, { - lng: options.lng, - precheck: (i18nInstance, loadNotPending) => { - if (options.bindI18n && options.bindI18n.indexOf('languageChanging') > -1 && i18nInstance.services.backendConnector.backend && i18nInstance.isLanguageChangingTo && !loadNotPending(i18nInstance.isLanguageChangingTo, ns)) return false; - } - }); -} - -const matchHtmlEntity = /&(?:amp|#38|lt|#60|gt|#62|apos|#39|quot|#34|nbsp|#160|copy|#169|reg|#174|hellip|#8230|#x2F|#47);/g; -const htmlEntities = { - '&': '&', - '&': '&', - '<': '<', - '<': '<', - '>': '>', - '>': '>', - ''': "'", - ''': "'", - '"': '"', - '"': '"', - ' ': ' ', - ' ': ' ', - '©': '©', - '©': '©', - '®': '®', - '®': '®', - '…': '…', - '…': '…', - '/': '/', - '/': '/' -}; -const unescapeHtmlEntity = m => htmlEntities[m]; -const unescape = text => text.replace(matchHtmlEntity, unescapeHtmlEntity); - -let defaultOptions$1 = { - bindI18n: 'languageChanged', - bindI18nStore: '', - transEmptyNodeValue: '', - transSupportBasicHtmlNodes: true, - transWrapTextNodes: '', - transKeepBasicHtmlNodesFor: ['br', 'strong', 'i', 'p'], - useSuspense: true, - unescape -}; -function setDefaults() { - let options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; - defaultOptions$1 = { - ...defaultOptions$1, - ...options - }; -} -function getDefaults() { - return defaultOptions$1; -} - -let i18nInstance; -function setI18n(instance) { - i18nInstance = instance; -} -function getI18n() { - return i18nInstance; -} - -const initReactI18next = { - type: '3rdParty', - init(instance) { - setDefaults(instance.options.react); - setI18n(instance); - } -}; - -const I18nContext = reactExports.createContext(); -class ReportNamespaces { - constructor() { - this.usedNamespaces = {}; - } - addUsedNamespaces(namespaces) { - namespaces.forEach(ns => { - if (!this.usedNamespaces[ns]) this.usedNamespaces[ns] = true; - }); - } - getUsedNamespaces() { - return Object.keys(this.usedNamespaces); - } -} - -const usePrevious = (value, ignore) => { - const ref = reactExports.useRef(); - reactExports.useEffect(() => { - ref.current = ignore ? ref.current : value; - }, [value, ignore]); - return ref.current; -}; -function alwaysNewT(i18n, language, namespace, keyPrefix) { - return i18n.getFixedT(language, namespace, keyPrefix); -} -function useMemoizedT(i18n, language, namespace, keyPrefix) { - return reactExports.useCallback(alwaysNewT(i18n, language, namespace, keyPrefix), [i18n, language, namespace, keyPrefix]); -} -function useTranslation(ns) { - let props = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {}; - const { - i18n: i18nFromProps - } = props; - const { - i18n: i18nFromContext, - defaultNS: defaultNSFromContext - } = reactExports.useContext(I18nContext) || {}; - const i18n = i18nFromProps || i18nFromContext || getI18n(); - if (i18n && !i18n.reportNamespaces) i18n.reportNamespaces = new ReportNamespaces(); - if (!i18n) { - warnOnce('You will need to pass in an i18next instance by using initReactI18next'); - const notReadyT = (k, optsOrDefaultValue) => { - if (typeof optsOrDefaultValue === 'string') return optsOrDefaultValue; - if (optsOrDefaultValue && typeof optsOrDefaultValue === 'object' && typeof optsOrDefaultValue.defaultValue === 'string') return optsOrDefaultValue.defaultValue; - return Array.isArray(k) ? k[k.length - 1] : k; - }; - const retNotReady = [notReadyT, {}, false]; - retNotReady.t = notReadyT; - retNotReady.i18n = {}; - retNotReady.ready = false; - return retNotReady; - } - if (i18n.options.react && i18n.options.react.wait !== undefined) warnOnce('It seems you are still using the old wait option, you may migrate to the new useSuspense behaviour.'); - const i18nOptions = { - ...getDefaults(), - ...i18n.options.react, - ...props - }; - const { - useSuspense, - keyPrefix - } = i18nOptions; - let namespaces = ns || defaultNSFromContext || i18n.options && i18n.options.defaultNS; - namespaces = typeof namespaces === 'string' ? [namespaces] : namespaces || ['translation']; - if (i18n.reportNamespaces.addUsedNamespaces) i18n.reportNamespaces.addUsedNamespaces(namespaces); - const ready = (i18n.isInitialized || i18n.initializedStoreOnce) && namespaces.every(n => hasLoadedNamespace(n, i18n, i18nOptions)); - const memoGetT = useMemoizedT(i18n, props.lng || null, i18nOptions.nsMode === 'fallback' ? namespaces : namespaces[0], keyPrefix); - const getT = () => memoGetT; - const getNewT = () => alwaysNewT(i18n, props.lng || null, i18nOptions.nsMode === 'fallback' ? namespaces : namespaces[0], keyPrefix); - const [t, setT] = reactExports.useState(getT); - let joinedNS = namespaces.join(); - if (props.lng) joinedNS = `${props.lng}${joinedNS}`; - const previousJoinedNS = usePrevious(joinedNS); - const isMounted = reactExports.useRef(true); - reactExports.useEffect(() => { - const { - bindI18n, - bindI18nStore - } = i18nOptions; - isMounted.current = true; - if (!ready && !useSuspense) { - if (props.lng) { - loadLanguages(i18n, props.lng, namespaces, () => { - if (isMounted.current) setT(getNewT); - }); - } else { - loadNamespaces(i18n, namespaces, () => { - if (isMounted.current) setT(getNewT); - }); - } - } - if (ready && previousJoinedNS && previousJoinedNS !== joinedNS && isMounted.current) { - setT(getNewT); - } - function boundReset() { - if (isMounted.current) setT(getNewT); - } - if (bindI18n && i18n) i18n.on(bindI18n, boundReset); - if (bindI18nStore && i18n) i18n.store.on(bindI18nStore, boundReset); - return () => { - isMounted.current = false; - if (bindI18n && i18n) bindI18n.split(' ').forEach(e => i18n.off(e, boundReset)); - if (bindI18nStore && i18n) bindI18nStore.split(' ').forEach(e => i18n.store.off(e, boundReset)); - }; - }, [i18n, joinedNS]); - reactExports.useEffect(() => { - if (isMounted.current && ready) { - setT(getT); - } - }, [i18n, keyPrefix, ready]); - const ret = [t, i18n, ready]; - ret.t = t; - ret.i18n = i18n; - ret.ready = ready; - if (ready) return ret; - if (!ready && !useSuspense) return ret; - throw new Promise(resolve => { - if (props.lng) { - loadLanguages(i18n, props.lng, namespaces, () => resolve()); - } else { - loadNamespaces(i18n, namespaces, () => resolve()); - } - }); -} - -function initI18next(locale) { - instance.use(initReactI18next).init({ - resources: { - [`${locale}`]: {}, - }, - lng: locale, - lowerCaseLng: true, - interpolation: { - escapeValue: false, - }, - keySeparator: false, - pluralSeparator: ".", - }); -} - -var reactIs$2 = {exports: {}}; - -var reactIs_production_min$1 = {}; - -/** @license React v17.0.2 - * react-is.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -var hasRequiredReactIs_production_min$1; - -function requireReactIs_production_min$1 () { - if (hasRequiredReactIs_production_min$1) return reactIs_production_min$1; - hasRequiredReactIs_production_min$1 = 1; -var b=60103,c=60106,d=60107,e=60108,f=60114,g=60109,h=60110,k=60112,l=60113,m=60120,n=60115,p=60116,q=60121,r=60122,u=60117,v=60129,w=60131; - if("function"===typeof Symbol&&Symbol.for){var x=Symbol.for;b=x("react.element");c=x("react.portal");d=x("react.fragment");e=x("react.strict_mode");f=x("react.profiler");g=x("react.provider");h=x("react.context");k=x("react.forward_ref");l=x("react.suspense");m=x("react.suspense_list");n=x("react.memo");p=x("react.lazy");q=x("react.block");r=x("react.server.block");u=x("react.fundamental");v=x("react.debug_trace_mode");w=x("react.legacy_hidden");} - function y(a){if("object"===typeof a&&null!==a){var t=a.$$typeof;switch(t){case b:switch(a=a.type,a){case d:case f:case e:case l:case m:return a;default:switch(a=a&&a.$$typeof,a){case h:case k:case p:case n:case g:return a;default:return t}}case c:return t}}}var z=g,A=b,B=k,C=d,D=p,E=n,F=c,G=f,H=e,I=l;reactIs_production_min$1.ContextConsumer=h;reactIs_production_min$1.ContextProvider=z;reactIs_production_min$1.Element=A;reactIs_production_min$1.ForwardRef=B;reactIs_production_min$1.Fragment=C;reactIs_production_min$1.Lazy=D;reactIs_production_min$1.Memo=E;reactIs_production_min$1.Portal=F;reactIs_production_min$1.Profiler=G;reactIs_production_min$1.StrictMode=H; - reactIs_production_min$1.Suspense=I;reactIs_production_min$1.isAsyncMode=function(){return !1};reactIs_production_min$1.isConcurrentMode=function(){return !1};reactIs_production_min$1.isContextConsumer=function(a){return y(a)===h};reactIs_production_min$1.isContextProvider=function(a){return y(a)===g};reactIs_production_min$1.isElement=function(a){return "object"===typeof a&&null!==a&&a.$$typeof===b};reactIs_production_min$1.isForwardRef=function(a){return y(a)===k};reactIs_production_min$1.isFragment=function(a){return y(a)===d};reactIs_production_min$1.isLazy=function(a){return y(a)===p};reactIs_production_min$1.isMemo=function(a){return y(a)===n}; - reactIs_production_min$1.isPortal=function(a){return y(a)===c};reactIs_production_min$1.isProfiler=function(a){return y(a)===f};reactIs_production_min$1.isStrictMode=function(a){return y(a)===e};reactIs_production_min$1.isSuspense=function(a){return y(a)===l};reactIs_production_min$1.isValidElementType=function(a){return "string"===typeof a||"function"===typeof a||a===d||a===f||a===v||a===e||a===l||a===m||a===w||"object"===typeof a&&null!==a&&(a.$$typeof===p||a.$$typeof===n||a.$$typeof===g||a.$$typeof===h||a.$$typeof===k||a.$$typeof===u||a.$$typeof===q||a[0]===r)?!0:!1}; - reactIs_production_min$1.typeOf=y; - return reactIs_production_min$1; -} - -{ - reactIs$2.exports = requireReactIs_production_min$1(); -} - -var reactIsExports$1 = reactIs$2.exports; - -function stylis_min (W) { - function M(d, c, e, h, a) { - for (var m = 0, b = 0, v = 0, n = 0, q, g, x = 0, K = 0, k, u = k = q = 0, l = 0, r = 0, I = 0, t = 0, B = e.length, J = B - 1, y, f = '', p = '', F = '', G = '', C; l < B;) { - g = e.charCodeAt(l); - l === J && 0 !== b + n + v + m && (0 !== b && (g = 47 === b ? 10 : 47), n = v = m = 0, B++, J++); - - if (0 === b + n + v + m) { - if (l === J && (0 < r && (f = f.replace(N, '')), 0 < f.trim().length)) { - switch (g) { - case 32: - case 9: - case 59: - case 13: - case 10: - break; - - default: - f += e.charAt(l); - } - - g = 59; - } - - switch (g) { - case 123: - f = f.trim(); - q = f.charCodeAt(0); - k = 1; - - for (t = ++l; l < B;) { - switch (g = e.charCodeAt(l)) { - case 123: - k++; - break; - - case 125: - k--; - break; - - case 47: - switch (g = e.charCodeAt(l + 1)) { - case 42: - case 47: - a: { - for (u = l + 1; u < J; ++u) { - switch (e.charCodeAt(u)) { - case 47: - if (42 === g && 42 === e.charCodeAt(u - 1) && l + 2 !== u) { - l = u + 1; - break a; - } - - break; - - case 10: - if (47 === g) { - l = u + 1; - break a; - } - - } - } - - l = u; - } - - } - - break; - - case 91: - g++; - - case 40: - g++; - - case 34: - case 39: - for (; l++ < J && e.charCodeAt(l) !== g;) { - } - - } - - if (0 === k) break; - l++; - } - - k = e.substring(t, l); - 0 === q && (q = (f = f.replace(ca, '').trim()).charCodeAt(0)); - - switch (q) { - case 64: - 0 < r && (f = f.replace(N, '')); - g = f.charCodeAt(1); - - switch (g) { - case 100: - case 109: - case 115: - case 45: - r = c; - break; - - default: - r = O; - } - - k = M(c, r, k, g, a + 1); - t = k.length; - 0 < A && (r = X(O, f, I), C = H(3, k, r, c, D, z, t, g, a, h), f = r.join(''), void 0 !== C && 0 === (t = (k = C.trim()).length) && (g = 0, k = '')); - if (0 < t) switch (g) { - case 115: - f = f.replace(da, ea); - - case 100: - case 109: - case 45: - k = f + '{' + k + '}'; - break; - - case 107: - f = f.replace(fa, '$1 $2'); - k = f + '{' + k + '}'; - k = 1 === w || 2 === w && L('@' + k, 3) ? '@-webkit-' + k + '@' + k : '@' + k; - break; - - default: - k = f + k, 112 === h && (k = (p += k, '')); - } else k = ''; - break; - - default: - k = M(c, X(c, f, I), k, h, a + 1); - } - - F += k; - k = I = r = u = q = 0; - f = ''; - g = e.charCodeAt(++l); - break; - - case 125: - case 59: - f = (0 < r ? f.replace(N, '') : f).trim(); - if (1 < (t = f.length)) switch (0 === u && (q = f.charCodeAt(0), 45 === q || 96 < q && 123 > q) && (t = (f = f.replace(' ', ':')).length), 0 < A && void 0 !== (C = H(1, f, c, d, D, z, p.length, h, a, h)) && 0 === (t = (f = C.trim()).length) && (f = '\x00\x00'), q = f.charCodeAt(0), g = f.charCodeAt(1), q) { - case 0: - break; - - case 64: - if (105 === g || 99 === g) { - G += f + e.charAt(l); - break; - } - - default: - 58 !== f.charCodeAt(t - 1) && (p += P(f, q, g, f.charCodeAt(2))); - } - I = r = u = q = 0; - f = ''; - g = e.charCodeAt(++l); - } - } - - switch (g) { - case 13: - case 10: - 47 === b ? b = 0 : 0 === 1 + q && 107 !== h && 0 < f.length && (r = 1, f += '\x00'); - 0 < A * Y && H(0, f, c, d, D, z, p.length, h, a, h); - z = 1; - D++; - break; - - case 59: - case 125: - if (0 === b + n + v + m) { - z++; - break; - } - - default: - z++; - y = e.charAt(l); - - switch (g) { - case 9: - case 32: - if (0 === n + m + b) switch (x) { - case 44: - case 58: - case 9: - case 32: - y = ''; - break; - - default: - 32 !== g && (y = ' '); - } - break; - - case 0: - y = '\\0'; - break; - - case 12: - y = '\\f'; - break; - - case 11: - y = '\\v'; - break; - - case 38: - 0 === n + b + m && (r = I = 1, y = '\f' + y); - break; - - case 108: - if (0 === n + b + m + E && 0 < u) switch (l - u) { - case 2: - 112 === x && 58 === e.charCodeAt(l - 3) && (E = x); - - case 8: - 111 === K && (E = K); - } - break; - - case 58: - 0 === n + b + m && (u = l); - break; - - case 44: - 0 === b + v + n + m && (r = 1, y += '\r'); - break; - - case 34: - case 39: - 0 === b && (n = n === g ? 0 : 0 === n ? g : n); - break; - - case 91: - 0 === n + b + v && m++; - break; - - case 93: - 0 === n + b + v && m--; - break; - - case 41: - 0 === n + b + m && v--; - break; - - case 40: - if (0 === n + b + m) { - if (0 === q) switch (2 * x + 3 * K) { - case 533: - break; - - default: - q = 1; - } - v++; - } - - break; - - case 64: - 0 === b + v + n + m + u + k && (k = 1); - break; - - case 42: - case 47: - if (!(0 < n + m + v)) switch (b) { - case 0: - switch (2 * g + 3 * e.charCodeAt(l + 1)) { - case 235: - b = 47; - break; - - case 220: - t = l, b = 42; - } - - break; + */!function e(){if("undefined"!=typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&"function"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE)try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(e)}catch(e){console.error(e)}}(),y.exports=function(){if(v)return w;v=1;var e=p,t=s(),n=E();function r(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n